<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/**
 * 1. Config
 * 2. Mixins
 * 3. Plugins
 * 4. Base
 * 5. Components
 * 6. Header
 * 7. Footer
 * 8. Pages
 */
/* 1. Config */
/*----------------------------------------
    Variables
-----------------------------------------*/
/* 2. Mixins */
/* 3. Base */
/*----------------------------------------
    Base
-----------------------------------------*/
*, ::after, ::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
html {
  font-size: 62.5%;
  font-size-adjust: 100%;
  font-weight: 400;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  color: var(--body-color);
  background: var(--body-bg-color);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

body, /* blink currently has bug that requires declaration on `body` */
html {
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
}

::selection {
  background: var(--selection-bg-color);
}

[data-title]:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}
[data-title]:after {
    position: absolute;
    content: attr(data-title);
    background-color: #fff;
    color: #000;
    font-size: 1.4rem;
    font-weight: 300;
    font-family: "Arial";
    padding: 7px 8px 7px 8px;
    bottom: -1.6em;
    left: 100%;
    white-space: nowrap;
    box-shadow: 4px 5px 10px rgba(0,0,0,0.3);
	border-radius: 0.3rem;
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
}
[data-title] {
    position: relative;
}

main {
  display: block;
  position: relative;
}

body:not(.loaded) * {
  -webkit-transition: all 0s !important;
  transition: all 0s !important;
}

.page-wrapper {
  position: relative;
  -webkit-transition: margin 0.4s, opacity 0.5s;
  transition: margin 0.4s, opacity 0.5s;
}
.loaded &gt; .page-wrapper {
  opacity: 1;
}

.menu, .menu ul,
.mobile-menu, .mobile-menu ul,
.nav, .nav ul,
.breadcrumb,
.widget-body, .widget-body ul,
.dropdown-box,
.category-list,
.pagination,
.filter-items,
.product-tabs &gt; div ul,
.nav-filters,
.shipping-methods,
.shipping-methods ul,
.fee-description {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

input, .btn {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

.unstyled {
  list-style: none;
}

.unstyled li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: var(--link-color);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
a:hover {
  color: var(--link-hover-color);
}

:focus {
  outline: 0;
}

a.color,
a.size,
a.color:hover,
a.size:hover {
  color: inherit;
}

a.tooltip {
  position: relative;
  cursor: help;
  width: auto;
  padding: 0;
  margin: 0 0 0 5px;
}
a.c-inherit {
  color: inherit;
}

.c-alert {
  color: #a94442;
}

figure {
  margin: 0;
}

hr {
  margin: 1rem 0rem;
  border: 0;
  border-top: 1px solid #eee;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.height-100-vh {
  height: calc(var(--vh, 1vh) * 100);
}

.scrollable {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.scrollable::-webkit-scrollbar {
  height: 7px;
  width: 4px;
}
.scrollable::-webkit-scrollbar-thumb {
  margin-right: 2px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  cursor: pointer;
}

.scrollable-light::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}

.scrollable:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
}

.sticky-content.fix-top {
  top: 0;
}
.sticky-content.fix-bottom {
  bottom: 0;
}
.sticky-content.fixed {
  position: fixed !important;
  left: 0;
  right: 0;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  z-index: 4;
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}
.sticky-content.fixed.fix-top {
  -webkit-animation: fixedTopContent 0.4s;
          animation: fixedTopContent 0.4s;
    -webkit-transition: var(--sticky-content-fix-top-animation);
    -moz-transition: var(--sticky-content-fix-top-animation);
    -o-transition: var(--sticky-content-fix-top-animation);
    -ms-transition: var(--sticky-content-fix-top-animation);
    transition: var(--sticky-content-fix-top-animation);
}
  .header-wrapper.sticky-content.fixed.fix-top,
  .header-top.sticky-content.fixed.fix-top,
  .header-middle.sticky-content.fixed.fix-top {
    -webkit-animation: inherit;
            animation: inherit;
  }
@media (max-width: 897px) {
  .sticky-content.fixed.fix-top {
    -webkit-animation: inherit;
            animation: inherit;
  }
}
.sticky-content.fixed.fix-bottom {
  -webkit-animation: fixedBottomContent 0.4s;
          animation: fixedBottomContent 0.4s;
}

.sticky-content.fixed {
  background-color: #fff;	
}
  .header.sticky-content.fixed .header-top-bg,
  .header.sticky-content.fixed .header-middle-bg {
    background-color: transparent;
  }
.sticky-content.fix-top.fixed {
  -webkit-box-shadow: var(--sticky-content-fix-top-box-shadow);
  -moz-box-shadow: var(--sticky-content-fix-top-box-shadow);
  -o-box-shadow: var(--sticky-content-fix-top-box-shadow);
  box-shadow: var(--sticky-content-fix-top-box-shadow);
}

.toolbox-filter-top .sticky-content.fixed {
  padding-top: 1rem;
}

@media (max-width: 897px) {

  .sticky-content.fix-top.fixed {
    background-color: var(--sticky-content-fix-top-mobile-bg-color);
    border-top-style: var(--sticky-content-fix-top-mobile-border-top-style);
    border-top-color: var(--sticky-content-fix-top-mobile-border-top-color);
    border-top-width: var(--sticky-content-fix-top-mobile-border-top-width);
    border-bottom-style: var(--sticky-content-fix-top-mobile-border-bottom-style);
    border-bottom-color: var(--sticky-content-fix-top-mobile-border-bottom-color);
    border-bottom-width: var(--sticky-content-fix-top-mobile-border-bottom-width);
    -webkit-box-shadow: var(--sticky-content-fix-top-mobile-box-shadow);
    -moz-box-shadow: var(--sticky-content-fix-top-mobile-box-shadow);
    -o-box-shadow: var(--sticky-content-fix-top-mobile-box-shadow);
    box-shadow: var(--sticky-content-fix-top-mobile-box-shadow);
  }
  .sticky-content.fix-bottom.fixed {
    background-color: var(--sticky-content-fix-bottom-mobile-bg-color);
    border-bottom-style: var(--sticky-content-fix-bottom-mobile-border-bottom-style);
    border-bottom-color: var(--sticky-content-fix-bottom-mobile-border-bottom-color);
    border-bottom-width: var(--sticky-content-fix-bottom-mobile-border-bottom-width);
  }
}


/****/
.scroll-progress-container.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
}
.scroll-progress-container {
  width: 100%;
  background-color: transparent;
  height: 3px;
  display: block;
}
.scroll-progress-bar {
  background-color: var(--progress-scroll-bar-bg-color);
  width: 0%;
  display: block;
  height: inherit;
}

#scroll-top {
  position: fixed;
  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;
  bottom: -4rem;
  right: 1.5rem;
  z-index: 9999;
  width: 4.6rem;
  height: 4.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  opacity: 0;
  -webkit-transition: bottom 0.3s, opacity 0.3s;
  transition: bottom 0.3s, opacity 0.3s;
  z-index: 2;
}

#scroll-top.show {
  opacity: 1;
  bottom: 98px;
}
@media (max-width: 897px) {
  #scroll-top.show {
    bottom: 115px;
  }
}

#scroll-top:focus, #scroll-top:hover {
  text-decoration: none;
}

#scroll-top:hover {
  opacity: 0.8;
}

#scroll-top i {
  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: 3.6rem;
  height: 3.6rem;
  color: #fff;
  background-color: var(--scroll-top-color);
  border: 2px solid var(--scroll-top-color);
  border-radius: 50%;
  z-index: 1;
}

#scroll-top svg {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  top: 1px;
  left: 1px;
  z-index: -1;
}

#scroll-top svg circle {
  stroke: var(--scroll-top-color);
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-dasharray: 1, 400;
}

@media (max-width: 897px) {
  #scroll-top {

  }
  #scroll-top svg {
    width: 44px;
    height: 44px;
  }
}
.loading:not(.load-overlay),
.load-overlay.loading::after {
  -webkit-animation: spin 650ms infinite linear;
          animation: spin 650ms infinite linear;
  border: 2px solid transparent;
  border-radius: 32px;
  border-top: 2px solid #000000 !important;
  border-right: 2px solid rgba(0, 0, 0, 0.4) !important;
  border-bottom: 2px solid #000000 !important;
  border-left: 2px solid rgba(0, 0, 0, 0.4) !important;
  content: "";
  display: block;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  left: 50%;
  margin-left: -10px;
  right: auto;
  position: absolute;
  width: 20px;
  z-index: 2;
}

.load-overlay {
  position: relative;
  pointer-events: none;
}
.load-overlay.loading::after {
  content: "";
}
.load-overlay::before {
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@media (min-width: 898px) {
  .scroll-top.show {
    visibility: visible;
    opacity: 0.7;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*----------------------------------------
    Margin/Padding
-----------------------------------------*/
.m-0{margin:0!important}.m-1{margin:.375rem!important}.m-2{margin:.75rem!important}.m-3{margin:1.5rem!important}.m-4{margin:2.25rem!important}.m-5{margin:4.5rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.375rem!important;margin-left:.375rem!important}.mx-2{margin-right:.75rem!important;margin-left:.75rem!important}.mx-3{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-4{margin-right:2.25rem!important;margin-left:2.25rem!important}.mx-5{margin-right:4.5rem!important;margin-left:4.5rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.375rem!important;margin-bottom:.375rem!important}.my-2{margin-top:.75rem!important;margin-bottom:.75rem!important}.my-3{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-4{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.my-5{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.375rem!important}.mt-2{margin-top:.75rem!important}.mt-3{margin-top:1.5rem!important}.mt-4{margin-top:2.25rem!important}.mt-5{margin-top:4.5rem!important}.mt-6{margin-top:5.5rem!important}.mt-7{margin-top:6.5rem!important}.mt-8{margin-top:7.5rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.375rem!important}.me-2{margin-right:.75rem!important}.me-3{margin-right:1.5rem!important}.me-4{margin-right:2.25rem!important}.me-5{margin-right:4.5rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.375rem!important}.mb-2{margin-bottom:.75rem!important}.mb-3{margin-bottom:1.5rem!important}.mb-4{margin-bottom:2.25rem!important}.mb-5{margin-bottom:4.5rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.375rem!important}.ms-2{margin-left:.75rem!important}.ms-3{margin-left:1.5rem!important}.ms-4{margin-left:2.25rem!important}.ms-5{margin-left:4.5rem!important}.ms-auto{margin-left:auto!important}.m-n1{margin:-.375rem!important}.m-n2{margin:-.75rem!important}.m-n3{margin:-1.5rem!important}.m-n4{margin:-2.25rem!important}.m-n5{margin:-4.5rem!important}.mx-n1{margin-right:-.375rem!important;margin-left:-.375rem!important}.mx-n2{margin-right:-.75rem!important;margin-left:-.75rem!important}.mx-n3{margin-right:-1.5rem!important;margin-left:-1.5rem!important}.mx-n4{margin-right:-2.25rem!important;margin-left:-2.25rem!important}.mx-n5{margin-right:-4.5rem!important;margin-left:-4.5rem!important}.my-n1{margin-top:-.375rem!important;margin-bottom:-.375rem!important}.my-n2{margin-top:-.75rem!important;margin-bottom:-.75rem!important}.my-n3{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.my-n4{margin-top:-2.25rem!important;margin-bottom:-2.25rem!important}.my-n5{margin-top:-4.5rem!important;margin-bottom:-4.5rem!important}.mt-n1{margin-top:-.375rem!important}.mt-n2{margin-top:-.75rem!important}.mt-n3{margin-top:-1.5rem!important}.mt-n4{margin-top:-2.25rem!important}.mt-n5{margin-top:-4.5rem!important}.me-n1{margin-right:-.375rem!important}.me-n2{margin-right:-.75rem!important}.me-n3{margin-right:-1.5rem!important}.me-n4{margin-right:-2.25rem!important}.me-n5{margin-right:-4.5rem!important}.mb-n1{margin-bottom:-.375rem!important}.mb-n2{margin-bottom:-.75rem!important}.mb-n3{margin-bottom:-1.5rem!important}.mb-n4{margin-bottom:-2.25rem!important}.mb-n5{margin-bottom:-4.5rem!important}.ms-n1{margin-left:-.375rem!important}.ms-n2{margin-left:-.75rem!important}.ms-n3{margin-left:-1.5rem!important}.ms-n4{margin-left:-2.25rem!important}.ms-n5{margin-left:-4.5rem!important}.p-0{padding:0!important}.p-1{padding:.375rem!important}.p-2{padding:.75rem!important}.p-3{padding:1.5rem!important}.p-4{padding:2.25rem!important}.p-5{padding:4.5rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.375rem!important;padding-left:.375rem!important}.px-2{padding-right:.75rem!important;padding-left:.75rem!important}.px-3{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-4{padding-right:2.25rem!important;padding-left:2.25rem!important}.px-5{padding-right:4.5rem!important;padding-left:4.5rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.375rem!important;padding-bottom:.375rem!important}.py-2{padding-top:.75rem!important;padding-bottom:.75rem!important}.py-3{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-4{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.py-5{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.375rem!important}.pt-2{padding-top:.75rem!important}.pt-3{padding-top:1.5rem!important}.pt-4{padding-top:2.25rem!important}.pt-5{padding-top:4.5rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.375rem!important}.pe-2{padding-right:.75rem!important}.pe-3{padding-right:1.5rem!important}.pe-4{padding-right:2.25rem!important}.pe-5{padding-right:4.5rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.375rem!important}.pb-2{padding-bottom:.75rem!important}.pb-3{padding-bottom:1.5rem!important}.pb-4{padding-bottom:2.25rem!important}.pb-5{padding-bottom:4.5rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.375rem!important}.ps-2{padding-left:.75rem!important}.ps-3{padding-left:1.5rem!important}.ps-4{padding-left:2.25rem!important}.ps-5{padding-left:4.5rem!important}.pr-0{padding-right:0!important}.pl-0{padding-left:0!important}

.pos-absolute{position: absolute !important;}
.pos-relative{position: relative !important;}
.bg-color-transparent{background-color: transparent !important;}
/*----------------------------------------
    Layout
-----------------------------------------*/
.container {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.container-fluid {
  position: relative;
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  margin-left: auto;
  margin-right: auto;
}
.section-container {
  position: relative;
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  margin-left: auto;
  margin-right: auto;
}
.section-container-fluid {
  position: relative;
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 897px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .container.heading-container {
    padding-left: 0px;
    padding-right: 0px;  
  }
  .section-row .container-fluid .container.heading-container {
    padding-left: 0px;
    padding-right: 0px;  
  }
  .section-container {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.container {
  max-width: var(--container-max-width);
}

/*----------------------------------------
    Grid
-----------------------------------------*/
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.row &gt; * {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.section-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media(max-width: 479px){
  .main-content &gt; .section-row:first-child {
    padding-bottom: 0px;
  }
}
.template-one-column .section-row {
  max-width: var(--container-max-width);
  margin: 0 auto;
}
.section-row.section-row-gutter-no {
  padding-top: 0px;
  padding-bottom: 0px;
}

.section-row &gt; * {
  position: relative;
  background-color: var(--main-content-container-bg-color);
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.section-row.section-row-fluid {
  max-width: 100%;
  margin-right: 0px;
  margin-left: 0px;
  background-color: var(--section-row-fluid-bg-color);
  border-color: var(--section-row-fluid-border-color);
  border-style: var(--section-row-fluid-border-style);
  border-top-width: var(--section-row-fluid-border-top-width);
  border-right-width: var(--section-row-fluid-border-right-width);
  border-bottom-width: var(--section-row-fluid-border-bottom-width);
  border-left-width: var(--section-row-fluid-border-left-width);
}
@media (max-width: 897px) {
  .section-row.section-row-fluid {

  }
}
.section-row.section-row-fluid &gt; * {
  padding-right: 15px;
  padding-left: 15px;
}

.section-row.section-row-fluid:not(.section-row-gutter-no).not(.section-product-swiper) &gt; .container-fluid {
  margin-right: var(--container-fluid-main-margin-right);
  margin-left: var(--container-fluid-main-margin-left);
  padding-top: var(--container-fluid-main-padding-top);
  padding-right: var(--container-fluid-main-padding-right);
  padding-bottom: var(--container-fluid-main-padding-bottom);
  padding-left: var(--container-fluid-main-padding-left);
}

.section-row.section-row-fluid.section-slideshow {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}
.section-row.section-row-fluid.section-banner {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.section-row.section-row-fluid.section-slideshow &gt; .container-fluid {
  margin-right: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}
.section-row.section-row-fluid.section-instagram-gallery &gt; .container-fluid {
  margin-right: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.section-row.section-row-gutter-no &gt; .container,
.section-row.section-row-gutter-no &gt; .container-fluid,
.section-row.section-row-gutter-no &gt; .section-container {
  margin-right: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.section-row.section-row-fluid &gt; .container-fluid .widget-products .swiper {

}

@media (max-width: 897px) {
  .section-row.section-row-fluid &gt; .container-fluid {

  }
  .section-row.section-row-fluid &gt; .container-fluid .swiper {

  }
}

.gutter-l {
  margin-left: -20px;
  margin-right: -20px;
}
.gutter-l &gt; * {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.gutter-lg {
  margin-left: -15px;
  margin-right: -15px;
}
.gutter-lg &gt; * {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 20px;
}

.gutter-sm {
  margin-left: -10px;
  margin-right: -10px;
}
.gutter-sm &gt; * {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 15px;
}

.gutter-s {
  margin-left: -5px;
  margin-right: -5px;
}
.gutter-s &gt; * {
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 10px;
}

.gutter-xs {
  margin-left: -1px;
  margin-right: -1px;
}
.gutter-xs &gt; * {
  padding-left: 1px;
  padding-right: 1px;
  padding-bottom: 2px;
}

.gutter-no {
  margin-left: 0px;
  margin-right: 0px;
}
.gutter-no &gt; * {
  padding-left: 0;
  padding-right: 0;
}

.cols-1 &gt; * {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.cols-2 &gt; * {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.cols-3 &gt; * {
  max-width: 33.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
}

.cols-4 &gt; * {
  max-width: 25%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}

.cols-5 &gt; * {
  max-width: 20%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
}

.cols-6 &gt; * {
  max-width: 16.6667%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6667%;
          flex: 0 0 16.6667%;
}

.cols-7 &gt; * {
  max-width: 14.2857%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14.2857%;
          flex: 0 0 14.2857%;
}

.cols-8 &gt; * {
  max-width: 12.5%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12.5%;
          flex: 0 0 12.5%;
}

@media (min-width: 480px) {
  .cols-xs-1 &gt; * {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .cols-xs-2 &gt; * {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .cols-xs-3 &gt; * {
    max-width: 33.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }

  .cols-xs-4 &gt; * {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }

  .cols-xs-5 &gt; * {
    max-width: 20%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }

  .cols-xs-6 &gt; * {
    max-width: 16.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6667%;
            flex: 0 0 16.6667%;
  }

  .cols-xs-7 &gt; * {
    max-width: 14.2857%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.2857%;
            flex: 0 0 14.2857%;
  }

  .cols-xs-8 &gt; * {
    max-width: 12.5%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
            flex: 0 0 12.5%;
  }
}
@media (min-width: 576px) {
  .cols-sm-1 &gt; * {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .cols-sm-2 &gt; * {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .cols-sm-3 &gt; * {
    max-width: 33.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }

  .cols-sm-4 &gt; * {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }

  .cols-sm-5 &gt; * {
    max-width: 20%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }

  .cols-sm-6 &gt; * {
    max-width: 16.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6667%;
            flex: 0 0 16.6667%;
  }

  .cols-sm-7 &gt; * {
    max-width: 14.2857%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.2857%;
            flex: 0 0 14.2857%;
  }

  .cols-sm-8 &gt; * {
    max-width: 12.5%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
            flex: 0 0 12.5%;
  }
}
@media (min-width: 898px) {
  .cols-md-1 &gt; * {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .cols-md-2 &gt; * {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .cols-md-3 &gt; * {
    max-width: 33.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }

  .cols-md-4 &gt; * {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }

  .cols-md-5 &gt; * {
    max-width: 20%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }

  .cols-md-6 &gt; * {
    max-width: 16.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6667%;
            flex: 0 0 16.6667%;
  }

  .cols-md-7 &gt; * {
    max-width: 14.2857%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.2857%;
            flex: 0 0 14.2857%;
  }

  .cols-md-8 &gt; * {
    max-width: 12.5%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
            flex: 0 0 12.5%;
  }
}
@media (min-width: 992px) {
  .cols-lg-1 &gt; * {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .cols-lg-2 &gt; * {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .cols-lg-3 &gt; * {
    max-width: 33.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }

  .cols-lg-4 &gt; * {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }

  .cols-lg-5 &gt; * {
    max-width: 20%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }

  .cols-lg-6 &gt; * {
    max-width: 16.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6667%;
            flex: 0 0 16.6667%;
  }

  .cols-lg-7 &gt; * {
    max-width: 14.2857%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.2857%;
            flex: 0 0 14.2857%;
  }

  .cols-lg-8 &gt; * {
    max-width: 12.5%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
            flex: 0 0 12.5%;
  }

  .cols-lg-9 &gt; * {
    max-width: 11.1111%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 11.1111%;
            flex: 0 0 11.1111%;
  }

  .cols-lg-10 &gt; * {
    max-width: 10%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
            flex: 0 0 10%;
  }
}
@media (min-width: 1200px) {
  .cols-xl-1 &gt; * {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .cols-xl-2 &gt; * {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .cols-xl-3 &gt; * {
    max-width: 33.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }

  .cols-xl-4 &gt; * {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }

  .cols-xl-5 &gt; * {
    max-width: 20%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }

  .cols-xl-6 &gt; * {
    max-width: 16.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6667%;
            flex: 0 0 16.6667%;
  }

  .cols-xl-7 &gt; * {
    max-width: 14.2857%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.2857%;
            flex: 0 0 14.2857%;
  }

  .cols-xl-8 &gt; * {
    max-width: 12.5%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
            flex: 0 0 12.5%;
  }

  .cols-xl-9 &gt; * {
    max-width: 11.1111%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 11.1111%;
            flex: 0 0 11.1111%;
  }

  .cols-xl-10 &gt; * {
    max-width: 10%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
            flex: 0 0 10%;
  }

  .cols-xl-11 &gt; * {
    max-width: 9.0909%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 9.0909%;
            flex: 0 0 9.0909%;
  }

  .cols-xl-12 &gt; * {
    max-width: 8.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333%;
            flex: 0 0 8.3333%;
  }
}
.col-1 {
  max-width: 8.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.3333%;
          flex: 0 0 8.3333%;
}

.col-2 {
  max-width: 16.6667%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6667%;
          flex: 0 0 16.6667%;
}

.col-3 {
  max-width: 25%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}

.col-4 {
  max-width: 33.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
}

.col-5 {
  max-width: 41.6667%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.6667%;
          flex: 0 0 41.6667%;
}

.col-6 {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.col-7 {
  max-width: 58.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.3333%;
          flex: 0 0 58.3333%;
}

.col-8 {
  max-width: 66.6667%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.6667%;
          flex: 0 0 66.6667%;
}

.col-9 {
  max-width: 75%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
}

.col-10 {
  max-width: 83.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333%;
          flex: 0 0 83.3333%;
}

.col-11 {
  max-width: 91.6667%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.6667%;
          flex: 0 0 91.6667%;
}

.col-12 {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

@media (min-width: 480px) {
  .col-xs-1 {
    max-width: 8.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333%;
            flex: 0 0 8.3333%;
  }

  .col-xs-2 {
    max-width: 16.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6667%;
            flex: 0 0 16.6667%;
  }

  .col-xs-3 {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }

  .col-xs-4 {
    max-width: 33.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }

  .col-xs-5 {
    max-width: 41.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6667%;
            flex: 0 0 41.6667%;
  }

  .col-xs-6 {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .col-xs-7 {
    max-width: 58.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333%;
            flex: 0 0 58.3333%;
  }

  .col-xs-8 {
    max-width: 66.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6667%;
            flex: 0 0 66.6667%;
  }

  .col-xs-9 {
    max-width: 75%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }

  .col-xs-10 {
    max-width: 83.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333%;
            flex: 0 0 83.3333%;
  }

  .col-xs-11 {
    max-width: 91.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6667%;
            flex: 0 0 91.6667%;
  }

  .col-xs-12 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (min-width: 576px) {
  .col-sm-1 {
    max-width: 8.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333%;
            flex: 0 0 8.3333%;
  }

  .col-sm-2 {
    max-width: 16.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6667%;
            flex: 0 0 16.6667%;
  }

  .col-sm-3 {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }

  .col-sm-4 {
    max-width: 33.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }

  .col-sm-5 {
    max-width: 41.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6667%;
            flex: 0 0 41.6667%;
  }

  .col-sm-6 {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .col-sm-7 {
    max-width: 58.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333%;
            flex: 0 0 58.3333%;
  }

  .col-sm-8 {
    max-width: 66.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6667%;
            flex: 0 0 66.6667%;
  }

  .col-sm-9 {
    max-width: 75%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }

  .col-sm-10 {
    max-width: 83.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333%;
            flex: 0 0 83.3333%;
  }

  .col-sm-11 {
    max-width: 91.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6667%;
            flex: 0 0 91.6667%;
  }

  .col-sm-12 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (min-width: 898px) {
  .col-md-1 {
    max-width: 8.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333%;
            flex: 0 0 8.3333%;
  }

  .col-md-2 {
    max-width: 16.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6667%;
            flex: 0 0 16.6667%;
  }

  .col-md-3 {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }

  .col-md-4 {
    max-width: 33.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }

  .col-md-5 {
    max-width: 41.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6667%;
            flex: 0 0 41.6667%;
  }

  .col-md-6 {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .col-md-7 {
    max-width: 58.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333%;
            flex: 0 0 58.3333%;
  }

  .col-md-8 {
    max-width: 66.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6667%;
            flex: 0 0 66.6667%;
  }

  .col-md-9 {
    max-width: 75%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }

  .col-md-10 {
    max-width: 83.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333%;
            flex: 0 0 83.3333%;
  }

  .col-md-11 {
    max-width: 91.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6667%;
            flex: 0 0 91.6667%;
  }

  .col-md-12 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    max-width: 8.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333%;
            flex: 0 0 8.3333%;
  }

  .col-lg-2 {
    max-width: 16.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6667%;
            flex: 0 0 16.6667%;
  }

  .col-lg-3 {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }

  .col-lg-4 {
    max-width: 33.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }

  .col-lg-5 {
    max-width: 41.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6667%;
            flex: 0 0 41.6667%;
  }

  .col-lg-6 {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .col-lg-7 {
    max-width: 58.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333%;
            flex: 0 0 58.3333%;
  }

  .col-lg-8 {
    max-width: 66.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6667%;
            flex: 0 0 66.6667%;
  }

  .col-lg-9 {
    max-width: 75%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }

  .col-lg-10 {
    max-width: 83.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333%;
            flex: 0 0 83.3333%;
  }

  .col-lg-11 {
    max-width: 91.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6667%;
            flex: 0 0 91.6667%;
  }

  .col-lg-12 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    max-width: 8.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333%;
            flex: 0 0 8.3333%;
  }

  .col-xl-2 {
    max-width: 16.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6667%;
            flex: 0 0 16.6667%;
  }

  .col-xl-3 {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }

  .col-xl-4 {
    max-width: 33.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }

  .col-xl-5 {
    max-width: 41.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6667%;
            flex: 0 0 41.6667%;
  }

  .col-xl-6 {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .col-xl-7 {
    max-width: 58.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333%;
            flex: 0 0 58.3333%;
  }

  .col-xl-8 {
    max-width: 66.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6667%;
            flex: 0 0 66.6667%;
  }

  .col-xl-9 {
    max-width: 75%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }

  .col-xl-10 {
    max-width: 83.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333%;
            flex: 0 0 83.3333%;
  }

  .col-xl-11 {
    max-width: 91.6667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6667%;
            flex: 0 0 91.6667%;
  }

  .col-xl-12 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-5col {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
    padding-right: 10px;
    padding-left: 10px;
  }

  .col-xl-5col2 {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 40%;
    padding-right: 10px;
    padding-left: 10px;
  }

  .col-xl-5col3 {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    max-width: 60%;
    padding-right: 10px;
    padding-left: 10px;
  }

  .col-xl-5col4 {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
    max-width: 80%;
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (min-width: 1600px) {
  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333%;
            flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666%;
            flex: 0 0 16.6666%;
    max-width: 16.6666%;
  }
}
.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

@media (min-width: 576px) {
  .order-sm-auto {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
}
@media (min-width: 898px) {
  .order-md-auto {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
}
@media (min-width: 992px) {
  .order-lg-auto {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
}
.grid {
  margin: -1rem;
}
  .gallery-masonry-grid .grid {
     margin: -2px;
  }
.grid .banner,
.grid .category,
.grid .category &gt; a,
.grid figure,
.grid .banner img,
.grid .category img {
  height: 100%;
}
.grid img {
  -o-object-fit: cover;
     object-fit: cover;
}
.grid .grid-item {
  padding: 1rem;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.grid.gutter-sm {
  margin: -0.5rem;
}
.grid.gutter-sm .grid-item {
  padding: 0.5rem;
}
.grid.gutter-no {
  margin: 0;
}
.grid.gutter-no .grid-item {
  padding: 0;
}
.grid::after {
  content: "";
  display: block;
  clear: both;
}
.grid.grid-float {
  display: block !important;
}
.grid.grid-float .grid-item {
  float: left;
}

/*----------------------------------------
    Spacing
-----------------------------------------*/
.mt-0 {
  margin-top: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.pt-1 {
  padding-top: 0.5rem !important;
}

.pb-1 {
  padding-bottom: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.pt-2 {
  padding-top: 1rem !important;
}

.pb-2 {
  padding-bottom: 1rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.pt-3 {
  padding-top: 1.5rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

.mt-5 {
  margin-top: 2.5rem !important;
}

.mb-5 {
  margin-bottom: 2.5rem !important;
}

.pt-5 {
  padding-top: 2.5rem !important;
}

.pb-5 {
  padding-bottom: 2.5rem !important;
}

.mt-6 {
  margin-top: 3rem !important;
}

.mb-6 {
  margin-bottom: 3rem !important;
}

.pt-6 {
  padding-top: 3rem !important;
}

.pb-6 {
  padding-bottom: 3rem !important;
}

.mt-7 {
  margin-top: 3.5rem !important;
}

.mb-7 {
  margin-bottom: 3.5rem !important;
}

.pt-7 {
  padding-top: 3.5rem !important;
}

.pb-7 {
  padding-bottom: 3.5rem !important;
}

.mt-8 {
  margin-top: 4rem !important;
}

.mb-8 {
  margin-bottom: 4rem !important;
}

.pt-8 {
  padding-top: 4rem !important;
}

.pb-8 {
  padding-bottom: 4rem !important;
}

.mt-9 {
  margin-top: 4.5rem !important;
}

.mb-9 {
  margin-bottom: 4.5rem !important;
}

.pt-9 {
  padding-top: 4.5rem !important;
}

.pb-9 {
  padding-bottom: 4.5rem !important;
}

.mt-10 {
  margin-top: 5rem !important;
}

.mt-15 {
  margin-top: 7.5rem !important;
}

.mt-20 {
  margin-top: 10rem !important;
}

.mb-10 {
  margin-bottom: 5rem !important;
}

.mb-15 {
  margin-bottom: 7.5rem !important;
}


.mb-20 {
  margin-bottom: 10rem !important;
}

.pt-10 {
  padding-top: 5rem !important;
}

.pb-10 {
  padding-bottom: 5rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.ml-1 {
  margin-left: 0.5rem !important;
}

.mr-1 {
  margin-right: 0.5rem !important;
}

.pl-1 {
  padding-left: 0.5rem !important;
}

.pr-1 {
  padding-right: 0.5rem !important;
}

.ml-2 {
  margin-left: 1rem !important;
}

.mr-2 {
  margin-right: 1rem !important;
}

.pl-2 {
  padding-left: 1rem !important;
}

.pr-2 {
  padding-right: 1rem !important;
}

.ml-3 {
  margin-left: 1.5rem !important;
}

.mr-3 {
  margin-right: 1.5rem !important;
}

.pl-3 {
  padding-left: 1.5rem !important;
}

.pr-3 {
  padding-right: 1.5rem !important;
}

.ml-4 {
  margin-left: 2rem !important;
}

.mr-4 {
  margin-right: 2rem !important;
}

.pl-4 {
  padding-left: 2rem !important;
}

.pr-4 {
  padding-right: 2rem !important;
}

.ml-5 {
  margin-left: 2.5rem !important;
}

.mr-5 {
  margin-right: 2.5rem !important;
}

.pl-5 {
  padding-left: 2.5rem !important;
}

.pr-5 {
  padding-right: 2.5rem !important;
}

.ml-6 {
  margin-left: 3rem !important;
}

.mr-6 {
  margin-right: 3rem !important;
}

.pl-6 {
  padding-left: 3rem !important;
}

.pr-6 {
  padding-right: 3rem !important;
}

.ml-7 {
  margin-left: 3.5rem !important;
}

.mr-7 {
  margin-right: 3.5rem !important;
}

.pl-7 {
  padding-left: 3.5rem !important;
}

.pr-7 {
  padding-right: 3.5rem !important;
}

.ml-8 {
  margin-left: 4rem !important;
}

.mr-8 {
  margin-right: 4rem !important;
}

.pl-8 {
  padding-left: 4rem !important;
}

.pr-8 {
  padding-right: 4rem !important;
}

.ml-9 {
  margin-left: 4.5rem !important;
}

.mr-9 {
  margin-right: 4.5rem !important;
}

.pl-9 {
  padding-left: 4.5rem !important;
}

.pr-9 {
  padding-right: 4.5rem !important;
}

.ml-10 {
  margin-left: 5rem !important;
}

.mr-10 {
  margin-right: 5rem !important;
}

.pl-10 {
  padding-left: 5rem !important;
}

.pr-10 {
  padding-right: 5rem !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 576px) {
  .mt-sm-0 {
    margin-top: 0rem !important;
  }

  .mt-sm-1 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-2 {
    margin-top: 1rem !important;
  }

  .mt-sm-3 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-4 {
    margin-top: 2rem !important;
  }

  .mt-sm-5 {
    margin-top: 2.5rem !important;
  }

  .mt-sm-6 {
    margin-top: 3rem !important;
  }

  .mt-sm-7 {
    margin-top: 3.5rem !important;
  }

  .mt-sm-8 {
    margin-top: 4rem !important;
  }

  .mt-sm-9 {
    margin-top: 4.5rem !important;
  }

  .mt-sm-10 {
    margin-top: 5rem !important;
  }

  .mb-sm-0 {
    margin-bottom: 0rem !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 2rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 2.5rem !important;
  }

  .mb-sm-6 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-7 {
    margin-bottom: 3.5rem !important;
  }

  .mb-sm-8 {
    margin-bottom: 4rem !important;
  }

  .mb-sm-9 {
    margin-bottom: 4.5rem !important;
  }

  .mb-sm-10 {
    margin-bottom: 5rem !important;
  }

  .pt-sm-0 {
    padding-top: 0rem !important;
  }

  .pt-sm-1 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-2 {
    padding-top: 1rem !important;
  }

  .pt-sm-3 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-4 {
    padding-top: 2rem !important;
  }

  .pt-sm-5 {
    padding-top: 2.5rem !important;
  }

  .pt-sm-6 {
    padding-top: 3rem !important;
  }

  .pt-sm-7 {
    padding-top: 3.5rem !important;
  }

  .pt-sm-8 {
    padding-top: 4rem !important;
  }

  .pt-sm-9 {
    padding-top: 4.5rem !important;
  }

  .pt-sm-10 {
    padding-top: 5rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0rem !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 2rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 2.5rem !important;
  }

  .pb-sm-6 {
    padding-bottom: 3rem !important;
  }

  .pb-sm-7 {
    padding-bottom: 3.5rem !important;
  }

  .pb-sm-8 {
    padding-bottom: 4rem !important;
  }

  .pb-sm-9 {
    padding-bottom: 4.5rem !important;
  }

  .pb-sm-10 {
    padding-bottom: 5rem !important;
  }
}
@media (min-width: 898px) {
  .mt-md-0 {
    margin-top: 0rem !important;
  }

  .mt-md-1 {
    margin-top: 0.5rem !important;
  }

  .mt-md-2 {
    margin-top: 1rem !important;
  }

  .mt-md-3 {
    margin-top: 1.5rem !important;
  }

  .mt-md-4 {
    margin-top: 2rem !important;
  }

  .mt-md-5 {
    margin-top: 2.5rem !important;
  }

  .mt-md-6 {
    margin-top: 3rem !important;
  }

  .mt-md-7 {
    margin-top: 3.5rem !important;
  }

  .mt-md-8 {
    margin-top: 4rem !important;
  }

  .mt-md-9 {
    margin-top: 4.5rem !important;
  }

  .mt-md-10 {
    margin-top: 5rem !important;
  }

  .mb-md-0 {
    margin-bottom: 0rem !important;
  }

  .mb-md-1 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-2 {
    margin-bottom: 1rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-4 {
    margin-bottom: 2rem !important;
  }

  .mb-md-5 {
    margin-bottom: 2.5rem !important;
  }

  .mb-md-6 {
    margin-bottom: 3rem !important;
  }

  .mb-md-7 {
    margin-bottom: 3.5rem !important;
  }

  .mb-md-8 {
    margin-bottom: 4rem !important;
  }

  .mb-md-9 {
    margin-bottom: 4.5rem !important;
  }

  .mb-md-10 {
    margin-bottom: 5rem !important;
  }

  .pt-md-0 {
    padding-top: 0rem !important;
  }

  .pt-md-1 {
    padding-top: 0.5rem !important;
  }

  .pt-md-2 {
    padding-top: 1rem !important;
  }

  .pt-md-3 {
    padding-top: 1.5rem !important;
  }

  .pt-md-4 {
    padding-top: 2rem !important;
  }

  .pt-md-5 {
    padding-top: 2.5rem !important;
  }

  .pt-md-6 {
    padding-top: 3rem !important;
  }

  .pt-md-7 {
    padding-top: 3.5rem !important;
  }

  .pt-md-8 {
    padding-top: 4rem !important;
  }

  .pt-md-9 {
    padding-top: 4.5rem !important;
  }

  .pt-md-10 {
    padding-top: 5rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0rem !important;
  }

  .pb-md-1 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-2 {
    padding-bottom: 1rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-4 {
    padding-bottom: 2rem !important;
  }

  .pb-md-5 {
    padding-bottom: 2.5rem !important;
  }

  .pb-md-6 {
    padding-bottom: 3rem !important;
  }

  .pb-md-7 {
    padding-bottom: 3.5rem !important;
  }

  .pb-md-8 {
    padding-bottom: 4rem !important;
  }

  .pb-md-9 {
    padding-bottom: 4.5rem !important;
  }

  .pb-md-10 {
    padding-bottom: 5rem !important;
  }
}
@media (min-width: 992px) {
  .mt-lg-0 {
    margin-top: 0rem !important;
  }

  .mt-lg-1 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-2 {
    margin-top: 1rem !important;
  }

  .mt-lg-3 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-4 {
    margin-top: 2rem !important;
  }

  .mt-lg-5 {
    margin-top: 2.5rem !important;
  }

  .mt-lg-6 {
    margin-top: 3rem !important;
  }

  .mt-lg-7 {
    margin-top: 3.5rem !important;
  }

  .mt-lg-8 {
    margin-top: 4rem !important;
  }

  .mt-lg-9 {
    margin-top: 4.5rem !important;
  }

  .mt-lg-10 {
    margin-top: 5rem !important;
  }

  .mb-lg-0 {
    margin-bottom: 0rem !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 2rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 2.5rem !important;
  }

  .mb-lg-6 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-7 {
    margin-bottom: 3.5rem !important;
  }

  .mb-lg-8 {
    margin-bottom: 4rem !important;
  }

  .mb-lg-9 {
    margin-bottom: 4.5rem !important;
  }

  .mb-lg-10 {
    margin-bottom: 5rem !important;
  }

  .pt-lg-0 {
    padding-top: 0rem !important;
  }

  .pt-lg-1 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-2 {
    padding-top: 1rem !important;
  }

  .pt-lg-3 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-4 {
    padding-top: 2rem !important;
  }

  .pt-lg-5 {
    padding-top: 2.5rem !important;
  }

  .pt-lg-6 {
    padding-top: 3rem !important;
  }

  .pt-lg-7 {
    padding-top: 3.5rem !important;
  }

  .pt-lg-8 {
    padding-top: 4rem !important;
  }

  .pt-lg-9 {
    padding-top: 4.5rem !important;
  }

  .pt-lg-10 {
    padding-top: 5rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0rem !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 2rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 2.5rem !important;
  }

  .pb-lg-6 {
    padding-bottom: 3rem !important;
  }

  .pb-lg-7 {
    padding-bottom: 3.5rem !important;
  }

  .pb-lg-8 {
    padding-bottom: 4rem !important;
  }

  .pb-lg-9 {
    padding-bottom: 4.5rem !important;
  }

  .pb-lg-10 {
    padding-bottom: 5rem !important;
  }

  .ml-lg-0 {
    margin-left: 0rem !important;
  }

  .mr-lg-0 {
    margin-right: 0rem !important;
  }

  .pl-lg-0 {
    padding-left: 0rem !important;
  }

  .pr-lg-0 {
    padding-right: 0rem !important;
  }

  .ml-lg-1 {
    margin-left: 0.5rem !important;
  }

  .mr-lg-1 {
    margin-right: 0.5rem !important;
  }

  .pl-lg-1 {
    padding-left: 0.5rem !important;
  }

  .pr-lg-1 {
    padding-right: 0.5rem !important;
  }

  .ml-lg-2 {
    margin-left: 1rem !important;
  }

  .mr-lg-2 {
    margin-right: 1rem !important;
  }

  .pl-lg-2 {
    padding-left: 1rem !important;
  }

  .pr-lg-2 {
    padding-right: 1rem !important;
  }

  .ml-lg-3 {
    margin-left: 1.5rem !important;
  }

  .mr-lg-3 {
    margin-right: 1.5rem !important;
  }

  .pl-lg-3 {
    padding-left: 1.5rem !important;
  }

  .pr-lg-3 {
    padding-right: 1.5rem !important;
  }

  .ml-lg-4 {
    margin-left: 2rem !important;
  }

  .mr-lg-4 {
    margin-right: 2rem !important;
  }

  .pl-lg-4 {
    padding-left: 2rem !important;
  }

  .pr-lg-4 {
    padding-right: 2rem !important;
  }

  .ml-lg-5 {
    margin-left: 2.5rem !important;
  }

  .mr-lg-5 {
    margin-right: 2.5rem !important;
  }

  .pl-lg-5 {
    padding-left: 2.5rem !important;
  }

  .pr-lg-5 {
    padding-right: 2.5rem !important;
  }

  .ml-lg-6 {
    margin-left: 3rem !important;
  }

  .mr-lg-6 {
    margin-right: 3rem !important;
  }

  .pl-lg-6 {
    padding-left: 3rem !important;
  }

  .pr-lg-6 {
    padding-right: 3rem !important;
  }

  .ml-lg-7 {
    margin-left: 3.5rem !important;
  }

  .mr-lg-7 {
    margin-right: 3.5rem !important;
  }

  .pl-lg-7 {
    padding-left: 3.5rem !important;
  }

  .pr-lg-7 {
    padding-right: 3.5rem !important;
  }

  .ml-lg-8 {
    margin-left: 4rem !important;
  }

  .mr-lg-8 {
    margin-right: 4rem !important;
  }

  .pl-lg-8 {
    padding-left: 4rem !important;
  }

  .pr-lg-8 {
    padding-right: 4rem !important;
  }

  .ml-lg-9 {
    margin-left: 4.5rem !important;
  }

  .mr-lg-9 {
    margin-right: 4.5rem !important;
  }

  .pl-lg-9 {
    padding-left: 4.5rem !important;
  }

  .pr-lg-9 {
    padding-right: 4.5rem !important;
  }

  .ml-lg-10 {
    margin-left: 5rem !important;
  }

  .mr-lg-10 {
    margin-right: 5rem !important;
  }

  .pl-lg-10 {
    padding-left: 5rem !important;
  }

  .pr-lg-10 {
    padding-right: 5rem !important;
  }
}
@media (min-width: 1200px) {
  .mt-xl-0 {
    margin-top: 0rem !important;
  }

  .mt-xl-1 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-2 {
    margin-top: 1rem !important;
  }

  .mt-xl-3 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-4 {
    margin-top: 2rem !important;
  }

  .mt-xl-5 {
    margin-top: 2.5rem !important;
  }

  .mt-xl-6 {
    margin-top: 3rem !important;
  }

  .mt-xl-7 {
    margin-top: 3.5rem !important;
  }

  .mt-xl-8 {
    margin-top: 4rem !important;
  }

  .mt-xl-9 {
    margin-top: 4.5rem !important;
  }

  .mt-xl-10 {
    margin-top: 5rem !important;
  }

  .mb-xl-0 {
    margin-bottom: 0rem !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 2rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 2.5rem !important;
  }

  .mb-xl-6 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-7 {
    margin-bottom: 3.5rem !important;
  }

  .mb-xl-8 {
    margin-bottom: 4rem !important;
  }

  .mb-xl-9 {
    margin-bottom: 4.5rem !important;
  }

  .mb-xl-10 {
    margin-bottom: 5rem !important;
  }
}
@media (min-width: 992px) {
  .ml-lg-auto {
    margin-left: auto !important;
  }

  .mr-lg-auto {
    margin-right: auto !important;
  }

  .mx-lg-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (min-width: 898px) {
  .ml-md-auto {
    margin-left: auto !important;
  }

  .mr-md-auto {
    margin-right: auto !important;
  }

  .mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/*----------------------------------------
    Typography
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p {

}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-h1,
.heading-h2,
.heading-h3,
.heading-h4,
.heading-h5,
.heading-h6 {
  font-family: var(--h-font-family);
  font-weight: var(--h-font-weight);
  color: var(--h-color);
  letter-spacing: var(--h-letter-spacing);
  text-transform: var(--h-text-transform);
  margin: var(--h-margin);
}

  .footer h1,
  .footer h2,
  .footer h3,
  .footer h4,
  .footer h5,
  .footer h6,
  .footer .heading-h1,
  .footer .heading-h2,
  .footer .heading-h3,
  .footer .heading-h4,
  .footer .heading-h5,
  .footer .heading-h6 {
    font-family: var(--footer-h-font-family);
    font-weight: var(--footer-h-font-weight);
    color: var(--footer-h-color);
    letter-spacing: var(--footer-h-letter-spacing);
    text-transform: var(--footer-h-text-transform);
    margin: var(--footer-h-margin);
  }

h1,
.heading-h1 {
  font-size: var(--h1-font-size);
}

h2,
.heading-h2 {
  font-size: var(--h2-font-size);
}

h3,
.heading-h3 {
  font-size: var(--h3-font-size);
}

h4,
.heading-h4 {
  font-size: var(--h4-font-size);
}

h5,
.heading-h5 {
  font-size: var(--h5-font-size);
}

h6,
.heading-h6 {
  font-size: var(--h6-font-size);
}


@media (max-width:897px){
  h1,
  .heading-h1 {
    font-size: var(--h1-mobile-font-size);
  }

  h2,
  .heading-h2 {
    font-size: var(--h2-mobile-font-size);
  }

  h3,
  .heading-h3 {
    font-size: var(--h3-mobile-font-size);
  }

  h4,
  .heading-h4 {
    font-size: var(--h4-mobile-font-size);
  }

  h5,
  .heading-h5 {
    font-size: var(--h5-mobile-font-size);
  }

  h6,
  .heading-h6 {
    font-size: var(--h6-mobile-font-size);
  }
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.heading-h1 a,
.heading-h2 a,
.heading-h3 a,
.heading-h4 a,
.heading-h5 a,
.heading-h6 a {
  float: right;
  color: inherit;
  font-weight: 400;
}

h1 a,
.heading-h1 a {
  font-size: calc(var(--h1-font-size) - 0.3rem);
}

h2 a,
.heading-h2 a {
  font-size: calc(var(--h2-font-size) - 0.3rem);
}

h3 a,
.heading-h3 a {
  font-size: calc(var(--h3-font-size) - 0.3rem);
}

h4 a,
.heading-h4 a {
  font-size: calc(var(--h4-font-size) - 0.3rem);
}

h5 a,
.heading-h5 a {
  font-size: calc(var(--h5-font-size) - 0.3rem);
}

h6 a,
.heading-h6 a {
  font-size: calc(var(--h6-font-size) - 0.3rem);
}


@media (max-width:897px){
  h1 a,
  .heading-h1 a {
    font-size: calc(var(--h1-mobile-font-size) - 0.2rem);
  }

  h2 a,
  .heading-h2 a {
    font-size: calc(var(--h2-mobile-font-size) - 0.2rem);
  }

  h3 a,
  .heading-h3 a {
    font-size: calc(var(--3-mobile-font-size) - 0.2rem);
  }

  h4 a,
  .heading-h4 a {
    font-size: calc(var(--h4-mobile-font-size) - 0.2rem);
  }

  h5 a,
  .heading-h5 a {
    font-size: calc(var(--h5-mobile-font-size) - 0.2rem);
  }

  h6 a,
  .heading-h6 a {
    font-size: calc(var(--h6-mobile-font-size) - 0.2rem);
  }
}

@media (min-width: 898px) {
  .heading-container {
    padding-right: 0px;
    padding-left: 0px;
  }
  .container-fluid &gt; .heading-container {
    max-width: inherit;
  }
}

.heading-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: var(--heading-justify-content);
      -ms-flex-pack: var(--heading-justify-content);
          justify-content: var(--heading-justify-content);
  flex-direction: var(--heading-flex-direction); 
  background-color: var(--heading-bg-color);
  margin-bottom: var(--heading-margin-bottom); 
  padding-top: var(--heading-padding-top);
  padding-right: var(--heading-padding-right);
  padding-bottom: var(--heading-padding-bottom);
  padding-left: var(--heading-padding-left); 
  border-color: var(--heading-border-color);
  border-style: var(--heading-border-style);
  border-top-width: var(--heading-border-top-width);
  border-right-width: var(--heading-border-right-width);
  border-bottom-width: var(--heading-border-bottom-width);
  border-left-width: var(--heading-border-left-width);
  border-top-left-radius: var(--heading-border-top-left-radius);
  border-top-right-radius: var(--heading-border-top-right-radius);
  border-bottom-right-radius: var(--heading-border-bottom-right-radius);
  border-bottom-left-radius: var(--heading-border-bottom-left-radius);
}
.page-products .heading-wrapper {
  -webkit-box-pack: var(--page-products-heading-justify-content);
      -ms-flex-pack: var(--page-products-heading-justify-content);
          justify-content: var(--page-products-heading-justify-content);
}
.page-product .heading-wrapper {
  -webkit-box-pack: var(--page-product-heading-justify-content);
      -ms-flex-pack: var(--page-product-heading-justify-content);
          justify-content: var(--page-product-heading-justify-content);
}
.widget .heading-wrapper {
  -webkit-box-pack: var(--widget-heading-justify-content);
      -ms-flex-pack: var(--widget-heading-justify-content);
          justify-content: var(--widget-heading-justify-content);
}
.container-2-3 .heading-wrapper {
  margin-bottom: var(--widget-heading-margin-bottom);
}
@media (max-width: 479px) {
  .heading-wrapper {
    margin-bottom: calc(var(--heading-margin-bottom) - 1rem); 
  }
}

.heading-wrapper .heading-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  background-color: var(--heading-title-bg-color);
  text-transform: var(--heading-title-text-transform);
  letter-spacing: var(--heading-title-letter-spacing);
  font-weight: var(--heading-title-font-weight);
  margin: var(--heading-title-margin);
  padding-top: var(--heading-title-padding-top);
  padding-right: var(--heading-title-padding-right);
  padding-bottom: var(--heading-title-padding-bottom);
  padding-left: var(--heading-title-padding-left);
}
.heading-wrapper .heading-title.heading-h1 {
  font-size: var(--heading-title-h1-font-size);
}
.page-products .heading-wrapper .heading-title {
  text-transform: var(--page-products-heading-title-text-transform);
  letter-spacing: var(--page-products-heading-title-letter-spacing);
  font-weight: var(--page-products-heading-title-font-weight);
}
.page-products .heading-wrapper .heading-title.heading-h1 {
  font-size: var(--page-products-heading-title-h1-font-size);
}
.page-product .heading-wrapper .heading-title {
  text-transform: var(--page-product-heading-title-text-transform);
  letter-spacing: var(--page-product-heading-title-letter-spacing);
  font-weight: var(--page-product-heading-title-font-weight);
}
.page-product .heading-wrapper .heading-title.heading-h1 {
  font-size: var(--page-product-heading-title-h1-font-size);
}

.mfp-popup-product .heading-wrapper .heading-title {
  background-color: #fff;
}
.mfp-popup-product .heading-wrapper .heading-title.heading-h1 {
  font-size: 1.8rem;
}

.widget-products .heading-wrapper:not(.heading-wrapper-center) .heading-title {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.swiper-nav-top .heading-wrapper:not(.heading-wrapper-center) .heading-title {
  margin-right: 60px;
}
  .heading-wrapper.heading-wrapper-empty .heading-title-empty {
    margin: var(--heading-title-margin);
    padding-top: var(--heading-title-padding-top);
    padding-right: var(--heading-title-padding-right);
    padding-bottom: var(--heading-title-padding-bottom);
    padding-left: var(--heading-title-padding-left);
  }

.heading-wrapper:not(.heading-wrapper-plain)::before {
  position: absolute;
  content: "";
  background-color: var(--heading-before-bg-color);
  top: var(--heading-before-top);
  left: var(--heading-before-left);
  bottom: var(--heading-before-bottom);
  right: var(--heading-before-right);
  width: var(--heading-before-width);
  height: var(--heading-before-height);
  z-index: 0;
}

.heading-wrapper:not(.heading-wrapper-plain) .heading-title::before {
  position: absolute;
  content: "";
  background-color: var(--heading-title-before-bg-color);
  right: var(--heading-title-before-right);
  bottom: var(--heading-title-before-bottom);
  left: var(--heading-title-before-left);
  width: var(--heading-title-before-width);
  height: var(--heading-title-before-height);
  border-radius: var(--heading-title-before-border-radius);
}
.heading-wrapper.heading-wrapper-center::before {
  background-color: var(--heading-center-before-bg-color);
}

.heading-wrapper a.heading-ahref {
  font-size: var(--heading-link-font-size);
  text-transform: var(--heading-link-text-transform);
  letter-spacing: var(--heading-link-letter-spacing);
  color: var(--heading-link-color);
  margin: 0;
  padding: 0;
  margin-left: var(--heading-link-margin-left);
}
  .swiper-nav-top .heading-wrapper a.heading-ahref {
     margin-right: 6.5rem;
  }
.heading-wrapper a:hover {
  color: var(--heading-link-hover-color);
}
.heading-wrapper a.btn {
  white-space: nowrap;
  overflow: inherit;
  padding: 0;
}

.heading-paragraph {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 1.5rem 0;
}
  .heading-paragraph.heading-paragraph-center {
     text-align: center;
  }

.heading-paragraph p {

}

.widget-swiper.swiper-nav-top .heading-wrapper a {
  margin-right: 6.5rem;
}

.heading-wrapper.heading-wrapper-empty .heading-title {
  background-color: transparent;
}

.heading-wrapper .heading-wrapper-left {
  margin-left: 0.6rem;
}

.heading-wrapper.heading-wrapper-center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
  .heading-wrapper.heading-wrapper-center a.heading-ahref {
    margin-top: 0.5rem;
    margin-left: unset;
  }
  .widget-swiper.swiper-nav-top .heading-wrapper.heading-wrapper-center a.heading-ahref {
    margin-right: unset;
  }

.heading-wrapper .heading-wrapper-right {
  margin-left: auto;
  margin-right: 0.6rem;
}

.heading-wrapper.heading-wrapper-empty:not(.heading-wrapper-plain) .heading-title::before {
  height: 0px;
}

.heading-wrapper.heading-wrapper-plain {

}

.heading-wrapper.heading-wrapper-plain .heading-title {

}

.heading-wrapper.heading-wrapper-plain a {

}

@media (max-width: 897px) {
  .product-bundel .heading-wrapper .heading-wrapper-left {
    display: none;
  }

  .product-bundel .heading-wrapper .heading-wrapper-right {
    display: none;
  }
}

p {
  margin: 0px;
  padding: 0px;
}

.typo-grid {
  margin-bottom: 4.7rem;
}

blockquote {
  margin: 0;
}

.list-style-none {
  list-style: none;
}

.list-type-check li {
  position: relative;
  padding-left: 2rem;
  line-height: 2;
}
.list-type-check li::before {
  position: absolute;
  display: block;
  left: 0;
  top: 1px;
  content: "";
  font-family: "elexio";
  font-weight: 600;
  font-size: 1.3rem;
}

.list-circle li {
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.list-circle i {
  margin-right: 1.2rem;
  width: 4rem;
  height: 4rem;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  text-align: center;
  line-height: 3.8rem;
  font-size: 1.1rem;
}

/*----------------------------------------
    Helper Class
-----------------------------------------*/
.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-normal {
  text-transform: none !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

@media (min-width: 576px) {
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
}

.flex-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 !important;
          flex: 1 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.w-1-perc {
  width: 1% !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.p-sticky {
  position: sticky !important;
}

.p-relative {
  position: relative !important;
}

.x-0 {
  left: 0% !important;
  -webkit-transform: translateX(-0%) !important;
          transform: translateX(-0%) !important;
}
.x-50 {
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}
.x-100 {
  left: 100% !important;
  -webkit-transform: translateX(-100%) !important;
          transform: translateX(-100%) !important;
}

.x-0.y-0 {
  -webkit-transform: translate(-0%, -0%) !important;
          transform: translate(-0%, -0%) !important;
}
.x-0.y-50 {
  -webkit-transform: translate(-0%, -50%) !important;
          transform: translate(-0%, -50%) !important;
}
.x-0.y-100 {
  -webkit-transform: translate(-0%, -100%) !important;
          transform: translate(-0%, -100%) !important;
}
.x-50.y-0 {
  -webkit-transform: translate(-50%, -0%) !important;
          transform: translate(-50%, -0%) !important;
}
.x-50.y-50 {
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}
.x-50.y-100 {
  -webkit-transform: translate(-50%, -100%) !important;
          transform: translate(-50%, -100%) !important;
}
.x-100.y-0 {
  -webkit-transform: translate(-100%, -0%) !important;
          transform: translate(-100%, -0%) !important;
}
.x-100.y-50 {
  -webkit-transform: translate(-100%, -50%) !important;
          transform: translate(-100%, -50%) !important;
}
.x-100.y-100 {
  -webkit-transform: translate(-100%, -100%) !important;
          transform: translate(-100%, -100%) !important;
}

.y-0 {
  top: 0% !important;
  -webkit-transform: translateY(-0%) !important;
          transform: translateY(-0%) !important;
}
.y-50 {
  top: 50% !important;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}
.y-100 {
  top: 100% !important;
  -webkit-transform: translateY(-100%) !important;
          transform: translateY(-100%) !important;
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 898px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (max-width: 1099px) {
  .d-xl-show {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .d-lg-show {
    display: none !important;
  }
}
@media (max-width: 897px) {
  .d-md-show {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .d-sm-show {
    display: none !important;
  }
}
@media (max-width: 479px) {
  .d-xs-none {
    display: block !important;
  }

  .d-xs-show {
    display: none !important;
  }

  .d-xs-block {
    display: block !important;
  }

  .d-xs-inline-block {
    display: inline-block !important;
  }
}
.font-weight-bold {
  font-weight: 600 !important;
}

.font-weight-bolder {
  font-weight: 700 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-size-md {
  font-size: 1.3rem !important;
}

.font-size-sm {
  font-size: 1.2rem !important;
}

.font-size-normal {
  font-size: 1.4rem !important;
}

.font-size-lg {
  font-size: 2.2rem !important;
}

.font-size-xl {
  font-size: 2.4rem !important;
}

.font-primary {
  font-family: Poppins, sans-serif !important;
}

.font-secondary {
  font-family: "Open Sans", sans-serif !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-white {
  color: #fff !important;
}

.text-light {
  color: #999 !important;
}

.text-lighter {
  color: #ccc !important;
}

.text-primary {
  color: #336699 !important;
}

.text-secondary {
  color: #f93 !important;
}

.text-dark {
  color: #333 !important;
}

.text-default {
  color: #666 !important;
}

.text-hover-underline::after {
  display: block;
  margin-top: 1px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  content: "";
}
.text-hover-underline:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.ls-25 {
  letter-spacing: -0.025em !important;
}

.ls-15 {
  letter-spacing: -0.015em !important;
}

.ls-10 {
  letter-spacing: -0.01em !important;
}

.ls-50 {
  letter-spacing: -0.05em !important;
}

.ls-normal {
  letter-spacing: 0 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-dark {
  background-color: #333 !important;
}

.bg-primary {
  background-color: var(--alg-bg-color-1) !important;
}

.bg-secondary {
  background-color: var(--alg-bg-color-2) !important;
}

.bg-grey {
  background-color: #f5f5f5 !important;
}

.bg-image {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.br-lg {
  border-radius: 1.3rem !important;
  overflow: hidden !important;
}

.br-sm {
  border-radius: 0.5rem !important;
  overflow: hidden !important;
}

.br-xs {
  border-radius: 0.3rem !important;
  overflow: hidden !important;
}

.br-50 {
  border-radius: 50% !important;
  overflow: hidden !important;
}

.border-no {
  border: none !important;
}

.bb-no {
  border-bottom: none !important;
}

.bt-no {
  border-top: none !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-2 {
  line-height: 2 !important;
}

.order-reverse {
  -webkit-box-ordinal-group: 0 !important;
      -ms-flex-order: -1 !important;
          order: -1 !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.after-none::after {
  display: none !important;
}

.before-none::before {
  display: none !important;
}

/* 4. Plugins */
/* -------------------------------------------
    Swiper Container
---------------------------------------------- */
.swiper {
  position: relative;
}
.swiper &gt; .swiper-container {
  position: static;
}
.swiper &gt; .swiper-container &gt; .swiper-pagination {
  bottom: -4.5rem;
}

.swiper &gt; .swiper-container.brands-swiper {
  padding: var(--swiper-container-brands-padding);
}

.swiper-container {

}

.swiper-pagination {
  position: static;
  margin-top: 1.5rem;
  opacity: 0;
}
.swiper-pagination.swiper-pagination__inside {
  position: absolute;
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: var(--swiper-pagination-bg-color);
  border: 1px solid var(--swiper-pagination-border-color);
  opacity: 1;
}
  .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    background-color: var(--swiper-pagination-dynamic-bg-color);
    border: 1px solid var(--swiper-pagination-dynamic-border-color);
  }
.swiper-pagination .swiper-pagination-bullet:hover {
  background-color: var(--swiper-pagination-hover-bg-color);
  border-color: var(--swiper-pagination-hover-border-color);
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--swiper-pagination-active-bg-color);
  border-color: var(--swiper-pagination-active-border-color);
}

.swiper-container-rtl .swiper-button-next::after,
.swiper-container-rtl .swiper-button-prev::after {
  content: "";
}
.swiper-container-rtl .swiper-button-next::before {
  content: "";
}
.swiper-container-rtl .swiper-button-prev::before {
  content: "";
}

.swiper-button-next,
.swiper-button-prev {
  padding: 0;
  z-index: 2;
  border: none;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
}
.swiper-button-next::before,
.swiper-button-prev::before {
  font-family: "elexio";
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  cursor: default;
  color: var(--swiper-nav-disabled-color);
  opacity: 1;
}

.swiper-button-next::before {
  content: "";
  margin-left: 3px;
}

.swiper-button-prev::before {
  content: "";
  margin-right: 3px;
}

.swiper-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
  .brands-swiper &gt; div {
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

.swiper-container:not(.swiper-container-initialized) .swiper-wrapper {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: hidden;
  width: auto;
}
.swiper-container:not(.swiper-container-initialized) .swiper-slide {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.product-wrapper .swiper-slide {
  height: unset;
}

.swiper-slide img {
  display: block;
}

.swiper-container:not(.swiper-container-initialized) .swiper-wrapper.row {
  width: calc(100% + 2rem);
}
.swiper-container:not(.swiper-container-initialized) .swiper-wrapper.gutter-no {
  width: calc(100% + 1rem);
}
.swiper-container:not(.swiper-container-initialized) .swiper-wrapper.gutter-xs {
  width: calc(100% + 2*1px);
}
.swiper-container:not(.swiper-container-initialized) .swiper-wrapper.gutter-sm {
  width: calc(100% + 2*5px);
}
.swiper-container:not(.swiper-container-initialized) .swiper-wrapper.gutter-md {
  width: calc(100% + 2*10px);
}
.swiper-container:not(.swiper-container-initialized) .swiper-wrapper.gutter-lg {
  width: calc(100% + 2*15px);
}
.product-gallery .swiper-container:not(.swiper-container-initialized) .swiper-wrapper.gutter-no {
  width: calc(100%);
}
.widget-products .swiper-container:not(.swiper-container-initialized) .swiper-wrapper.gutter-no {
  width: calc(100%);
}

.sellingpoints-wrapper .swiper-container:not(.swiper-container-initialized) .swiper-wrapper li:not(:first-child) {
  display: none;
}
.header .sellingpoints-wrapper .swiper-container:not(.swiper-container-initialized) .swiper-wrapper li {
  opacity: 0;
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  font-size: 20px;
  font-weight: 400;
  color: var(--swiper-nav-color);
}
.swiper-container .swiper-button-prev.swiper-button-disabled,
.swiper-container .swiper-button-next.swiper-button-disabled {
  color: var(--swiper-nav-disabled-color);
  pointer-events: none;
}
.product-images-wrap.swiper-container .swiper-button-prev.swiper-button-disabled,
.product-images-wrap.swiper-container .swiper-button-next.swiper-button-disabled {
  opacity: 0 !important;
}
.swiper-container .swiper-button-prev {
  left: -40px;
}
.swiper-container .swiper-button-next {
  right: -40px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  margin: 5px;
  width: var(--swiper-pagination-width);
  height: var(--swiper-pagination-height);
  border-radius: var(--swiper-pagination-border-radius);
}
  .swiper-container .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    margin: 5px 2px;
  }
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--swiper-pagination-active-bg-color);
  border-color: var(--swiper-pagination-active-border-color);
}

@media (max-width: 1300px) {
  .swiper-container .swiper-button-prev {
    left: 20px;
  }
  .swiper-container .swiper-button-next {
    right: 20px;
  }
}
.nav-inner &gt; .swiper-button-prev,
.nav-inner &gt; .swiper-button-next {
  opacity: 1;
  visibility: visible;

  background-color: var(--swiper-nav-inner-bg-color);
  border-width: var(--swiper-nav-inner-border-width);
  border-style: var(--swiper-nav-inner-border-style);
  border-color: var(--swiper-nav-inner-border-color);
  color: var(--swiper-nav-inner-color);
  font-size: var(--swiper-nav-inner-font-size);
  height: var(--swiper-nav-inner-height);
  width: var(--swiper-nav-inner-width);

  -webkit-box-shadow: var(--swiper-nav-inner-box-shadow);
  -moz-box-shadow: var(--swiper-nav-inner-box-shadow);
  -o-box-shadow: var(--swiper-nav-inner-box-shadow);
  box-shadow: var(--swiper-nav-inner-box-shadow);
  border-radius: var(--swiper-nav-inner-border-radius);
}
.nav-inner.nav-inner-hover &gt; .swiper-button-prev,
.nav-inner.nav-inner-hover &gt; .swiper-button-next {
  opacity: 0;
  visibility: hidden;
}
.nav-inner &gt; .swiper-button-prev {
  left: 0.5rem;
}
.nav-inner &gt; .swiper-button-next {
  right: 0.5rem;
}
.nav-inner.nav-inner-show &gt; .swiper-button-prev,
.nav-inner.nav-inner-show &gt; .swiper-button-next {
  opacity: 1;
  visibility: visible;
}
.swiper-container-initialized.nav-inner:hover &gt; .swiper-button-prev,
.swiper-container-initialized.nav-inner:hover &gt; .swiper-button-next {
  opacity: 1;
  visibility: visible;
}

.nav-inner:hover &gt; .swiper-button-prev {
  left: 1.5rem;
}
.nav-inner:hover &gt; .swiper-button-next {
  right: 1.5rem;
}

.nav-inner &gt; .swiper-button-prev:hover,
.nav-inner &gt; .swiper-button-next:hover {
  background-color: var(--swiper-nav-inner-hover-bg-color);
  border-width: var(--swiper-nav-inner-hover-border-width);
  border-style: var(--swiper-nav-inner-hover-border-style);
  border-color: var(--swiper-nav-inner-hover-border-color);
  color: var(--swiper-nav-inner-hover-color);
}

.nav-top &gt; .swiper-button-next,
.nav-top &gt; .swiper-button-prev {
  position: absolute;
  width: 15px;
  top: -4.3rem;
  left: auto;
  color: var(--swiper-nav-color);
  font-size: 1.4rem;
  font-weight: 400;
}
.nav-top &gt; .swiper-button-next:not(.swiper-button-disabled):hover, .nav-top &gt; .swiper-button-next:not(.swiper-button-disabled):active, .nav-top &gt; .swiper-button-next:not(.swiper-button-disabled):focus,
.nav-top &gt; .swiper-button-prev:not(.swiper-button-disabled):hover,
.nav-top &gt; .swiper-button-prev:not(.swiper-button-disabled):active,
.nav-top &gt; .swiper-button-prev:not(.swiper-button-disabled):focus {
  background-color: var(--swiper-nav-hover-bg-color);
  border-color: var(--swiper-nav-border-hover-color);
  color: var(--swiper-nav-hover-color);
}
.nav-top &gt; .swiper-button-next.swiper-button-disabled,
.nav-top &gt; .swiper-button-prev.swiper-button-disabled {
  color: var(--swiper-nav-disabled-color);
}
.nav-top &gt; .swiper-button-next {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  right: 3.7rem;
}
.nav-top &gt; .swiper-button-prev {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  right: 3.5rem;
}

.nav-top .swiper-button-next,
.nav-top .swiper-button-prev {
  top: calc(-4.4rem - var(--heading-before-height) - var(--heading-before-height));
  right: -0.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: var(--swiper-nav-bg-color);
  color: var(--swiper-nav-color);
  border-width: var(--swiper-nav-border-width);
  border-style: var(--swiper-nav-border-style);
  border-color: var(--swiper-nav-border-color);
  width: var(--swiper-nav-width);
  height: var(--swiper-nav-height); 
  border-radius: var(--swiper-nav-border-radius); 
}
@media (max-width: 897px) {
  .nav-top .swiper-button-next,
  .nav-top .swiper-button-prev {
    top: -4.2rem;
    font-size: 2rem;
  }
}
.nav-top .swiper-button-prev {
  right: 1.4rem;
}
.nav-top .swiper-button-next {
  right: 1.2rem;
}
@media (max-width: 897px) {
  .nav-top .swiper-button-prev {

  }
  .nav-top .swiper-button-next {

  }
}

.nav-right .swiper-button-prev,
.nav-right .swiper-button-next {
  position: absolute;
  right: 3rem;
  top: auto;
  bottom: 2.8rem;
  left: auto;
}
.nav-right .swiper-button-prev {
  right: 5.5rem;
}

.pg-white &gt; .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  border-color: #fff;
  opacity: 0.8;
}
.pg-white &gt; .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #336699;
  border-color: #336699;
  opacity: 1;
}

.pg-grey &gt; .swiper-pagination .swiper-pagination-bullet {
  background-color: #eee;
  border-color: #eee;
}
.pg-grey &gt; .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #336699;
  border-color: #336699;
}

.swiper-container &gt; .swiper-pagination .swiper-pagination-bullet {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.swiper-container &gt; .swiper-pagination .swiper-pagination-bullet-active {
  width: var(--swiper-pagination-active-width);
  border-radius: var(--swiper-pagination-active-border-radius);
}
  .swiper-container &gt; .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    width: 9px;
    height: 9px;
  }

.pg-inner .swiper-pagination {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.pg-right .swiper-pagination {
  position: absolute;
  bottom: 4.2rem;
  right: 3rem;
  left: auto;
  width: unset;
}

.swiper-img-dots {
  z-index: 1000;
}
.swiper-img-dots a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin: 0 1.5rem 1rem;
  border-radius: 50%;
  border: 3px solid transparent;
  -webkit-box-shadow: 0 0 0 2px #ccc;
          box-shadow: 0 0 0 2px #ccc;
  overflow: hidden;
  -webkit-transition: padding 0.4s, -webkit-box-shadow 0.4s;
  transition: padding 0.4s, -webkit-box-shadow 0.4s;
  transition: padding 0.4s, box-shadow 0.4s;
  transition: padding 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
}
.swiper-img-dots a.active, .swiper-img-dots a:hover {
  -webkit-box-shadow: 0 0 0 2px #336699;
          box-shadow: 0 0 0 2px #336699;
}
.swiper-img-dots a img {
  border-radius: 50%;
}

.brands-swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; 
  -ms-flex-align: center;
      -webkit-align-items: center;
            align-items: center;  
  background-color: var(--brands-slider-item-bg-color);
  border-style: var(--brands-slider-item-border-style);
  border-color: var(--brands-slider-item-border-color);
  border-top-width: var(--brands-slider-item-border-top-width);
  border-right-width: var(--brands-slider-item-border-right-width);
  border-bottom-width: var(--brands-slider-item-border-bottom-width);
  border-left-width: var(--brands-slider-item-border-left-width); 
  border-radius: var(--brands-slider-item-border-radius);
  padding: var(--brands-slider-item-padding);
  margin: 0 1rem 1.5rem 1rem;
}
.brands-swiper .swiper-slide:hover {
  box-shadow: var(--brands-slider-item-hover-box-shadow);
  transform: var(--brands-slider-item-hover-transform);
}
.brands-swiper .swiper-slide a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.brands-swiper .swiper-slide img {
  width: auto;
  height: var(--brands-slider-img-height);
  object-fit: contain;
}
.brands-swiper.img-grayscale .swiper-slide img {
  filter: var(--brands-slider-img-filter);
  opacity: var(--brands-slider-img-opacity);
}
.brands-swiper.img-grayscale .swiper-slide img:hover {
  filter: var(--brands-slider-hover-img-filter);
  opacity: var(--brands-slider-hover-img-opacity);
}

.swiper-container .slide-animate {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
  will-change: filter, transform, opacity;
  opacity: 0;
}
.swiper-container .slide-animate.show-content {
  opacity: 1;
}
.swiper-container .slide-appear-animate {
  visibility: hidden;
  opacity: 0;
}
.swiper-container .slide-appear-animation-visible {
  visibility: visible;
  opacity: 1;
}

.shadow-swiper {
  margin: -20px;
  padding: 20px;
}

@media (max-width: 575px) {
  .shadow-swiper {
    margin: -15px;
    padding: 15px;
  }
}
.swiper-nav-lg &gt; .swiper-button-next,
.swiper-nav-lg &gt; .swiper-button-prev,
.swiper-nav-md &gt; .swiper-button-next,
.swiper-nav-md &gt; .swiper-button-prev {
  background-color: transparent;
  border: none;
}
.swiper-nav-lg &gt; .swiper-button-next:not(.swiper-button-disabled):hover, .swiper-nav-lg &gt; .swiper-button-next:not(.swiper-button-disabled):focus, .swiper-nav-lg &gt; .swiper-button-next:not(.swiper-button-disabled):active,
.swiper-nav-lg &gt; .swiper-button-prev:not(.swiper-button-disabled):hover,
.swiper-nav-lg &gt; .swiper-button-prev:not(.swiper-button-disabled):focus,
.swiper-nav-lg &gt; .swiper-button-prev:not(.swiper-button-disabled):active,
.swiper-nav-md &gt; .swiper-button-next:not(.swiper-button-disabled):hover,
.swiper-nav-md &gt; .swiper-button-next:not(.swiper-button-disabled):focus,
.swiper-nav-md &gt; .swiper-button-next:not(.swiper-button-disabled):active,
.swiper-nav-md &gt; .swiper-button-prev:not(.swiper-button-disabled):hover,
.swiper-nav-md &gt; .swiper-button-prev:not(.swiper-button-disabled):focus,
.swiper-nav-md &gt; .swiper-button-prev:not(.swiper-button-disabled):active {
  background-color: transparent;
  border: none;
}

.swiper-nav-lg &gt; .swiper-button-next,
.swiper-nav-lg &gt; .swiper-button-prev {
  font-size: 4.8rem;
}

.swiper-nav-md &gt; .swiper-button-next,
.swiper-nav-md &gt; .swiper-button-prev {
  font-size: 3.3rem;
}

@media (max-width: 575px) {
  .swiper-img-dots a {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.pg-show &gt; .swiper-pagination {
  display: block;
}

@media (min-width: 1200px) {
  .pg-xl-hide &gt; .swiper-pagination {
    display: none;
  }
}
@media (min-width: 1600px) {
  .pg-xxl-hide &gt; .swiper-pagination {
    display: none;
  }
}
.nav-hide &gt; .swiper-button-prev,
.nav-hide &gt; .swiper-button-next {
  display: none;
}

@media (min-width: 1200px) {
  .nav-xl-show &gt; .swiper-button-prev,
.nav-xl-show &gt; .swiper-button-next {
    display: block;
  }
}
@media (min-width: 1600px) {
  .nav-xxl-show &gt; .swiper-button-prev,
.nav-xxl-show &gt; .swiper-button-next {
    display: block;
  }
}

.swiper-container-horizontal &gt; .swiper-pagination-progressbar, .swiper-container-vertical &gt; .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  height: 4px;
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color);
  border-radius: 5rem;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-progressbar-active-bg-color);
  border-radius: 5rem;
} 

.swiper .swiper-scrollbar {
  visibility: hidden;
  opacity: 0;
}
.swiper:hover .swiper-scrollbar {
  visibility: visible;
  opacity: 1;
}

.swiper-container-horizontal &gt; .swiper-scrollbar {
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--swiper-scrollbar-bg-color);
}

.swiper-scrollbar-drag {
  background: var(--swiper-scrollbar-drag-bg-color);
}

.swiper-container-initialized .justify-content-center {
  -webkit-box-pack: inherit !important;
  -ms-flex-pack: inherit !important;
  justify-content: inherit !important;
}

.sellingpoints .swiper-vertical .swiper-slide {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.sellingpoints .swiper-vertical .swiper-slide-next {
  opacity: 0;
  transform: translateY(0px);
}
.sellingpoints .swiper-vertical .swiper-slide-duplicate-active,
.sellingpoints .swiper-vertical .swiper-slide-duplicate-next, 
.sellingpoints .swiper-vertical .swiper-slide-duplicate-prev {
  opacity: 0;
  transform: translateY(0px);
}
.sellingpoints .swiper-vertical .swiper-slide-prev {
  opacity: 0;
  transform: translateY(-2.1rem);
}
.sellingpoints .swiper-vertical .swiper-slide-active {
  opacity: 1;
  transform: translateY(0px);
}
.sellingpoints .swiper-vertical .swiper-slide {
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s,opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
}
/* -------------------------------------------
    No UiSlider
---------------------------------------------- */
html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
  right: -0.55rem;
}
.noUi-target {
  background: #ccc;
  margin: 5px 5px 5px 0px;
}

.noUi-connects {
  padding: 11.5px 0;
  top: -10px;
}

.noUi-connect {
  background: var(--form-checked-color);
  margin-top: 10px;
  height: 4px;
}

.noUi-horizontal {
  height: 4px;
  background-color: #eee;
}
.noUi-horizontal .noUi-handle {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--form-checked-color);
  top: -0.5em;
}

/* 5. Component */
/*----------------------------------------
    Accordion
-----------------------------------------*/
.accordion {
  overflow: hidden;
}
.accordion .collapsed,
.accordion .expanding {
  display: none;
}

.card-header {
  color: var(--body-color);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: inherit;
  line-height: 1.5;
}
.card-header.card-header__review {
  position: relative;
}
.card-header a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  padding: 1.4rem 5rem 1.4rem 2rem;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.card-header a.collapse {
  color: var(--body-color);
}
.card-header.card-header__review a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
  .card-header.card-header__review a.rating-reviews {
     position: relative;
     display: inline-block;
     padding: 0 !important;
  }
.card-header a::after, .card-header a::before {
  position: absolute;
  top: 50%;
  right: 2rem;
  margin-top: -0.1rem;
  font-family: "elexio";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--tab-accordion-active-color);
}
.card-header a:hover {
  color: var(--tab-accordion-hover-color);
}
.card-header a:hover::after {
  color: var(--tab-accordion-hover-color);
}

.card-header.card-header__review .product-rating { 
  margin: var(--product-single-tab-accordion-padding);
}

.accordion.accordion-plain .card-header a::after, .accordion .card-header a::before {
  content: "";
}

.expand::after, .collapse::after {
  content: "";
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.expand::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.collapse::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.card-body {
  padding: 2.2rem 2rem;
}
.card-body p {
  font-size: 1.3rem;
  line-height: 2;
}

.accordion-simple:not(.accordion-plain) .card {
  border-top: 1px solid #eee;
}
.accordion-plain .card {
    margin-bottom: 0.7rem;
}
.accordion-plain .card:last-child {
    margin-bottom: 0;
}
.accordion-simple:not(.accordion-plain) .card:last-child {
  border-bottom: 1px solid #eee;
}
.accordion-simple:not(.accordion-plain) .card-header a {
  padding-right: 0;
  padding-left: 0;
}
.accordion-simple:not(.accordion-plain) .card-body {
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
}
.accordion-plain .card-body {
  padding: 0;
}

.accordion-simple .card-header a::after, .accordion-simple .card-header a::before {

}

.accordion-simple.accordion-plus .expand::after, .accordion-simple.accordion-plus .collapse::after {

}

.accordion-boxed .card-header a {
  padding-bottom: 1.6rem;
}
.accordion-boxed .card {
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}
.accordion-boxed .card:last-child {
  border-bottom: 1px solid #eee;
}
.accordion-boxed .card-body {
  padding-top: 0.5rem;
  padding-bottom: 1.1rem;
}
.accordion-boxed.accordion-gutter-md .card {
  border: 1px solid #eee;
}
.accordion-boxed.accordion-plus .expand::after, .accordion-boxed.accordion-plus .expand::before, .accordion-boxed.accordion-plus .collapse::after, .accordion-boxed.accordion-plus .collapse::before {
  background-color: var(--tab-accordion-active-color);
}

.accordion-bg .card-header a {
  background-color: #f5f5f5;
}
.accordion-bg.accordion-primary .card-header a {
  background-color: #336699;
  color: #fff;
}
.accordion-bg.accordion-primary .card-header a::after {
  color: #fff;
}
.accordion-bg.accordion-plus .expand::before, .accordion-bg.accordion-plus .expand::after, .accordion-bg.accordion-plus .collapse::before, .accordion-bg.accordion-plus .collapse::after {
  background-color: #fff;
}

.accordion-plus .expand::before, .accordion-plus .collapse::before {
  content: "";
  width: 1px;
  height: 1rem;
  right: 2.4rem;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, background-color 0.3s;
  transition: transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
}
.accordion-plus .expand::after, .accordion-plus .collapse::after {
  content: "";
  width: 1rem;
  height: 1px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.accordion-plus .expand::before {
  background-color: #333;
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
.accordion-plus .expand::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
.accordion-plus .collapse::before {
  background-color: transparent !important;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.accordion-plus .collapse::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.accordion-plus .expand::after, .accordion-plus .collapse::after {
  font-size: 1.6rem;
  right: 2rem;
  background-color: var(--tab-accordion-active-color);
}
.accordion-plus .expand:hover::after, .accordion-plus .collapse:hover::after {
  background-color: var(--tab-accordion-hover-color);
}

.accordion-border .card-body {
  border: 1px solid #eee;
  border-top: 0;
}

.accordion-icon .card-header i {
  font-size: 1.7rem;
  margin: 0 0.8rem 0 0;
}
.accordion-icon .card-body {
  padding-top: 0.3rem;
  padding-bottom: 1.2rem;
}
.accordion-icon.accordion a {
  padding: 1.8rem 5rem 1.8rem 2rem;
  word-break: break-word;
}

.accordion-gutter-md .card:not(:first-child) {
  margin-top: 1rem;
}

@media (max-width: 375px) {
  .without-bg-section .title::before, .without-bg-section .title::after {
    content: none;
  }
}

/*---------------------
    Alert
        - Default
        - Simple Alert
        - Success Alert
        - Primary Alert
----------------------*/
.alert-rounded {
  border-radius: 0.4rem;
}

.alert {
  position: relative;
  padding: 1.4rem 3.5rem 1.4rem 2rem;
  font-size: 1.4rem;
  line-height: 1.6;
  border-left: 3px solid;
  letter-spacing: -0.003em;
  border-radius: 0 0.3rem 0.3rem 0;
  background-color: var(--alert-bg-color); /* #f6f6f6 */
  box-shadow: var(--alert-box-shadow);
}
  .alert.alert-compact {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .alert.alert-large {
    font-size: 1.6rem;
    line-height: 1.8;
  }
.alert .close-icon {
  width: 1.6rem;
  height: 1.6rem;
  vertical-align: middle;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.alert .close-icon::before {
  height: 1px;
}
.alert .close-icon::after {
  width: 1px;
}
.alert .close-icon:hover {
  -webkit-transform: rotateZ(225deg) !important;
  transform: rotateZ(225deg) !important;
}
.alert ul {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  padding-left: 3.9rem;
  list-style-type: none;
}
.alert ul li {
  position: relative;
  line-height: 1.7;
}
.alert ul li::before {
  position: absolute;
  content: "";
  font-family: "elexio";
  font-weight: 600;
  font-size: 1.3rem;
  left: -2rem;
  top: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 0.1rem;
}
  .alert ul.ul-error li::before {
    content: "";
  }
.alert ul a {
  color: inherit;
}
.alert ul a:hover {
  color: #336699;
}
.alert a:not(.btn) {
  color: inherit;
  font-weight: 600;
}
.alert a:not(.btn):hover {
  text-decoration: underline;
}

.alert .alert-title {
  display: block;
  font-size: 1.4rem;
  color: inherit;
  line-height: inherit;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  font-weight: 600;
}

.alert .progress-bar {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.btn-close .close-icon::before, .btn-close .close-icon::after {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.btn-close:hover .close-icon::before,
.btn-close:hover .close-icon::after {
  background-color: #000;
}

.alert-success {
  border-color: #799b5a;
  color: #799b5a;
}
.alert-success.alert-bg {
  background-color: #eff7e3;
  border-color: #3B753D;
}

.alert-primary {
  border-color: #336699;
  color: #336699;
}
.alert-primary.alert-bg {
  background-color: #ecf3f9;
  border-color: #336699;
}
.alert-primary .close-icon::before, .alert-primary .close-icon::after {
  background-color: #336699;
}
.alert-primary .progress-bar span {
  background-color: #336699;
}

.alert-warning {
  border-color: #ffa800;
  color: #ffa800;
}
.alert-warning.alert-bg {
  background-color: #fff6e5;
  border-color: #ffa800;
}
.alert-warning .close-icon::before, .alert-warning .close-icon::after {
  background-color: #f93;
}
.alert-warning .progress-bar span {
  background-color: #ffa800;
}

.alert-error {
  border-color: #a94442;
  color: #a94442;
}
.alert-error.alert-bg {
  background-color: #fdf0f0;
  color: #a94442;
  border-color: #a94442;
}
.alert-error .close-icon::before, .alert-error .close-icon::after {
  background-color: #a94442;
}
.alert-error .progress-bar span {
  background-color: #a94442;
}

.alert-dark {
  border-color: #333;
  color: #fff;
}
.alert-dark.alert-bg {
  background-color: #333;
}
.alert-dark .close-icon::before, .alert-dark .close-icon::after {
  background-color: #fff;
}
.alert-dark .progress-bar span {
  background-color: #333;
}

.alert-inline.alert-block {
  padding-top: 1.5rem;
  padding-bottom: 1.2rem;
}
.alert-inline.alert-block .alert-title {
  margin-right: 1rem;
}
.alert-inline.alert-block .alert-title i {
  font-size: 1.6rem;
  margin-right: 1rem;
}

.alert-icon {
  padding: 1.4rem 2.2rem 1.4rem 1.9rem;
}
.alert-icon i {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.8rem 0 0.1rem;
  font-size: 1.8rem;
  line-height: 1;
}
.alert-icon i.e-icon-cog {
  margin: 0 0.8rem 0rem 0.1rem;
}
.alert-icon i.fas, .alert-icon i.far {
  margin-bottom: 0.3rem;
  margin-left: 0.1rem;
}
.alert-icon i.e-icon-exclamation-triangle {
  font-size: 1.8rem;
}

.alert-button {
  padding: 1.2rem 1.9rem 1.9rem;
  letter-spacing: 0;
}
.alert-button .btn:not(:last-child) {
  margin-right: 0.6rem;
}
.alert-button:not(.alert-block) {
  padding: 1rem 2.2rem 1rem 1rem;
}
.alert-button:not(.alert-block) .btn {
  margin-right: 1.5rem;
}
.alert-button p {
  max-width: 49rem;
  margin-bottom: 2.2rem;
  font-size: 1.3rem;
}
.alert-button .alert-title {
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.alert-button.alert-block .btn-rounded {
  padding-left: 1.9em;
  padding-right: 1.9em;
}
.alert-button .btn-error {
  background-color: #fff;
  border-color: #fff;
  color: #6d1a17;
}

.alert-block {
  display: block;
}
.alert-block .alert-title {
  letter-spacing: -0.01em;
}
.alert-block .btn-close {
  position: absolute;
  top: 1.9rem;
  right: 1.9rem;
}
.alert-block.alert-bg .alert-title i {
  margin-right: 0.8rem;
  font-size: 1.5rem;
}

.alert-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; 
  padding: 1rem 1.5rem 1rem 1rem;
}
.alert-inline .btn-success {
  padding: 0.86em 1.37em;
  margin-right: 1.9rem;
}
.alert-inline .btn-close.btn-link {
  position: absolute;
  top: 0px;
  right: 0px;
  margin: 0 1rem 0 auto;
  padding-bottom: 0;
}
.alert-success .btn-close.btn-link i::after, .alert-success .btn-close.btn-link i::before {
  background-color: #3B753D;
}
.alert-color-inherit {
  color: inherit;
}

@media (max-width: 897px) {
  .alert.alert-product-add-cart-top {
    -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
        -ms-flex-direction: column;
    flex-direction: column;
  }
  .alert.alert-product-add-cart-top .btn {
    margin-bottom: 0.3rem;
  }
}

.summary-section {
  margin-bottom: 3.7rem;
}

/*---------------------
    UL font icon
----------------------*/
.ul-font-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--ul-font-icon-color);
  font-size: var(--ul-font-icon-font-size);
  font-weight: var(--ul-font-icon-font-weight);
  text-transform: var(--ul-font-icon-text-transform);
  letter-spacing: var(--ul-font-icon-letter-spacing);
}
.ul-font-icon li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
    -ms-flex-align: center;
      align-items: center;
  margin-right: var(--ul-font-icon-li-margin-right);	
}
.ul-font-icon li:last-child {
  margin-right: 0;
}
.ul-font-icon.ul-font-icon-ver {
  display: block;
}
.ul-font-icon.ul-font-icon-ver li {
  margin-right: 0;
}

.ul-font-icon li::before {
  margin-right: 0.6rem;
  color: var(--ul-font-icon-li-before-color);
  font-size: var(--ul-font-icon-li-before-font-size);
}
.ul-font-icon[class^="ul-fa-"] li::before,
.ul-font-icon[class*=" ul-fa-"] li::before {
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;    
}

.ul-font-icon.ul-fa-check-circle li::before {
  font-weight: 900;
  content: "\f058";    
}

.ul-font-icon[class^="ul-e-"] li::before,
.ul-font-icon[class*=" ul-e"] li::before {
  font-family: "elexio" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;  
}
.ul-font-icon.ul-e-icon-check-solid li::before {
  content: "";
}
.ul-font-icon.ul-e-icon-check li::before {
  content: "";
}
.ul-font-icon.ul-e-icon-verification li::before {
  content: "";
}

ul.ul-li-1,
ul.ul-li-2,
ul.ul-li-3,
ul.ul-li-4 {
  display: grid;
  grid-gap: 0 0;
}
ul.ul-li-1 li,
ul.ul-li-2 li,
ul.ul-li-3 li,
ul.ul-li-4 li {
  margin: 0.6rem 0;	
}
ul.ul-li-1 {			
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  grid-template-columns: repeat(1, 1fr);			
}
ul.ul-li-2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  grid-template-columns: repeat(2, 1fr);
}
ul.ul-li-3 {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  grid-template-columns: repeat(3, 1fr);
}
ul.ul-li-4 {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;
  grid-template-columns: repeat(4, 1fr);
}

.header-top .ul-font-icon {
  color: var(--header-top-ul-font-icon-color);
  font-size: var(--header-top-ul-font-icon-font-size);
  font-weight: var(--header-top-ul-font-icon-font-weight);
  text-transform: var(--header-top-ul-font-icon-text-transform);
  letter-spacing: var(--header-top-ul-font-icon-letter-spacing);
}
.header-top .ul-font-icon li::before {
  color: var(--header-top-ul-font-icon-li-before-color);
  font-size: var(--header-top-ul-font-icon-li-before-font-size);
}

/*---------------------
    Product inline promo
----------------------*/
.product-inline-promo {
  text-align: center;
}

.product-promo ul {	
			
}

.product-promo.product-inline-promo ul {	
  background: var(--product-inline-promo-ul-bg-color);
  color: var(--product-inline-promo-ul-color);
  font-size: var(--product-inline-promo-ul-font-size);
  font-weight: var(--product-inline-promo-ul-font-weight);
  padding: var(--product-inline-promo-ul-padding);
}
.product-promo.product-single-promo ul {	
  background: var(--product-single-promo-ul-bg-color);
  color: var(--product-single-promo-ul-color);
  font-size: var(--product-single-promo-ul-font-size);
  font-weight: var(--product-single-promo-ul-font-weight);
  padding: var(--product-single-promo-ul-padding);
  margin-top: 3rem;
}

.product-promo ul li {
  list-style-type: none;
  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: start; 
    -ms-flex-pack: start;
      justify-content: flex-start;		
}

@media (max-width: 897px) {
  .product-promo ul {
    flex-direction: column;	
    -webkit-column-count: 1 !important;
    -moz-column-count: 1 !important;
    column-count: 1 !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .product-promo ul li {
    width: 100% !important;	
    -webkit-box-pack: start; 
      -ms-flex-pack: start;
        justify-content: flex-start;		
  }
}

.product-promo.product-inline-promo ul.ul-font-icon li::before {
  font-size: var(--product-inline-promo-ul-li-i-font-size);
  color: var(--product-inline-promo-ul-li-i-color);
}
.product-promo.product-single-promo ul.ul-font-icon li::before {
  font-size: var(--product-single-promo-ul-li-i-font-size);
  color: var(--product-single-promo-ul-li-i-color);
}

/*----------------------------------------
    Animation
        - Sticky Content
-----------------------------------------*/
.appear-animate {
  visibility: hidden;
  opacity: 0;
}

.appear-animation-visible {
  visibility: visible;
  opacity: 1;
}

.section-appear-animate {
  visibility: hidden;
  opacity: 0;
}

.section-appear-animation-visible {
  visibility: visible;
  opacity: 1;
}

@-webkit-keyframes fixedTopContent {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transform-origin: center top 0px;
            transform-origin: center top 0px;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fixedTopContent {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transform-origin: center top 0px;
            transform-origin: center top 0px;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fixedBottomContent {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transform-origin: center top 0px;
            transform-origin: center top 0px;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fixedBottomContent {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transform-origin: center top 0px;
            transform-origin: center top 0px;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes showTickerFirst {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes showTickerFirst {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes showTicker {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes showTicker {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes navItemArrow {
  0% {
    position: relative;
    left: -3px;
  }
  50% {
    position: relative;
    left: 2px;
  }
  100% {
    position: relative;
    left: -3px;
  }
}
@keyframes navItemArrow {
  0% {
    position: relative;
    left: -3px;
  }
  50% {
    position: relative;
    left: 2px;
  }
  100% {
    position: relative;
    left: -3px;
  }
}
@-webkit-keyframes fadeInLeftShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(50px, 0);
            transform: translate(50px, 0);
    -webkit-transform-origin: 0, 0;
            transform-origin: 0, 0;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInLeftShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(50px, 0);
            transform: translate(50px, 0);
    -webkit-transform-origin: 0, 0;
            transform-origin: 0, 0;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInLeftShorter {
  -webkit-animation-name: fadeInLeftShorter;
          animation-name: fadeInLeftShorter;
}

@-webkit-keyframes fadeInRightShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(-50px, 0);
            transform: translate(-50px, 0);
    -webkit-transform-origin: 0, 0;
            transform-origin: 0, 0;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRightShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(-50px, 0);
            transform: translate(-50px, 0);
    -webkit-transform-origin: 0, 0;
            transform-origin: 0, 0;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInRightShorter {
  -webkit-animation-name: fadeInRightShorter;
          animation-name: fadeInRightShorter;
}

@-webkit-keyframes fadeInUpShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUpShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInUpShorter {
  -webkit-animation-name: fadeInUpShorter;
          animation-name: fadeInUpShorter;
}

@-webkit-keyframes fadeInDownShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(0, -50px);
            transform: translate(0, -50px);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInDownShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(0, -50px);
            transform: translate(0, -50px);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInDownShorter {
  -webkit-animation-name: fadeInDownShorter;
          animation-name: fadeInDownShorter;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
  }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
  }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}
.flipInY {
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
  }
}

@keyframes flipOutY {
  0% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
  }
}
@-webkit-keyframes blurIn {
  from {
    opacity: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes blurIn {
  from {
    opacity: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: none;
            transform: none;
  }
}
.blurIn {
  -webkit-animation-name: blurIn;
          animation-name: blurIn;
}

@-webkit-keyframes grayOut {
  from {
    opacity: 1;
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
  }
  15% {
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
  }
  to {
    opacity: 0;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
  }
}

@keyframes grayOut {
  from {
    opacity: 1;
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
  }
  15% {
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
  }
  to {
    opacity: 0;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
  }
}
.grayOut {
  -webkit-animation-name: grayOut;
          animation-name: grayOut;
}

@-webkit-keyframes brightIn {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-filter: brightness(0%);
            filter: brightness(0%);
  }
  to {
    -webkit-filter: brightness(100%);
            filter: brightness(100%);
  }
}

@keyframes brightIn {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-filter: brightness(0%);
            filter: brightness(0%);
  }
  to {
    -webkit-filter: brightness(100%);
            filter: brightness(100%);
  }
}
.brightIn {
  -webkit-animation-name: brightIn;
          animation-name: brightIn;
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes slideX {
  0% {
    -webkit-transform: none;
            transform: none;
    left: 100%;
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    left: 0;
  }
}
@keyframes slideX {
  0% {
    -webkit-transform: none;
            transform: none;
    left: 100%;
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    left: 0;
  }
}

.scaleIn {
  animation: scaleIn 750ms;
  animation-timing-function: linear;
}

@keyframes scaleIn {
  20% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(0.9);
  }
  60% {
    transform: scale(1.§);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.scaleDiv {
  animation: scaleDiv 750ms;
  animation-timing-function: linear;
}

@keyframes scaleDiv {
  20% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.9);
  }
  60% {
    transform: scale(1);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.pulseRadium {
  animation-name: pulseRadium;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}

@keyframes pulseRadium {
  from{opacity: 0;
  transform: scale(.9, .9);}
  to{opacity: 1;
  transform: scale(1, 1);}
}

/*------------------------------------------------
    Banner
        - Default
        - Video Banner
        - Newsletter Banner
            - Simple
            - With Dark Background
        - Banner Divider
------------------------------------------------*/
.banner {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  var(--placeholder-skeleton-bg-color);
}
.banner figure img:not(.skrollable) {
  display: block;
  width: 100%;
}

.banner .banner-content {
  position: relative;
  display: inline-block;
  z-index: 2;
  padding-top: var(--banner-content-padding-top);
  padding-right: var(--banner-content-padding-right);
  padding-bottom: var(--banner-content-padding-bottom);
  padding-left: var(--banner-content-padding-left);
}
@media (max-width: 897px) { 
  .banner .banner-content {
    padding-top: var(--banner-content-mobile-padding-top);
    padding-right: var(--banner-content-mobile-padding-right);
    padding-bottom: var(--banner-content-mobile-padding-bottom);
    padding-left: var(--banner-content-mobile-padding-left);
  }
}
.banner .banner-content.banner-animate {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  will-change: filter, transform, opacity;
  opacity: 0;
}
.banner .banner-content.banner-animate.show-content {
  opacity: 1;
}

.banner .banner-content a:not(.btn) {
  color: inherit;
}
.banner .banner-content a:not(.btn):hover, .banner .banner-content a:not(.btn).active {

}
.banner .banner-content .banner-title {
  display: inline-block;
  background-color: var(--banner-content-title-bg-color);
  color: var(--banner-content-title-color);
  font-family: var(--banner-content-title-font-family);
  font-size: var(--banner-content-title-font-size);
  font-weight: var(--banner-content-title-font-weight);
  text-transform: var(--banner-content-title-text-transform);
  letter-spacing: var(--banner-content-title-letter-spacing);
  text-shadow: var(--banner-content-title-text-shadow);
  line-height: var(--banner-content-title-line-height);
  padding-top: var(--banner-content-title-padding-top); 
  padding-right: var(--banner-content-title-padding-right); 
  padding-bottom: var(--banner-content-title-padding-bottom); 
  padding-left: var(--banner-content-title-padding-left); 
  margin-bottom: var(--banner-content-title-margin-bottom);
  border-radius: var(--banner-content-title-border-radius);
  box-shadow: var(--banner-content-title-box-shadow);
  transform: rotate(var(--banner-content-title-transform-rotate));
}
@media (max-width: 897px) { 
  .banner .banner-content .banner-title {
    font-size: var(--banner-content-title-mobile-font-size);
    font-weight: var(--banner-content-title-mobile-font-weight);
    text-transform: var(--banner-content-title-mobile-text-transform);
    letter-spacing: var(--banner-content-title-mobile-letter-spacing);
    text-shadow: var(--banner-content-title-mobile-text-shadow);
    line-height: var(--banner-content-title-mobile-line-height);
    padding-top: var(--banner-content-title-mobile-padding-top); 
    padding-right: var(--banner-content-title-mobile-padding-right); 
    padding-bottom: var(--banner-content-title-mobile-padding-bottom); 
    padding-left: var(--banner-content-title-mobile-padding-left); 
  }
}
.banner .banner-content &gt; div:last-child .banner-title {
  margin-bottom: 0;
}

.banner .banner-content .banner-title .btn {
  background-color: var(--banner-content-btn-bg-color);
  color: var(--banner-content-btn-color);
  font-size: var(--banner-content-btn-font-size);
  font-weight: var(--banner-content-btn-font-weight);
  border-color: var(--banner-content-btn-border-color);
  border-top-width: var(--banner-content-btn-border-top-width);
  border-right-width: var(--banner-content-btn-border-right-width);
  border-bottom-width: var(--banner-content-btn-border-bottom-width);
  border-left-width: var(--banner-content-btn-border-left-width);
  border-radius: var(--banner-content-btn-border-radius);
  padding: 1.4rem 2.4rem;
}
@media (max-width: 897px) { 
  .banner .banner-content .banner-title .btn {
    font-size: var(--banner-content-btn-mobile-font-size);
    padding: 1rem 2rem;
  }
}

.banner .banner-info {
  line-height: 1.45;
  margin-bottom: 1rem;
}

.banner.parallax .parallax-background {
  scroll-snap-align: start;
}

.banner-fixed &gt; .container,
.banner-fixed &gt; .container-fluid,
.banner-fixed &gt; .banner-content {
  position: absolute;
  z-index: 1;
}
.banner-fixed &gt; .container,
.banner-fixed &gt; .container-fluid {
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.banner-fixed.content-middle .banner-content {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.banner-fixed.content-center .banner-text {
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.banner-fixed.content-center.content-middle .banner-content {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.banner-background {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.banner-newsletter-2 .banner-content {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.banner-newsletter-2 {
  font-size: 1rem;
}
.banner-newsletter-2 .banner-content {
  padding: 0 1.5rem;
  max-width: 49.8rem;
  min-width: 30rem;
}
.banner-newsletter-2 .banner-title {
  font-size: 3em;
  margin-bottom: 0.5rem;
}
.banner-newsletter-2 p {
  font-size: 1.3em;
  margin-bottom: 3.5rem;
}
.banner-newsletter-2 .form-control {
  font-size: 1.4em;
  border: 0;
  border-bottom: 2px solid #88817b;
  max-width: 37.7rem;
  margin: 0 auto 2rem auto;
  text-align: center;
}
.banner-newsletter-2 img {
  min-height: 33rem;
}
.banner-newsletter-2 .btn {
  height: 4.8rem;
}
.banner-newsletter-2 .input-wrapper {
  max-width: 38rem;
  width: 100%;
}

.banner-newsletter-4 {
  background-color: #eeeeee;
}
.banner-newsletter-4 .banner-content {
  margin: 1rem;
  padding: 3.5rem 2rem 1rem;
}
.banner-newsletter-4 input {
  border: 2px solid #cccccc;
}

.banner-newsletter-5 {
  background-color: #cccccc;
  padding: 4rem;
}
.banner-newsletter-5 .banner-content {
  max-width: 56rem;
  padding: 1.5rem 1.5rem 2rem;
  margin-left: auto;
  margin-right: auto;
}
.banner-newsletter-5 .banner-title {
  margin-bottom: 0.5rem;
}
.banner-newsletter-5 p {
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.8;
  max-width: 49rem;
  margin-bottom: 2.5rem;
}
.banner-newsletter-5 input.form-control {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: transparent;
}

.banner-border-gradient::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 69%;
  padding-top: 30%;
  background: linear-gradient(30deg, #999999 0%, #999999 50%, transparent 50.1%);
}

.banner-divider {
  width: 4rem;
  height: 0.4rem;
  border: 0;
  margin-left: 0;
  margin-bottom: 1.2rem;
}

.banner-video .btn-play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1000;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.banner-video .btn-play-video:hover {
  background-color: #333;
}
.banner-video .btn-play-video:hover::before {
  color: #fff;
}
.banner-video .btn-play-video::before {
  content: "";
  position: absolute;
  margin-left: 0.2rem;
  font-family: "Font Awesome 5 Free";
  font-size: 2.8rem;
  font-weight: 600;
  color: #333;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  z-index: 1;
}
.banner-video video {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-video.playing .btn-play-video, .banner-video.paused .btn-play-video {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.4s, opacity 0.4s;
  transition: visibility 0.4s, opacity 0.4s;
}
.banner-video.playing:hover .btn-play-video, .banner-video.paused:hover .btn-play-video {
  visibility: visible;
  opacity: 1;
}
.banner-video.playing video, .banner-video.paused video {
  display: block;
}
.banner-video.playing .btn-play-video::before {
  content: "";
}

@media (max-width: 1099px) {
  .widget-banner .banner-title {
    margin-bottom: 4rem;
  }
}
@media (max-width: 897px) {
  .banner-newsletter-2 {
    font-size: 0.8rem;
  }
}
@media (max-width: 479px) {
  .banner-newsletter-4 .input-wrapper,
.banner-newsletter-5 .input-wrapper {
    display: block;
    text-align: center;
    height: auto;
  }
  .banner-newsletter-4 .input-wrapper .btn,
.banner-newsletter-5 .input-wrapper .btn {
    margin: 2rem;
  }

  .banner-newsletter-4 .input-wrapper-round .form-control,
.banner-newsletter-4 .input-wrapper-round .btn {
    border-radius: 3rem;
  }
}

.banner .skrollable-content {
  position: absolute;
  transform: rotate(var(--banner-skrollable-content-transform-rotate));
  z-index: 2;
}

.animate-banner-arrow {
  position: absolute;
  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: var(--animate-banner-arrow-width);
  height: 8.5rem;
  bottom: 3rem;
  left: calc(50% - calc(var(--animate-banner-arrow-width) / 2));
  z-index: 1;
  cursor: pointer;
} 
.animate-banner-arrow .animate-banner-arrow__arrow-bottom {
  position: absolute;
  bottom: 3.3rem;
  animation: 1s linear 0s infinite normal none running loopAnimBannerArrow;
  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: var(--animate-banner-arrow-width);
  height: var(--animate-banner-arrow-width);
  border-style: var(--animate-banner-arrow-border-style); 
  border-color: var(--animate-banner-arrow-border-color); 
  border-width: var(--animate-banner-arrow-border-width);   
  border-radius: var(--animate-banner-arrow-border-radius);    
} 
.animate-banner-arrow .animate-banner-arrow__arrow-bottom i {
  position: relative;    
  font-size: var(--animate-banner-arrow-font-size);
  color: var(--animate-banner-arrow-color);    
  top: 0.05rem;    
}
@-webkit-keyframes loopAnimBannerArrow{0%{opacity:0;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}20%{opacity:1}50%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}80%{opacity:1}100%{opacity:0;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px)}}@keyframes loopAnimBannerArrow{0%{opacity:0;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}20%{opacity:1}50%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}80%{opacity:1}100%{opacity:0;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px)}}    

.unmute-mute-banner-icon {
  position: absolute;
  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: 64px;
  height: 64px;
  top: calc(50% - 64px / 2);
  left: calc(50% - 64px / 2);
  z-index: 1;
  cursor: pointer;
}
.unmute-mute-banner-icon svg {
  fill: #fff;
  width: 64px;
  height: 64px;
}
@media (max-width: 897px) {
  .unmute-mute-banner-icon {
    width: 38px;
    height: 38px;
    top: calc(50% - 38px / 2);
    left: calc(50% - 38px / 2);
  }
  .unmute-mute-banner-icon svg {
    width: 38px;
    height: 38px;
  }
}

.swiper-slideshow .unmute-mute-banner-icon {
  display: none;
}
.swiper-slideshow:hover .unmute-mute-banner-icon {
  display: block;
}

/*---------------------------
    Sellingpoints
--------------------------*/
.sellingpoints-container .sellingpoints-wrapper {
  background-color: var(--sellingpoints-bg-color);
  color: var(--sellingpoints-color);
  font-size: var(--sellingpoints-font-size);
  font-weight: var(--sellingpoints-font-weight);
  padding-top: var(--sellingpoints-padding-top);
  padding-right: var(--sellingpoints-padding-right);
  padding-bottom: var(--sellingpoints-padding-bottom);
  padding-left: var(--sellingpoints-padding-left);
  margin-top: var(--sellingpoints-margin-top);
  margin-right: var(--sellingpoints-margin-right);
  margin-bottom: var(--sellingpoints-margin-bottom);
  margin-left: var(--sellingpoints-margin-left);
  border-color: var(--sellingpoints-border-color);
  border-style: var(--sellingpoints-border-style);
  border-top-width: var(--sellingpoints-border-top-width);
  border-right-width: var(--sellingpoints-border-right-width);
  border-bottom-width: var(--sellingpoints-border-bottom-width);
  border-left-width: var(--sellingpoints-border-left-width);
  border-top-left-radius: var(--sellingpoints-border-top-left-radius);
  border-top-right-radius: var(--sellingpoints-border-top-right-radius);
  border-bottom-right-radius: var(--sellingpoints-border-bottom-right-radius);
  border-bottom-left-radius: var(--sellingpoints-border-bottom-left-radius);
}
  .header .sellingpoints-container .sellingpoints-wrapper {
    background-color: transparent;
    padding-top: var(--header-sellingpoints-padding-top);
    padding-right: var(--header-sellingpoints-padding-right);
    padding-bottom: var(--header-sellingpoints-padding-bottom);
    padding-left: var(--header-sellingpoints-padding-left);
    margin-top: var(--header-sellingpoints-margin-top);
    margin-right: var(--header-sellingpoints-margin-right);
    margin-bottom: var(--header-sellingpoints-margin-bottom);
    margin-left: var(--header-sellingpoints-margin-left);
  }

.sellingpoints-wrapper &gt; * {
  background-color: var(--sellingpoints-child-bg-color);
  padding-top: var(--sellingpoints-child-padding-top);
  padding-bottom: var(--sellingpoints-child-padding-bottom);
  margin-top: var(--sellingpoints-child-margin-top);
  margin-bottom: var(--sellingpoints-child-margin-bottom);
  border-color: var(--sellingpoints-child-border-color);
  border-style: var(--sellingpoints-child-border-style);
  border-top-width: var(--sellingpoints-child-border-top-width);
  border-right-width: var(--sellingpoints-child-border-right-width);
  border-bottom-width: var(--sellingpoints-child-border-bottom-width);
  border-left-width: var(--sellingpoints-child-border-left-width);
  border-top-left-radius: var(--sellingpoints-child-border-top-left-radius);
  border-top-right-radius: var(--sellingpoints-child-border-top-right-radius);
  border-bottom-right-radius: var(--sellingpoints-child-border-bottom-right-radius);
  border-bottom-left-radius: var(--sellingpoints-child-border-bottom-left-radius);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 897px) {
  .sellingpoints-container .sellingpoints-wrapper {
    padding-top: calc(var(--sellingpoints-padding-top) / 2);
    padding-bottom: calc(var(--sellingpoints-padding-bottom) / 2);
  }
  .sellingpoints-wrapper &gt; * {
    padding-top: calc(var(--sellingpoints-child-padding-top) / 2);
    padding-bottom: calc(var(--sellingpoints-child-padding-bottom) / 2);
  }
}

.sellingpoints-wrapper &gt; .container-fluid {
  margin-right: calc(var(--container-fluid-main-margin-right) + var(--main-margin-right) - var(--sellingpoints-margin-right));
  margin-left: calc(var(--container-fluid-main-margin-left) + var(--main-margin-left) - var(--sellingpoints-margin-left));
  padding-right: var(--container-fluid-main-padding-right);
  padding-left: var(--container-fluid-main-padding-left);
}

.sellingpoints ul {
  padding: 0 0rem;	
  margin: 0px;
  text-align: center;	
}
.sellingpoints ul li {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin: 0px 15px;
  color: inherit;
  overflow: hidden;
  width: auto;
}
.sellingpoints ul li:first-child {
  margin-left: 0px;
}
.sellingpoints ul li &gt; span.sellingpoints-span,
.header .widget-box .sellingpoints ul li &gt; span.sellingpoints-span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  white-space: nowrap;
  color: inherit;
}
.sellingpoints ul li strong {
  display: contents;
  color: inherit;
}
.sellingpoints ul li i,
.header .widget-box .sellingpoints ul li i {
  position: relative;
  display: inline-block;
  color: var(--sellingpoints-i-color);
  font-size: var(--sellingpoints-i-font-size);
}
.sellingpoints ul li svg,
.header .widget-box .sellingpoints ul li svg {
  width: var(--sellingpoints-svg-width);
  height: var(--sellingpoints-svg-height);
  fill: var(--sellingpoints-svg-color);
}
.sellingpoints ul li a,
.header .widget-box .sellingpoints ul li a {
  position: relative;
  color: inherit;
}
.sellingpoints ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  margin-top: calc(var(--sellingpoints-font-size) + 0.6rem);
  width: 100%;
  border-top: 2px solid;
  border-color: inherit;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.sellingpoints ul li a:hover::after {
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.sellingpoints-wrapper .swiper-container ul li {
  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: 0px;
  padding-right: 0.6rem;
  padding-left: 0.6rem;
  width: 100%;
}
/*---------------------------
    Breadcrumb
--------------------------*/
.breadcrumb-nav .breadcrumb-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: var(--breadcrumb-bg-color);
  padding-top: var(--breadcrumb-padding-top);
  padding-right: 0px;
  padding-bottom: var(--breadcrumb-padding-bottom);
  padding-left: 0px;
  margin-top: var(--breadcrumb-margin-top);
  margin-right: var(--breadcrumb-margin-right);
  margin-bottom: var(--breadcrumb-margin-bottom);
  margin-left: var(--breadcrumb-margin-left);
  border-color: var(--breadcrumb-border-color);
  border-style: var(--breadcrumb-border-style);
  border-top-width: var(--breadcrumb-border-top-width);
  border-right-width: var(--breadcrumb-border-right-width);
  border-bottom-width: var(--breadcrumb-border-bottom-width);
  border-left-width: var(--breadcrumb-border-left-width);
  border-top-left-radius: var(--breadcrumb-border-top-left-radius);
  border-top-right-radius: var(--breadcrumb-border-top-right-radius);
  border-bottom-right-radius: var(--breadcrumb-border-bottom-right-radius);
  border-bottom-left-radius: var(--breadcrumb-border-bottom-left-radius);
}

.breadcrumb-wrapper &gt; * {
  position: relative;
  background-color: var(--breadcrumb-child-bg-color);
  padding-top: var(--breadcrumb-child-padding-top);
  padding-bottom: var(--breadcrumb-child-padding-bottom);
  margin-top: var(--breadcrumb-child-margin-top);
  margin-bottom: var(--breadcrumb-child-margin-bottom);
  border-color: var(--breadcrumb-child-border-color);
  border-style: var(--breadcrumb-child-border-style);
  border-top-width: var(--breadcrumb-child-border-top-width);
  border-right-width: var(--breadcrumb-child-border-right-width);
  border-bottom-width: var(--breadcrumb-child-border-bottom-width);
  border-left-width: var(--breadcrumb-child-border-left-width);
  border-top-left-radius: var(--breadcrumb-child-border-top-left-radius);
  border-top-right-radius: var(--breadcrumb-child-border-top-right-radius);
  border-bottom-right-radius: var(--breadcrumb-child-border-bottom-right-radius);
  border-bottom-left-radius: var(--breadcrumb-child-border-bottom-left-radius);
}

@media (max-width: 897px) {
  .breadcrumb-nav .breadcrumb-wrapper {
    padding-top: calc(var(--breadcrumb-padding-top) / 2);
    padding-bottom: calc(var(--breadcrumb-padding-bottom) / 2);
  }
  .breadcrumb-wrapper &gt; * {
    padding-top: calc(var(--breadcrumb-child-padding-top) / 2);
    padding-bottom: calc(var(--breadcrumb-child-padding-bottom) / 2);
  }
}

.breadcrumb-wrapper &gt; .container-fluid {
  margin-right: calc(var(--container-fluid-main-margin-right) + var(--main-margin-right) - var(--breadcrumb-margin-right));
  margin-left: calc(var(--container-fluid-main-margin-left) + var(--main-margin-left) - var(--breadcrumb-margin-left));
  padding-right: var(--container-fluid-main-padding-right);
  padding-left: var(--container-fluid-main-padding-left);
}

.breadcrumb-wrapper-::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 3.5rem;
  background: linear-gradient(90deg, white 0%, white 25%, rgba(255, 255, 255, 0) 100%);
  content: "";
  z-index: 1;
}
.breadcrumb-wrapper::after {
  position: absolute;
  top: 0;
  right: 10px;
  width: 20px;
  height: 100%;
  background: linear-gradient(-90deg, var(--breadcrumb-bg-color) 0%, var(--breadcrumb-bg-color) 25%, rgba(255, 255, 255, 0) 100%);
  content: "";
  z-index: 0;
}

.breadcrumb-nav.breadcrumb-nav-plain .breadcrumb-wrapper {
  background-color: transparent;
  border: 0px;
  border-radius: 0rem;  
  margin: 0px;
  padding: 0px;
}
.breadcrumb-nav.breadcrumb-nav-plain .breadcrumb-wrapper::after {
  background: none;
}
.breadcrumb-nav.breadcrumb-nav-plain .breadcrumb-wrapper &gt; * {
  background-color: transparent;
  border: 0px;
  border-radius: 0rem;  
  margin: 0px;
  padding: 0px;
}

.breadcrumb {
  display: block;
  color: var(--breadcrumb-color);
  font-size: var(--breadcrumb-font-size);
  font-weight: var(--breadcrumb-font-weight);
  text-transform: var(--breadcrumb-text-transform);
  letter-spacing: var(--breadcrumb-letter-spacing);
  text-align: left;
  line-height: 1.5;
  padding: 0rem 0rem;
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumb.breadcrumb-center {
  text-align: center;
}

.breadcrumb &gt; div {
  display: inline-block;
}

.breadcrumb a {
  color: inherit;
}

.breadcrumb &gt; div {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.breadcrumb &gt; div:not(:last-child) {
  padding-right: 0.4rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0.8;
}
.breadcrumb &gt; div:not(:last-child)::after {
  content: "";
  position: relative;
  display: inline-block;
  margin-left: 0.5rem;
  font-size: calc(var(--breadcrumb-font-size) - 0.3rem);
  font-weight: 500;
  font-family: "elexio";
  line-height: 0;
}
.breadcrumb.bb-slash &gt; div:not(:last-child)::after {
  content: "/";
  font-size: var(--breadcrumb-font-size);
}
.breadcrumb &gt; div:not(:last-child):hover {
  opacity: 1;
}
.breadcrumb &gt; div:last-child {
  color: var(--breadcrumb-last-child-color);
  opacity: var(--breadcrumb-last-child-opacity);
}
.breadcrumb div span.home {
  display: none;
}

.product-single .breadcrumb {
  font-size: 1.3rem;
}
.product-single .breadcrumb-nav.breadcrumb-nav-plain {
  margin-bottom: 1rem;
  border-radius: 0rem;
}
.product-single .breadcrumb-wrapper &gt; * {
  padding: 0px;
}

/*------------------------------------
    Blog
        - Default
        - List
        - Mask
        - Widget
------------------------------------*/
.post {
  font-size: 1rem;
}
.post .btn {
  font-weight: 700;
  white-space: inherit;
  overflow: inherit;
  text-overflow: inherit;
}
.post .btn i {
  font-size: 1.8rem;
  margin-left: 8px;
}
.post .btn i::before {
  margin: 0;
}
.post .btn:hover i {
  -webkit-animation: navItemArrow 0.6s linear infinite;
  animation: navItemArrow 0.6s linear infinite;
}
.post .post-details &gt; *:last-child {
  margin-bottom: 0;
}

.post-calendar {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 4.1rem;
  height: 4.2rem;
  background: #fff;
  color: #333;
  font-weight: 600;
  line-height: 1;
  z-index: 3;
  border-radius: 0.3rem;
}
.post-calendar .post-day {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 1.4rem;
}
.post-calendar .post-month {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
}

.post-media {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--img-blog-post-border-radius);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
}
.post-media img {
  background-color: var(--placeholder-skeleton-bg-color);
  display: block;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  height: 200px;
}
  .post-widget .post-media img {
    height: 80px;
  }
.post-media .post-calendar {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.post-details {
  padding: 1.7rem 0 2.5rem;
}

.post-title {
  font-size: var(--blog-post-title-font-size);
  font-weight: var(--blog-post-title-font-weight);
  letter-spacing: var(--blog-post-title-letter-spacing)
  line-height: var(--blog-post-title-line-height);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.post-title:hover {
  color: var(--link-hover-color);
}
.post-title a {
  color: inherit;
}

.post-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: var(--body-font-size);
  line-height: var(--description-blog-p-line-height);
  letter-spacing: var(--description-p-letter-spacing);
  margin-bottom: 1.5rem;
}

.post-meta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--blog-post-meta-color);
  font-size: var(--blog-post-font-size);
  font-weight: var(--blog-post-font-weight);
  margin-bottom: 0.3rem;
}
.post-meta div:first-child {
  margin-right: 1.5rem;
}
.post:not(.post-widget) .post-meta:not(.post-meta-single).post-meta__author {

}
.post:not(.post-widget) .post-meta:not(.post-meta-single).post-meta__datum_leestijd {

}

  .post-meta.post-meta-single {
    width: 100%;
    border-top-style: var(--blog-post-meta-border-top-style);
    border-top-width: var(--blog-post-meta-border-top-width);
    border-top-color: var(--blog-post-meta-border-top-color);
    border-bottom-style: var(--blog-post-meta-border-bottom-style);
    border-bottom-width: var(--blog-post-meta-border-bottom-width);
    border-bottom-color: var(--blog-post-meta-border-bottom-color);
    padding-top: var(--blog-post-meta-padding-top);
    padding-bottom: var(--blog-post-meta-padding-bottom);
    margin-bottom: var(--blog-post-meta-margin-bottom);
  }
.post-meta a {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--body-color);
  white-space: nowrap;
}
.post-meta a:hover {
  color: var(--link-hover-color);
}
.post-meta a:hover span {
  color: inherit;
}
.post-meta .post-author {
  margin: 0 0;
  color: var(--body-color);
}
  .post.post-mask .post-meta .post-author {
     color: #fff;
  }
.post-meta .post-date {
  margin: 0 2rem 0 0.4rem;
  font-weight: 400;
}
.post-meta .post-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  font-weight: 400;
}
.post-meta .post-comment i {
  font-size: 1.8rem;
}
.post-meta .post-comment span {
  margin: 0 0.4rem 0 0.8rem;
  font-weight: 600;
  color: #333;
  -webkit-transition: inherit;
  transition: inherit;
}

.post-cats {
  margin-bottom: 0.6rem;
  color: #fff;
}
.post-cats a {
  color: inherit;
  font-size: 1.4rem;
}
.post-cats a:not(:first-child) {
  margin-left: 0.3rem;
}

.post-date {
  font-weight: 400;
}

.post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-list .post-media {
  max-width: 43.1%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 43.1%;
          flex: 0 0 43.1%;
  margin-right: 2rem;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}
.post-list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-list .post-details {
  padding: 2.3rem 0 2.4rem;
}

@media (min-width: 898px) {
  .post-list .post-title {
    white-space: normal;
  }
}
.post-grid .post-details {
  padding-top: 1.6rem;
}

.post-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-widget .post-media {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28.6%;
          flex: 0 0 28.6%;
  max-width: 28.6%;
}
.post-widget .post-details {
  margin-left: 1.6rem;
  padding: 0;
}
.post-widget .post-meta {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.post-widget .post-date {
  margin: 0;
}
.post-widget .post-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.1rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.45;
  white-space: normal;
}

.post-md .post-details {
  padding-top: 1.8rem;
}
.post-md .post-content p {
  -webkit-line-clamp: 3;
}

@media (min-width: 576px) {
  .post-list .post-details {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 991px) {
  .post-lg.text-center .post-details,
.post-md.text-center .post-details {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .post-details {
    padding-bottom: 0;
  }
}
@media (max-width: 897px) {
  .post-list {
    display: block;
  }
  .post-list .post-media {
    margin-right: 0;
    max-width: none;
  }
}

.post.post-mask {
  position: relative;
  margin-bottom: 2rem;
}
.post.post-mask .post-media::before {
  content: "";
  display: block;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.75;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(125, 185, 232, 0)), to(#000));
  background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, #000 100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 1;
}

.post.post-mask .post-details {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 2rem;
  /*right: 2rem;*/
  bottom: 0;
  left: 2rem;
}
/*--------------------------------------
    Buttons
        - Button
            - Default
            - Primary
            - Success
            - Secondary
        - Outline Button
            - Primary
            - Success
            - Secondary
        - Icon Button
            - Icon Right, Left
            - Reveal Right, Left
        - Rounded
        - Round
        - Other Button Styles
            - Slide Left, Right, Top, Bottom
            - Infinite Loop
--------------------------------------*/
.btn {
  position: relative;	
  display: inline-block;
  border: 0px;
  background-color: var(--btn-bg-color);
  color: var(--btn-color);
  border-radius: var(--btn-border-radius);
  font-family: inherit;
  font-weight: var(--btn-font-weight);
  font-size: var(--btn-font-size);
  padding-top: var(--btn-padding-top);
  padding-right: var(--btn-padding-right);
  padding-bottom: var(--btn-padding-bottom);
  padding-left: var(--btn-padding-left);
  text-transform: var(--btn-text-transform);
  border-style: var(--btn-border-style);
  border-color: var(--btn-border-color);
  border-top-width: var(--btn-border-top-width);
  border-right-width: var(--btn-border-right-width);
  border-bottom-width: var(--btn-border-bottom-width);
  border-left-width: var(--btn-border-left-width);
  line-height: 1;
  outline: 0;
  text-align: center;
  -webkit-transition: color 0.3s, border-color 0.3s, background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.btn.btn-overflow-inherit {
  overflow: inherit;
}
.btn:hover, .btn:active {
  color: #666;
  border-color: gainsboro;
  background-color: gainsboro;
}
.btn i {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.6rem;
  line-height: 0;
  margin-bottom: 0.3rem;
}
.btn i::before {
  margin: 0;
}
.btn.btn-icon-right i {
  margin-right: 0;
  margin-left: 0.6rem;
}
.btn.btn-icon-left i {
  margin-right: 0.6rem;
  margin-left: 0;
}
.btn.btn-i-animate-hover:hover i {
  -webkit-animation: navItemArrow 0.6s linear infinite;
  animation: navItemArrow 0.6s linear infinite;
}

.btn-outline {
  background-color: transparent;
  border: var(--btn-outline-border-width) solid;
}
.btn-outline.light {
  padding: 0.996em 2em;
  border: 1px solid;
}

.btn-reveal-left i {
  opacity: 0;
  margin-left: -1em;
  -webkit-transform: translate(0.5em);
          transform: translate(0.5em);
  margin-right: 0;
  -webkit-transition: opacity 0.3s, margin 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, margin 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s, margin 0.3s;
  transition: transform 0.3s, opacity 0.3s, margin 0.3s, -webkit-transform 0.3s;
}
.btn-reveal-left:hover i, .btn-reveal-left:active i {
  opacity: 1;
  margin-left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  margin-right: 0.7rem;
}

.btn-reveal-right i {
  opacity: 0;
  margin-right: -1em;
  -webkit-transform: translateX(-0.5em);
          transform: translateX(-0.5em);
  margin-left: 0;
  -webkit-transition: opacity 0.3s, margin 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, margin 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s, margin 0.3s;
  transition: transform 0.3s, opacity 0.3s, margin 0.3s, -webkit-transform 0.3s;
}
.btn-reveal-right:hover i, .btn-reveal-right:active i {
  opacity: 1;
  margin-right: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  margin-right: 0.7rem;
}

.btn-simple::after {
  display: block;
  margin-top: 3px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  border-top: 3px solid;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  content: "";
}

.btn-link {
  padding-right: 0;
  padding-left: 0;
  border: 0;
  background: transparent;
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .btn-link {
    overflow: visible;
  }
}
.btn-link:not(.btn-underline) {
  padding-bottom: 3px;
}
.btn-link:hover, .btn-link.active {
  background: transparent;
}

.btn-shadow {
  -webkit-box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
}
.btn-shadow:hover, .btn-shadow:active {
  -webkit-box-shadow: 0 17px 20px -7px rgba(0, 0, 0, 0.2);
          box-shadow: 0 17px 20px -7px rgba(0, 0, 0, 0.2);
}

.btn-underline:hover::after, .btn-underline:active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.btn-underline::after {
  display: block;
  margin-top: 3px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -6px;
  width: 100%;
  border-top: 3px solid;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  content: "";
}
.btn-underline.sm::after {
  width: 46%;
}
.btn-underline.lg::after {
  margin-left: -16.5%;
  margin-right: -16.5%;
  width: 133%;
}

.btn-like {
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0.429em 0.874em;
  border-radius: 3px;
}

.btn-primary {
  color: var(--btn-primary-color);
  font-weight: var(--btn-primary-font-weight);
  border-style: var(--btn-primary-border-style);
  border-color: var(--btn-primary-border-color);
  border-top-width: var(--btn-primary-border-top-width);
  border-right-width: var(--btn-primary-border-right-width);
  border-bottom-width: var(--btn-primary-border-bottom-width);
  border-left-width: var(--btn-primary-border-left-width);
  background-color: var(--btn-primary-bg-color);
}
.btn-primary:hover, .btn-primary:active {
  color: var(--btn-primary-hover-color);
  border-color: var(--btn-primary-hover-border-color);
  background-color: var(--btn-primary-hover-bg-color);
}
.btn-primary.btn-solid {
  color: var(--btn-primary-bg-color);
  border-color: var(--btn-primary-color);
  background-color: var(--btn-primary-color);
}
.btn-primary.btn-solid:hover, .btn-primary.btn-solid:active {
  border-color: var(--btn-primary-border-color);
  background-color: var(--btn-primary-bg-color);
  color: var(--btn-primary-color);
}
.btn-primary.btn-outline {
  background-color: transparent;
  color: var(--btn-primary-bg-color);
  border-color: var(--btn-primary-bg-color);
  border-width: var(--btn-outline-border-width);
}
.btn-primary.btn-outline:hover, .btn-primary.btn-outline:active {
  background-color: var(--btn-primary-bg-color);
  color: #fff;
}
.btn-primary.btn-link {
  background-color: transparent;
  color: var(--btn-primary-bg-color);
  border-color: var(--btn-primary-border-color);
}
.btn-primary.btn-link:hover, .btn-primary.btn-link:active {
  color: var(--btn-primary-hover-bg-color);
  background-color: transparent;
}
.btn-primary.btn-underline:hover, .btn-primary.btn-underline:active {
  color: var(--btn-primary-hover-bg-color);
}

.btn-secondary {
  color: var(--btn-secondary-color);
  border-style: var(--btn-secondary-border-style);
  border-color: var(--btn-secondary-border-color);
  border-top-width: var(--btn-secondary-border-top-width);
  border-right-width: var(--btn-secondary-border-right-width);
  border-bottom-width: var(--btn-secondary-border-bottom-width);
  border-left-width: var(--btn-secondary-border-left-width);
  background-color: var(--btn-secondary-bg-color);
}
.btn-secondary:hover, .btn-secondary:active {
  color: var(--btn-secondary-hover-color);
  border-color: var(--btn-secondary-hover-border-color);
  background-color: var(--btn-secondary-hover-bg-color);
}
.btn-secondary.btn-solid {
  color: var(--btn-secondary-bg-color);
  border-color: #fff;
  background-color: #fff;
}
.btn-secondary.btn-solid:hover, .btn-secondary.btn-solid:active {
  border-color: var(--btn-secondary-hover-border-color);
  background-color: var(--btn-secondary-hover-bg-color);
  color: #fff;
}
.btn-secondary.btn-outline {
  background-color: transparent;
  color: var(--btn-secondary-border-color);
  border-width: var(--btn-outline-border-width);
  border-color: var(--btn-secondary-border-color);
}
.btn-secondary.btn-outline:hover, .btn-secondary.btn-outline:active {
  background-color: var(--btn-secondary-hover-bg-color);
  color: #fff;
}
.btn-secondary.btn-link {
  background-color: transparent;
  color: var(--btn-secondary-bg-color);
  border-color: var(--btn-secondary-bg-color);
}
.btn-secondary.btn-link:hover, .btn-secondary.btn-link:active {
  color: var(--btn-secondary-hover-bg-color);
  background-color: transparent;
}
.btn-secondary.btn-underline:hover, .btn-secondary.btn-underline:active {
  color: var(--btn-secondary-hover-bg-color); 
}

.btn-dark {
  color: #fff;
  border-color: #333;
  background-color: #333;
}
.btn-dark:hover, .btn-dark:active {
  color: #fff;
  border-color: #454545;
  background-color: #454545;
}
.btn-dark.btn-solid {
  color: #333;
  border-color: #fff;
  background-color: #fff;
}
.btn-dark.btn-solid:hover, .btn-dark.btn-solid:active {
  border-color: #333;
  background-color: #333;
  color: #fff;
}
.btn-dark.btn-outline {
  color: #333;
  border-color: #333;
  background-color: transparent;
}
.btn-dark.btn-outline:hover, .btn-dark.btn-outline:active {
  background-color: #333;
  color: #fff;
}
.btn-dark.btn-link {
  background-color: transparent;
  color: #333;
  border-color: #333;
}
.btn-dark.btn-link:hover, .btn-dark.btn-link:active {
  color: #333;
  background-color: transparent;
}
.btn-dark.btn-underline:hover, .btn-dark.btn-underline:active {
  color: #333;
}

.btn-dark-light {
  color: #fff;
  border-color: #666;
  background-color: #666;
}
.btn-dark-light:hover, .btn-dark-light:active {
  color: #fff;
  border-color: #787878;
  background-color: #787878;
}
.btn-dark-light.btn-solid {
  color: #666;
  border-color: #fff;
  background-color: #fff;
}
.btn-dark-light.btn-solid:hover, .btn-dark-light.btn-solid:active {
  border-color: #666;
  background-color: #666;
  color: #fff;
}
.btn-dark-light.btn-outline {
  background-color: transparent;
  color: #666;
  border-width: var(--btn-outline-border-width);
  border-color: #666;
}
.btn-dark-light.btn-outline:hover, .btn-dark-light.btn-outline:active {
  background-color: #666;
  color: #fff;
}
.btn-dark-light.btn-link {
  background-color: transparent;
  color: #666;
  border-color: #666;
}
.btn-dark-light.btn-link:hover, .btn-dark-light.btn-link:active {
  color: #666;
  background-color: transparent;
}
.btn-dark-light.btn-underline:hover, .btn-dark-light.btn-underline:active {
  color: #666;
}

.btn-white {
  color: #fff;
  border-color: #fff;
  background-color: #fff;
  color: #333;
}
.btn-white:hover, .btn-white:active {
  color: #fff;
  border-color: white;
  background-color: white;
}
.btn-white.btn-solid {
  color: #fff;
  border-color: #fff;
  background-color: #fff;
}
.btn-white.btn-solid:hover, .btn-white.btn-solid:active {
  border-color: #fff;
  background-color: #fff;
  color: #fff;
}
.btn-white.btn-outline {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}
.btn-white.btn-outline:hover, .btn-white.btn-outline:active {
  background-color: #fff;
  color: #fff;
}
.btn-white.btn-link {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-white.btn-link:hover, .btn-white.btn-link:active {
  color: #fff;
  background-color: transparent;
}
.btn-white.btn-underline:hover, .btn-white.btn-underline:active {
  color: #fff;
}
.btn-white.btn-outline:hover, .btn-white.btn-outline:active {
  color: #000;
  border-color: #fff;
}
.btn-white:hover, .btn-white:active {
  color: #fff;
  background-color: #333;
  border-color: #333;
}

.btn-success {
  color: #fff;
  border-color: #799b5a;
  background-color: #799b5a;
}
.btn-success:hover, .btn-success:active {
  color: #fff;
  border-color: #8bab6e;
  background-color: #8bab6e;
}
.btn-success.btn-solid {
  color: #799b5a;
  border-color: #fff;
  background-color: #fff;
}
.btn-success.btn-solid:hover, .btn-success.btn-solid:active {
  border-color: #799b5a;
  background-color: #799b5a;
  color: #fff;
}
.btn-success.btn-outline {
  background-color: transparent;
  color: #799b5a;
  border-width: var(--btn-outline-border-width);
  border-color: #799b5a;
}
.btn-success.btn-outline:hover, .btn-success.btn-outline:active {
  background-color: #799b5a;
  color: #fff;
}
.btn-success.btn-link {
  background-color: transparent;
  color: #799b5a;
  border-color: #799b5a;
}
.btn-success.btn-link:hover, .btn-success.btn-link:active {
  color: #799b5a;
  background-color: transparent;
}
.btn-success.btn-underline:hover, .btn-success.btn-underline:active {
  color: #799b5a;
}

.btn-warning {
  color: #fff;
  border-color: #ffa800;
  background-color: #ffa800;
}
.btn-warning:hover, .btn-warning:active {
  color: #fff;
  border-color: #ffb424;
  background-color: #ffb424;
}
.btn-warning.btn-solid {
  color: #ffa800;
  border-color: #fff;
  background-color: #fff;
}
.btn-warning.btn-solid:hover, .btn-warning.btn-solid:active {
  border-color: #ffa800;
  background-color: #ffa800;
  color: #fff;
}
.btn-warning.btn-outline {
  color: #ffa800;
  border-color: #ffa800;
  background-color: transparent;
}
.btn-warning.btn-outline:hover, .btn-warning.btn-outline:active {
  background-color: #ffa800;
  color: #fff;
}
.btn-warning.btn-link {
  background-color: transparent;
  color: #ffa800;
  border-color: #ffa800;
}
.btn-warning.btn-link:hover, .btn-warning.btn-link:active {
  color: #ffa800;
  background-color: transparent;
}
.btn-warning.btn-underline:hover, .btn-warning.btn-underline:active {
  color: #ffa800;
}

.btn-error {
  color: #fff;
  border-color: #6d1a17;
  background-color: #6d1a17;
}
.btn-error:hover, .btn-error:active {
  color: #fff;
  border-color: #8a211d;
  background-color: #8a211d;
}
.btn-error.btn-solid {
  color: #6d1a17;
  border-color: #fff;
  background-color: #fff;
}
.btn-error.btn-solid:hover, .btn-error.btn-solid:active {
  border-color: #6d1a17;
  background-color: #6d1a17;
  color: #fff;
}
.btn-error.btn-outline {
  background-color: transparent;
  color: #6d1a17;
  border-width: var(--btn-outline-border-width);
  border-color: #6d1a17;
}
.btn-error.btn-outline:hover, .btn-error.btn-outline:active {
  background-color: #6d1a17;
  color: #fff;
}
.btn-error.btn-link {
  background-color: transparent;
  color: #6d1a17;
  border-color: #6d1a17;
}
.btn-error.btn-link:hover, .btn-error.btn-link:active {
  color: #6d1a17;
  background-color: transparent;
}
.btn-error.btn-underline:hover, .btn-error.btn-underline:active {
  color: #6d1a17;
}

.btn-grey {
  color: #fff;
  border-color: #00baa3;
  background-color: #00baa3;
}
.btn-grey:hover, .btn-grey:active {
  color: #fff;
  border-color: #00dec2;
  background-color: #00dec2;
}
.btn-grey.btn-solid {
  color: #00baa3;
  border-color: #fff;
  background-color: #fff;
}
.btn-grey.btn-solid:hover, .btn-grey.btn-solid:active {
  border-color: #00baa3;
  background-color: #00baa3;
  color: #fff;
}
.btn-grey.btn-outline {
  color: #00baa3;
  border-color: #00baa3;
  background-color: transparent;
}
.btn-grey.btn-outline:hover, .btn-grey.btn-outline:active {
  background-color: #00baa3;
  color: #fff;
}
.btn-grey.btn-link {
  background-color: transparent;
  color: #00baa3;
  border-color: #00baa3;
}
.btn-grey.btn-link:hover, .btn-grey.btn-link:active {
  color: #00baa3;
  background-color: transparent;
}
.btn-grey.btn-underline:hover, .btn-grey.btn-underline:active {
  color: #00baa3;
}

.btn.btn-modal-alert {
  background-color: #1065dd;
  color: #fff;
  border-color: #1065dd;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 1.1rem 1.4rem;
  border-radius: 3px;
}

.btn.btn-modal-alert:hover {
  background-color: #0d53b8;
  color: #fff;
  border-color: #0d53b8;
}

.btn.btn-modal-alert.mfp-btn-cancel {
  background-color: #efeff2;
  color: #000;
  border-color: #efeff2;
  margin-right: 0.8rem;
}
.btn.btn-modal-alert.mfp-btn-cancel:hover {
  background-color: #dfdfe5;
  color: #000;
  border-color: #dfdfe5;
}

.btn.btn-rounded {
  border-radius: 3px;
}
.btn.btn-ellipse {
  border-radius: 30px;
}
.btn.btn-block {
  display: block;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.btn.btn-block svg {
  display: inline-block;
  vertical-align: middle;
  margin-top: -4px;
}
.btn.btn-sm {
  font-size: 1.2rem;
  padding: var(--btn-sm-padding);
}
.btn.btn-lg {
  font-size: 1.8rem;
  padding: var(--btn-lg-padding);
}
.btn.btn-xl {
  font-size: 2.4rem;
  padding: var(--btn-xl-padding);
}

.btn-slide-left:hover i, .btn-slide-left:active i {
  -webkit-animation: 0.5s ease slideLeft;
          animation: 0.5s ease slideLeft;
}

.btn-slide-right:hover i, .btn-slide-right:active i {
  -webkit-animation: 0.5s ease slideRight;
          animation: 0.5s ease slideRight;
}

.btn-slide-up:hover i, .btn-slide-up:active i {
  -webkit-animation: 0.5s ease slideUp;
          animation: 0.5s ease slideUp;
}

.btn-slide-down:hover i, .btn-slide-down:active i {
  -webkit-animation: 0.5s ease slideDown;
          animation: 0.5s ease slideDown;
}

.btn-infinite:hover i {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-0.5em);
            transform: translateX(-0.5em);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-0.5em);
            transform: translateX(-0.5em);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0.5em);
            transform: translateX(0.5em);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0.5em);
            transform: translateX(0.5em);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-0.5em);
            transform: translateY(-0.5em);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-0.5em);
            transform: translateY(-0.5em);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(0.5em);
            transform: translateY(0.5em);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(0.5em);
            transform: translateY(0.5em);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes spinner-loading{to{transform:rotate(360deg)}}
.spinner-loading{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.2em solid currentColor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-loading}

@-webkit-keyframes loaderLine{0%{transform:translate(-150%)}45%{transform:translate(0)}55%{transform:translate(0)}to{transform:translate(150%)}}
.bar-loading {
  background-color: currentColor;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  -webkit-animation: loaderLine 1.4s ease-in-out infinite;
  animation: loaderLine 1.4s ease-in-out infinite;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn, button.disabled {
  pointer-events: none;
  opacity: .65;
}
.product-button.product-button-out-of-stock .btn.disabled {
  background-color: #eee;
  border-color: #eee;
  color: #666;
  cursor: not-allowed;
}
  button.swiper-button-prev.disabled,
  button.swiper-button-next.disabled {
    pointer-events: inherit;
  }

.btn .btn-loading-wrapper {
  position: absolute;
  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;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.btn .btn-bar-loading-wrapper {
  max-width: 50px;
  margin: 0 auto;
  overflow: hidden;
}

.product-button.product-button-view .btn {
  background-color: var(--btn-product-view-bg-color);
  color: var(--btn-product-view-color);
  font-size: var(--btn-product-view-font-size);
  font-weight: var(--btn-product-view-font-weight);
  text-transform: var(--btn-product-view-text-transform);
  border-style: var(--btn-product-view-border-style);
  border-color: var(--btn-product-view-border-color);
  border-top-width: var(--btn-product-view-border-top-width);
  border-right-width: var(--btn-product-view-border-right-width);
  border-bottom-width: var(--btn-product-view-border-bottom-width);
  border-left-width: var(--btn-product-view-border-left-width);
  border-radius: var(--btn-product-view-border-radius);
  padding-top: var(--btn-product-view-padding-top);
  padding-right: var(--btn-product-view-padding-right);
  padding-bottom: var(--btn-product-view-padding-bottom);
  padding-left: var(--btn-product-view-padding-left);
}
.product-button.product-button-view .btn:hover {
  background-color: var(--btn-product-view-hover-bg-color);
  color: var(--btn-product-view-hover-color);
  border-color: var(--btn-product-view-hover-border-color);
}

.btn .btn-loading-border {
    display: none;
    position: absolute;
}

.btn.btn-loading-active {
  pointer-events: none;	
}
.btn.btn-loading-active span,
.btn.btn-loading-active i,
.btn.btn-loading-active .product-single .btn-cart__single.btn-cart .product-price,
.btn.btn-loading-active .product-single .btn-cart__single.btn-cart .divider {
  opacity: 0;	
}
.btn.btn-loading-active .btn-loading-wrapper span,
.btn.btn-loading-active .btn-loading-wrapper i {
  opacity: unset;	
}
.btn.btn-loading-active i::after {
  display: none;
}
.btn.btn-loading-active .loading-border {
  display: block;
  font-size: 1.4rem;
}

.btn.btn-progress-ticker.btn-loading-active {
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn.btn-progress-ticker.btn-loading-active .btn-loading-wrapper span {
  -webkit-transform: translateX(0);
  	transform: translateX(0);
  -webkit-animation: 0s linear 2s 1 showTickerFirst, 5s linear 0s infinite showTicker;
  	animation: 0s linear 2s 1 showTickerFirst, 5s linear 0s infinite showTicker;
}

.btn-cart,
.btn-product-quickview {
  color: var(--btn-cart-color);
  border-style: var(--btn-cart-border-style);
  border-color: var(--btn-cart-border-color);
  border-top-width: var(--btn-cart-border-top-width);
  border-right-width: var(--btn-cart-border-right-width);
  border-bottom-width: var(--btn-cart-border-bottom-width);
  border-left-width: var(--btn-cart-border-left-width);
  background-color: var(--btn-cart-bg-color);
}
.btn-cart:hover, .btn-cart:active,
.btn-product-quickview:hover, .btn-product-quickview:active {
  color: var(--btn-cart-hover-color);
  border-color: var(--btn-cart-hover-border-color);
  background-color: var(--btn-cart-hover-bg-color);
}

.btn-cart .elexio-icon-shopping-icon.elexio-icon-shopping-icon-plus-after::after,
.btn-product-quickview .elexio-icon-shopping-icon.elexio-icon-shopping-icon-plus-after::after {
  content: "+";
  position: absolute;
  background: #FFF;
  color: var(--btn-cart-bg-color);	
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  text-align: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: 2px;
  right: 2px;
}
.btn-cart:hover .elexio-icon-shopping-icon.elexio-icon-shopping-icon-plus-after::after,
.btn-product-quickview:hover .elexio-icon-shopping-icon.elexio-icon-shopping-icon-plus-after::after {
  color: var(--btn-cart-hover-bg-color);	
}
.btn-cart.disabled .elexio-icon-shopping-icon.elexio-icon-shopping-icon-plus-after::after {
  color: #666;
}

.btn.btn-loading-added {
  background-color: var(--btn-added-bg-color) !important;
  color: var(--btn-added-color) !important;
}

.btn-cart.disabled {
  background-color: #eee !important;
  border-color: #eee !important;
  color: #666 !important;
  cursor: not-allowed;
}
.btn-cart.disabled .product-price .price-retail &gt; span.price-retail-info {
  color: #666 !important;
}
.btn-cart.disabled .divider {
  background-color: #666 !important;
}

/*-----*/

.btn .btn-added-wrapper .btn-added-checkmark {
  position: relative;
  display: block;
  height: auto;
  width: 2.4rem;
  float: right;
}
.btn .btn-added-wrapper .btn-added-checkmark::after {
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-name: btn-added-checkmark;
  transform: scaleX(-1) rotate(135deg);
}

.btn .btn-added-wrapper .btn-added-checkmark::after {
  position: absolute;
  content: "";
  opacity: 1;
  height: 2.4rem;
  width: 1.2rem;
  transform-origin: left top;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  top: 0;
  left: 0;
  float: right;
} 
.btn .btn-added-wrapper .svg-wrapper {
  width: 22px;
  height: 24px;
}
.btn .btn-added-wrapper svg {
  margin-right: 0px;
}   
.btn .btn-added-wrapper span.span__added-checkmark {
  margin-left: 0.5rem;
}

.btn .btn-added-wrapper .svg-wrapper svg {
  display: block;
  height: 24px;
  width: 24px;
  color: #fff; /* SVG path use currentColor to inherit this */

  border-radius: 50%;
  box-shadow: inset 0px 0px 0px #fff;
  animation: fill-tick .5s ease-in-out .5s forwards, scale-tick .4s ease-in-out 1s both;    
}

.btn .btn-added-wrapper .svg-wrapper svg .tick {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  animation: draw-tick 0.6s forwards 0.6s;
}

@keyframes draw-tick { 
  to { stroke-dashoffset: 0 } 
} 
   
@keyframes scale-tick {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.2, 1.2, 1);
  }
}    
@keyframes fill-tick {
  100% {
    box-shadow: inset 0px 0px 0px 30px transparent;
  }
}  

@keyframes btn-added-checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 1.2rem;
    opacity: 1;
  }
  40% {
    height: 2.4rem;
    width: 1.2rem;
    opacity: 1;
  }
  100% {
    height: 2.4rem;
    width: 1.2rem;
    opacity: 1;
  }
}  

.cart-count .cart-count-checkmark-wrapper {
  position: relative;
  display: block;
  height: auto;
  width: 1.4rem;
}
.cart-count .cart-count-checkmark-wrapper .cart-count-checkmark:after {
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-name: cart-count-checkmark;
  transform: scaleX(-1) rotate(135deg);
}

.cart-count .cart-count-checkmark-wrapper .cart-count-checkmark::after {
  position: absolute;
  content: "";
  opacity: 1;
  height: 1.2rem;
  width: 0.7rem;
  transform-origin: left top;
  border-right: 0.2rem solid #fff;
  border-top: 0.2rem solid #fff;
  top: 0;
  left: 0;
}    

@keyframes cart-count-checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 0.7rem;
    opacity: 1;
  }
  40% {
    height: 1.2rem;
    width: 0.7rem;
    opacity: 1;
  }
  100% {
    height: 1.2rem;
    width: 0.7rem;
    opacity: 1;
  }
} 

/*----------------------------------------
    Calendar
-----------------------------------------*/
.calendar {
  font-size: 1.3rem;
  letter-spacing: 0;
  text-align: center;
}
.calendar .calendar-header {
  position: relative;
  padding: 1.7rem 1rem;
  background-color: #336699;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  border-radius: 0.3rem;
}
.calendar .calendar-header a {
  color: inherit;
}
.calendar thead {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
}
.calendar th {
  padding: 1.8rem 0 0.9rem;
}
.calendar td {
  padding: 0.9rem 0;
}
.calendar .btn-calendar {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
}
.calendar .btn-calendar i {
  font-weight: 600;
}
.calendar .btn-calendar.btn-calendar-prev {
  left: 2rem;
}
.calendar .btn-calendar.btn-calendar-next {
  right: 2rem;
}
.calendar .btn-calendar:hover {
  color: #fff;
}
.calendar .disabled {
  color: #999;
}
.calendar .today {
  color: #336699;
  font-weight: 600;
}

/*------------------------------------
    Category
        - Base
            - Default
            - Group Category
                - Image
                - Icon
            - Category Banner
-------------------------------------*/
.category {
  position: relative;
  font-size: 1rem;
  margin-bottom: 2rem;
}
  .swiper-container .category {
    margin-bottom: 0;
  }
.category a {
  color: inherit;
}
.category a:hover {
  color: inherit;
}
.category img {
  background: var(--placeholder-skeleton-bg-color);
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.category .category-name {
  display : inline-block;
  margin-bottom: 0;
  text-align: center;
  color: var(--category-category-name-color);
  font-family: var(--category-category-name-font-family);
  font-size: var(--category-category-name-font-size);
  font-weight: var(--category-category-name-font-weight);
  line-height: 1.2;
  text-transform: var(--category-category-name-text-transform);
  letter-spacing: var(--category-category-name-letter-spacing);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
  .category.category-classic .category-name {
     display: block;
  }
@media (max-width: 897px) {
  .cols-4 .category .category-name {
     font-size: 1.2rem;
  }
}
.category .category-name:hover {
  color: var(--category-category-name-hover-color);
}
.category .category-count {
  font-size: 1.4rem;
}
.category p {
  text-align: start;
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--category-category-content-color);
}

.category-content .category-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  color: var(--category-group-image-category-content-category-list-li-color);
  text-align: start;
  font-size: var(--category-group-image-category-content-category-list-li-font-size);
  line-height: 1.9;
}
.category-content .category-list li:hover {
  color: var(--category-group-image-category-content-category-list-li-hover-color);
}
.category-content .category-list li::before {
  content: "";
  color: inherit;
  font-family: "elexio";
  font-size: 1.3rem;
  margin-right: 0.3rem;
  margin-left: -0.3rem;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.category-content .category-list li:hover::before {
  -webkit-animation: navItemArrow 0.6s linear infinite;
          animation: navItemArrow 0.6s linear infinite;
}

.category-content .category-list li.empty::before {
  content: "" !important;
}

.category-content .category-list li a {
  color: inherit;
  padding-right: 25px;
}

.category-content .category-list li a:hover {
  text-decoration: underline;
}
.category-content .category-list li a[data-count-products]::after {
  position: absolute;
  top: 0;
  right: 15px;
  content: attr(data-count-products);
  margin-left: 3px;
}

.category-absolute .category-content {
  position: absolute;
  cursor: pointer;
}
.category-default .category-media {
  overflow: hidden;
  border-radius: var(--category-classic-category-media-border-radius);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
}
.category-default .category-content {
  color: var(--category-default-category-title-link-color);
  padding-bottom: 0.2rem;
  -webkit-transition: padding-bottom 0.3s;
  transition: padding-bottom 0.3s;
}
.category-default .btn {
  position: absolute;
  margin-top: -2rem;
  text-transform: var(--category-default-category-btn-text-transform);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: margin-top 0.3s, opacity 0.3s, visibility 0.3s;
  transition: margin-top 0.3s, opacity 0.3s, visibility 0.3s;
}
.category-default:not(.category-default1):hover .category-content {
  padding-bottom: 3.2rem;
}
.category-default:not(.category-default1):hover .btn {
  margin-top: 1rem;
  opacity: 1;
  visibility: visible;
}

.category-default1 .category-content {
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  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;
  background-color: var(--category-default1-category-content-bg-color);
  border-radius: var(--category-default1-category-content-border-radius);
  height: var(--category-default1-category-content-height);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.category-default1 .category-content .category-name {
  padding-bottom: 0;
  -webkit-transition: padding-bottom 0.3s;
  transition: padding-bottom 0.3s;
}
.category-default1 .category-content .category-count {
  position: absolute;
  font-size: 1.2rem;
  line-height: 1.3;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.category-default1:hover .category-name {
  padding-bottom: 1.7rem;
}
.category-default1:hover .category-count {

}
.category-default1:hover .btn {

}

.category-group-image,
.category-group-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--category-group-image-bg-color);
  border-style: var(--category-group-image-border-style);
  border-width: var(--category-group-image-border-width);
  border-color: var(--category-group-image-border-color);
}
.category-group-image:hover {
  border-color: var(--category-group-image-hover-border-color);
}
.category-group-image .category-media {
  overflow: hidden;
  border-radius: var(--category-group-image-category-media-border-radius);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
}
.category-group-image- &gt; *,
.category-group-icon- &gt; * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.category-group-image .category-content ul,
.category-group-icon .category-content ul {
  padding-left: 0;
}

.category-group-image {
  padding: 1rem;
  font-size: 1rem;
  height: 100%;
}
.category-group-image .category-content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: start;
  padding: 1.1rem 0 0.8rem 3rem;
  flex: 0 0 62%;
}
.category-group-image .category-content ul {
  margin: 0;
}
.category-group-image .category-name {
  display : block;
  color: var(--category-group-image-category-name-color);
  font-size: var(--category-group-image-category-name-font-size);
  font-weight: var(--category-group-image-category-name-font-weight);
  letter-spacing: var(--category-group-image-category-name-letter-spacing);
  text-transform: var(--category-group-image-category-name-text-transform);
  line-height: 1.4;
  text-align: start;
  border-bottom-color: var(--category-group-image-category-name-border-bottom-color);
  border-bottom-style: var(--category-group-image-category-name-border-bottom-style);
  border-bottom-width: var(--category-group-image-category-name-border-bottom-width);
  margin-right: 0;
  margin-bottom: 0.8rem;
  margin-left: 3rem;
  padding-bottom: 0.5rem;
}
.category-group-image a {

}

.category-ellipse .category-media {
  border-radius: var(--category-ellipse-category-media-border-radius);
  overflow: hidden;
  border-color: var(--category-ellipse-category-media-border-color);
  border-style: solid;
  border-width: var(--category-ellipse-category-media-border-width);
  outline-color: var(--category-ellipse-category-media-outline-color);
  outline-style: var(--category-ellipse-category-media-outline-style);
  outline-width: var(--category-ellipse-category-media-outline-width);
  -webkit-transition: border-width 0.1s, -webkit-box-shadow 0.1s;
  transition: border-width 0.1s, -webkit-box-shadow 0.1s;
  transition: box-shadow 0.1s, border-width 0.1s;
  transition: box-shadow 0.1s, border-width 0.1s, -webkit-box-shadow 0.1s;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
}

.category-ellipse .category-content {
  margin-top: 1.7rem;
  text-align: center;
}
.category-ellipse .category-name:hover {
}
.category-ellipse:hover .category-media {
  border-width: var(--category-ellipse-category-media-hover-border-width);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}
@media (max-width: 897px) {
  .category-ellipse .category-media {
     border-width: var(--category-ellipse-category-media-mobile-border-width);
  }
  .category-ellipse:hover .category-media {
     border-width: var(--category-ellipse-category-media-mobile-hover-border-width);
  }
}

.category-classic {
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.category-classic .category-media {
  border-radius: var(--category-classic-category-media-border-radius);
  overflow: hidden;
  border-color: var(--category-classic-category-media-border-color);
  border-style: solid;
  border-width: var(--category-classic-category-media-border-width);
  outline-color: var(--category-classic-category-media-outline-color);
  outline-style: var(--category-classic-category-media-outline-style);
  outline-width: var(--category-classic-category-media-outline-width);
  -webkit-transition: border-width 0.1s, -webkit-box-shadow 0.1s;
  transition: border-width 0.1s, -webkit-box-shadow 0.1s;
  transition: box-shadow 0.1s, border-width 0.1s;
  transition: box-shadow 0.1s, border-width 0.1s, -webkit-box-shadow 0.1s;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
}
.category-classic .category-content {
  left: 0;
  right: 0;
  bottom: 1.5rem;
  overflow: hidden;
  text-align: center;
}
.category-classic .category-name {
  font-size: var(--category-classic-category-name-font-size); 
  color: var(--category-classic-category-name-color); 
  line-height: 1.45;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.category-classic .btn {
  position: absolute;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: 100%;
  -webkit-transition: top 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, transform 0.3s;
  transition: top 0.3s, transform 0.3s, -webkit-transform 0.3s;
  color: var(--category-classic-category-name-color);
}
@media (max-width: 897px) {
  .category-classic .btn {
    font-size: 1.2rem;
  }
}
.category-classic:hover .category-media {
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-width: var(--category-classic-category-media-hover-border-width);
}
@media (max-width: 897px) {
  .category-classic .category-media {
     border-width: var(--category-classic-category-media-mobile-border-width);
  }
  .category-classic:hover .category-media {
     border-width: var(--category-classic-category-media-mobile-hover-border-width);
  }
}
.category-classic:hover .category-name {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.category-classic:hover .btn {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--category-classic-category-name-hover-color);
}

.category-icon .category-media {
  padding: 2.4rem 0.5rem;
  border: 1px solid #eee;
  width: 130px;
  height: 130px;
  max-width: 100%;
  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: 5rem;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s, border-color 0.3s;
  transition: box-shadow 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
}
.category-icon .category-name {
  font-size: 1.4rem;
  text-transform: capitalize;
  letter-spacing: 0;
}
.category-icon:hover .category-media {
  border-color: #fff;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.category-icon:hover .category-name {
  color: #336699;
}

.category-banner .category-content {
  left: 0;
  bottom: 2rem;
  background-color: rgba(38, 38, 38, 0.8);
  border-radius: 0 5rem 5rem 0;
  padding: 1.3rem 3rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.category-banner .category-name {
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.035em;
}
.category-banner:hover .category-content {
  background-color: rgba(51, 102, 153, 0.8);
}

.category-center .category-content {
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.category-center .btn {
  visibility: hidden;
  opacity: 0;
  line-height: 0;
  -webkit-transition: visibility 0.3s, opacity 0.3s, line-height 0.3s;
  transition: visibility 0.3s, opacity 0.3s, line-height 0.3s;
}
.category-center:hover .btn {
  visibility: visible;
  opacity: 1;
  line-height: 1;
}

.category-lg .category-name {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  white-space: nowrap;
}
.category-lg .category-count {
  font-size: 1.8rem;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.category-image {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.category-image a {
  display: block;
  width: 100%;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.category-image .category-media {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.category-image .category-media img {
  display: block;
}
.category-image p {
  font-size: 1.3rem;
  line-height: 1;
  color: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.category-image.media-circle .category-media {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
}
.category-image.text-center p {
  text-align: center;
}
.category-image:hover {
  cursor: pointer;
}
.category-image:hover a {
  color: #336699;
}

@media (max-width: 897px) {
  .category-group-image .category-name {
    margin-left: 1.5rem;
  }
  .category-group-image .category-content {
    padding-left: 1.5rem;
  }
}
/* -----------------------------------------------
    Reviews
------------------------------------------------- */
.reviews .review {
  position: relative;
  background-color: var(--review-bg-color);
  border-width: var(--review-border-width);
  border-style: var(--review-border-style);
  border-color: var(--review-border-color);
  padding: var(--review-padding);
  margin-bottom: 2rem;
}
.reviews .review:last-child {
  margin-bottom: 0rem;
}
.reviews &gt; li {
  position: relative;
}
.reviews ul.children {
  margin-left: 10rem;
}

.review-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.review-body .review-content p {
  margin-bottom: 0rem;
  line-height: 1.9;
}

.review-avatar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 9rem;
          flex: 0 0 9rem;
  max-width: 9rem;
  margin-right: 2rem;
}

.review-author-info {
  margin: 0.5rem 0 1rem;
  line-height: 1;
}
.review-author {
  margin-right: 0.8rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--body-color);
}

.review-date {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #999;
}

.review-reply {
  background-color: #f5f5f5;
  border-left: 5px solid #2a3f52;
  padding: 1.875rem 1.75rem 1.875rem 1.875rem;
}
.review-reply-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  margin-bottom: 0.8rem
}
.review-reply-heading i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 1.8rem;
  margin-right: 0.8rem;
}
.review-reply-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.review-reply-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 1.2rem;
}

.ratings-container.review-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.2rem;
}

.ratings-container.review-rating .div-stars {
  margin-right: 1.5rem;
  margin-bottom: 0;
}
.ratings-container.review-rating .verification-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: var(--rating-verification-info-font-weight);
  color: var(--rating-verification-info-color);
}
.ratings-container.review-rating .verification-info i {
  font-size: 1.8rem;
  font-weight: 600;
  margin-right: 0.3rem;
}

.review-interests {
  margin:L 0.5rem 0;
}

.review-interests .review-interest {
  font-size: 1.2rem;
  color: inherit;
}

.review-interests .review-interest label {
  font-weight: 600;
}

.review-subject {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.review-content {

}

.review-action &gt; * {
  margin-right: 2.4rem;
}
.review-action a {
  font-weight: 400;
}
.review-action .btn i {
  font-size: 1.4rem;
}

@media (max-width: 575px) {
  .reviews .review-action span {
    display: none;
  }
  .reviews ul.children {
    margin-left: 3rem;
  }

  .review-avatar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7rem;
            flex: 0 0 7rem;
    max-width: 7rem;
  }
}
/*-------------------------
    - Expanded Newsletter
    - Banner Newsletter
    - Link Banner Newsletter
    - Sale Banner
-------------------------*/
.expanded-newsletter {
  padding: 2.6rem 4rem 0.5rem;
  border: 2px solid #eee;
}
.expanded-newsletter .icon-box-side {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.expanded-newsletter .icon-box-side .icon-box-icon {
  margin-right: 2rem;
  color: #336699;
}
.expanded-newsletter .icon-box-side .icon-box-icon i {
  font-size: 4.8rem;
}
.expanded-newsletter .icon-box-side .icon-box-title {
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.expanded-newsletter .icon-box-side p {
  font-size: 1.4rem;
  letter-spacing: -0.007em;
}
.expanded-newsletter .input-wrapper-inline .form-control {
  min-height: 4.8rem;
  border-color: #ccc;
  border-radius: 2.5rem 0 0 2.5rem;
}
.expanded-newsletter .btn {
  border-radius: 0 2.5rem 2.5rem 0;
  padding-left: 1.91em;
  padding-right: 1.91em;
}

@media (min-width: 1200px) {
  .expanded-newsletter .pl-xl-10 {
    padding-left: 5rem !important;
  }
}
.cta-section .title-separator {
  color: #ccc;
}

.banner-newsletter {
  background-color: #f5f5f5;
  padding: 6.5rem 0 5rem;
  overflow: hidden;
}
.banner-newsletter::before, .banner-newsletter::after {
  content: "";
  position: absolute;
  height: 59.2rem;
  width: 58.8rem;
  border: 3rem solid;
  top: 53%;
  -webkit-transform: translateY(-50%) rotateZ(45deg);
          transform: translateY(-50%) rotateZ(45deg);
}
.banner-newsletter::before {
  right: 98.8%;
  border-color: #e7e7e7;
  border-radius: 2rem;
}
.banner-newsletter::after {
  left: 93.3%;
  top: 48%;
  border-color: #f1f1f1;
}
.banner-newsletter .banner-content {
  padding: 0 1.5rem;
}
.banner-newsletter .banner-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.banner-newsletter .banner-title strong {
  font-weight: 800;
}
.banner-newsletter p {
  margin-bottom: 2.2rem;
  max-width: 62rem;
  font-size: 1.3rem;
  line-height: 2;
}
.banner-newsletter .input-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 55.5rem;
  min-height: 4.8rem;
}
.banner-newsletter .input-wrapper::before {
  content: "";
  display: inline-block;
  position: absolute;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  font-size: 1.8rem;
  color: #666;
  line-height: 1;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -1rem;
}
.banner-newsletter input {
  border: 0;
  border-bottom: 2px solid #ccc;
  margin-right: 1rem;
  padding-left: 2.8rem;
  min-height: 4.8rem;
}
.banner-newsletter .banner-content {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.banner-newsletter .btn {
  padding: 1.08em 1.9em;
}
.banner-newsletter .btn i {
  font-size: 1.8rem;
  margin-top: -0.4rem;
}

.link-banner-newsletter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5.25% 8.4% 4.1% 4.4%;
}
.link-banner-newsletter .banner-title {
  margin-bottom: 0.6rem;
  font-size: 2.6rem;
}
.link-banner-newsletter p {
  max-width: 45.1rem;
  margin-bottom: 2.2rem;
  font-size: 1.3rem;
}
.link-banner-newsletter .input-wrapper-inline {
  max-width: 44.8rem;
}
.link-banner-newsletter .input-wrapper-rounded .form-control {
  min-height: 4.6rem;
  padding: 0.8rem 1.8rem;
  font-size: 1.3rem;
  border-color: #454545;
  border-radius: 0.3rem 0 0 0.3rem;
}
.link-banner-newsletter .btn {
  padding-left: 1.95em;
  padding-right: 1.95em;
  border-radius: 0 0.3rem 0.3rem 0;
}
.link-banner-newsletter .content-right {
  margin-top: 0.3rem;
}
.link-banner-newsletter .content-right a {
  display: block;
  margin-bottom: 2rem;
}

.sale-banner::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border: 5px dashed #fff;
  pointer-events: none;
  -webkit-clip-path: inset(4px 4px 4px 4px);
          clip-path: inset(4px 4px 4px 4px);
}
.sale-banner .banner-content {
  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;
}
.sale-banner .banner-subtitle {
  position: relative;
  margin-right: 2rem;
  padding: 2.6rem 7px 2.6rem 3.5rem;
  font-size: 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #444;
  line-height: 1.2;
  z-index: 1;
  white-space: nowrap;
}
.sale-banner .banner-subtitle span {
  font-size: 0.45em;
  font-weight: 400;
}
.sale-banner .banner-subtitle::before, .sale-banner .banner-subtitle::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -25px;
  bottom: -20px;
  border-right: 50px solid #454545;
  -webkit-transform: rotate(26deg);
          transform: rotate(26deg);
  z-index: -1;
}
.sale-banner .banner-subtitle::after {
  right: -35px;
  border-right-width: 5px;
}
.sale-banner .content-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 25.7rem);
          flex: 0 0 calc(100% - 25.7rem);
  max-width: calc(100% - 25.7rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.8rem 3.6rem 2.8rem 0;
  background-color: #eee;
}
.sale-banner .banner-title {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 3.4em;
  font-style: italic;
}
.sale-banner .banner-title span {
  white-space: nowrap;
  -webkit-animation: slideX 60s infinite linear 1s;
          animation: slideX 60s infinite linear 1s;
  display: inline-block;
}
.sale-banner .btn {
  padding-left: 1.9em;
  padding-right: 1.9em;
  background-color: #444;
  border-color: #444;
}
.sale-banner .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
}

.sale-banner-section {
  padding-bottom: 0.7rem;
}

.banner-newsletter-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 5.9rem;
}
.banner-newsletter-bg .content-left {
  margin-right: 5.3rem;
}
.banner-newsletter-bg .content-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.banner-newsletter-bg .banner-title {
  margin-bottom: 0.6rem;
  font-size: 1.6rem;
  line-height: 1;
}
.banner-newsletter-bg p {
  font-size: 1.3rem;
  line-height: 1;
}
.banner-newsletter-bg .input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
}
.banner-newsletter-bg .form-control {
  margin-right: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border: none;
  background-color: #fff;
}

@media (max-width: 991px) {
  .expanded-newsletter {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .expanded-newsletter .icon-box-side {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .banner-newsletter-bg {
    display: block;
    text-align: center;
  }
  .banner-newsletter-bg .content-left {
    margin-right: 0;
  }
}
@media (max-width: 897px) {
  .sale-banner .banner-content {
    display: block;
  }
  .sale-banner .banner-subtitle {
    padding-bottom: 0;
  }
  .sale-banner .banner-subtitle::after, .sale-banner .banner-subtitle::before {
    left: -10px;
    bottom: -20px;
    top: auto;
    border-top: 42px solid #454545;
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  .sale-banner .banner-subtitle::after {
    bottom: -30px;
    border-top-width: 5px;
  }
  .sale-banner .content-right {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: none;
    margin-top: -4rem;
    padding: 4rem 0 3rem;
  }
  .sale-banner .btn {
    margin-left: 3rem;
  }

  .link-banner-newsletter {
    display: block;
    padding: 4rem 3rem 2rem;
  }
  .link-banner-newsletter .content-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .link-banner-newsletter .content-right a:first-child {
    margin-right: 2rem;
  }
}
@media (max-width: 575px) {
  .expanded-newsletter .icon-box-side {
    display: block;
    text-align: center;
  }
  .expanded-newsletter .icon-box-side .icon-box-icon {
    padding: 1rem;
    margin: 0 0 1.5rem;
  }
  .expanded-newsletter .icon-box-side .icon-box-content {
    text-align: center;
  }

  .sale-banner {
    font-size: 0.8rem;
  }
}
@media (max-width: 479px) {
  .banner-newsletter .input-wrapper-inline {
    display: block;
  }
  .banner-newsletter .input-wrapper-inline::before {
    top: 25%;
  }

  .banner-newsletter-bg {
    padding: 4rem 1.5rem;
  }
  .banner-newsletter-bg .input-wrapper {
    display: block;
  }
  .banner-newsletter-bg .form-control {
    margin-bottom: 1.5rem;
    margin-right: 0;
  }
}
/*----------------------------------------
    Element section
-----------------------------------------*/
.element-section .section-title {
  margin-bottom: 1.7rem;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0;
}
.element-section .section-desc {
  max-width: 50rem;
}
.element-section .element {
  display: block;
  padding: 3.1rem 0 3.6rem;
  background-color: #fff;
  -webkit-box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.05), 0 0 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.05), 0 0 5px rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
}
.element-section .element svg {
  fill: #aaa;
  stroke: #aaa;
  stroke-dashoffset: 1500;
  stroke-dasharray: 1500;
  -webkit-transition: fill 0.5s, -webkit-transform 0.3s;
  transition: fill 0.5s, -webkit-transform 0.3s;
  transition: transform 0.3s, fill 0.5s;
  transition: transform 0.3s, fill 0.5s, -webkit-transform 0.3s;
}
.element-section .element:hover svg {
  -webkit-transform: scale(1.6);
          transform: scale(1.6);
  stroke-dashoffset: 0;
  stroke: #336699;
  fill: transparent;
  -webkit-transition: fill 0.5s, stroke-dashoffset 6s, -webkit-transform 0.3s;
  transition: fill 0.5s, stroke-dashoffset 6s, -webkit-transform 0.3s;
  transition: transform 0.3s, fill 0.5s, stroke-dashoffset 6s;
  transition: transform 0.3s, fill 0.5s, stroke-dashoffset 6s, -webkit-transform 0.3s;
}
.element-section .element:hover p {
  color: #336699;
}
.element-section .element p {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.element-section .element.element-vendor {
  padding: 2.5rem 0 3.6rem;
}
.element-section .element.element-vendor p {
  margin-top: 0.6rem;
}

@media (max-width: 479px) {
  .element-section .element {
    max-width: 23.2rem;
    margin: 0 auto;
  }
}
/*----------------------------------------
    elexio Font icon
-----------------------------------------*/
@font-face {
  font-family: "elexio";
  src: url("../fonts/elexio/elexio.eot?png09e");
  src: url("../fonts/elexio/elexio.woff?png09e") format("woff"), url("../fonts/elexio/elexio.eot?png09e#iefix") format("embedded-opentype"), url("../fonts/elexio.ttf?png09e") format("truetype"), url("../fonts/elexio/elexio.svg?png09e#elexio") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class^=e-icon-], [class*=" e-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "elexio" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.e-icon-shipping:before {
  content: "";
}

.e-icon-truck2:before {
  content: "";
}

.e-icon-comments-solid:before {
  content: "";
}

.e-icon-heart-full:before {
  content: "";
}

.e-icon-instagram:before {
  content: "";
}

.e-icon-youtube:before {
  content: "";
}

.e-icon-pinterest:before {
  content: "";
}

.e-icon-pinterest-p:before {
  content: "";
}

.e-icon-google:before {
  content: "";
}

.e-icon-twitter:before {
  content: "";
}

.e-icon-facebook:before {
  content: "";
}

.e-icon-minus:before {
  content: "";
}

.e-icon-plus:before {
  content: "";
}

.e-icon-angle-down:before {
  content: "";
}

.e-icon-angle-up:before {
  content: "";
}

.e-icon-angle-left:before {
  content: "";
}

.e-icon-angle-right:before {
  content: "";
}

.e-icon-hamburger:before {
  content: "";
}

.e-icon-star-square-full:before {
  content: "";
}

.e-icon-exclamation-triangle:before {
  content: "";
}

.e-icon-times-circle:before {
  content: "";
}

.e-icon-cog:before {
  content: "";
}

.e-icon-star-square:before {
  content: "";
}

.e-icon-exclamation-circle:before {
  content: "";
}

.e-icon-check-solid:before {
  content: "";
}

.e-icon-check:before {
  content: "";
}

.e-icon-comments:before {
  content: "";
}

.e-icon-envelop:before {
  content: "";
}

.e-icon-envelop2:before {
  content: "";
}

.e-icon-youtube-solid:before {
  content: "";
}

.e-icon-times-solid:before {
  content: "";
}

.e-icon-call:before {
  content: "";
}

.e-icon-call2:before {
  content: "";
}

.e-icon-cart:before {
  content: "";
}

.e-icon-category:before {
  content: "";
}

.e-icon-bars:before {
  content: "";
}

.e-icon-compare:before {
  content: "";
}

.e-icon-computer:before {
  content: "";
}

.e-icon-electronics:before {
  content: "";
}

.e-icon-tshirt:before {
  content: "";
}

.e-icon-account:before {
  content: "";
}

.e-icon-search2:before {
  content: "";
}

.e-icon-android:before {
  content: "";
}

.e-icon-ios:before {
  content: "";
}

.e-icon-art-class:before {
  content: "";
}

.e-icon-bag:before {
  content: "";
}

.e-icon-basketball:before {
  content: "";
}

.e-icon-bathtub:before {
  content: "";
}

.e-icon-bed:before {
  content: "";
}

.e-icon-birthday-cake:before {
  content: "";
}

.e-icon-bow:before {
  content: "";
}

.e-icon-bridge-lamp:before {
  content: "";
}

.e-icon-calendar:before {
  content: "";
}

.e-icon-camera:before {
  content: "";
}

.e-icon-cart2:before {
  content: "";
}

.e-icon-dots-circle:before {
  content: "";
}

.e-icon-chat:before {
  content: "";
}

.e-icon-desktop:before {
  content: "";
}

.e-icon-dish:before {
  content: "";
}

.e-icon-display:before {
  content: "";
}

.e-icon-download:before {
  content: "";
}

.e-icon-envelop-closed:before {
  content: "";
}

.e-icon-fax:before {
  content: "";
}

.e-icon-furniture:before {
  content: "";
}

.e-icon-gamepad:before {
  content: "";
}

.e-icon-gift:before {
  content: "";
}

.e-icon-grid:before {
  content: "";
}

.e-icon-headphone:before {
  content: "";
}

.e-icon-heartbeat:before {
  content: "";
}

.e-icon-home:before {
  content: "";
}

.e-icon-honour:before {
  content: "";
}

.e-icon-hotline:before {
  content: "";
}

.e-icon-ice-cream:before {
  content: "";
}

.e-icon-list:before {
  content: "";
}

.e-icon-mobile:before {
  content: "";
}

.e-icon-money:before {
  content: "";
}

.e-icon-motocycle:before {
  content: "";
}

.e-icon-net-world:before {
  content: "";
}

.e-icon-orders:before {
  content: "";
}

.e-icon-phone:before {
  content: "";
}

.e-icon-return:before {
  content: "";
}

.e-icon-rice-cooker:before {
  content: "";
}

.e-icon-ruby:before {
  content: "";
}

.e-icon-search:before {
  content: "";
}

.e-icon-search-minus:before {
  content: "";
}

.e-icon-search-plus:before {
  content: "";
}

.e-icon-service:before {
  content: "";
}

.e-icon-shopify:before {
  content: "";
}

.e-icon-sofa:before {
  content: "";
}

.e-icon-sport:before {
  content: "";
}

.e-icon-star:before {
  content: "";
}

.e-icon-star-full:before {
  content: "";
}

.e-icon-table:before {
  content: "";
}

.e-icon-table2:before {
  content: "";
}

.e-icon-truck:before {
  content: "";
}

.e-icon-tshirt2:before {
  content: "";
}

.e-icon-user:before {
  content: "";
}

.e-icon-wallet:before {
  content: "";
}

.e-icon-heart:before {
  content: "";
}

.e-icon-gift2:before {
  content: "";
}

.e-icon-dashboard:before {
  content: "";
}

.e-icon-power-off:before {
  content: "";
}

.e-icon-wallet2:before {
  content: "";
}

.e-icon-products:before {
  content: "";
}

.e-icon-reports:before {
  content: "";
}

.e-icon-return2:before {
  content: "";
}

.e-icon-reviews:before {
  content: "";
}

.e-icon-return3:before {
  content: "";
}

.e-icon-cog2:before {
  content: "";
}

.e-icon-ship-station:before {
  content: "";
}

.e-icon-social:before {
  content: "";
}

.e-icon-store-seo:before {
  content: "";
}

.e-icon-store:before {
  content: "";
}

.e-icon-support:before {
  content: "";
}

.e-icon-tools:before {
  content: "";
}

.e-icon-vendor-store:before {
  content: "";
}

.e-icon-verification:before {
  content: "";
}

.e-icon-visit:before {
  content: "";
}

.e-icon-withdraw:before {
  content: "";
}

.e-icon-rotate-3d:before {
  content: "";
}

.e-icon-movie:before {
  content: "";
}

.e-icon-prev:before {
  content: "";
}

.e-icon-play:before {
  content: "";
}

.e-icon-next:before {
  content: "";
}

.e-icon-map-marker:before {
  content: "";
}

.e-icon-long-arrow-down:before {
  content: "";
}

.e-icon-long-arrow-left:before {
  content: "";
}

.e-icon-long-arrow-right:before {
  content: "";
}

.e-icon-long-arrow-up:before {
  content: "";
}

.e-icon-comment:before {
  content: "";
}

.e-icon-envelop3:before {
  content: "";
}

.e-icon-logout:before {
  content: "";
}

.e-icon-envelop4:before {
  content: "";
}

.e-icon-orders2:before {
  content: "";
}

.e-icon-quote:before {
  content: "";
}

.e-icon-sale:before {
  content: "";
}

.e-icon-heart2:before {
  content: "";
}

.e-icon-zoom:before {
  content: "";
}

/*------------------------
    Form
        - Form Control
        - Input Wrapper
-------------------------*/
.form-group {
  margin-bottom: 0.5rem;
}
.form-group.form-group-hidden {
  display: none;
}
.form-group.form-group-hor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-group-double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form-group-double .form-group {
  width: 49%;
}

.form-group .form-control {
  margin-bottom: 0.3rem;
}

input:-internal-autofill-selected {
  background-color: #fff !important;
  background-image: none !important;
  color: black !important;
}

.form-group label {
}
  .form-group label.label-titel {
     display: block;
     font-size: 1.4rem;
     font-weight: 400;
     margin-bottom: 0.5rem;
  }
  .form-group .custom-switch label {
     margin-bottom: 0;
     padding-top: 0;
  }

.form-control {
  display: block;
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--input-border-color);
  font-weight: 400;
  background-color: var(--input-bg-color);
  border-radius: 0.25rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
  font-size: 1.3rem;
}
.form-control.form-control-numeric {
  width: 9rem;
  max-width: 9rem;
}
  .product-variations-formule .form-control.form-control-numeric {
    width: 11rem;
    max-width: 11rem;
  }
.form-control::-webkit-input-placeholder {
  color: inherit;
  font-family: inherit;
}
.form-control::-moz-placeholder {
  color: inherit;
  font-family: inherit;
}
.form-control:-ms-input-placeholder {
  color: inherit;
  font-family: inherit;
}
.form-control::-ms-input-placeholder {
  color: inherit;
  font-family: inherit;
}
.form-control::placeholder {
  color: inherit;
  font-family: inherit;
  opacity: 0.3;
}
.form-control::-webkit-input-placeholder {
  color: inherit;
}
.form-control::-moz-placeholder {
  color: inherit;
}
.form-control.form-solid {
  background-color: #fff;
  border: 0;
  color: #8d8d8d;
}
.form-control.form-control-md {
  font-size: 1.3rem;
}
.form-control.form-control-sm {
  font-size: 1.2rem;
}

.form-group-error .form-control,
.form-control.form-control-error {
  border-color: var(--form-color-error);
}

.form-control:not(.no-focus):focus {
    outline: none;
    border-color: var(--form-control-focus-border-color);/* #2d2d2d */
    -webkit-box-shadow: 0 0 0 3px var(--form-control-focus-box-shadow);
    box-shadow: 0 0 0 3px var(--form-control-focus-box-shadow);
}

.form-control.form-control-rounded {
    border-radius: 3px;
}

.form-message-error {
  color: var(--form-color-error);
}

.form-ssl-info {
  color: var(--form-ssl-info-color);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem
}

.form-group .form-message-error {
  display: none;			
}
.form-group.form-group-error .form-message-error {
  display: block;
  margin-top: 0.5rem;
  margin-left: 0.2rem;		
}


.form-info-inline {
  display: block;
  color: #828282;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

a.password-eye {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  bottom: 0;
  right: 1rem;
  font-size: 1.4rem;
  color: inherit;
  border-bottom: 0px !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit !important;
}

a.password-eye:hover {
  color: inherit !important;
  opacity: 0.7;
}
   
textarea {
  font-family: inherit;
  min-width: 100%;
  max-width: 100%;
  min-height: 8rem;
}

.form-select {
    display: block;
    width: auto;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: .85rem 2.1rem .85rem .9rem;
    -moz-padding-start: calc(.9rem - 3px);
    background-color: var(--input-bg-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .9rem center;
    background-size: 10px 10px;
    border: 1px solid var(--input-border-color);
    color: inherit;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}

@media (max-width: 897px) {
.form-select {
    -moz-padding-start: calc(.9rem - 3px);
}
}

.form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 1.3125rem;
  padding-left: 2rem;
  margin-bottom: 0;
}
.form-check-input:not(.placeholder-skeleton):checked[type="radio"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type="radio"] {
    border-width: 3px;
    border-style: solid;
    border-color: #adb5bd;
    margin-right: 0.5rem
}
.form-check-input[type="radio"] {
    border-radius: 50%;
}
.form-check-input[type="radio"]:disabled {
   opacity: 0.5;
   cursor: not-allowed;
}
.form-check-input[type="radio"]:disabled+label {
   opacity: 0.5;
   cursor: not-allowed;
}

.form-check-input:not(.placeholder-skeleton):checked[type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input[type="checkbox"] {
    border-radius: .25em;
    margin-right: 0.5rem;
}
.form-check-input[type="checkbox"]:disabled {
   opacity: 0.5;
   cursor: not-allowed;
}
.form-check-input[type="checkbox"]:disabled+label {
   opacity: 0.5;
   cursor: not-allowed;
}

.form-check .form-check-input {
    float: left;
    margin-left: -2rem;
    margin-right: 5px;
}
.form-check-input {
    width: 1.3em;
    height: 1.3em;
}
.form-check-input {
    width: 1.443em;
    height: 1.443em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #adb5bd;
    -webkit-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}
@media (max-width:897px){
    .form-check-input

    }
}

input[type="radio"].form-check-input:checked {
    background-color: var(--form-checked-color);
    border-color: var(--form-checked-color);
    border-width: 1px;
}

.form-check-input:checked {
    background-color: var(--form-checked-color);
    border-color: var(--form-checked-color);
    border-width: 1px;
}

.form-check label {
    margin-bottom: 0px;
    flex: 1;
}

.full-width {
    width: 100%;
}

@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  select::-ms-expand {
    display: none;
  }

  select:focus::-ms-value {
    background: transparent;
    color: currentColor;
  }
}
.input-wrapper input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 40px;
  font-size: 1.4rem;
  border-width: 1px 1px 1px 1px;
}

.input-wrapper-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 67.5rem;
  width: 100%;
}
.input-wrapper-inline .btn {
  line-height: 1;
}

.input-wrapper-rounded .form-control {
  border-radius: 0.4rem;
}

.input-wrapper-round .form-control {
  position: relative;
  border-radius: 3rem;
}
.input-wrapper-round .btn {
  border-radius: 3rem;
  line-height: 1;
}
.input-wrapper-round .form-control {
  border-radius: 3rem 0 0 3rem;
}
.input-wrapper-round .btn {
  border-radius: 0 3rem 3rem 0;
}

.input-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 100%;
}
.input-group .form-control {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
  border-width: 1px;
}
.input-group input.form-control {
  -webkit-appearance: textfield;
}
.input-group .form-control:hover::-webkit-outer-spin-button, .input-group .form-control:hover::-webkit-inner-spin-button, .input-group .form-control:focus::-webkit-outer-spin-button, .input-group .form-control:focus::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.input-group button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.5rem;
  padding: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: #eee;
  color: #666;
  font-size: 1.4rem;
  border: none;
}
.input-group button + button {
  margin-right: 2.8rem;
}
@media (max-width: 897px) {
  .input-group button + button {
    margin-right: 3.4rem;
  }
}
.input-group button:hover {
  cursor: pointer;
}

.input-group button.quantity-minus::before {
  position: absolute;
  top: -50%;
  bottom: -50%;
  align-items: center;
  display: flex;
  right: -5px;
  left: -5px;
  justify-content: center;
}
.input-group button.quantity-plus::before {
  position: absolute;
  top: -50%;
  bottom: -50%;
  align-items: center;
  display: flex;
  right: -5px;
  left: -5px;
  justify-content: center;
}

.input-group button.quantity-minus::after {
}

.input-group button.quantity-plus::after {
}

.custom-radio {
  position: relative;
}
.custom-radio .custom-control-input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.custom-radio .custom-control-label {
  padding-left: 3rem;
}
.custom-radio .custom-control-label::after {
  content: "";
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid;
  border-radius: 2px;
  color: #999;
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  font-weight: 900;
  width: 1.8rem;
  height: 1.8rem;
  cursor: pointer;
  -webkit-transition: color 0.3s, background-color 0.3s, content 0.3s, border 0.3s;
  transition: color 0.3s, background-color 0.3s, content 0.3s, border 0.3s;
}
.custom-radio .custom-control-label.round::after {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  content: "";
  background-color: #336699;
  color: #fff;
  border: 2px solid #336699;
  padding-left: 2px;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label.color-dark::after {
  background-color: #333;
  border-color: #333;
}

.custom-checkbox {
  position: absolute;
  opacity: 0;
  z-index: 1;
  width: 1.8rem;
  height: 1.8rem;
  cursor: pointer;
}
.custom-checkbox + label {
  display: inline-block;
  position: relative;
  padding-left: 2.5rem;
  cursor: pointer;
}
.custom-checkbox + label::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 15px;
  border: 1px solid #ccc;
  border-radius: 2px;
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .custom-checkbox + label::before {
    line-height: 14px;
  }
}
.custom-checkbox:checked + label::before, .custom-checkbox.checked + label::before {
  content: "";
  border-color: #222;
  background: #222;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  text-align: center;
}

/****/
.custom-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  top: 0.3rem;
  left: -2.5rem;
  width: 2.5rem;
  pointer-events: all;
  border-radius: 5rem;
}
  .custom-control-lg.custom-switch .custom-control-label::before {
    width: 3.5rem;
  }

.custom-switch .custom-control-label::after {
  top: calc(0.3rem + 2px);
  left: calc(-2.5rem + 2px);
  width: calc(1.4rem - 4px);
  height: calc(1.4rem - 4px);
  background-color: #adb5bd;
  border-radius: 150%;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}
  .custom-control-lg.custom-switch .custom-control-label::after {
    left: calc(-2.5rem + 2px);
    width: calc(1.8rem - 4px);
    height: calc(1.79rem - 4px);
  }

@media screen and (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(1.05rem);
  transform: translateX(1.05rem);
}
  .custom-control-lg.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    -webkit-transform: translateX(1.65rem);
    transform: translateX(1.65rem);
  }

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: var(--form-checked-color);
  background-color: var(--form-checked-color);
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
  .custom-switch .custom-control-input:focus ~ .custom-control-label::before {
     box-shadow: none;
  }

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}
.custom-switch .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #adb5bd;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
  padding-left: 0.4rem;
}
  .custom-control-lg .custom-control-label {
     padding-top: 0.2rem;
     padding-left: 1.4rem;
  }

.custom-control-label::before {
  position: absolute;
  top: 0rem;
  left: -1.5rem;
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}
  .custom-control-lg .custom-control-label::before {
    height: 1.8rem;
  }

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 8 8\'%3e%3cpath fill=\'%23fff\' d=\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: var(--form-checked-color);
  background-color: var(--form-checked-color);
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 4 4\'%3e%3cpath stroke=\'%23fff\' d=\'M0 2h4\'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
/****/

.btn-absolute input.form-control {
  width: 100%;
  padding-left: 2rem;
  color: #999;
  font-size: 1.4rem;
}
.btn-absolute .btn {
  position: absolute;
  width: auto;
  height: 100%;
  min-width: 4.4rem;
  right: 0;
  font-size: 1.3rem;
}
.btn-absolute .btn:hover {
  color: #336699;
}

.quantity-plus-minus {
  padding-right: 6rem;
}

.winkelwagen-nummer-info {
  display: block;
  margin-top: 0.5rem;
}
.winkelwagen-nummer-info span {
  margin-left: 1.5rem;
}

/* -----------------------------------
    Custom Icons
        - User Icon
        - Minicart Icon
        - Menu Icon
-------------------------------------*/
.user-icon {
  display: block;
  padding-bottom: 2px;
}
.user-icon::before, .user-icon::after {
  content: "";
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.user-icon::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 1px;
  border: 1px solid #333;
  -webkit-box-shadow: 0px 0px 1px #333, 0px 0px 1px #333, 0px 0px 2px #333, 0px 0px 1px #333, 0px 0px 2px #333;
          box-shadow: 0px 0px 1px #333, 0px 0px 1px #333, 0px 0px 2px #333, 0px 0px 1px #333, 0px 0px 2px #333;
}
.user-icon::after {
  width: 22px;
  height: 12px;
  border-radius: 7px 7px 0 0;
  border: 1px solid #333;
  -webkit-box-shadow: 0px 0px 2px #333, 0px 0px 1px #333, 0px 0px 1px #333, 0px 0px 1px #333, 0px 0px 1px #333;
          box-shadow: 0px 0px 2px #333, 0px 0px 1px #333, 0px 0px 1px #333, 0px 0px 1px #333, 0px 0px 1px #333;
}

.minicart-icon {
  position: relative;
  height: 2.167em;
  text-align: center;
}
.minicart-icon::before, .minicart-icon::after {
  border: solid 2px;
  border-color: #333333;
}
.minicart-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: -0.3em;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0.7);
          transform: translateX(-50%) scale(0.7);
  width: 1.32em;
  height: 1.2em;
  border-radius: 10px 10px 0 0;
  border-bottom: none;
}
.minicart-icon::after {
  content: "";
  display: inline-block;
  width: 29px;
  height: 24px;
  background-color: transparent;
  border-radius: 0 0 5px 5px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  margin-top: 1px;
}

.menu-icon {
  display: inline-block;
  color: #fff;
  width: 1.7rem;
}
.menu-icon::before, .menu-icon::after {
  display: block;
  content: "";
  width: 100%;
}
.menu-icon::before {
  height: 6px;
  border-top: 2px solid;
  border-bottom: 2px solid;
}
.menu-icon::after {
  height: 4px;
  border-bottom: 2px solid;
}

.icon-angle-left::before {
  content: "";
}

.icon-angle-right::before {
  content: "";
}

.icon-angle-left,
.icon-angle-right {
  font-family: "elexio";
  font-style: normal;
}

.close-icon {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}
.close-icon::before, .close-icon::after {
  display: block;
  position: absolute;
  background-color: #ccc;
  content: "";
}
.close-icon::before {
  height: 2px;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.close-icon::after {
  height: 100%;
  width: 2px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* ---------------------------------------
    Icon Box
--------------------------------------- */
.icon-box .icon-box-title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.icon-box p {
  font-size: 1.3rem;
  word-break: break-word;
  margin: 0;
  line-height: 1.2;
}
.icon-box .icon-box-content {
  text-align: center;
}
.icon-box.text-center .icon-box-icon {
  margin-bottom: 1.6rem;
}
.icon-box.text-center .icon-box-icon.icon-bag {
  margin-bottom: 1.8rem;
}
.icon-box.text-center .icon-box-icon.icon-money {
  margin: 0.1rem 0 2.2rem;
}
.icon-box.text-center .icon-box-icon.icon-chat {
  margin-bottom: 1.2rem;
}
.icon-box.icon-box-lg .icon-box-title {
  font-size: 1.8rem;
}
.icon-box.icon-colored-circle .icon-box-icon {
  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;
  padding-top: 0;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #336699;
  color: #fff;
  margin-bottom: 2rem;
}

.icon-box-icon {
  display: inline-block;
  margin-bottom: 1.4rem;
}
.icon-box-primary .icon-box-icon i {
  color: #336699;
}
.icon-box-secondary .icon-box-icon i {
  color: #f93;
}
.icon-box-white .icon-box-icon svg {
  fill: #fff;
}
.icon-box-white .icon-box-icon i {
  color: #fff;
}
.icon-box-light .icon-box-icon svg {
  fill: #999;
}
.icon-box-icon i {
  font-size: 2.9rem;
  font-weight: 400;
  line-height: 1;
}
.icon-box-icon i.e-icon-truck {
  font-size: 3.9rem;
}
.icon-box-icon i.e-icon-bag {
  font-size: 3.7rem;
}
.icon-box-icon i.e-icon-money {
  font-size: 3.2rem;
}
.icon-box-icon i.e-icon-chat {
  font-size: 4.4rem;
}
.icon-box-lg .icon-box-icon i {
  font-size: 6rem;
}

.icon-box.icon-box-secondary .icon-box-icon i {
  font-size: 3rem;
}

.icon-box-side {
  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;
}
.icon-box-side .icon-box-content {
  text-align: start;
}
.icon-box-side .icon-box-content p {
  line-height: 1;
}
.icon-box-side .icon-box-icon {
  margin-right: 1.5rem;
  margin-bottom: 0;
}
.icon-box-side i {
  display: inline-block;
  vertical-align: middle;
}

.icon-border-circle .icon-box-icon {
  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;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.circle-icon-section {
  margin: 0.7rem 0 5.7rem;
  padding: 5.7rem 0 3.2rem;
  background-color: #f8f8f8;
}
.circle-icon-section .iconbox-wrap {
  margin-bottom: 4.9rem;
}

.icon-box.icon-border-box {
  border: 1px solid #eeeeee;
  padding: 4rem 1rem 3.4rem;
  -webkit-transition: -webkit-box-shadow 0.4s;
  transition: -webkit-box-shadow 0.4s;
  transition: box-shadow 0.4s;
  transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
  border-radius: 0.5rem;
}
.icon-box.icon-border-box .icon-box-icon {
  margin-bottom: 2.5rem;
}
.icon-box.icon-border-box .icon-box-title {
  margin-bottom: 0.7rem;
}
.icon-box.icon-border-box p {
  margin-bottom: 1.6rem;
  line-height: 1.9;
}
.icon-box.icon-border-box a {
  color: #336699;
  font-weight: 600;
  font-size: 1.4rem;
}
.icon-box.icon-border-box a i {
  font-size: 1.6rem;
  vertical-align: middle;
  line-height: 0;
}
.icon-box.icon-border-box:hover {
  -webkit-box-shadow: 0 2px 35px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 35px rgba(0, 0, 0, 0.1);
}

.iconbox-boxed-section .row {
  margin: 0 -3rem;
}
.iconbox-boxed-section .row &gt; * {
  padding: 0 3rem;
}
.iconbox-boxed-section .shadow-swiper {
  overflow-y: auto;
  padding: 4rem;
  margin: -4rem;
}

@media (max-width: 1320px) {
  .iconbox-boxed-section .shadow-swiper {
    padding: 4rem 2rem;
    margin: -4rem -2rem;
  }
}
@media (min-width: 898px) {
  .icon-box-side.icon-box-money {
    margin-top: 0.2rem;
  }
  .icon-box-side.icon-box-chat {
    margin-top: -0.3rem;
  }
}
@media (max-width: 897px) {
  .icon-box-side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .icon-box-side .icon-box-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .icon-box-side .icon-box-content {
    text-align: center;
  }
  .icon-box-side.icon-box-money {
    margin-top: 0.6rem;
  }
  .icon-box-side.icon-box-chat .icon-box-icon {
    margin-bottom: 0.4rem;
  }
}
/*--------------------------------
    Instagram
---------------------------------*/
.instagram {
  position: relative;
  overflow: hidden;
}
.instagram a {
  display: block;
  position: relative;
  overflow: hidden;
}
.instagram a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--instagram-hover-bg-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 1;
}
.instagram a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg) scale(2);
          transform: translate(-50%, -50%) rotate(90deg) scale(2);
  font-size: 3rem;
  font-family: "elexio";
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  z-index: 1;
}
.instagram img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.instagram:hover a::before {
  opacity: 0.5;
}
.instagram:hover a::after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1);
          transform: translate(-50%, -50%) rotate(0deg) scale(1);
}
.instagram:hover img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.instagram-info .instagram-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.6rem;
  letter-spacing: 0;
  color: #fff;
  opacity: 0;
  z-index: 2;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.instagram-info .instagram-content i {
  display: inline-block;
  margin-right: 0.8rem;
}
.instagram-info .instagram-content a {
  display: inline-block;
  color: #fff;
}
.instagram-info .instagram-content a:not(:last-child) {
  margin-right: 2rem;
}
.instagram-info .instagram-content a::before {
  content: none;
}
.instagram-info a::after {
  content: none;
}
.instagram-info:hover .instagram-content {
  opacity: 1;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  position: fixed;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  overflow: hidden;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-popup-product .mfp-container:before {
  display: none;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  text-align: start;
  z-index: 1045;
}

.mfp-fade.mfp-wrap .mfp-content {
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: start;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* -------------------------------------------
    Mini Popup
---------------------------------------------- */
.minipopup-area {
  position: fixed;
  right: 100px;
  bottom: 30px;
  z-index: 2499;
}

.minipopup-box {
  position: absolute;
  right: -8rem;
  width: 370px;
  padding: 2rem;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s, left 0.3s ease-out, -webkit-transform 0.3s;
  transition: opacity 0.3s, left 0.3s ease-out, -webkit-transform 0.3s;
  transition: opacity 0.3s, left 0.3s ease-out, transform 0.3s;
  transition: opacity 0.3s, left 0.3s ease-out, transform 0.3s, -webkit-transform 0.3s;
  z-index: 3000;
}
.minipopup-box.show {
  opacity: 1;
  right: 0;
}
.minipopup-box.focus {
  -webkit-transform: scale(0.98) translateY(-100%);
          transform: scale(0.98) translateY(-100%);
}
.minipopup-box .product.product-cart {
  padding-top: 0;
  margin-bottom: 1.5rem;
}
.minipopup-box .product.product-cart .product-name {
  margin-bottom: 0.9rem;
  font-weight: 400;
}
.minipopup-box .product.product-cart .minipopup-product-details {
  padding: 0 0 0 1.2rem;
}
.minipopup-box .product.product-cart .minipopup-product-details p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  font-size: 1.3rem;
  color: #666;
  line-height: 1.4;
}
.minipopup-box .product.product-cart .minipopup-product-details p::before {
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  
  content: "\f058";
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--cta-color);
  margin-right: 0.5rem;
}
.minipopup-box .product-action {
  position: relative;
  opacity: 1;
  visibility: visible;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.minipopup-box .product-action a:first-child {
  background-color: #eee;
  border-color: #eee;
  color: #333;
}
.minipopup-box .product-action a:first-child:hover, .minipopup-box .product-action a:first-child:focus, .minipopup-box .product-action a:first-child:active {
  background-color: #dcdcdc;
  border-color: #dcdcdc;
}
.minipopup-box .product-action .btn {
  padding-left: 1.9em;
  padding-right: 1.9em;
}
.minipopup-box .product-action a:first-child {
  margin-right: 0.2rem;
}
.minipopup-box .product-action a:last-child {
  margin-left: 0.2rem;
}

@media (max-width: 897px) {
  .minipopup-area {
    right: 15px;
    left: 15px;
  }
  .minipopup-box {
    width: 100%;
  }
}
/*----------------------------
    Overlay
-----------------------------*/
.overlay-dark figure, .overlay-dark .banner,
.overlay-light figure,
.overlay-light .banner {
  position: relative;
}
.overlay-dark figure::after,
.overlay-dark figure &gt; a::after, .overlay-dark.banner::after,
.overlay-light figure::after,
.overlay-light figure &gt; a::after,
.overlay-light.banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #333;
  opacity: 0;
  -webkit-transition: opacity 0.3s, background 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, background 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, background 0.3s, transform 0.3s;
  transition: opacity 0.3s, background 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.overlay-dark:hover figure::after, .overlay-dark:hover figure &gt; a::after, .overlay-dark.banner:hover::after,
.overlay-light:hover figure::after,
.overlay-light:hover figure &gt; a::after,
.overlay-light.banner:hover::after {
  opacity: 0.1;
}
.overlay-dark.banner-fixed::after, .overlay-dark.post &gt; figure::after,
.overlay-light.banner-fixed::after,
.overlay-light.post &gt; figure::after {
  content: none;
}
.overlay-dark.post &gt; figure &gt; a::after,
.overlay-light.post &gt; figure &gt; a::after {
  z-index: 1;
}

.overlay-light figure::after,
.banner.overlay-light::after {
  background: #ccc;
}

.overlay-zoom {

}
.overlay-zoom img {
  -webkit-transition: -webkit-transform 0.85s;
  transition: -webkit-transform 0.85s;
  transition: transform 0.85s;
  transition: transform 0.85s, -webkit-transform 0.85s;
}
.overlay-zoom:hover img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  overflow: hidden;
}

.overlay-grayscale img {
  filter: grayscale(var(--img-overlay-grayscale-grayscale));
}

.overlay-grayscale:hover img {
  filter: grayscale(var(--img-overlay-grayscale-hover-grayscale));
}

.overlay-opacity img {
  opacity: var(--img-overlay-opacity-opacity);
}

.overlay-opacity:hover img {
  opacity: var(--img-overlay-opacity-hover-opacity);
}

.overlay-rotate {

}
.overlay-rotate img {
  -webkit-transition: -webkit-transform 0.35s;
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition: transform 0.35s, -webkit-transform 0.35s;
}
.overlay-rotate:hover {
  -webkit-transform: rotateZ(3deg) scale(1.15);
          transform: rotateZ(3deg) scale(1.15);
}

/*-------------------------
    Page Header
        - Page Header
        - Page Title
        - Page Subtitle
--------------------------*/
.page-header {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 18rem;
  background-color: #eee;
  text-align: center;
  text-transform: capitalize;
}

.cart .page-header,
.checkout .page-header {
  height: 134px;
  background: #fff;
}

/*--------------------------------
    Pagniation
---------------------------------*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: var(--page-pagination-bg-color);
  font-size: var(--page-pagination-font-size);
  color: var(--page-pagination-color);
  letter-spacing: var(--page-pagination-letter-spacing);
  padding: var(--page-pagination-padding);
  z-index: 1;
}
@media (max-width: 897px) {
  .pagination {
     padding: 0px;
  }
}
  .toolbox-pagination:not(.justify-content-center) .pagination {
    padding-right: 0px;
  }
  .toolbox-pagination-infinity {
    font-size: var(--page-pagination-infinity-font-size);
    letter-spacing: var(--page-pagination-infinity-letter-spacing);
    padding: var(--page-pagination-infinity-padding);
  }
  .toolbox-page-heading .pagination {
    font-size: var(--page-pagination-infinity-font-size);
    letter-spacing: var(--page-pagination-infinity-letter-spacing);
    padding: var(--page-pagination-infinity-padding);
  }
  .toolbox-result-info .pagination {
    font-size: var(--page-toolbox-result-info-pagination-infinity-font-size);
    font-weight: var(--page-toolbox-result-info-pagination-infinity-font-size);
    letter-spacing: var(--page-toolbox-result-info-pagination-infinity-letter-spacing);
    padding: var(--page-toolbox-result-info-pagination-infinity-padding);
  }
.toolbox-btn-infinity-scroll-next {
  margin-bottom: 1.5rem;
}
.pagination &gt; * {

}
.pagination a {
  color: inherit;
}
.pagination .prev, .pagination .next {
  height: 4rem;
  min-width: 8rem;
  padding: 1.2rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}
.pagination .prev.disabled, .pagination .next.disabled {
  color: #aaa;
}
.pagination .prev {
  margin-right: 0.5rem;
}
.pagination .prev i {
  margin-right: 0.5rem;
}
.pagination .next i {
  margin-left: 0.5rem;
}
.pagination-border {

}
.pagination-border:after {

}

.pagination-buttons{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  flex-wrap: unset;
  width: 100%;
  margin: 1rem 0;
}

.pagination-buttons li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0px;
}

.pagination-buttons li a.page-link {
  width: 100%;
  padding: 1rem;
}

.pagination-buttons li a.page-link span {
  font-size: 1.3rem;
}

.pagination-buttons.pagination-buttons__1 li {
  
}
.pagination-buttons.pagination-buttons__2 li {
  width: 100%;
  width: 50%;
}
.pagination-buttons.pagination-buttons__2 li:first-child {
  margin-right: 0.2rem;
}
.pagination-buttons.pagination-buttons__2 li:last-child {
  margin-left: 0.2rem;
}

.pagination-progress {
  position: relative; width: 190px;
  height: 4px;
  background: var(--page-pagination-progress-bg-color);
  display: block;
  margin: 0rem auto 2.5rem auto;
}

.pagination-progress-bar {
  position: absolute;
  top:0 ;
  right: 0;
  left: 0;
  bottom: 0;
  height: 4px;
  background: var(--page-pagination-progress-bar-bg-color);
  transition: width .2s linear; 
}

.pagination a.page-link {
  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;
  font-size: var(--page-link-font-size);
  font-weight: var(--page-link-font-weight);
  padding: var(--page-link-padding);
  background-color: var(--page-link-bg-color);
  border: 1px solid transparent;
  border-radius: var(--page-link-border-radius);
  line-height: 1;
  width: var(--page-link-width-height);
  height: var(--page-link-width-height);
}
.pagination a.page-link-btn {
  background-color: var(--page-link-btn-bg-color);
  border-color: var(--page-link-btn-border-color);
  color: var(--page-link-btn-color);
  border-radius: var(--page-link-btn-border-radius);
  width: inherit;
}
.pagination a.page-link-btn:hover {
  background-color: var(--page-link-btn-hover-bg-color);
  border-color: var(--page-link-btn-hover-border-color);
  color: var(--page-link-btn-hover-color);
}
.pagination a.page-link-btn.page-link-btn__prev {
  background-color: var(--page-link-btn-prev-bg-color);
  border-color: var(--page-link-btn-prev-border-color);
  color: var(--page-link-btn-prev-color);
}
@media (max-width: 897px) {
  .pagination a.page-link-btn {
    background-color: var(--page-link-btn-mobile-bg-color);
    border-color: var(--page-link-btn-mobile-border-color);
    color: var(--page-link-btn-mobile-color);
    height: var(--page-link-btn-mobile-height);
  }
  .pagination a.page-link-btn.page-link-btn__prev {
    background-color: var(--page-link-btn-prev-mobile-bg-color);
    border-color: var(--page-link-btn-prev-mobile-border-color);
    color: var(--page-link-btn-prev-mobile-color);
  }
}
.pagination a.page-link span {
  font-size: 1.2rem;
}
.pagination a.page-link span.page-link-btn__span-prev {
  margin-left: 0.5rem;
}
.pagination a.page-link span.page-link-btn__span-next {
  margin-left: 0.5rem;
}

.pagination a.page-link.sep {
  pointer-events: none; 
}

:hover:not(.active):not(.page-link-btn__span-next):not(.disabled):not(.sep) &gt; .page-link {
  background-color: var(--page-link-hover-bg-color);
  border-color: var(--page-link-hover-border-color);
  color: var(--page-link-hover-color);
}
.active:not(.disabled):not(.sep) &gt; .page-link {
  background-color: var(--page-link-active-bg-color);
  border-color: var(--page-link-active-border-color);
  color: var(--page-link-active-color);
}
.pagination a.page-link.disabled {
  pointer-events: none; 
  color: var(--page-link-color-disabled);
}

.page-item:not(:last-child) {
  margin-right: 0.5rem;
}

.page-item-dots {
  white-space: nowrap;
}
.page-item-dots::before {
  content: "...";
  display: inline-block;
  vertical-align: middle;
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 0.1rem;
  margin-top: -6px;
}

@media (max-width: 897px) {
  .toolbox-btn-infinity-scroll-next {
     margin-bottom: 3.5rem;
  }
}

/*---------------------------------
    Popup
        - Popup
        - Popup Close
        - Popup Arrow
        - Popup Content
        - Popup - Login
        - Popup - Image PhotoSwipe
-----------------------------------*/
.mfp-wrap {
  z-index: 2500;
}
  .mfp-alert.mfp-wrap {
    z-index: 2501;
  }

.mfp-bg {
  z-index: 2500;
  background: #000;
  opacity: 0.4;
  -webkit-transition: opactiy 0.3s ease-out;
  transition: opactiy 0.3s ease-out;
}
.mfp-bg.mfp-ready.mfp-fade {
  opacity: 0.4;
}
.mfp-bg.mfp-remove {
  opacity: 0;
}
.mfp-info.mfp-bg {
  background: radial-gradient(rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 1;
}

.mfp-container {
  padding: 4rem 2rem;
}

.mfp-content &gt; * {
  position: relative;
  margin: auto;
  background: #fff;
  opacity: 0;
  -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mfp-ready .mfp-content &gt; * {
  opacity: 1;
}
.mfp-remove .mfp-content &gt; * {
  opacity: 0;
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "elexio";
  border: 0;
  opacity: 0.5;
  right: 10%;
  left: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.pswp__ui &gt; button::before {
  background: transparent;
  position: static;
}
.pswp__ui &gt; button:hover {
  opacity: 1;
}

.pswp__button--arrow--right::before {
  content: "";
}

.pswp__button--arrow--left {
  left: 10%;
  right: auto;
}
.pswp__button--arrow--left::before {
  content: "";
}

.pswp {
  z-index: 3010;
}
.pswp .pswp__bg {
  background-color: rgba(0, 0, 0, 0.7);
}

.pswp__scroll-wrap {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

.pswp__top-bar,
.pswp__caption {
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1), background-color 0.3s 0.5s;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1), background-color 0.3s 0.5s;
}

.pswp:not(.pswp--animated-in) .pswp__top-bar,
.pswp:not(.pswp--animated-in) .pswp__caption {
  background-color: transparent;
}

.pswp--visible .pswp__scroll-wrap {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

.pswp__img {
  border-radius: 3px;
}

.pswp__img--placeholder--blank {
  background-color: #F2F3F5;
}

.pswp__caption {
  min-height: auto;
}

.pswp__caption__center {
  text-align: center;
}

.pswp__counter {
  left: 0;
}

.pswp__button {
  float: right;
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  width: 4.8rem;
  height: 4.8rem;
  margin-top: -2.4rem;
  color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  text-align: center;
  opacity: 0.5;
  right: 10%;
  left: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border: 2px solid;
}

.pswp__ui &gt; button::before {
  background: transparent;
  position: static;
}
.pswp__ui &gt; button:hover {
  opacity: 1;
}

.pswp__button--arrow--right::before {
  content: "";
}

.pswp__button--arrow--left {
  left: 10%;
  right: auto;
}
.pswp__button--arrow--left::before {
  content: "";
}

.alert-popup {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: #000;
  width: 38rem;
  padding: 1.6rem 2.1rem;
  margin: auto;
  border-radius: 1rem;
}

.alert-popup h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: #000;
  margin-bottom: 1.1rem;
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.2;
}
.alert-popup p {
  color: #000;
  margin-bottom: 2rem;
  line-height: 1.75;
  font-size: 1.4rem;
  font-weight: 500;
}
.alert-popup ul {

}
.alert-popup ul li {
  list-style-type: none;
  margin-bottom: 1rem;
}
.alert-popup ul li:last-child {
  margin-bottom: 0;
}

.alert-popup button.mfp-close{
  display: none;
}

.alert-content {

}

.popup-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: var(--popup-info-max-width);
  margin: auto;
  border-radius: var(--popup-info-border-radius);
  border-width: var(--popup-info-border-width);
  border-style: var(--popup-info-border-style);
  border-color: var(--popup-info-border-color);

  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  object-fit: cover;

  background: rgba(255, 255, 255, 0.3);
  padding: 0.5rem;
}
.popup-info .popup-info-heading-h1 {
  display: block;
  color: var(--popup-info-heading-color);
  margin-bottom: 0.4rem;
  font-size: 2rem;
}
.popup-info .popup-info-heading-h1 span {
  display: inline-block;
  margin-left: 0.4rem;
  font-weight: 800;
}
.popup-info .popup-info-heading-h2 {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--popup-info-heading-color);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1.2;
}
.popup-info p {
  margin-bottom: 2.3rem;
  line-height: 1.75;
}
.popup-info .input-wrapper-inline {
  max-width: 34rem;
  margin-bottom: 3rem;
}
.popup-info .input-wrapper-inline .form-control {
  border-color: #ccc;
  color: #666;
  margin-right: -0.5rem;
}
.popup-info .input-wrapper-inline .btn {
  padding-top: 0.9em;
  padding-bottom: 0.9em;
}
.popup-info label {
  padding-left: 2.7rem;
}
.popup-info label::before {
  border-color: #999;
}

.popup-info-main {
  width: 100%;
  background: #fff;
  border-radius: var(--popup-info-border-radius);
  max-height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.popup-info-main.popup-info-main-media {
  max-width: inherit;
  padding: 0px;
}

.popup-info-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  height: var(--popup-info-header-height);
}

.popup-info-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: auto;
}

.popup-info-content {
  max-width: 45rem;
  padding: 6rem 4.8rem;
  flex: 1;
  color: var(--popup-info-content-color);
}

  .popup-info-main-media .popup-info-content {
    max-width: inherit;
    padding: 0rem 0rem;
  }

.popup-info-content-media {
  background-size: cover;
  background-position: center center;
  flex: 1;
}
.popup-info-content-media img {
  opacity: 0;
}

.popup-info .popup-info-main-media .form-checkbox {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.popup-info .form-checkbox {
  color: var(--popup-info-form-checkbox-color);
}
.popup-info label::before {
  border-color: var(--popup-info-form-checkbox-border-color);
}

.popup-info-link {
  position: fixed;
  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;
  bottom: 6rem;
  right: 2.5rem;
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.6);
  color: #FFF;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: bottom 0.3s, opacity 0.3s;
  transition: bottom 0.3s, opacity 0.3s;
  box-shadow: rgba(0, 0, 0, 0.26) 0px 2px 4px 0px;
}
.popup-info-link.show {
    opacity: 1;
}
.popup-info-link:hover {
  color: #FFF;
}
@media (max-width: 897px) {
  .popup-info-link {
    bottom: 8.5rem;
  }
}

.mfp-product .mfp-container {
  padding: 4rem 3rem 2rem;
}
.mfp-product .mfp-content {
  max-width: 88rem;
  margin: auto;
}
.mfp-product .product-popup {
  display: block;
  margin-bottom: 3rem;
  padding: 2rem;
}
.mfp-product .product-details {
  overflow-x: hidden;
  overflow-y: auto;
}

body .product-popup {
  display: none;
}

.login-popup {
  max-width: 50rem;
  padding: 3.3rem 5rem 2.6rem;
}
.login-popup .nav.nav-tabs .nav-item {
  width: calc(50% - .5rem);
  margin: 0;
}
.login-popup .nav.nav-tabs .nav-item:first-child {
  margin-right: 1rem;
}
.login-popup .nav-item .nav-link {
  padding: 1.3rem 0;
  font-size: 1.6rem;
  font-weight: 700;
}
.login-popup .nav-item .nav-link::after {
  border-top-width: 2px;
  -webkit-transform: none;
          transform: none;
}
.login-popup .tab-pane {
  padding-top: 3.3rem;
  padding-bottom: 2.6rem;
}
.login-popup .tab-pane a:not(.btn):hover {
  text-decoration: underline;
}
.login-popup #sign-in {
  font-size: 1.4rem;
}
.login-popup .form-group {
  margin-bottom: 2.6rem;
}
.login-popup .form-group label {
  display: block;
  margin-bottom: 0.5rem;
}
.login-popup .form-control {
  min-height: 4.4rem;
}
.login-popup .form-checkbox {
  margin-top: 2.2rem;
  margin-bottom: 2.3rem;
}
.login-popup .form-checkbox a {
  font-size: 1.2rem;
  color: #a94442;
}
.login-popup .btn {
  display: block;
  padding-top: 0.79em;
  padding-bottom: 0.79em;
}
.login-popup p {
  margin-bottom: 1.9rem;
}
.login-popup #sign-up p {
  margin-bottom: 2.1rem;
  line-height: 1.84;
}
.login-popup .social-icon {
  margin-right: 0.8rem;
}

@media (min-width: 898px) {
  .product-popup .product-details {
    position: absolute;
    overflow-y: auto;
    top: 0;
    left: 2rem;
    width: calc(100% - 3rem);
    height: 100%;
  }
}

.mfp-close {
  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;
  position: absolute;
  cursor: pointer;
  top: 1rem;
  right: 1rem;
  padding: 0;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  z-index: 2;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  transition: 0.2s; 
  outline: none; 
  border: 0;
  background: none;
  border: 0px solid;
  font-size: 1.8rem;
}

  .mfp-wrap .mfp-close {
    background: #eee;
  }

.mfp-close::before {
  position: absolute;
  content: "";
  font-family: "elexio" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #000;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  transform: rotate(0deg);
}
.mfp-close:hover::before {
  transform: rotate(180deg);
}

  .mfp-wrap.mfp-popup .mfp-close {
    background: transparent;
  }
.mfp-popup .mfp-close::before {
  position: fixed;
  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: #eee;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
}

.mfp-ready.mfp-zoom-popup .mfp-content {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.mfp-zoom-popup .mfp-content, .mfp-removing.mfp-zoom-popup .mfp-content {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.mfp-ready.mfp-fadein-popup .mfp-content {
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.mfp-fadein-popup .mfp-content,
.mfp-removing.mfp-fadein-popup .mfp-content {
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

.mfp-video-popup .mfp-content {
  max-width: 100rem;
}
.mfp-video-popup video {
  width: 100%;
}

@media (min-width: 1082px) {
  .mfp-product .product-popup {
    padding: 3rem;
  }
  .mfp-product .product-popup .product-form-group {
    display: block;
  }
  .mfp-product .product-popup .action-group {
    margin-left: 0;
  }
}
@media (max-width: 1081px) {

  .alert-popup {
    width: 32rem;
  }

  .popup-info {
    max-width: 40rem;
    min-height: 40rem;
    padding: 0rem 2rem;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .popup-info {
    max-width: 40rem;
    min-height: 40rem;
    padding: 0rem 0rem;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .popup-info-content {
    padding: 2.1rem 2.8rem;
    flex: inherit;
  }
  .popup-info .form-checkbox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .popup-info .input-wrapper-inline {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 24rem;
  }
  .popup-info .input-wrapper-inline .form-control {
    margin-bottom: 1rem;
    border-radius: 3rem;
    border-width: 1px;
  }
  .popup-info .input-wrapper-inline .btn {
    border-radius: 3rem;
    width: 100%;
  }
}
@media (max-width: 897px) {
  .popup-info-content-media {
    flex: 1;
    max-height: 340px;
  }
  .popup-info-content {
    flex: 1;
  }
}
@media (max-width: 575px) {
  .popup-info-content-media {
    flex: inherit;
  }
  .popup-info-content {
    flex: 1;
    max-width: inherit;
  }
}
@media (max-width: 479px) {
  .mfp-product .mfp-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .login-popup {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .popup-info-content {
    flex: inherit;
  }
}

.mfp-instagram-popup .mfp-content {
  width: auto;
}
/*-------------------------------------------
    Products
        - Default
        - Simple
        - Slide Up
        - Image Gap
        - Widget
        - List
--------------------------------------------*/
.product {
  position: relative;
  -webkit-transition: opacity 0.3s, -webkit-box-shadow 0.3s;
  transition: opacity 0.3s, -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s, opacity 0.3s;
  transition: box-shadow 0.3s, opacity 0.3s, -webkit-box-shadow 0.3s;
}
.product:hover .product-action,
.product:hover .product-action-vertical,
.product:hover .product-action-horizontal,
.product:hover .product-details-hidden {
  visibility: visible;
  opacity: 1;
}
.product:hover .product-action-horizontal {
  bottom: 1.5rem;
}
.product .product-price {

}
.product .product-meta-item span {
  font-weight: var(--product-meta-item-span-font-weight);
  color: var(--product-meta-item-span-color);
  opacity: var(--product-meta-item-span-opacity); 
}
.product .product-meta-item span.link-meta-item:hover {
  color: var(--product-meta-item-span-hover-color);
  opacity: 1;
}

.product .product-meta-item.product-meta-item__brand {
  font-family: var(--product-meta-item-brand-font-family);
  font-size: var(--product-meta-item-brand-font-size);
  font-weight: var(--product-meta-item-brand-font-weight);
  color: var(--product-meta-item-brand-color);
  text-decoration: var(--product-meta-item-brand-text-decoration);
  letter-spacing: var(--product-meta-item-brand-letter-spacing);
}
.product .product-meta-item.product-meta-item__brand span.product-brand {
  opacity: var(--product-meta-item-brand-span-opacity);
}

.product.product-single .product-meta-item.product-meta-item__brand {
  font-family: var(--product-single-product-meta-item-brand-font-family);
  font-size: var(--product-single-product-meta-item-brand-font-size);
  font-weight: var(--product-single-product-meta-item-brand-font-weight);
  color: var(--product-single-product-meta-item-brand-color);
  text-decoration: var(--product-single-product-meta-item-brand-text-decoration);
  letter-spacing: var(--product-single-product-meta-item-brand-letter-spacing);
}
.product.product-single .product-meta-item.product-meta-item__brand span.product-brand {
  opacity: var(--product-single-product-meta-item-brand-span-opacity);
}

.product .product-meta-item.product-meta-item__category {
  font-family: var(--product-meta-item-category-font-family);
  font-size: var(--product-meta-item-category-font-size);
  font-weight: var(--product-meta-item-category-font-weight);
  color: var(--product-meta-item-category-color);
  text-decoration: var(--product-meta-item-category-text-decoration);
  letter-spacing: var(--product-meta-item-category-letter-spacing);
}
.product .product-meta-item.product-meta-item__category span.product-category {
  opacity: var(--product-meta-item-category-span-opacity);
}

.product.product-single .product-meta-item.product-meta-item__category {
  font-family: var(--product-single-product-meta-item-category-font-family);
  font-size: var(--product-single-product-meta-item-category-font-size);
  font-weight: var(--product-single-product-meta-item-category-font-weight);
  color: var(--product-single-product-meta-item-category-color);
  text-decoration: var(--product-single-product-meta-item-category-text-decoration);
  letter-spacing: var(--product-single-product-meta-item-category-letter-spacing);
}
.product.product-single .product-meta-item.product-meta-item__category span.product-category {
  opacity: var(--product-single-product-meta-item-category-span-opacity);
}

.product .product-meta-item a {
  color: inherit;
}

.product-media {
  background: var(--product-media-bg);
  background-color: var(--product-media-bg-color);
  border-style: var(--product-media-border-style);
  border-color: var(--product-media-border-color);
  border-top-width: var(--product-media-border-top-width);
  border-right-width: var(--product-media-border-right-width);
  border-bottom-width: var(--product-media-border-bottom-width);
  border-left-width: var(--product-media-border-left-width);
  margin-bottom: 0;
  -webkit-transition: -webkit-box-shadow 0.35s;
  transition: -webkit-box-shadow 0.35s;
  transition: box-shadow 0.35s;
  transition: box-shadow 0.35s, -webkit-box-shadow 0.35s;
  border-top-left-radius: var(--product-media-border-top-left-radius);
  border-top-right-radius: var(--product-media-border-top-right-radius);
  border-bottom-right-radius: var(--product-media-border-bottom-right-radius);
  border-bottom-left-radius: var(--product-media-border-bottom-left-radius);
  overflow: hidden;
}
  .product-grid .product-media .product-name {
    padding-top: var(--product-wrapper__grid-product-details-padding-top);
    padding-right: var(--product-wrapper__grid-product-details-padding-right);
    padding-bottom: var(--product-wrapper__grid-product-details-padding-bottom);
    padding-left: var(--product-wrapper__grid-product-details-padding-left);
  }
  .product-list .product-media {
    height: 100%;
  }
      .product-list.align-middle .product-media {
      	-webkit-box-pack: center;
      	  -ms-flex-pack: center;
            justify-content: center;
      }
  .product-widget .product-media {
    height: 100%;
  }
  .swiper-col .product-widget .product-media {
    height: auto;
  }
.product-media img {
  width: 100%;
  height: auto;

  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.product-media img:last-child {
  position: absolute;
  opacity: 0;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-media img:first-child {
  position: relative;
  opacity: 1;
}
.product-media:hover img:last-child {
  opacity: 1;
}

.product-sales-wrapper {
  position: relative;
  margin-bottom: 1.4rem;
}
.product-sales-wrapper .progress-bar {
  height: 1rem;
  background: #eee;
  margin-bottom: 0.7rem;
}
.product-sales-wrapper .product-sales-count {
  color: #666;
  font-size: 1.3rem;
}
.product-sales-wrapper .product-sales-count mark {
  background-color: transparent;
  color: inherit;
}

.product .thumbnail .btn-product-quickview {
  position: absolute;
  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;
  text-align: center;	
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%) scale(.1);
  -moz-transform: translate(-50%,-50%) scale(.1);
  -o-transform: translate(-50%,-50%) scale(.1);
  -ms-transform: translate(-50%,-50%) scale(.1);
  transform: translate(-50%,-50%) scale(.1);  
  opacity: 0;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  background: var(--btn-quickview-bg-color);
  color: var(--btn-quickview-color);
  font-size: var(--btn-quickview-font-size);
  padding: 0.8rem 1.6rem;
  border-radius: var(--btn-quickview-border-radius);
  white-space: nowrap;
  z-index: 2;   
}
  .product .thumbnail .btn-product-quickview i {
    font-size: 2rem;	
  }
.product .thumbnail:hover .btn-product-quickview {
  top: 50%;
  -webkit-transform: translate(-50%,-50%) scale(1);
  -moz-transform: translate(-50%,-50%) scale(1);
  -o-transform: translate(-50%,-50%) scale(1);
  -ms-transform: translate(-50%,-50%) scale(1);
  transform: translate(-50%,-50%) scale(1);    
  opacity: 1;
}
.product .thumbnail .btn-product-quickview:hover {
  background: var(--btn-quickview-hover-bg-color); 
  color: var(--btn-quickview-hover-color);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);	
}

.product .product-meta-item__brand .product-brand-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
}
.product.product-grid .product-meta-item__brand .product-brand-logo {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; 
}
.product.product-grid.align-center .product-meta-item__brand .product-brand-logo {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; 
}
.product .product-meta-item__brand img {
  max-height: 35px;
  width: auto;
  object-fit: contain;
}

.btn-product {
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.14em 0;
  line-height: 1.2;
  background-color: #336699;
  color: #fff;
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.btn-product:hover, .btn-product:active {
  color: #fff;
}
.btn-product.btn-link {
  display: inline-block;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.6;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background-color: transparent;
  padding: 0;
}
.btn-product.btn-link::after {
  margin-top: 0;
}
.btn-product.btn-sm {
  padding: 0.693em 0;
}

.btn-wishlist {
  line-height: 1;
}

.btn-wishlist.btn-wishlist-plus-minus::after {
  content: "+";
  
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content:"\f067";

  position: absolute;
  background: var(--product-wishlist-color);
  color: #FFF;
  border: 1px solid #fff;
  font-size: 9px;
  line-height: 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  bottom: 3px;
  right: -2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 2;
}
  .product-wishlist.product-wishlist__single .btn-wishlist.btn-wishlist-plus-minus::after {
    right: 0px;
    bottom: 6px;
  }
  .product-widget .btn-wishlist.btn-wishlist-plus-minus::after {
    font-size: 8px;
    line-height: 14px;
    width: 14px;
    height: 14px;
    right: -1px;
    bottom: 4px;
  }
  .cart-table .btn-wishlist.btn-wishlist-plus-minus::after {
    font-size: 8px;
    line-height: 14px;
    width: 14px;
    height: 14px;
    right: -1px;
    bottom: 4px;
  }
.btn-wishlist.btn-wishlist-plus-minus.added::after {
  content:"\f068";
  background: var(--product-wishlist-active-color);
}

.btn-wishlist i::before {
  margin: 0;
}

.btn-cart {
  font-weight: 600;
}
.btn-cart.btn-link {
  color: #336699;
}
.btn-cart.btn-link:hover, .btn-cart.btn-link:active {
  color: #336699;
}
.btn-cart:not(.btn-product-icon) i.e-icon-cart {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.btn.btn-cart.btn-cart-icon {

}

.btn-product-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: 3.6rem;
  height: 3.6rem;
  margin-bottom: 0.5rem;
  background-color: #fff;
  border: 1px solid #eee;
  color: #999;
  font-size: 1.8em;
  font-weight: 400;
  line-height: 3.5rem;
  overflow: hidden;
  -webkit-transition: background-color 0.3s, border-color 0.3s, color 0.3s, visibility 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s, visibility 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s, visibility 0.3s, opacity 0.3s, transform 0.3s;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s, visibility 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.btn-product-icon:hover, .btn-product-icon:active {
  border-color: #336699;
  color: #fff;
  background-color: #336699;
}
.btn-product-icon.btn-cart, .btn-product-icon.btn-quickview {
  font-size: 1.6em;
}
.btn-product-icon.btn-compare {
  font-size: 2em;
}
.product-action-vertical .btn-product-icon {
  border-radius: 50%;
}
.btn-product-icon.btn-cart {
  margin-bottom: 0.2rem;
}
.btn-product-icon.loading {
  background-color: rgba(255, 255, 255, 0.2);
}
.btn-product-icon.loading::before {
  opacity: 0.4;
}

.product-action {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  z-index: 10;
  -webkit-transition: opacity 0.3s, visibility 0.3s, bottom 0.3s;
  transition: opacity 0.3s, visibility 0.3s, bottom 0.3s;
  opacity: 0;
  visibility: hidden;
}

.product-action-vertical {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.product-action-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.08);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  width: 166px;
  max-width: 80%;
  border-radius: 3px;
  padding: 5px;
  opacity: 0;
  visibility: visible;
  -webkit-transition: opacity 0.3s, visibility 0.3s, bottom 0.3s;
  transition: opacity 0.3s, visibility 0.3s, bottom 0.3s;
}
.product-action-horizontal .btn-product-icon {
  margin-bottom: 0;
  border: none;
  color: #333;
}
.product-action-horizontal .btn-product-icon.btn-wishlist {
  font-size: 1.7em;
}
.product-action-horizontal .btn-product-icon.btn-compare {
  font-size: 1.9em;
}

.product-action-horizontal .btn-product-icon:hover, .product-action-horizontal .btn-product-icon:active, .product-action-horizontal .btn-product-icon:focus,
.product-details-hidden .btn-product-icon:hover,
.product-details-hidden .btn-product-icon:active,
.product-details-hidden .btn-product-icon:focus,
.product-list .product-details .btn-product-icon:hover,
.product-list .product-details .btn-product-icon:active,
.product-list .product-details .btn-product-icon:focus {
  background-color: transparent;
  color: var(--alg-color);
}

.product-details {
  position: relative;
  padding-top: var(--product-details-padding-top);
  padding-right: var(--product-details-padding-right);
  padding-bottom: var(--product-details-padding-bottom);
  padding-left: var(--product-details-padding-left);
  background-color: var(--product-details-bg-color);
  border-style: var(--product-details-border-style);
  border-color: var(--product-details-border-color);
  border-top-width: var(--product-details-border-top-width);
  border-right-width: var(--product-details-border-right-width);
  border-bottom-width: var(--product-details-border-bottom-width);
  border-left-width: var(--product-details-border-left-width);
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: var(--product-details-flex-direction);
          flex-direction: var(--product-details-flex-direction);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
  .product-grid .product-details {
    padding-top: var(--product-wrapper__grid-product-details-padding-top);
    padding-right: var(--product-wrapper__grid-product-details-padding-right);
    padding-bottom: var(--product-wrapper__grid-product-details-padding-bottom);
    padding-left: var(--product-wrapper__grid-product-details-padding-left);
  }
      .product-grid.align-center .product-details {
      	-webkit-box-align: center;
      	  -ms-flex-align: center;
            align-items: center;
	}
  .product-list .product-details {
    height: 100%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-top-width: var(--product-list-product-details-border-top-width);
    border-right-width: var(--product-list-product-details-border-right-width);
    border-bottom-width: var(--product-list-product-details-border-bottom-width);
    border-left-width: var(--product-list-product-details-border-left-width);
    flex: 1;
  }
      .product-list.align-middle .product-details {
      	-webkit-box-pack: center;
      	  -ms-flex-pack: center;
            justify-content: center;
      }
  .product-widget .product-details {
    height: 100%;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    border-top-width: var(--product-widget-product-details-border-top-width);
    border-right-width: var(--product-widget-product-details-border-right-width);
    border-bottom-width: var(--product-widget-product-details-border-bottom-width);
    border-left-width: var(--product-widget-product-details-border-left-width);
    overflow: hidden;
    flex: 1;
  }

.product-details &gt; .btn-wishlist {
  position: absolute;
  top: 1.7rem;
  right: 0;
  color: #999999;
  font-size: 1.8em;
  z-index: 1;
}
.product-details &gt; .btn-wishlist.loading {
  right: 1.8rem;
}
.product-details &gt; .btn-wishlist.loading::after {
  left: 0.9rem;
  top: 0.9rem;
}
.product-details &gt; .btn-wishlist:hover {
  color: #336699;
}
.product-details &gt; .btn-wishlist:hover i {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.product-details-hidden {
  position: relative;
  visibility: hidden;
  opacity: 0;
  background-color: var(--product-details-hidden-bg-color);
  border-style: var(--product-details-hidden-border-style);
  border-color: var(--product-details-hidden-border-color);
  border-top-width: var(--product-details-hidden-border-top-width);
  border-right-width: var(--product-details-hidden-border-right-width);
  border-bottom-width: var(--product-details-hidden-border-bottom-width);
  border-left-width: var(--product-details-hidden-border-left-width);
  padding-top: var(--product-details-hidden-padding-top);
  padding-right: var(--product-details-hidden-padding-right);
  padding-bottom: var(--product-details-hidden-padding-bottom);
  padding-left: var(--product-details-hidden-padding-left);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: var(--product-details-hidden-flex-direction);
          flex-direction: var(--product-details-hidden-flex-direction);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
  .product-grid .product-details-hidden {
    padding-top: var(--product-wrapper__grid-product-details-hidden-padding-top);
    padding-right: var(--product-wrapper__grid-product-details-hidden-padding-right);
    padding-bottom: var(--product-wrapper__grid-product-details-hidden-padding-bottom);
    padding-left: var(--product-wrapper__grid-product-details-hidden-padding-left);
  }
    .product-grid.align-center .product-details-hidden {
      -webkit-box-align: center;
        -ms-flex-align: center;
           align-items: center;
    }

.product-details-top {
  position: relative;
  background-color: var(--product-details-top-bg-color);
  border-style: var(--product-details-top-border-style);
  border-color: var(--product-details-top-border-color);
  border-top-width: var(--product-details-top-border-top-width);
  border-right-width: var(--product-details-top-border-right-width);
  border-bottom-width: var(--product-details-top-border-bottom-width);
  border-left-width: var(--product-details-top-border-left-width);
  padding-top: var(--product-details-top-padding-top);
  padding-right: var(--product-details-top-padding-right);
  padding-bottom: var(--product-details-top-padding-bottom);
  padding-left: var(--product-details-top-padding-left);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: var(--product-details-top-flex-direction);
          flex-direction: var(--product-details-top-flex-direction);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
    .product-grid.align-center .product-details-top {
      -webkit-box-align: center;
        -ms-flex-align: center;
           align-items: center;
    }

.product-details-bottom {
  position: relative;
  background-color: var(--product-details-bottom-bg-color);
  border-style: var(--product-details-bottom-border-style);
  border-color: var(--product-details-bottom-border-color);
  border-top-width: var(--product-details-bottom-border-top-width);
  border-right-width: var(--product-details-bottom-border-right-width);
  border-bottom-width: var(--product-details-bottom-border-bottom-width);
  border-left-width: var(--product-details-bottom-border-left-width);
  padding-top: var(--product-details-bottom-padding-top);
  padding-right: var(--product-details-bottom-padding-right);
  padding-bottom: var(--product-details-bottom-padding-bottom);
  padding-left: var(--product-details-bottom-padding-left);  
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: var(--product-details-bottom-flex-direction);
          flex-direction: var(--product-details-bottom-flex-direction);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
    .product-list .product-details-bottom {
      -webkit-box-pack: justify;
        -ms-flex-pack: justify;
           justify-content: space-between;
    }
    .product-grid.align-center .product-details-bottom {
      -webkit-box-align: center;
        -ms-flex-align: center;
           align-items: center;
    }

.product-details-side {
  position: relative;
  background-color: var(--product-details-side-bg-color);
  border-style: var(--product-details-side-border-style);
  border-color: var(--product-details-side-border-color);
  border-top-width: var(--product-details-side-border-top-width);
  border-right-width: var(--product-details-side-border-right-width);
  border-bottom-width: var(--product-details-side-border-bottom-width);
  border-left-width: var(--product-details-side-border-left-width);
  padding-top: var(--product-details-side-padding-top);
  padding-right: var(--product-details-side-padding-right);
  padding-bottom: var(--product-details-side-padding-bottom);
  padding-left: var(--product-details-side-padding-left);

  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;

}
  .product-grid .product-details-side {
    flex-direction: inherit;
    -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: var(--product-wrapper__grid-product-details-side-padding-top);
    padding-right: var(--product-wrapper__grid-product-details-side-padding-right);
    padding-bottom: var(--product-wrapper__grid-product-details-side-padding-bottom);
    padding-left: var(--product-wrapper__grid-product-details-side-padding-left);
  }
    .product-grid.align-center .product-details-side {
      -webkit-box-pack: center;
        -ms-flex-pack: center;
          justify-content: center;
    }
  .product-list .product-details-side {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-top-width: var(--product-list-product-details-side-border-top-width);
    border-right-width: var(--product-list-product-details-side-border-right-width);
    border-bottom-width: var(--product-list-product-details-side-border-bottom-width);
    border-left-width: var(--product-list-product-details-side-border-left-width);
  }
      .product-list.align-middle .product-details {
      	-webkit-box-pack: center;
      	  -ms-flex-pack: center;
            justify-content: center;
      }
      .product-list.align-middle .product-details-side {
      	-webkit-box-pack: center;
      	  -ms-flex-pack: center;
            justify-content: center;
      }
  .product-widget .product-details-side {
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    border-top-width: var(--product-widget-product-details-side-border-top-width);
    border-right-width: var(--product-widget-product-details-side-border-right-width);
    border-bottom-width: var(--product-widget-product-details-side-border-bottom-width);
    border-left-width: var(--product-widget-product-details-side-border-left-width);
  }
      .product-widget.align-middle .product-details {
      	-webkit-box-pack: center;
      	  -ms-flex-pack: center;
            justify-content: center;
      }
      .product-widget.align-middle .product-details-side {
      	-webkit-box-pack: center;
      	  -ms-flex-pack: center;
            justify-content: center;
      }
      .product-widget.align-bottom .product-details {
      	-webkit-box-pack: end;
      	  -ms-flex-pack: end;
            justify-content: flex-end;
      }
      .product-widget.align-bottom .product-details-side {
      	-webkit-box-pack: end;
      	  -ms-flex-pack: end;
            justify-content: flex-end;
      }

  .swiper-col .product-widget .product-details{
    height: auto;
  }
  .swiper-col .product-widget .product-details-side {
    height: auto;
  }

.product-name {
  font-family: var(--product-name-font-family);
  font-size: var(--product-name-font-size);
  font-weight: var(--product-name-font-weight);
  word-wrap: anywhere;
}
  .product-name.product-name-wishlist {
    padding-right: 2rem;
  }
.product-name a {
  color: var(--product-name-color);
}
.product-name a:hover {
  color: var(--product-name-hover-color);
  text-decoration: underline;
}
.product .product-name::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: var(--product-name-after-width);
  height: var(--product-name-after-height);
  background-color: var(--product-name-after-bg-color);
}

.product-variations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
  .product-grid .product-variations {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .product-grid.align-center .product-variations {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
.product-variations &gt; a {
  border: 1px solid #ccc;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.3rem;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.product-variations &gt; a:not(:last-child) {
  margin-right: 0.5rem;
}
.product-variations &gt; a:not(.color).active,
.product-variations &gt; a:not(.color):hover {
  border: 1px solid #336699;
}

.product-rating {
  position: relative;
}

.ratings-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.ratings-full,
.ratings {
  position: relative;
  font-family: "elexio";
  letter-spacing: 0.2em;
}

.ratings-full {
  cursor: pointer;
  margin-right: 0.5rem;
}
.ratings-full::before {
  content: "" "" "" "" "";
  color: rgba(0, 0, 0, 0.16);
  white-space: nowrap;
}
.ratings-full:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.ratings {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
}
.ratings::before {
  content: "" "" "" "" "";
  color: #f93;
}

.rating-reviews {
  margin: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
  font-size: 1.2rem;
}
.rating-reviews:hover {

}

.tab a.rating-reviews,
.accordion a.rating-reviews {
  color: inherit;
  font-weight: 600;
}

.product-price {

}
.product-price .old-price {

}
.product-price .new-price {

}
.product-price .new-price:not(:last-child) {

}
.product-price:not(:last-child) {
}

.sold-by {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #666;
}
.sold-by a {
  color: #336699;
}

.product-simple:hover .product-price {
  visibility: hidden;
  opacity: 0;
}

.product-slideup-content {
  overflow: hidden;
}
.product-slideup-content .product-details-hidden {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.product-slideup-content .product-details {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {

.product-slideup-content:hover .product-details,
.product-slideup-content:hover .product-details-hidden {
  -webkit-transform: translateY(var(--product-slideup-content-hover-transform-translateY));
          transform: translateY(var(--product-slideup-content-hover-transform-translateY));
  z-index: 1;
}
.product-slideup-content:hover .btn-product-icon {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
}

.product-image-gap {
  padding: 0.9rem;
  border: 1px solid #eee;
  background-color: #fff;
}
.product-image-gap .product-details {
  padding: 1.8rem 1rem 1rem;
}
.product-image-gap.product-classic .product-action {
  left: 0;
  bottom: 0;
}
.product-image-gap:hover {
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.product-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product-widget .product-wrapper-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.product-widget .product-name {
  font-size: 1.4rem;
  white-space: normal;
  line-height: 1.3;
  margin-bottom: 0.7rem;
}

.product-widget {
  padding: 0 0;
}
.product-widget .product-media {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--product-widget-product-media-width);
          flex: 0 0 var(--product-widget-product-media-width);
  max-width: var(--product-widget-product-media-width);

  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: end;
      -ms-flex-align: end;
          align-items: self-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 898px) {
  .product-wrapper__widget:not(.cols-lg-1) .product-media {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 var(--product-widget-cols-product-media-width);
            flex: 0 0 var(--product-widget-cols-product-media-width);
  max-width: var(--product-widget-cols-product-media-width);
  }
}

.product-widget .product-details-blocks {
  background-color: var(--product-details-bg-color);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - var(--product-widget-product-media-width));
  flex: 0 0 calc(100% - var(--product-widget-product-media-width));
  width: calc(100% - var(--product-widget-product-media-width));
}
@media (min-width: 898px) {
  .product-wrapper__widget:not(.cols-lg-1) .product-widget .product-details-blocks {
    -ms-flex: 0 0 calc(100% - var(--product-widget-cols-product-media-width));
    flex: 0 0 calc(100% - var(--product-widget-cols-product-media-width));
    width: calc(100% - var(--product-widget-cols-product-media-width));
  }
}

.mfp-popup-product .product-widget .product-media { 
  -webkit-box-flex: 0;
      -ms-flex: 0 0 9rem;
          flex: 0 0 9rem;
  max-width: 9rem;
}
@media (min-width: 898px) {
  .mfp-popup-product .product-wrapper__widget:not(.cols-lg-1) .product-media {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 9rem;
            flex: 0 0 9rem;
    max-width: 9rem;
  }
}
.mfp-popup-product .product-widget .product-details-blocks {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 9rem);
  flex: 0 0 calc(100% - 9rem);
  width: calc(100% - 9rem);
}
@media (min-width: 898px) {
  .mfp-popup-product .product-wrapper__widget:not(.cols-lg-1) .product-widget .product-details-blocks {
    -ms-flex: 0 0 calc(100% - 9rem);
    flex: 0 0 calc(100% - 9rem);
    width: calc(100% - 9rem);
  }
}

@media (min-width: 898px) {
  .product-wrapper__widget.product-wrapper__bundel .product-media {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 var(--product-widget-bundel-product-media-width);
            flex: 0 0 var(--product-widget-bundel-product-media-width);
    max-width: var(--product-widget-bundel-product-media-width);
  }
  .product-wrapper__widget.product-wrapper__bundel .product-widget .product-details-blocks {
    -ms-flex: 0 0 calc(100% - var(--product-widget-bundel-product-media-width));
    flex: 0 0 calc(100% - var(--product-widget-bundel-product-media-width));
    width: calc(100% - var(--product-widget-bundel-product-media-width));
  }
}

.product-wrapper__checkout-free-gift .product-widget .product-details-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-widget .product-details {
  padding: 1rem 1rem;
}
.product-widget .product-price {
  font-size: 1.5rem;
}

.product-widget .empty {
  display: none;
}

.sidebar .product-widget {

}
.sidebar .product-widget .product-media {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.73%;
          flex: 0 0 33.73%;
  max-width: 33.73%;
  min-width: 33.33%;
}
.sidebar .product-widget .product-details-blocks {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 33.73%);
  flex: 0 0 calc(100% - 33.73%);
  width: calc(100% - 33.73%);
}
.sidebar .product-widget .product-name {
  margin-bottom: 0.6rem;
}
.sidebar .product-widget .ratings-container {
  margin-bottom: 0.5rem;
}

.product.align-center .ratings-container {
  text-align: center;
}
.product.align-center .ratings-container,
.product.align-center .price-product,
.product.align-center .product-action {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product .product-pa-wrapper {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.product .product-pa-wrapper .product-price {
  margin-bottom: 0;
}
.product .product-pa-wrapper .product-action {
  bottom: -1rem;
}
.product .product-pa-wrapper .load-overlay.loading::after {
  top: 0;
}
.product:hover .product-pa-wrapper .product-action {
  bottom: 0;
}

.product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.product-list .product-media {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--product-list-product-media-width);
          flex: 0 0 var(--product-list-product-media-width);
  max-width: var(--product-list-product-media-width);

  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: start;
      -ms-flex-align: start;
          align-items: self-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width:1081px){
.product-list .product-media {
  -webkit-box-flex: 0;
      -ms-flex: inherit;
          flex: inherit;
  max-width: var(--product-list-product-media-media-max-width-1081-width);
}
}
.product-list .product-details-blocks {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - var(--product-list-product-media-width));
  flex: 0 0 calc(100% - var(--product-list-product-media-width));
  width: calc(100% - var(--product-list-product-media-width));
  height: 100%;
}
@media (max-width:1081px){
.product-list .product-details-blocks {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - var(--product-list-product-media-media-max-width-1081-width));
  flex: 0 0 calc(100% - var(--product-list-product-media-media-max-width-1081-width));
  width: calc(100% - var(--product-list-product-media-media-max-width-1081-width));
}
}
.product-list .product-details {
  padding: 1.5rem 1.5rem;
}
.product-list .product-details-side {
  padding: 1.5rem 1rem;
}
.product-list .product-name {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-list .ratings-container {

}
.product-list .product-price {
  margin-bottom: 0.6rem;
  font-size: 1.8rem;
}
.product-list .product-action {
  position: relative;
  visibility: visible;
  opacity: 1;
}
.product-list .product-desc {
  margin-bottom: 3.9rem;
  font-size: 1.3rem;
  color: #666;
}
.product-list .product-desc li {
  position: relative;
  padding-left: 2rem;
}
.product-list .product-desc li::before {
  position: absolute;
  display: block;
  left: 0;
  top: 1px;
  content: "";
  font-family: "elexio";
  font-weight: 700;
}
.product-list .btn-product {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  padding: 0.86em 0.5em;
  max-width: 17.6rem;
  background-color: transparent;
  border: 2px solid #ccc;
  color: #333;
  font-size: 1.4rem;
  border-radius: 0.3rem;
  -webkit-transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.product-list .btn-product:hover {
  background-color: #336699;
  border-color: #336699;
  color: #fff;
}
.product-list .btn-product i.e-icon-cart {
  margin: 0 0.8rem 0 0;
  font-size: 1.7rem;
}

.product-absolute::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 34, 34, 0.6);
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.product-absolute .product-name {
  position: absolute;
  left: 0;
  right: 0;
  padding: 0 1rem;
  white-space: normal;
  margin-bottom: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  margin-top: 1rem;
  -webkit-transition: margin-top 0.3s, opacity 0.3s;
  transition: margin-top 0.3s, opacity 0.3s;
  opacity: 0;
  z-index: 1;
}
.product-absolute .product-name:hover a {
  text-decoration: underline;
}
.product-absolute:hover {
  -webkit-box-shadow: 0 2rem 1.6rem -1.6rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 2rem 1.6rem -1.6rem rgba(0, 0, 0, 0.5);
}
.product-absolute:hover::before {
  opacity: 1;
}
.product-absolute:hover .product-name {
  margin-top: 0;
  opacity: 1;
}
.product-absolute:hover .product-name a {
  color: #fff;
}

.product-view .btn.disabled {
  background-color: #eee;
  border-color: #eee;
  color: #666;
  cursor: not-allowed;
}

@media (max-width: 575px) {
  .product-list {
    display: block;
    margin-bottom: 2rem;
  }
  .product-list .product-media {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 0 0 2rem 0;
  }
}
@media (max-width: 479px) {
  .product:not(.product-list) {
  }
  .product:not(.product-list) .btn-product-icon {
    width: 3rem;
    height: 3rem;
  }
  .product:not(.product-list) .product-label-group {
    top: 1rem;
    left: 1rem;
  }
  .product:not(.product-list) .product-action-vertical {
    top: 1rem;
    right: 1rem;
  }

  .product-details-hidden .btn-cart {
    max-width: 3.5rem;
    min-width: auto;
  }
  .product-details-hidden .btn-cart i {
    display: block;
  }
  .product-details-hidden .btn-cart span {
    display: none;
  }
}
/*-----------------------------------------
    Product Single Component
------------------------------------------*/
.product-nav {
  margin: 0 0 0 auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-nav .product-nav-prev, .product-nav .product-nav-next {
  position: relative;
}
.product-nav .product-nav-prev a, .product-nav .product-nav-next a {
  display: inline-block;
  padding: 1.1rem 0.4rem 1.3rem;
}
.product-nav .product-nav-prev i, .product-nav .product-nav-next i {
  display: inline-block;
  border-radius: 50%;
  width: 2em;
  color: var(--elexio-body-color, #666);
  border: 1px solid #eee;
  line-height: calc(2em - 2px);
  text-align: center;
  font-size: 1.3rem;
  -webkit-transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
.product-nav .product-nav-prev:hover i, .product-nav .product-nav-next:hover i {
  border-color: #336699;
  background-color: #336699;
  color: #fff;
}
.product-nav .product-nav-prev:hover .product-nav-popup, .product-nav .product-nav-next:hover .product-nav-popup {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
          transform: none;
}
.product-nav .product-nav-popup {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 30;
  width: 120px;
  padding: 0 5px 9px;
  line-height: 1.5;
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.product-nav .product-nav-popup img {
  position: relative;
  width: 100%;
  padding-top: 5px;
  background-color: #fff;
}
.product-nav .product-nav-popup::before {
  content: "";
  position: absolute;
  top: -0.8rem;
  right: 1rem;
  width: 1.6rem;
  height: 1.6rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #fff;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}
.product-nav .product-nav-prev .product-nav-popup {
  right: -3.4rem;
}
.product-nav .product-nav-prev .product-nav-popup::before {
  right: 4.2rem;
}
.product-nav .product-nav-next .product-nav-popup {
  right: 0;
}
.product-nav .product-name {
  position: relative;
  color: #666;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  padding: 1.1rem 0 0;
  margin: 0;
  background: inherit;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

.product-images-wrap,
.product-thumbs-wrap {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

.product-gallery-fluid .product-single-swiper {
  margin-right: -15px;
  margin-left: -15px;
  -ms-flex-preferred-size: calc(100% + 30px);
    flex-basis: calc(100% + 30px);
   max-width: calc(100% + 30px);
}

.product-single-swiper img {
  display: block;
}
.product-single-swiper .swiper-button-prev,
.product-single-swiper .swiper-button-next {
  background-color: var(--swiper-gallery-bg-color);
  border-width: var(--swiper-gallery-border-width);
  border-style: var(--swiper-gallery-border-style);
  border-color: var(--swiper-gallery-border-color);
  color: var(--swiper-gallery-color);
  font-size: var(--swiper-gallery-font-size);
  height: var(--swiper-gallery-height);
  width: var(--swiper-gallery-width);
}

.product-single-swiper .swiper-button-prev:hover,
.product-single-swiper .swiper-button-prev:active,
.product-single-swiper .swiper-button-prev:focus,
.product-single-swiper .swiper-button-next:hover,
.product-single-swiper .swiper-button-next:active,
.product-single-swiper .swiper-button-next:focus {
  background-color: var(--swiper-gallery-hover-bg-color);
  border-width: var(--swiper-gallery-hover-border-width);
  border-style: var(--swiper-gallery-hover-border-style);
  border-color: var(--swiper-gallery-hover-border-color);

  -webkit-box-shadow: var(--swiper-gallery-box-shadow);
  -moz-box-shadow: var(--swiper-gallery-box-shadow);
  -o-box-shadow: var(--swiper-gallery-box-shadow);
  box-shadow: var(--swiper-gallery-box-shadow);
  border-radius: var(--swiper-gallery-border-radius);
}

.product-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--product-image-border-radius);
}

.product-thumbs-wrap {
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
}
  .product-thumbs-wrap.product-thumbs-wrap-pagination {
     margin-top: 2rem;
  }
.product-thumbs-wrap img {
  display: block;
  width: 100%;
  opacity: var(--product-image-thumb-opacity);
}
.product-thumbs-wrap .product-thumb-wrap-active img {
  opacity: 1;
}

.product-thumbs-wrap button,
.product-thumbs-wrap .swiper-button-prev,
.product-thumbs-wrap .swiper-button-next {
  bottom: 0;
  top: unset;
  width: 2rem;
  height: 100%;
  background-color: #fff;
  border: 0px solid;
  color: #999;
  font-size: 1.8rem;
  font-weight: 600;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.swiper-container-initialized .swiper-button-prev:hover, 
.swiper-container-initialized .swiper-button-next:hover {
  opacity: 1;
}

.product-thumbs-wrap .swiper-button-prev {
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.product-thumbs-wrap .swiper-button-next {
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.product-thumbs-wrap .swiper-button-disabled {
  opacity: 0;
}
.product-thumbs-wrap:hover .swiper-button-prev:not(.swiper-button-disabled),
.product-thumbs-wrap:hover .swiper-button-next:not(.swiper-button-disabled) {
  opacity: 0.9;
  -webkit-transform: none;
          transform: none;
}

.product-thumbs-wrap button,
.product-thumb-wrap::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.product-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
  .product-thumbs.product-thumbs-center {
    -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  }

.product-thumbs &gt; div:not(.product-thumb-wrap) {
  display: none;
}

.product-gallery:not(.product-gallery-vertical) .swiper-slide {
  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;
}
.product-gallery .swiper-slide.youtube-movie {
  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;
  width: 100%;
  overflow: hidden;
}
.mfp-popup-product .product-gallery .swiper-slide {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important; 
  height: 140px;
}
.product-gallery .swiper-slide.swiper-slide-youtube {
  display: block;
  transform: translate(0%,-25%);
  top: 50%;
  margin: 0;
}

.product-gallery:not(.product-gallery-vertical) .swiper-slide img {
  width: 100%;
}
.mfp-popup-product .product-gallery .swiper-slide img {
  height: 135px;
}
.product-gallery:not(.product-gallery-vertical) .product-thumbs:not(.swiper-wrapper) {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.product-gallery:not(.product-gallery-vertical) .product-thumbs:not(.swiper-wrapper) .product-thumb-wrap {
  margin: 0;
}
.product-gallery:not(.product-gallery-vertical) .product-thumbs:not(.swiper-wrapper) .product-thumb-wrap::before {
  content: none;
}

.product-thumb-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--product-image-border-radius);
}
.product-thumb-wrap::before {
  content: "";
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  border: 1px solid transparent;
}
.product-thumb-wrap.product-thumb-wrap-active::before {
  border-style: var(--product-image-thumb-active-after-border-style);
  border-color: var(--product-image-thumb-active-after-border-color);
  border-top-width: var(--product-image-thumb-active-after-top-width);
  border-right-width: var(--product-image-thumb-active-after-right-width);
  border-bottom-width: var(--product-image-thumb-active-after-bottom-width);
  border-left-width: var(--product-image-thumb-active-after-left-width);
  border-radius: var(--product-image-border-radius);
}
.product-thumb-wrap.product-thumb-wrap-active::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--product-image-thumb-active-after-bg-color);
}

.product-thumb-wrap.product-thumb-wrap-mask {
  max-width: 130px;
  max-height: 130px;
  opacity: 0;
}

.product-thumb-wrap.product-thumb-wrap-youtube .circle {
    position: absolute;
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    border: 3px solid white;
    border-radius: 25px;
    padding: 12px;
    height: 12px;
    width: 12px;
    z-index: 100;
    left: 50%;
    top: 50%;
    margin-left: -19px;
    margin-top: -14px;
}

.product-thumb-wrap.product-thumb-wrap-youtube .circle .triangle {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid white;
  transform: translate(-25%, -50%);
}

.product-thumb-wrap.product-thumb-wrap-youtube .youtube-icon-play {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--product-thumb-youtube-color);
  background-color: var(--product-thumb-youtube-bg-color);
  border-radius: 50%;
  box-shadow: 0 0 0 0.8rem rgba(255, 255, 255, 0.2);
  transition: all .35s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product-thumb-wrap.product-thumb-wrap-youtube:hover .youtube-icon-play {
  box-shadow: 0 0 0 0.5rem rgba(255, 255, 255, 0.2);
  color: var(--product-thumb-youtube-bg-color);
  background-color: var(--product-thumb-youtube-color);	
}

.product-gallery .product-gallery-container-wrapper {
  position: relative; 
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  z-index: 2;
}
  .product-gallery .product-gallery-container-wrapper .product-images-wrap {
     width: 100%;
  }

.product-gallery .product-gallery-container-wrapper .product-images-wrap .product-images &gt; div:not(.product-image-wrap) {
  display: none;
}

.product-gallery .product-gallery-container-wrapper.swiper-container-wrapper-pagination .swiper-container {
  padding-bottom: 3.5rem;
}

.product-gallery .product-gallery-container-wrapper.swiper-container-wrapper-pagination .swiper-container .swiper-pagination {
  position: absolute;
  bottom: 0px;
}

.mfp-popup-product .product-gallery .product-gallery-container-wrapper.swiper-container-wrapper-pagination .swiper-container {
  padding-bottom: 0rem;
}

.product-gallery .product-gallery-container-wrapper .product-images-wrap .product-images &gt; div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.stock {
  margin-bottom: 3rem;
  font-size: 1.3rem;
  line-height: 1;
}

.product-single {
  color: inherit;
}
.product-single div &gt; .col-product-single {
  margin-bottom: 1.5rem;
}
.product-single div &gt; .col-product-single:last-child {
  margin-bottom: 0;
}
.template-two-column .product-single &gt; .container { 
  padding-right: 0px;
  padding-left: 0px;
}
.product-single .product-categories {
  margin-bottom: 1.1rem;
}
.product-single .product-details-info {
  padding: 0;
}
.product-single .product-title a {
  color: inherit;
}
.product-single .product-bm-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mfp-popup-product .product-single .product-bm-wrapper {
  margin-bottom: 0.5rem;
}
.product-single .product-meta-wrapper .product-meta {
  margin-bottom: 0.6rem;
}
  .product-single .product-meta-wrapper .product-meta:last-child {
     margin-bottom: 0px;
  }
.product-single .product-meta {
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
  .product-single .product-meta.product-meta-row {
    flex-direction: inherit;
    width: inherit; 
    -webkit-box-align: center;
      -ms-flex-align: center;
        align-items: center;   
  }
  .product-single .product-meta.product-meta-no-flex-direction {
  	flex-direction: unset;     
  }
.product-single .product-meta .product-meta-block &gt; div:not(:last-child) {
  margin-bottom: 0.4rem;
}
.product-single .product-meta &gt; div:not(:last-child) {
  margin-bottom: 0.8rem;
}
.product-single .product-meta.product-meta-stock &gt; div:not(:last-child) {
  margin-bottom: 0.6rem;
}
.product-single .product-meta .product-meta-item__brand .product-brand-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; 
  height: 45px;
}
.product-single .product-meta .product-meta-item__brand img {
  max-height: 35px;
}
  .product-single .product-meta.product-meta-row .product-meta-item__brand {
    margin-right: 2.5rem;
    margin-bottom: 0rem;
  }
.product-single .product-meta &gt; div {
  font-size: var(--product-meta-item-font-size);
  font-weight: var(--product-meta-item-font-weight);
  line-height: 1;
  letter-spacing: 0;
}
.product-single .product-meta &gt; div.product-meta-item__stock {
  line-height: 1.3;
}
.product-single .product-meta &gt; div.product-meta-item__bestelmelding {
  line-height: 1.3;
}
.product-single .product-meta &gt; div a {
  color: inherit;
}
.product-single .product-meta.product-meta__alg &gt; div span {
  font-weight: var(--product-meta-item-span-font-weight);
  color: var(--product-meta-item-span-color);
  opacity: var(--product-meta-item-span-opacity);
}
.product-single .product-meta.product-meta__alg &gt; div span.link-meta-item:hover {
  color: var(--product-meta-item-span-hover-color);
  opacity: 1;
}
.product-single .product-meta-item &gt; div {
  display: inline-block;
}
.product-single .product-divider {
  margin: 1.5rem 0 1.5rem;
}
.product-single .product-divider-plain {
  border: none;
}
.product-single .social-icon {
  margin-right: 0.8rem;
}
.product-single .ratings-container {
  font-size: 1.4rem;
}
.product-single .ratings-full {
  font-weight: 600;
}
.product-single .ratings-full::before {
  color: rgba(0, 0, 0, 0.2);
}
.product-single .ratings::before {
  color: #ffb639;
}
.product-single .ratings-full, .product-single .ratings {
  letter-spacing: 0.18em;
}
.product-single .rating-reviews {

}
.product-single .description-short-product {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
.product-variation .product-form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 1.5rem;
}
.product-variation .product-form:last-child {
  margin-bottom: 0;
}

.product-grid .product-variation .product-form &gt; div,
.product-list .product-variation .product-form &gt; div,
.product-widget .product-variation .product-form &gt; div {
  margin-bottom: 1.5rem !important;
}
.product-grid .product-variation .product-form &gt; div:last-child,
.product-list .product-variation .product-form &gt; div:last-child,
.product-widget .product-variation .product-form &gt; div:last-child {
  margin-bottom: 0rem !important;
}

.product-variation .product-form .product-size {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18rem;
          flex: 0 0 18rem;
  max-width: 18rem;
}
.product-variation .product-form select {
  max-width: none;
  width: 100%;
  margin: 0px;
}
  .product-variation .product-form select option[value=""] {
     text-align: center;
  }
  .product-variation .product-form.product-form-select-auto-w select {
     width: unset;
  }
  .product-bundel .product-variation .product-form select {
     width: auto;
  }
  .product-bundel.product-bundel__bundels .product-variation .product-form select {
    width: 100%;
  }
  @media (max-width: 897px) {
    .product-bundel .product-variation .product-form select {
       width: 100%;
    }
  }
  .mfp-popup-product .product-variation .product-form select { 
     width: 100%;
  }
.product-variation .product-form select.select-option-single:not(.placeholder-skeleton) {
  font-weight: 600;
  padding-right: 0px;
  padding-left: 0px;
  border: 0;
  background-image: none;
  background-color: transparent;
  pointer-events: none;
}
.product-variation .product-form label:not(.form-check-label) {
  display: block;
  max-width: 11.5rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 11.5rem;
          flex: 0 0 11.5rem;
  padding: 0.6rem 0;
  margin-right: 0.5rem;
  font-size: var(--product-variation-form-font-size);
  font-weight: var(--product-variation-form-font-weight);
  line-height: 1;
}
  .mfp-popup-product .product-single.product-single__center .product-variation .product-form label:not(.form-check-label) {
    max-width: unset;
    text-align: center;
    -webkit-box-pack: center;
      -ms-flex-pack: center;
        justify-content: center;
    flex: 0;	
  }
  .product-grid .product-variation .product-form label:not(.form-check-label) {
    display: none !important;
  }
  .product-widget .product-variation .product-form label:not(.form-check-label) {

  }

.product__attributen .product-variation .product-form label {
  height: 31px;
}
.product__attributen .product-variation .product-form label.form-check-label__radio,
.product__attributen .product-variation .product-form label.form-check-label__checkbox {
  height: inherit;
}

.product-variation .product-form .form-group {
  padding: 0.4rem 0;
  margin-bottom: 0px;
}
.product-single .product-variations {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.mfp-popup-product .product-single.product-single__center .product-variations {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-single .product-variation-price {
  display: none;
  font-size: 2.4rem;
  font-weight: 600;
  color: #333;
  line-height: 1;
  margin-bottom: 1.2rem;
  padding-top: 2.8rem;
}

.product-variation .product-swatch {
  display: flex;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
.product-variation .product-swatch .product-swatch-div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  width: auto;
  height: auto;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.product-variation .product-swatch .product-swatch-div:not(last-child) {
  margin-right: 0.5rem;
}
.product-variation .product-swatch .product-swatch-div .product-swatch-span {
  display: none;
  margin-left: 0.6rem;
}

.product-variation .product-color-swatch .product-swatch-div .color {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--product-color-swatch-bg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: var(--product-color-swatch-width);
  height: var(--product-color-swatch-height);
  border-width: var(--product-color-swatch-border-width);
  border-style: var(--product-color-swatch-border-style);
  border-radius: var(--product-color-swatch-border-radius);
  box-shadow: var(--product-color-swatch-box-shadow);
}
  .product-variation .product-color-swatch .product-swatch-div:not(.placeholder-skeleton) .color {
    border-color: var(--product-color-swatch-border-color);
  }
.product-variation .product-color-swatch .product-swatch-div:not(.disabled):not(.placeholder-skeleton).active .color,
.product-variation .product-color-swatch .product-swatch-div:not(.disabled):not(.placeholder-skeleton):hover .color {
  border: 1px solid var(--product-size-color-swatch-active-border-color);
  box-shadow: inset 0 0 0 2px #fff;
  color: inherit;	
}

.product-variation .product-size-swatch .product-swatch-div .size {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  padding: var(--product-size-swatch-padding);  
  line-height: 1;
  font-size: var(--product-size-swatch-font-size);
  font-weight: var(--product-size-swatch-font-weight);
  border-width: var(--product-size-swatch-border-width);
  border-style: var(--product-size-swatch-border-style);
  border-radius: var(--product-size-swatch-border-radius);
  -webkit-transition: none;
  transition: none;
  box-shadow: var(--product-size-swatch-box-shadow);
  width: 100%;
  height: 100%;
}
  .product-variation .product-size-swatch .product-swatch-div:not(.placeholder-skeleton) .size {
    background: var(--product-size-swatch-bg);
    border-color: var(--product-size-swatch-border-color);
    color: var(--product-size-swatch-color);
  }
.product-variation .product-size-swatch .product-swatch-div.active:not(.disabled):not(.placeholder-skeleton) .size {
  background-color: var(--product-size-swatch-active-bg-color);
  border-color: var(--product-size-swatch-active-border-color);
  color: var(--product-size-swatch-active-color);
  box-shadow: 0 0 0 var(--product-size-swatch-active-box-shadow-width) var(--product-size-swatch-active-box-shadow-color) inset;
}
.product-variation .product-size-swatch .product-swatch-div:not(.active):not(.disabled):not(.placeholder-skeleton):hover .size {
  background-color: var(--product-size-swatch-hover-bg-color);
  border-color: var(--product-size-swatch-hover-border-color);
  color: var(--product-size-swatch-hover-color);
}

.product-variation .product-color-swatch .product-swatch-div .color::after,
.product-variation .product-size-swatch .product-swatch-div .size::after {
  content: "";
  display: block;
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--product-size-color-swatch-after-active-color);
  line-height: 1.9rem;
}

.product-variation .product-color-swatch .product-swatch-div.active:not(.out-of-stock):not(.placeholder-skeleton) .color::after,
.product-variation .product-size-swatch .product-swatch-div.active:not(.out-of-stock):not(.placeholder-skeleton) .size::after {
  content: "";
  position: absolute;
  background: var(--product-size-color-swatch-after-active-bg-color);
  width: 2rem;
  height: 2rem;
  border-radius: 150%;
  border-width: 1px;
  border-style: solid;
  border-color: var(--product-size-color-swatch-after-active-border-color);
  top: -10px;
  right: -10px;
  z-index: 1;
}

.product-col__order_horizontal-inline .product-variation .product-price.product-price__single {
  margin-left: 12rem;
  margin-bottom: 0rem;
}
.product-col__order_horizontal-inline .product-variation .product-meta-wrapper {
  margin-left: 12rem;
  margin-bottom: 0rem;
}
.product-col__order_horizontal-inline .product-variation .alert {
  margin-left: 12rem;
}
.product-col__order_horizontal-inline .product-variation .div-stock-alert-mail {
  margin-left: 12rem;
}

@media (max-width: 897px) {

  .product:not(.product-single) .product-variation .product-color-swatch .product-swatch-div .color::after,
  .product:not(.product-single) .product-variation .product-size-swatch .product-swatch-div .size::after {
    display: none;
  }
  .product:not(.product-single) .product-variation .product-color-swatch .product-swatch-div.active:not(.out-of-stock) .color::after,
  .product:not(.product-single) .product-variation .product-size-swatch .product-swatch-div.active:not(.out-of-stock) .size::after {
    display: none;
  }

  .product-variation .product-color-swatch .product-swatch-div:not(.disabled):not(.active):not(.placeholder-skeleton):hover .color {
    border: 0px solid;
    box-shadow: inset 0 0 0 0px #fff;  
  }

  .product-variation .product-size-swatch .product-swatch-div:not(.disabled):not(.active):not(.placeholder-skeleton):hover .size {
    background: var(--product-size-swatch-bg);
    border-color: var(--product-size-swatch-border-color);
    color: var(--product-size-swatch-color);
  }
}

.product-variation .product-color-swatch .product-swatch-div.disabled:not(.placeholder-skeleton) .color,
.product-variation .product-size-swatch .product-swatch-div.disabled:not(.placeholder-skeleton) .size {
  opacity: 0.5;
  cursor: not-allowed;
}
.product-variation .product-color-swatch .product-swatch-div.disabled:not(.placeholder-skeleton) .color::after,
.product-variation .product-size-swatch .product-swatch-div.disabled:not(.placeholder-skeleton) .size::after {
  border-bottom: 1px solid var(--product-size-color-swatch-disabled-after-border-color);
  -webkit-transform: skewY(0deg);
  transform: skewY(0deg);
}
.product-variation .product-color-swatch .product-swatch-div.disabled:not(.placeholder-skeleton) .color::after,
.product-variation .product-size-swatch .product-swatch-div.disabled:not(.placeholder-skeleton) .size::after {
  content: '';
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  rotate: 0deg;
}

.product-variation .product-color-swatch .product-swatch-div.out-of-stock__stock-alert-mail:not(.placeholder-skeleton) .color::before,
.product-variation .product-size-swatch .product-swatch-div.out-of-stock__stock-alert-mail:not(.placeholder-skeleton) .size::before {
  font-family: "elexio" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 0.6;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "";
  position: absolute;
  background: #fff;
  color: #000;
  right: -0.6rem;
  bottom: -0.3rem;
  font-size: 1.8rem;
}

.product-variation- .product-color-swatch .product-swatch-div.out-of-stock__stock-alert-mail .color::before,
.product-variation- .product-size-swatch .product-swatch-div.out-of-stock__stock-alert-mail .size::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
}

.product-variation .product-color-swatch .product-swatch-div.out-of-stock .color::after,
.product-variation .product-size-swatch .product-swatch-div.out-of-stock .size::after {
  border-bottom: 1px solid var(--product-size-color-swatch-out-of-stock-after-border-color);
  -webkit-transform: skewY(0deg);
  transform: skewY(0deg);
}
.product-variation .product-color-swatch .product-swatch-div.out-of-stock:not(.placeholder-skeleton) .color::after,
.product-variation .product-size-swatch .product-swatch-div.out-of-stock:not(.placeholder-skeleton) .size::after {
  content: '';
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  rotate: 0deg;
}

@media (max-width:897px){
  .product:not(.product-single) .product-variation .product-swatch {
    -ms-flex-wrap: unset !important;
    flex-wrap: unset !important;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-snap-type: x proximity;
    scroll-snap-type: x proximity;
    padding-bottom: 5px;
  }
  .product:not(.product-single) .product-variation .product-swatch a {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
}

.product-variation .product-swatch.product-swatch-span .product-swatch-div {
  padding: var(--product-swatch-div-padding);
  font-size: var(--product-swatch-div-font-size);
  font-weight: var(--product-swatch-div-font-weight);
  border-width: var(--product-swatch-div-border-width);
  border-style: var(--product-swatch-div-border-style);
  border-radius: var(--product-swatch-div-border-radius);
  -webkit-transition: none;
  transition: none;
  box-shadow: var(--product-swatch-div-box-shadow);
}
.product-variation .product-swatch.product-swatch-span .product-swatch-div:not(.placeholder-skeleton) {
  background: var(--product-swatch-div-bg);
  border-color: var(--product-swatch-div-border-color);
  color: var(--product-swatch-div-color);
}
.product-variation .product-swatch.product-swatch-span .product-swatch-div.active {
  border: 1px solid var(--product-size-color-swatch-active-border-color);
  box-shadow: inset 0 0 0 2px #fff;
  color: inherit;
}
.product-variation .product-swatch.product-swatch-span .product-swatch-div.disabled:not(.placeholder-skeleton) {
  opacity: 0.5;
  cursor: not-allowed;
}
.product-variation .product-swatch.product-swatch-span .product-swatch-div:not(.active):not(.disabled):not(.placeholder-skeleton):hover {
  background-color: var(--product-swatch-div-size-hover-bg-color);
  border-color: var(--product-swatch-div-size-hover-border-color);
  color: var(--product-swatch-div-size-hover-color);
}
.product-variation .product-swatch.product-swatch-span .product-swatch-div:not(.disabled):not(.placeholder-skeleton).active .color,
.product-variation .product-swatch.product-swatch-span .product-swatch-div:not(.active):not(.disabled):not(.placeholder-skeleton):hover .color {
  border: none;
  box-shadow: none;
}
.product-variation .product-swatch.product-swatch-span .product-swatch-div .product-swatch-span {
  display: block;
}

.product-variation .product-variations-swatch select {
  display: none !important;
}

.product-bundel .product-variation .product-variations-swatch .product-swatch {
  display: none !important;
}

.product-bundel .product-variation .product-variations-swatch select {
  display: block !important;
}

.product-single .product-image-swatch {
  margin-bottom: 2rem;
}
.product-single .product-image-swatch .image {
  margin-right: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 0.2rem;
  overflow: hidden;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.product-single .product-image-swatch .image img {
  width: 2.6rem;
  height: 2.6rem;
}
.product-single .product-image-swatch .image.active {
  border-color: #336699;
}

.product-variation .product-option-single {
  font-weight: 600;
}

.product-bundel .product-variation .product-option-single {

}

.product-single .btn-cart__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-single .quantity,
.product-single .btn-cart,
.product-single .btn-product-icon {
}
.product-single .btn-cart__single.btn-cart {
  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-color: var(--btn-cart-single-bg-color);
  border-style: var(--btn-cart-single-border-style);
  border-color: var(--btn-cart-single-border-color);
  border-top-width: var(--btn-cart-single-border-top-width);
  border-right-width: var(--btn-cart-single-border-right-width);
  border-bottom-width: var(--btn-cart-single-border-bottom-width);
  border-left-width: var(--btn-cart-single-border-left-width);
  color: var(--btn-cart-single-color);
  font-size: var(--btn-cart-single-font-size);
  font-weight: var(--btn-cart-single-font-weight);
  text-transform: var(--btn-cart-single-text-transform);
}
.product-single .btn-cart__single.btn-cart:hover {
  background-color: var(--btn-cart-single-hover-bg-color);
  border-color: var(--btn-cart-single-hover-border-color);
  color: var(--btn-cart-single-hover-color);
}
.product-single .btn-cart__single.btn-cart i {
  margin: 0 0.4rem 0.2rem 0;
  font-size: calc(var(--btn-cart-single-font-size) + 0.3rem);
}
.product-single .btn-cart__single.btn-cart .product-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-single .btn-cart__single.btn-cart:hover .product-price .price-retail &gt; span.price-retail-info {
  color: var(--btn-cart-single-hover-color);
}
.product-single .btn-cart__single.btn-cart .product-price .price sup {
  top: 0;
  left: 0;
  font-size: inherit;
}
.product-single .btn-cart__single.btn-cart .divider {
  width: 1px;
  height: 100%;
  margin: 0 1rem;
  background-color: var(--btn-cart-single-color);
}
.product-single .btn-cart__single.btn-cart:hover .divider {
  background-color: var(--btn-cart-single-hover-color);
}
.product-single .product-qty-form__single.product-qty-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 11.5rem;
          flex: 0 0 11.5rem;
  max-width: 11.5rem;
  margin-right: 1rem;
}
  .product-single .product-qty-form__single.product-qty-form .form-control {
     padding-top: 1.2rem;
     padding-bottom: 1.2rem;
  }
@media (max-width: 897px) {
  .product-single .product-qty-form__single.product-qty-form {
      -ms-flex: 0 0 12.5rem;
          flex: 0 0 12.5rem;
      max-width: 12.5rem;
  }
}
.product-single .product-btn__full-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 12rem;
}
  .mfp-popup-product .product-single .product-btn__full-width {
    margin-left: 0;
    width: 100%;
  }
  .mfp-popup-product .product-single.product-single__center .product-btn__full-width {
    margin-right: auto;
    margin-left: auto;
  }

.product-single .btn-cart.btn-cart__added .product-price .price-retail &gt; span.price-retail-info {
  color: var(--btn-cart-single-color);
}

.product-single .social-links-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1.3rem;
}
.product-single .social-links-wrapper &gt; * {
  margin-right: 2rem;
  margin-bottom: 1rem;
}
.product-single .social-links-wrapper .btn-product-icon {
  width: 1.8rem;
  height: auto;
  margin-right: 1.6rem;
  margin-bottom: 0;
  font-size: 1.8rem;
  border: none;
  color: #333;
  overflow: initial;
  background-color: transparent;
}
.product-single .social-links-wrapper .btn-product-icon.btn-compare {
  font-size: 2rem;
}
.product-single .social-links-wrapper .btn-product-icon:hover {
  background-color: transparent;
  color: #336699;
}
.product-single .social-links-wrapper .divider {
  width: 1px;
  height: 1.8rem;
  background: #e1e1e1;
  margin-top: 1rem;
}
.product-single .social-icons {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.product-single.product-grid .product-image-full {
  right: 2.5rem;
}
.product-single .product-variation-clean {
  display: none;
  font-size: 1.2rem;
  background: #f4f4f4;
  padding: 0.3em 1em;
  color: #333;
  position: absolute;
  top: 100%;
  margin-top: 1rem;
  z-index: 1;
}

.product-single .product__attributen {
}

.product-single .product__order {
}

.btn-sticky-bar-order-product-single { 
  position: fixed;
  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: var(--btn-sticky-bar-order-product-single-bg-color);
  border-top-style: var(--btn-sticky-bar-order-product-single-border-top-style); 
  border-top-color: var(--btn-sticky-bar-order-product-single-border-top-color); 
  border-top-width: var(--btn-sticky-bar-order-product-single-border-top-width); 
  padding: 1.6rem 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  -webkit-box-shadow: var(--btn-sticky-bar-order-product-single-box-shadow);
  box-shadow: var(--btn-sticky-bar-order-product-single-box-shadow);
  z-index: 5;
  -webkit-transform: translateY(0);
  transform: translateY(0);     
}
.btn-sticky-bar-order-product-single.btn-sticky-bar-order-product-single__column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.btn-sticky-bar-order-product-single .btn-sticky-bar-order-product-single__product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.8rem;
}
.btn-sticky-bar-order-product-single.btn-sticky-bar-order-product-single__column .btn-sticky-bar-order-product-single__product-info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
  .btn-sticky-bar-order-product-single .btn-sticky-bar-order-product-single__product-info .product-title {
     padding: 0 1rem;
     margin-right: 1rem;
     text-align: center;
  }
.btn-sticky-bar-order-product-single .btn-sticky-bar-order-product-single__product-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-sticky-bar-order-product-single .btn-sticky-bar-order-product-single__wrapper {
  margin-right: 2rem;
}

.btn-sticky-bar-order-product-single .product-title {
  font-size: 1.6rem;
  font-weight: 600;
}
.btn-sticky-bar-order-product-single .product-attributen {
  font-size: 1.4rem;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}
.btn-sticky-bar-order-product-single a {

}

@media (max-width: 897px) {
  .btn-sticky-bar-order-product-single { 
     padding: 1.0rem 0;
  }
  .btn-sticky-bar-order-product-single .btn-sticky-bar-order-product-single__product-info .product-title {
     margin-right: 0px;
  }
  .btn-sticky-bar-order-product-single .product-title {
     font-size: 1.4rem;
  }
  .btn-sticky-bar-order-product-single .product-attributen {
     font-size: 1.2rem;
  }
}

.product-gallery-thumbs .product-image-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100% ;
          flex: 0 0 100% ;
  max-width: 100%;
}
.product-gallery-thumbs .product-thumbs-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 9rem;
          flex: 0 0 9rem;
  max-width: 9rem;
  margin-right: 1rem;
  margin-top: 0;
}
.product-gallery-thumbs .product-thumbs {
  -webkit-transition: none;
  transition: none;
}
.product-gallery-thumbs .product-image {
  margin-bottom: 2rem;
}

.product-gallery-vertical.product-gallery-thumbs .product-thumbs-wrap {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
  
.product-gallery-vertical.product-gallery-thumbs .product-thumbs {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: -1rem 0;
  max-width: 100%;
  bottom: auto;
}
.product-gallery-vertical.product-gallery-thumbs .product-thumb-wrap {
  margin: 1rem 0;
}

.single-product .nav-top &gt; .swiper-button-prev {
  right: 0.5rem;
}
.single-product .nav-top &gt; .swiper-button-next {
  right: 0.2rem;
}
.single-product .nav-top &gt; .swiper-button-next,
.single-product .nav-top &gt; .swiper-button-prev {
  width: 15px;
  top: -6.2rem;
  color: var(--swiper-nav-color);
  font-size: 1.3rem;
  font-weight: 600;
}
.single-product .nav-top &gt; .swiper-button-next:not(.swiper-button-disabled):hover,
.single-product .nav-top &gt; .swiper-button-prev:not(.swiper-button-disabled):hover {
  color: var(--alg-color);
}

.product-gallery-horizontal .product-thumbs-wrap:not(.swiper-container-initialized) .product-thumb-wrap {
  margin-right: 1rem;
}

.product-gallery-vertical .product-thumbs-wrap:not(.swiper-container-initialized) .product-thumbs &gt; div {
  margin-bottom: 1rem;
}

.product-gallery-vertical .product-thumbs-wrap {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  max-width: var(--product-gallery-vertical-product-thumbs-wrap-max-width);
  margin: 0 1rem 0 0;
}
.product-gallery-vertical.product-gallery-vertical-right .product-thumbs-wrap {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: 1;
          order: 1;
}
.product-gallery-vertical .product-thumbs-wrap:hover .swiper-button-prev:not(.swiper-button-disabled),
.product-gallery-vertical .product-thumbs-wrap:hover .swiper-button-next:not(.swiper-button-disabled) {
  opacity: 0.9;
  -webkit-transform: none;
          transform: none;
}
.product-gallery-vertical .product-thumbs-wrap .swiper-button-prev,
.product-gallery-vertical .product-thumbs-wrap .swiper-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  width: 100%;
  height: 2.5rem;
}
.product-gallery-vertical .product-thumbs-wrap .swiper-button-prev {
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.product-gallery-vertical .product-thumbs-wrap .swiper-button-prev::before {
  content: "";
}
.product-gallery-vertical .product-thumbs-wrap .swiper-button-next {
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.product-gallery-vertical .product-thumbs-wrap .swiper-button-next::before {
  content: "";
}
.product-gallery-vertical .product-gallery-container-wrapper {
  max-width: calc(100% - var(--product-gallery-vertical-product-thumbs-wrap-max-width));
  -webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
}
.product-gallery-vertical.product-gallery-vertical-right .product-gallery-container-wrapper,
.product-gallery-vertical.product-gallery-vertical-left .product-gallery-container-wrapper {
  max-width: calc(100% - var(--product-gallery-vertical-product-thumbs-wrap-max-width) - 1rem);
  -webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
}
.product-gallery-vertical.product-gallery-no-thumbs .product-gallery-container-wrapper {
  max-width: calc(100%);
}
.product-gallery-vertical .product-image-wrap {
  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;
}
.product-gallery-vertical .product-thumbs {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  max-width: 100%;
}
.product-gallery-vertical .product-thumb-wrap {
  padding: 0;
  height: auto;
}

@media (max-width: 897px) {
  .product-gallery-vertical .product-thumbs-wrap {
    max-width: var(--product-gallery-vertical-product-thumbs-wrap-mobile-max-width);
  }
  .product-gallery-vertical .product-gallery-container-wrapper {
    max-width: calc(100% - var(--product-gallery-vertical-product-thumbs-wrap-mobile-max-width));
  }
  .product-gallery-vertical.product-gallery-vertical-right .product-gallery-container-wrapper,
  .product-gallery-vertical.product-gallery-vertical-left .product-gallery-container-wrapper {
    max-width: calc(100% - var(--product-gallery-vertical-product-thumbs-wrap-mobile-max-width) - 1rem);
  }
}

@media (max-width: 991px) {
  .product-variation .product-form .product-size {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14rem;
            flex: 0 0 14rem;
    max-width: 14rem;
  }
}
@media (min-width: 898px) {
  .product-single .product-details-info {
    padding: 0.2rem 0 0 1rem;
  }
}
@media (max-width: 479px) {
  .product-single:not(.product-popup) .product-qty-form {
    margin-right: 0rem;
  }
}

.product-single-col-sticky {
  top: 7rem;
  position: sticky;
  background-color: var(--product-details-bg-color);
  z-index: 1;
}
.product-single-col-sticky .product-single-col {
  margin-top: 2rem;
}

.product-single .accordion .card-header a {
  padding: var(--product-single-tab-accordion-padding);
}
.product-single .accordion:not(.accordion-plain) .card-header span {
  display: block;
  padding: var(--product-single-tab-accordion-padding);
}


.product-single .product-single-products .widget-products {
  margin-bottom: 1.5rem;
}

.product-single .product-single-products .widget-products:last-child {
  margin-bottom: 0rem;
}

.ul-product-pictogram {
}
.ul-product-pictogram li {
    list-style-type: none;	
    display: inline-block;
    margin: 0 1rem 1rem 0;
    width: 60px;
    text-align: center;
}
.ul-product-pictogram li .pictogram-image {
    height: 60px;
}
.ul-product-pictogram li .pictogram-image img {
    height: 60px;
}
.ul-product-pictogram li .pictogram-title {
    margin-top: 0.5rem;
    word-wrap: anywhere;
}

.product-specs {
}
.product-specs .product-specs-title {
    font-size: var(--product-specs-title-font-size);
    font-weight: var(--product-specs-title-font-weight);
    color: var(--product-specs-title-color);
    text-transform: var(--product-specs-title-text-transform);
    letter-spacing: var(--product-specs-title-letter-spacing);
    margin-bottom: var(--product-specs-title-margin-bottom);
    padding: 0 0 0 0;
}
.product-specs .product-specs-wrapper {
    margin-bottom: 0.7rem;
}
.product-specs .product-specs-wrapper:last-child {
    margin-bottom: 0;
}
.product-specs .product-specs-wrapper .product-specs-holder {
    display: block;
    border-style: solid;
    border-color: var(--product-specs-holder-border-color); 
    border-width: var(--product-specs-holder-border-width); 
}
.product-specs .product-specs-wrapper .product-specs-holder-wrapper .product-specs-holder:nth-child(2n+0) {
    background: var(--product-specs-holder-nth-child-2n-0-bg-color);
}
.product-specs .product-specs-wrapper .product-specs-holder:first-child {

}
.product-specs .product-specs-wrapper .product-specs-holder:last-child {

}

.product-specs .product-specs-wrapper .product-specs-holder &gt; div {
    font-size: var(--product-specs-font-size);
    font-weight: var(--product-specs-font-weight);
    padding: var(--product-specs-padding);
}
.product-specs .product-specs-wrapper .product-specs-holder &gt; div.product-specs-holder__title {
    float: left;
    width: 40%;
    font-size: var(--product-specs-holder-title-font-size);
    font-weight: var(--product-specs-holder-title-font-weight);
    color: var(--product-specs-holder-title-color);
}
.product-specs .product-specs-wrapper .product-specs-holder &gt; div.product-specs-holder__value {
    float: right;
    width: 60%;
    font-size: var(--product-specs-holder-value-font-size);
    font-weight: var(--product-specs-holder-value-font-weight);
    color: var(--product-specs-holder-value-color);
}

/*-------------------------------------------
    Progress Bar
        - Rounded
--------------------------------------------*/
.progress-bar {
  background-color: #eee;
  margin-bottom: 1rem;
  height: 1rem;
  width: 100%;
}
.progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background-color: #999;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-bar.rounded {
  border-radius: 0.8rem;
}
.progress-bar.rounded span {
  border-radius: 0.8rem;
}
.progress-bar.progress-bar-sm {
  height: 0.8rem;
}

.progress-value mark {
  background: transparent;
}

/* ------------------------------------
    Sidebar
        - Base
        - Sidebar Elements
        - Fixed Sidebar
        - Right Sidebar
        - Tag
        - Blog Sidebar
------------------------------------- */
.sidebar-active .sidebar .sidebar-overlay,
.right-sidebar-active .right-sidebar .sidebar-overlay {
  visibility: visible;
  opacity: 0.5;
}
.sidebar-active .sidebar .sidebar-close,
.sidebar-active .sidebar .sidebar-footer,
.right-sidebar-active .right-sidebar .sidebar-close {
  opacity: 1;
  visibility: visible;
}
.sidebar-active .sidebar .sidebar-content,
.right-sidebar-active .right-sidebar .sidebar-content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.sidebar-overlay, .sidebar-toggle, .sidebar-content, .sidebar-close {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2200;
}

.sidebar-overlay {
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0.4s, opacity 0.4s;
  transition: visibility 0.4s, opacity 0.4s;
}

.sidebar-toggle {
  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;
  top: 206px;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  color: #fff;
  background-color: #222;
  opacity: 0.6;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.sidebar-toggle:hover {
  opacity: 0.8;
  color: #fff;
}

.right-sidebar .sidebar-toggle {
  border-radius: 0.3rem 0 0 0.3rem;
}

.left-sidebar .sidebar-toggle {
  border-radius: 0 0.3rem 0.3rem 0;
}

.sidebar-close {
  opacity: 0;
  visibility: hidden;
  margin: 0;
  left: calc(100vw - 50px);
  top: 25px;
  z-index: 2201;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
}

.sidebar-active .sidebar .sidebar-footer {
  transform: translateY(0px);
}

.sidebar-footer {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--sidebar-vertical-sidebar-footer-bg-color);
  padding: var(--sidebar-vertical-sidebar-footer-padding);
  margin: 0px;
  border-top-width: var(--sidebar-vertical-sidebar-footer-border-top-width);
  border-top-style: var(--sidebar-vertical-sidebar-footer-border-top-style);
  border-top-color: var(--sidebar-vertical-sidebar-footer-border-top-color);
  text-align: center;
  width: 30rem;
  z-index: 2201;
}

.sidebar-footer a {
  color: var(--sidebar-vertical-sidebar-footer-a-color);
  font-size: var(--sidebar-vertical-sidebar-footer-a-font-size);
  font-weight: var(--sidebar-vertical-sidebar-footer-a-font-weight);
  text-transform: var(--sidebar-vertical-sidebar-footer-a-text-transform);
  padding: var(--sidebar-vertical-sidebar-footer-a-padding);
  border-width: var(--sidebar-vertical-sidebar-footer-a-border-width);
  border-style: var(--sidebar-vertical-sidebar-footer-a-border-style);
  border-color: var(--sidebar-vertical-sidebar-footer-a-border-color);
  border-radius: var(--sidebar-vertical-sidebar-footer-a-border-radius);
}

.sidebar-footer .spinner-loading-wrapper {
  position: absolute;
  margin-top: -1px;
  margin-left: -25px;
}

.sidebar-footer .spinner-loading {
  vertical-align: -.325em;
}

.sidebar-content {
  bottom: 0;
  width: 31rem;
  padding: 2rem;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  overflow: auto;
  opacity: 0;
  line-height: 1.3;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

  .sidebar .sidebar-content .sidebar-section {
    margin-bottom: 1.5rem;
  }
  .sidebar .sidebar-content .sidebar-section:last-child {
    margin-bottom: 0;
  }

.widget:not(.widget-collapsible) .widget-title {
  border: none;
}

.sidebar .widget:last-child .widget-body {
  padding-bottom: 0;
}

.right-sidebar {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.right-sidebar .sidebar-toggle {
  left: auto;
  right: 0;
}
.right-sidebar .sidebar-close {
  left: 10px;
  padding: 10px;
}
.right-sidebar .sidebar-content {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  left: auto;
  right: 0;
}

.right-sidebar .sidebar-content::-webkit-scrollbar {
  width: 0;
}

.filter-actions {
  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: 0.8rem 0 1.7rem;
}
.filter-actions label {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #333;
}
.filter-actions .filter-clean {
  padding-bottom: 0;
  text-transform: capitalize;
  font-weight: 400;
}

.price-range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1.3rem 0 1rem;
}
.price-range input {
  padding: 0.5rem;
  color: #999;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 62px;
  height: 37px;
  line-height: 37px;
  vertical-align: middle;
  -webkit-appearance: textfield;
}
.price-range input::-webkit-outer-spin-button, .price-range input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.price-range input::-webkit-input-placeholder {
  color: inherit;
}
.price-range input::placeholder, .price-range input::-webkit-input-placeholder, .price-range input::-moz-placeholder {
  color: inherit;
}
.price-range .delimiter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0.65rem;
  font-size: 1.9rem;
  font-weight: 600;
  color: #999;
}
.price-range .btn {
  padding: 0;
  font-size: 1.3rem;
  font-weight: 400;
  width: 4.8rem;
  height: 3.7rem;
  vertical-align: middle;
  line-height: 2.6;
  margin-left: 1rem;
  text-transform: none;
}

.filter-title,
.filters-title {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
}
  .sidebar-vertical .filter-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

.filter-items {
  position: relative;
  width: 100%;
  font-size: 1.4rem;
  margin-top: 1rem;
}
  .filter-items.item-price {
     padding-top: 2rem;
     padding-bottom: 2rem;
  }
.filter-items a.filter-clear {
  display: none;
  position: absolute;
  top: 0;
  right: 0.2rem;
  font-size: 1.2rem;
}
  .toolbox-filter-top .filter-items a.filter-clear {
     top: 1rem;
     right: 1.7rem;
  }
.filtered .filter-items a.filter-clear {
  display: block;
}
.filter-items ul {
  position: relative;
  top: 2.5rem;
  margin-top: 0rem;
  margin-bottom: 3.5rem;
  padding: 0;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
}
  .toolbox-filter-top .filter-items ul {
    padding: 0 1.5rem 0 1.5rem;
  }
  .filter-items.item-color ul {
    overflow-y: inherit;
  }
  .filter-items.item-price ul {
    top: 0;
    padding: 0;
    margin: 0;
    overflow-y: inherit;
  }
.filter-items ul li {
  margin: 0.2rem 0 0.2rem 0;
  list-style-type: none;
}
  .filter-items.item-price ul li {
     margin: 0;
  }
.filter-items.item-check ul li input[type="checkbox"] {
  display: none;
}
.filter-items ul li a {
  position: relative;
  display: block;
  color: inherit;
  padding: 0.7rem 0 0.7rem 0.2rem;
  padding-right: 4rem !important;
}
.filter-items ul li a:hover {
  color: var(--link-hover-color);
}
.filter-items.item-check:not(.item-tag):not(.item-color) ul li a {
  padding-left: 2.8rem !important;
}
.filter-items.item-check:not(.item-tag):not(.item-color) ul li a::before {
  content: "";
  position: absolute;
  border: 1px solid;
  border-radius: 2px;
  width: 18px;
  height: 18px;
  top: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0px;
  color: #999;
  font-size: 1rem;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  text-align: center;
  text-indent: 1px;
  line-height: 1.3em;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5) {
  .filter-items.item-check ul li a::before {
    text-indent: 0;
  }
}
.filter-items.item-check ul li.active {
  font-weight: 600;
}
.filter-items.item-check:not(.item-tag):not(.item-color) ul li.active &gt; a::before {
  content: "";
  background-color: var(--filter-checked-color);
  width: 20px;
  height: 20px;
  color: #fff;
  border-radius: 3px;
  left: -1px;
  padding-top: 3px;
  font-weight: 600;
}
    .filter-items.item-check li:not(.active).disabled {
       pointer-events: none;
       opacity: 0.4;
    } 
    .filter-items.item-check li:not(.active).disabled span {
       opacity: 0.4;
    } 

.filter-items.search-ul a::before {
  content: none;
}
.filter-items .show &gt; a {
  color: #336699;
}
.filter-items .show &gt; a i {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.filter-items a[data-count-products]::after {
  position: absolute;
  content: attr(data-count-products);
  top: var(--filter-items-a-data-count-product-after-top);
  right: var(--filter-items-a-data-count-product-after-right);
  margin-left: var(--filter-items-a-data-count-product-after-margin-left);
  background-color: var(--filter-items-a-data-count-product-after-bg-color);
  color: var(--filter-items-a-data-count-product-after-color);	
  padding-top: var(--filter-items-a-data-count-product-after-padding-top);
  padding-right: var(--filter-items-a-data-count-product-after-padding-right);
  padding-bottom: var(--filter-items-a-data-count-product-after-padding-bottom);
  padding-left: var(--filter-items-a-data-count-product-after-padding-left);
  border-radius: var(--filter-items-a-data-count-product-after-border-radius);	
  font-size: var(--filter-items-a-data-count-product-after-font-size);
}
  .filter-items a[data-count-products]:hover::after {
    background-color: var(--filter-items-a-data-count-product-after-hover-bg-color);
    color: var(--filter-items-a-data-count-product-after-hover-color);	
  }
  .filter-items .disabled a[data-count-products]::after {
    background-color: transparent;
  }

.filter-items li.active a:not(.filter-clear)::after {

}
.filter-items.item-tag a[data-count-products]::after {
  top: var(--filter-items-item-tag-a-data-count-product-after-top);
  right: var(--filter-items-item-tag-a-data-count-product-after-right);	
}

.filter-price-legend {
  float: left;
  font-weight: normal;
  margin: 0;
  font-size: 1.2rem;
}
.filter-price-legend {
  display: none;	
}
.toolbox-filter-top .filter-price-legend {
  display: block;
}
  .filter-select-menu-toggle &gt; .filter-price-legend {
    margin-left: 5px;	
  }
.filter-price-legend label {
	
}
.filter-price-legend label:first-child {
  margin: 0 0.1rem 0 0;
}
.filter-price-legend label:last-child {
  margin: 0 0 0 0.1rem;
}

.filter-slider-price-legend label {
  line-height: 2;
  font-size: 1.2rem;
  color: var(--filter-items-color);
}
.filter-slider-price-legend label:first-child {
  margin: 0;
}
.filter-slider-price-legend label:last-child {
  float: right;
  margin: 0;
}

.filter-slider-price-range {
  margin-top: 0.5rem;	
}
.filter-slider-price-range #filter-price-slider {
  margin: 10px 0px 5px 0px;
  padding-right: 5px;
  padding-left: 15px;
}

.filter-slider-price-range .noUi-target {
  height: 6px;
  /*border: 1px solid #E5E5E5;*/
  border: 1px solid #FFFFFF;
  background: #eaeaea;
}

.filter-slider-price-range .noUi-connect {
  background: var(--filter-slider-price-range-color);
  height: 4px;
}

.filter-slider-price-range .noUi-handle {
  cursor: col-resize;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: -8.5px;
  right: -11px;
  box-shadow: none;
  border: none;
  background: #000;
  background: #fff;
  border-width: 5px;
  border-style: solid;
  border-color: var(--filter-slider-price-range-color);
}

.filter-slider-price-range .noUi-handle:before, .filter-slider-price-range .noUi-handle:after{
    width:0px;	
}

.toolbox-filter-toggle-button .btn {
  position: fixed;
  bottom: 100px;
  transform: translateX(-50%);
  left: 50%;
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
  background: #fff;
  color: #666;
  border-color: #666;
  padding: 10px 25px;
  z-index: 4;
}
.toolbox-filter-toggle-button .btn:hover,
.toolbox-filter-toggle-button .btn:active,
.toolbox-filter-toggle-button .btn:focus {
  background-color: #666;
  color: #fff;
}

.toolbox-filter-toggle-button.filter-active .btn span::after {
  position: absolute;
  top: 5px;
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-size: 1.2rem;
  color: #00b517;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.toolbox-horizontal .sidebar-fixed {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.toolbox-horizontal.toolbox .left-sidebar-toggle {
  padding: 0.65em;
  margin-bottom: 0;
}
.toolbox-horizontal .heading-wrapper .heading-title {
  font-family: inherit;
  margin: 0;
  padding: 0;
}
.toolbox-horizontal .heading-wrapper::after {
  content: "" !important;
}
.toolbox-horizontal .filter-select-menu select,
.toolbox-horizontal .toolbox-show select {
  padding-top: 0.65em;
  padding-bottom: 0.65em;
}
.toolbox-horizontal .toolbox-show select {
  padding-left: 1.4rem;
  padding-right: 3.1rem;
}
.toolbox-horizontal .select-box::before {
  right: 0.9rem;
}
.toolbox-horizontal .toolbox-layout {
  margin-left: 2rem;
}
.toolbox-horizontal .filter-select-menu:not(.toolbox-sort) {
  display: block;
}
.toolbox-horizontal .filter-select-menu:not(.toolbox-sort)::before {
  content: none;
}
.toolbox-horizontal .filter-select-menu-toggle {
  font-size: var(--toolbox-horizontal-filter-select-menu-toggle-font-size);
  font-weight: var(--toolbox-horizontal-filter-select-menu-toggle-font-weight);
  color: var(--toolbox-horizontal-filter-select-menu-toggle-color);
  background: var(--toolbox-horizontal-filter-select-menu-toggle-bg-color);
  border-style: solid;
  border-color: var(--toolbox-horizontal-filter-select-menu-toggle-border-color);
  border-top-width: var(--toolbox-horizontal-filter-select-menu-toggle-border-top-width);
  border-right-width: var(--toolbox-horizontal-filter-select-menu-toggle-border-right-width);
  border-bottom-width: var(--toolbox-horizontal-filter-select-menu-toggle-border-bottom-width);
  border-left-width: var(--toolbox-horizontal-filter-select-menu-toggle-border-left-width);
  border-radius: var(--toolbox-horizontal-filter-select-menu-toggle-border-radius);
  padding: 1.3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.toolbox-horizontal .filter-select-menu-toggle:hover {
  color: var(--body-color);
}

.toolbox-filter-sidebar .filter-select-menu-toggle {

}

.filter-items.item-tag {

}
.filter-items.item-tag a:not(.btn):not(.filter-clear) {
  padding: 1rem 0;
}
.filter-items.item-tag .btn {
  color: #fff;
}

@media (min-width: 992px) {
  .toolbox-horizontal {
    position: relative;
    padding: 2rem;
    margin: -2rem;
    z-index: 3;
  }
  .toolbox-horizontal .sidebar-fixed .sidebar-content.toolbox-left {
    padding-bottom: 0;
  }
  .toolbox-horizontal .toolbox-left .toolbox-item {
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
  .toolbox-horizontal .toolbox-left .toolbox-item.opened .filter-items {
    opacity: 1;
    visibility: visible;
  }
  .toolbox-horizontal .filter-items {
    position: absolute;
    top: 100%;
    margin-top: 0.5rem;
    min-width: var(--toolbox-horizontal-filter-items-min-width);
    padding: 0.7rem 0 1rem;
    font-size: var(--filter-items-font-size);
    visibility: hidden;
    opacity: 0;
    z-index: 3;
    -webkit-box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
            box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
    background-color: #fff;
    max-width: 280px;
    word-wrap: break-word;
  }
  .toolbox-horizontal .filter-items li {
    color: var(--filter-items-color);
  }
  .toolbox-horizontal .filter-items li:hover {
    color: var(--filter-items-hover-color);
  }
    .toolbox-horizontal .filter-items.item-tag {
       min-width: var(--toolbox-horizontal-filter-items-item-tag-min-width);
    }
    .toolbox-horizontal .filter-items.item-color {
       min-width: var(--toolbox-horizontal-filter-items-item-color-min-width);
    }
    .toolbox-horizontal .filter-items.item-price {
       padding: 2rem 1.5rem 2rem;
    }
  .filter-items.item-check li {
    display: block;
    margin: 0.2rem 0 0.2rem 0;
  }
  .toolbox-horizontal .filter-select-menu::before {
    font-size: 1.1rem;
    right: 1rem;
    color: #333;
  }
  .toolbox-horizontal .filter-select-menu .filter-select-menu-toggle {
    position: relative;
    line-height: 1.5;
    padding: var(--toolbox-horizontal-filter-select-menu-toggle-padding);
    text-transform: none;
    -webkit-transition: border-color 0.4s, color 0.4s;
    transition: border-color 0.4s, color 0.4s;
  }
  .toolbox-horizontal .filter-select-menu .filter-select-menu-toggle::after {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
    height: 100%;
    top: 0;
    right: 0.9rem;
    bottom: 0;
    font-family: "elexio";
    content: "";
    font-size: var(--toolbox-horizontal-filter-select-menu-toggle-font-size);
    font-weight: 600;
    line-height: 1;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;    
  }
  .toolbox-horizontal .filter-select-menu.opened .filter-select-menu-toggle::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .filter-items.item-tag a {
    padding-left: 1em !important;
  }
  .filter-items.item-tag a::before {
    content: none;
  }
  .toolbox-horizontal .price-range {
    margin: 0;
  }

  .toolbox-horizontal.toolbox-horizontal__center {

  }
  .toolbox-horizontal.toolbox-horizontal__center .toolbox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .toolbox-horizontal.toolbox-horizontal__center .toolbox label {
    margin-right: 0px;
    text-align: center;
  }
  .toolbox-horizontal.toolbox-horizontal__center .selected-items__wrapper .filters-title {
    text-align: center;
  }
  .toolbox-horizontal.toolbox-horizontal__center .selected-items__wrapper .selected-items {
    text-align: center;
  }
}

.filter-items.item-tag li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 0.5rem 0.5rem 0;
}
.filter-items.item-tag a:not(.btn):not(.filter-clear) {
  background: var(--filter-tag-bg-color);
  color: var(--filter-tag-color);
  border-style: solid;
  border-color: var(--filter-tag-border-color);
  border-width: var(--filter-tag-border-width);
  padding: 0.5em 1em;
  border-radius: 0.3rem;
}
.filter-items.item-tag .active a:not(.btn):not(.filter-clear) {
  background-color: var(--filter-checked-tag-bg-color);
  color: var(--filter-checked-tag-color);
  border-color: var(--filter-checked-tag-border-color);
}

.filter-items.item-color li {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 1rem 2rem 0;
  font-size: 1.1rem;
  width: var(--filter-color-width);
  height: var(--filter-color-height);
  border-radius: var(--filter-color-border-radius);
  border: 1px solid transparent; 
}
  .filter-items.item-color li.active {
    border: 1px solid inherit;
    box-shadow: inset 0 0 0 2px #fff;
    color: inherit;
  }

.filter-items.item-color li a {
  position: absolute;
  text-indent: 0;
  padding: 0px !important;
  height: 1.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: calc(100% + 20px);
  padding-top: calc(var(--filter-color-height) + 0.4rem) !important;
}
.filter-items.item-color a:not(.filter-clear)::after {
  font-size: 0;
}

.shop-sidebar {
  position: relative;
}
@media(max-width: 479px){
  .shop-sidebar {
    padding-bottom: 0px;
  }
}

.shop-sidebar .widget-body {
  margin-bottom: 0rem;
}
.shop-sidebar .filter-price-text {
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.widget-icon-box {
  padding: 0 2rem;
  border-radius: 0.5rem;
  border: 1px solid #eee;
}
.widget-icon-box .icon-box-side {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  padding: 2rem 0;
}
.widget-icon-box .icon-box-side:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.widget-icon-box i.e-icon-truck {
  font-size: 3.4rem;
}
.widget-icon-box i.e-icon-bag, .widget-icon-box i.e-icon-money {
  font-size: 3rem;
}
.widget-icon-box .icon-box-title {
  font-weight: 600;
}
.widget-icon-box p {
  color: #999;
}

.widget-banner .banner-content {
  left: 10.7%;
  bottom: 12.5%;
}
.widget-banner .banner-price-info {
  margin-left: -2px;
  margin-bottom: 0.2rem;
  font-size: 4.6em;
}
.widget-banner sup {
  margin-left: 1px;
  vertical-align: 12px;
  font-size: 0.652em;
}
.widget-banner sub {
  margin-left: -1.7em;
  vertical-align: 0;
  font-size: 0.26em;
}
.widget-banner .banner-subtitle {
  font-size: 1.6rem;
}

.widget.widget-products .title {
  margin-bottom: 0.7rem;
  font-size: 1.6rem;
}
.widget.widget-products .title.title-link::before {
  height: 2px;
  background-color: #666;
  bottom: -0.7rem;
}

.blog-sidebar .widget .widget-title {
  cursor: default;
}
.blog-sidebar .widget .widget-body {
  padding: 0;
}
.blog-sidebar .widget:not(:last-child) .widget-body {
  margin-bottom: 2.5rem;
}
.blog-sidebar .widget:last-child .widget-body {
  margin-bottom: 1rem;
}
.blog-sidebar .widget .widget-title {
  margin-bottom: 1rem;
}

.widget-search-form .form-control {
  border-radius: 0.3rem 0 0 0.3rem;
  font-size: 1.2rem;
  color: #777;
}
.widget-search-form .btn-search {
  padding: 0.9em 1.07em 1em;
  border-width: 1px 1px 1px 0;
  border-color: #eee;
  border-radius: 0 0.3rem 0.3rem 0;
}
.widget-search-form .btn-search i {
  font-size: 1.8rem;
}
.widget-search-form .btn-search:hover, .widget-search-form .btn-search:active, .widget-search-form .btn-search:focus {
  background-color: #fff;
  color: #336699;
}

.widget-posts .swiper-button-next, .widget-posts .swiper-button-prev {
  top: -4.2rem;
  border: none;
  width: auto;
  height: auto;
  font-size: 1.5rem;
  font-weight: 600;
}
.widget-posts .swiper-button-next:not(.swiper-button-disabled):hover, .widget-posts .swiper-button-prev:not(.swiper-button-disabled):hover {
  background-color: #fff;
  color: var(--alg-color);
}
.widget-posts .swiper-button-prev {
  right: 0.4rem;
}
.widget-posts .swiper-button-next {
  right: 0.3rem;
}

.widget-custom-block p {
  line-height: 1.6;
}

.tags .tag {
  display: inline-block;
  margin: 0.5rem 1rem 0.5rem 0;
  padding: 0.5rem 0.9rem;
  font-size: 1.3rem;
  border: 1px solid #ccc;
  line-height: 1.35;
  text-transform: capitalize;
  color: #333;
  border-radius: 0.3rem;
  -webkit-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}
.tags .tag:hover {
  border-color: #336699;
  color: #336699;
}

.vendor-sidebar .widget-collapsible .widget-body {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.vendor-sidebar .widget-categories .widget-body {
  padding: 0.7rem 0 2rem;
}
.vendor-sidebar .widget-time .widget-body {
  padding: 0.3rem 0 2rem;
}
.vendor-sidebar .widget.widget-products .widget-body {
  padding: 1rem 0 2rem;
}
.vendor-sidebar .product-widget .product-media {
  padding-left: 0.2rem;
}
.vendor-sidebar .product-widget .product-details {
  padding-bottom: 0.8rem;
}
.vendor-sidebar .product-widget .product-name {
  margin-bottom: 0.6rem;
}
.vendor-sidebar .product-widget .ratings-container {
  margin-bottom: 0.4rem;
}
.vendor-sidebar .product-widget .product-price {
  font-size: 1.6rem;
}

.widget-contact .form-control {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1.3rem;
  border-color: #e1e1e1;
  border-radius: 0.3rem;
}
.widget-contact input {
  min-height: 4.4rem;
  padding-top: 0.9rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.widget-contact textarea {
  min-height: 17.4rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  margin-bottom: 2rem;
}

.widget-time li {
  padding: 1rem 0;
}
.widget-time label::after {
  content: "-";
  display: inline-block;
  margin-left: 0.4rem;
}
.widget-time .widget-body span {
  display: inline-block;
  width: 11rem;
  font-weight: 600;
  color: #333;
}

.widget-wcmp-contact .form-control {
  margin-bottom: 2rem;
  border-radius: 0.3rem;
  color: #666;
}
.widget-wcmp-contact input {
  min-height: 4rem;
}
.widget-wcmp-contact textarea {
  max-height: 12.4rem;
}

.widget-search-products input {
  min-height: 4rem;
  margin-right: 0.5rem;
  color: #666;
  border-radius: 0.3rem;
}
.widget-search-products .btn {
  padding: 0.86em 1em;
  background-color: #eee;
  border-color: #eee;
  color: #333;
}
.widget-search-products .btn:hover, .widget-search-products .btn:focus, .widget-search-products .btn:active {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.sidebar.sidebar-vertical .widget {
  margin-bottom: 1.5rem;
}
.sidebar.sidebar-horizontal .widget {
  margin-bottom: 0rem;
}
.main-content {

}
.checkout-bestellen .main-content,
.checkout-winkelwagen .main-content,
.checkout-overflow .main-content {

}
@media (min-width: 1100px) {
  .sidebar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(31rem - var(--sidebar-margin-right));
            flex: 0 0 calc(31rem - var(--sidebar-margin-right));
    max-width: calc(31rem - var(--sidebar-margin-right));
    margin-right: var(--sidebar-margin-right);
    padding-top: var(--sidebar-main-content-padding-top);
    padding-bottom: var(--sidebar-main-content-padding-bottom);
    margin-top: var(--sidebar-main-content-margin-top);
    margin-bottom: var(--sidebar-main-content-margin-bottom);
    border-top-left-radius: var(--sidebar-main-content-border-top-left-radius);
    border-top-right-radius: var(--sidebar-main-content-border-top-right-radius);
    border-bottom-right-radius: var(--sidebar-main-content-border-bottom-right-radius);
    border-bottom-left-radius: var(--sidebar-main-content-border-bottom-left-radius);
  }

  .main-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-top: 0;
    padding-bottom: 0;
  }

  .row .main-content {
    max-width: calc( 100% - 31rem );
  }

  .product-single-aside {
    max-width: calc( 100% - 31rem );
  }

  .shop-sidebar.sidebar-fixed .sidebar-content {
    padding: 0 0 2rem;
  }

  .sidebar-fixed .sidebar-toggle,
.sidebar-fixed .sidebar-overlay {
    display: none;
  }
  .sidebar-fixed .sidebar-content {
    position: relative;
    overflow: visible;
    padding: 0;
    opacity: 1;
    z-index: 2;
    width: auto;
    -webkit-transform: none;
            transform: none;
  }

  .shop-content {
    
  }
}
.main-content &gt; .section-row:first-child {
  padding-top: var(--sidebar-main-content-padding-top);
  margin-top: var(--sidebar-main-content-margin-top);
  border-top-left-radius: var(--sidebar-main-content-border-top-left-radius);
  border-top-right-radius: var(--sidebar-main-content-border-top-right-radius);
}
.main-content &gt; .section-row:last-child {
  padding-bottom: var(--sidebar-main-content-padding-bottom);
  margin-bottom: var(--sidebar-main-content-margin-bottom);
  border-bottom-right-radius: var(--sidebar-main-content-border-bottom-right-radius);
  border-bottom-left-radius: var(--sidebar-main-content-border-bottom-left-radius);
}
@media (max-width: 897px) {
  .main-content &gt; .section-row:first-child {
    padding-top: var(--sidebar-main-content-mobile-padding-top);
    margin-top: var(--sidebar-main-content-mobile-margin-top);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .main-content &gt; .section-row:last-child {
    padding-bottom: var(--sidebar-main-content-mobile-padding-bottom);
    margin-bottom: var(--sidebar-main-content-mobile-margin-bottom);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}

.sidebar {
  background-color: var(--sidebar-bg-color);
}

.main-content .section-row {
  background-color: var(--main-content-bg-color); 
  margin-top: var(--main-content-section-row-margin-top); 
  margin-bottom: var(--main-content-section-row-margin-bottom); 
}
.main-content .section-row.section-row-fluid {
  margin-right: var(--main-content-section-row-fluid-margin-right);
  margin-left: var(--main-content-section-row-fluid-margin-left);
}
.main-content .section-row.section-account-login {
  background-color: transparent; 
}
.main-content .section-row.section-checkout-bestellen {
  background-color: var(--main-content-checkout-bestellen-bg-color);
  padding-top: var(--main-content-checkout-bestellen-padding-top); 
  padding-bottom: var(--main-content-checkout-bestellen-padding-bottom); 
}

@media (max-width: 991px) {
  .sidebar-active .page-wrapper {
    margin-left: 310px;
    margin-right: -310px;
  }
  .right-sidebar-active .page-wrapper {
    margin-left: -310px;
    margin-right: 310px;
  }
}
@media (max-width: 479px) {
  .sidebar-content {
    width: 30rem;
  }

  .sidebar-active .page-wrapper {
    margin-left: 30rem;
    margin-right: -30rem;
  }
  .right-sidebar-active .page-wrapper {
    margin-left: -30rem;
    margin-right: 30rem;
  }

  .widget-icon-box .icon-box-side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .widget-icon-box .icon-box-icon {
    margin: 0 0 0.5rem;
  }
  .widget-icon-box .icon-box-content {
    text-align: center;
  }
}
@media(max-width: 897px){
  .sidebar.sidebar-vertical .sidebar-content {
    background-color: #fff;
  }
  .sidebar.sidebar-vertical .sidebar-content .heading-wrapper .heading-title {
    background-color: #fff !important;
  }
}

.table-openingstijden {

}
.table-openingstijden td {
   vertical-align: top;
}
.table-openingstijden .td-day {

}
.table-openingstijden .td-time-info {

}
.table-openingstijden .td-time-info .openingstijd-info__tijd {
   display: inline-block;
   width: 30px;
}
.table-openingstijden .td-time-info .openingstijd-info__tot-html {
   display: inline-block;
   width: 20px;
   text-align: center;
}
.table-openingstijden .td-time-info .openingstijd-info__uur-html {

}

.table-openingstijden .td-time-info .openingstijd-info__gesloten-info-html {
   font-weight: 600;
}

/*-------------------------------
    Social Links
        - Default Style
        - Other Styles
            - No Border
            - Inline Style
--------------------------------*/
.social-icons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social-icon {
  font-size: var(--social-icons-font-size);
  width: var(--social-icons-width);
  height: var(--social-icons-height);
  line-height: var(--social-icons-line-height);
  margin: var(--social-icons-margin);
  color: inherit;
  -webkit-transition: color 0.4s, border 0.4s, background-color 0.4s;
  transition: color 0.4s, border 0.4s, background-color 0.4s;
  text-align: center;
  border-radius: 0.5rem;
}
.header .header-top .social-icon {
  font-size: var(--header-top-social-icons-font-size);
  width: var(--header-top-social-icons-width);
  height: var(--header-top-social-icons-height);
  line-height: var(--header-top-social-icons-line-height);
  margin: var(--header-top-social-icons-margin);
  margin-bottom: 0px;
}
.header .header-middle .social-icon {
  font-size: var(--header-middle-social-icons-font-size);
  width: var(--header-middle-social-icons-width);
  height: var(--header-middle-social-icons-height);
  line-height: var(--header-middle-social-icons-line-height);
  margin: var(--header-middle-social-icons-margin);
}
.footer .footer-middle .social-icon {
  font-size: var(--footer-middle-social-icons-font-size);
  width: var(--footer-middle-social-icons-width);
  height: var(--footer-middle-social-icons-height);
  line-height: var(--footer-middle-social-icons-line-height);
  margin: var(--footer-middle-social-icons-margin);
}
.footer .footer-bottom .social-icon {
  font-size: var(--footer-bottom-social-icons-font-size);
  width: var(--footer-bottom-social-icons-width);
  height: var(--footer-bottom-social-icons-height);
  line-height: var(--footer-bottom-social-icons-line-height);
  margin: var(--footer-bottom-social-icons-margin);
}

.border-round .social-icon {
  border-radius: 50%;
}
.border-thin .social-icon {
  background-color: var(--social-icons-border-thin-bg-color);
  border-width: 1px;
  border-style: solid;
  border-color: var(--social-icons-border-thin-border-color);
  line-height: calc(var(--social-icons-line-height) - 2px);
}

.header .header-top .border-thin .social-icon {
  font-size: calc(var(--header-top-social-icons-font-size) - 6);
  line-height: calc(var(--header-top-social-icons-line-height) - 2px);
}
.header .header-middle .border-thin .social-icon {
  font-size: calc(var(--header-middle-social-icons-font-size) - 6);
  line-height: calc(var(--header-middle-social-icons-line-height) - 2px);
}
.footer .footer-middle .border-thin .social-icon {
  font-size: calc(var(--footer-middle-social-icons-font-size) - 6);
  line-height: calc(var(--footer-middle-social-icons-line-height) - 2px);
}
.footer .footer-bottom.border-thin .social-icon {
  font-size: calc(var(--footer-bottom-social-icons-font-size) - 6);
  line-height: calc(var(--footer-bottom-social-icons-line-height) - 2px);
}

.social-icon:last-child {
  margin-right: 0 !important;
}

.social-icons-color .social-icon.social-facebook {
  color: var(--social-color-facebook);
}
.social-icons-color .social-icon:hover.social-facebook {
  color: #000;
}
.social-icons-color .social-icon.social-facebook-square {
  color: var(--social-color-facebook);
}
.social-icons-color .social-icon:hover.social-facebook-square {
  color: #000;
}
.social-icons-color .social-icon.social-twitter {
  color: var(--social-color-twitter);
}
.social-icons-color .social-icon:hover.social-twitter {
  color: #000;
}
.social-icons-color .social-icon.social-instagram {
  color: var(--social-color-instagram);
}
.social-icons-color .social-icon:hover.social-instagram {
  color: #000;
}
.social-icons-color .social-icon.social-youtube {
  color: var(--social-color-youtube);
}
.social-icons-color .social-icon:hover.social-youtube {
  color: #000;
}
.social-icons-color .social-icon.social-pinterest {
  color: var(--social-color-pinterest);
}
.social-icons-color .social-icon:hover.social-pinterest {
  color: #000;
}
.social-icons-color .social-icon.social-google {
  color: var(--social-color-google);
}
.social-icons-color .social-icon:hover.social-google {
  color: #000;
}
.social-icons-color .social-icon.social-linkedin {
  color: var(--social-color-linkedin);
}
.social-icons-color .social-icon:hover.social-linkedin {
  color: #000;
}
.social-icons-color .social-icon.social-email {
  color: var(--social-color-email);
}
.social-icons-color .social-icon:hover.social-email {
  color: #000;
}
.social-icons-color .social-icon.social-whatsapp {
  color: var(--social-color-whatsapp);
}
.social-icons-color .social-icon:hover.social-whatsapp {
  color: #000;
}

.social-icons-white-color .social-icon.social-facebook {
  color: #fff;
}
.social-icons-white-color .social-icon:hover.social-facebook {
  color: var(--social-color-facebook);
}
.social-icons-white-color .social-icon.social-facebook-square {
  color: #fff;
}
.social-icons-white-color .social-icon:hover.social-facebook-square {
  color: var(--social-color-facebook);
}
.social-icons-white-color .social-icon.social-twitter {
  color: #fff;
}
.social-icons-white-color .social-icon:hover.social-twitter {
  color: var(--social-color-twitter);
}
.social-icons-white-color .social-icon.social-instagram {
  color: #fff;
}
.social-icons-white-color .social-icon:hover.social-instagram {
  color: var(--social-color-instagram);
}
.social-icons-white-color .social-icon.social-youtube {
  color: #fff;
}
.social-icons-white-color .social-icon:hover.social-youtube {
  color: var(--social-color-youtube);
}
.social-icons-white-color .social-icon.social-pinterest {
  color: #fff;
}
.social-icons-white-color .social-icon:hover.social-pinterest {
  color: var(--social-color-pinterest);
}
.social-icons-white-color .social-icon.social-google {
  color: #fff;
}
.social-icons-white-color .social-icon:hover.social-google {
  color: var(--social-color-google);
}
.social-icons-white-color .social-icon.social-linkedin {
  color: #fff;
}
.social-icons-white-color .social-icon:hover.social-linkedin {
  color: var(--social-color-linkedin);
}
.social-icons-white-color .social-icon.social-email {
  color: #fff;
}
.social-icons-white-color .social-icon:hover.social-email {
  color: var(--social-color-email);
}
.social-icons-white-color .social-icon.social-whatsapp {
  color: #fff;
}
.social-icons-white-color .social-icon:hover.social-whatsapp {
   color: var(--social-color-whatsapp);
}

.social-icons-bg-color .social-icon {
  color: #fff;
}
.social-icons-bg-color .social-icon.social-facebook {
  border-color: var(--social-color-facebook);
  background-color: var(--social-color-facebook);
}
.social-icons-bg-color .social-icon:hover.social-facebook {
  color: var(--social-color-facebook);
}
.social-icons-bg-color .social-icon.social-facebook-square {
  border-color: var(--social-color-facebook);
  background-color: var(--social-color-facebook);
}
.social-icons-bg-color .social-icon:hover.social-facebook-square {
  color: var(--social-color-facebook);
}
.social-icons-bg-color .social-icon.social-twitter {
  border-color: var(--social-color-twitter);
  background-color: var(--social-color-twitter);
}
.social-icons-bg-color .social-icon:hover.social-twitter {
  color: var(--social-color-twitter);
}
.social-icons-bg-color .social-icon.social-instagram {
  border-color: var(--social-color-instagram);
  background-color: var(--social-color-instagram);
}
.social-icons-bg-color .social-icon:hover.social-instagram {
  color: var(--social-color-instagram);
}
.social-icons-bg-color .social-icon.social-youtube {
  border-color: var(--social-color-youtube);
  background-color: var(--social-color-youtube);
}
.social-icons-bg-color .social-icon:hover.social-youtube {
  color: var(--social-color-youtube);
}
.social-icons-bg-color .social-icon.social-pinterest {
  border-color: var(--social-color-pinterest);
  background-color: var(--social-color-pinterest);
}
.social-icons-bg-color .social-icon:hover.social-pinterest {
  color: var(--social-color-pinterest);
}
.social-icons-bg-color .social-icon.social-google {
  border-color: var(--social-color-google);
  background-color: var(--social-color-google);
}
.social-icons-bg-color .social-icon:hover.social-google {
  color: var(--social-color-google);
}
.social-icons-bg-color .social-icon.social-linkedin {
  border-color: var(--social-color-linkedin);
  background-color: var(--social-color-linkedin);
}
.social-icons-bg-color .social-icon:hover.social-linkedin {
  color: var(--social-color-linkedin);
}
.social-icons-bg-color .social-icon.social-email {
  border-color: var(--social-color-google);
  background-color: var(--social-color-google);
}
.social-icons-bg-color .social-icon:hover.social-email {
  color: var(--social-color-google);
}
.social-icons-bg-color .social-icon.social-whatsapp {
  border-color: var(--social-color-whatsapp);
  background-color: var(--social-color-whatsapp);
}
.social-icons-bg-color .social-icon:hover.social-whatsapp {
  color: var(--social-color-whatsapp);
}

.social-icons-bg-color .social-icon:hover {
  background-color: #fff;
}

.social-icons-no-color .social-icon {
  color: var(--social-icons-color);
}

.header .header-top .social-icons-no-color .social-icon {
  color: var(--header-top-social-icons-color);
}
.header .header-middle .social-icons-no-color .social-icon {
  color: var(--header-middle-social-icons-color);
}
.footer .footer-middle .social-icons-no-color .social-icon {
  color: var(--footer-middle-social-icons-color);
}
.footer .footer-bottom .social-icons-no-color .social-icon {
  color: var(--footer-bottom-social-icons-color);
}

.social-icons-no-color .social-icon:hover, .social-icons-no-color .social-icon:focus {
  color: #fff;
}
.social-icons-no-color .social-icon:hover.social-facebook, .social-icons-no-color .social-icon:focus.social-facebook {
 color: var(--social-color-facebook);
}
.social-icons-no-color .social-icon:hover.social-facebook-square, .social-icons-no-color .social-icon:focus.social-facebook-square {
 color: var(--social-color-facebook);
}
.social-icons-no-color .social-icon:hover.social-twitter, .social-icons-no-color .social-icon:focus.social-twitter {
  color: var(--social-color-twitter);
}
.social-icons-no-color .social-icon:hover.social-instagram, .social-icons-no-color .social-icon:focus.social-instagram {
  color: var(--social-color-instagram);
}
.social-icons-no-color .social-icon:hover.social-youtube, .social-icons-no-color .social-icon:focus.social-youtube {
  color: var(--social-color-google);
}
.social-icons-no-color .social-icon:hover.social-pinterest, .social-icons-no-color .social-icon:focus.social-pinterest {
  color: var(--social-color-pinterest);
}
.social-icons-no-color .social-icon:hover.social-google, .social-icons-no-color .social-icon:focus.social-google {
  color: var(--social-color-google);
}
.social-icons-no-color .social-icon:hover.social-linkedin, .social-icons-no-color .social-icon:focus.social-linkedin {
  color: var(--social-color-linkedin);
}
.social-icons-no-color .social-icon:hover.social-email, .social-icons-no-color .social-icon:focus.social-email {
  color: var(--social-color-google);
}
.social-icons-no-color:not(.social-icons-bg-hover-color) .social-icon:hover.social-whatsapp, .social-icons-no-color .social-icon:focus.social-whatsapp {
  color: var(--social-color-whatsapp);
}

.social-icons-bg-hover-color .social-icon:hover, .social-icons-bg-hover-color .social-icon:focus {
  color: #fff;
}
.social-icons-bg-hover-color .social-icon:hover.social-facebook, .social-icons-bg-hover-color .social-icon:focus.social-facebook {
  background-color: var(--social-color-facebook);
  border-color: var(--social-color-facebook);
  color: #fff;
}
.social-icons-bg-hover-color .social-icon:hover.social-facebook-square, .social-icons-bg-hover-color .social-icon:focus.social-facebook-square {
  background-color: var(--social-color-facebook);
  border-color: var(--social-color-facebook);
  color: #fff;
}
.social-icons-bg-hover-color .social-icon:hover.social-twitter, .social-icons-bg-hover-color .social-icon:focus.social-twitter {
  background-color: var(--social-color-twitter);
  border-color: var(--social-color-twitter);
  color: #fff;
}
.social-icons-bg-hover-color .social-icon:hover.social-instagram, .social-icons-bg-hover-color .social-icon:focus.social-instagram {
  background-color: var(--social-color-instagram);
  border-color: var(--social-color-youtube);
  color: #fff;
}
.social-icons-bg-hover-color .social-icon:hover.social-youtube, .social-icons-bg-hover-color .social-icon:focus.social-youtube {
  background-color: var(--social-color-google);
  border-color: var(--social-color-google);
  color: #fff;
}
.social-icons-bg-hover-color .social-icon:hover.social-pinterest, .social-icons-bg-hover-color .social-icon:focus.social-pinterest {
  background-color: var(--social-color-pinterest);
  border-color: var(--social-color-pinterest);
  color: #fff;
}
.social-icons-bg-hover-color .social-icon:hover.social-google, .social-icons-bg-hover-color .social-icon:focus.social-google {
  border-color: var(--social-color-google);
  background-color: var(--social-color-google);
  color: #fff;
}
.social-icons-bg-hover-color .social-icon:hover.social-linkedin, .social-icons-bg-hover-color .social-icon:focus.social-linkedin {
  border-color: var(--social-color-linkedin);
  background-color: var(--social-color-linkedin);
  color: #fff;
}
.social-icons-bg-hover-color .social-icon:hover.social-email, .social-icons-bg-hover-color .social-icon:focus.social-email {
  border-color: var(--social-color-google);
  background-color: var(--social-color-google);
  color: #fff;
}
.social-icons-bg-hover-color .social-icon:hover.social-whatsapp, .social-icons-bg-hover-color .social-icon:focus.social-whatsapp {
  border-color: var(--social-color-whatsapp);
  background-color: var(--social-color-whatsapp);
  color: #fff;
}

.social-icon-border-color .social-icon {
  background-color: #fff;
  border-width: 1px;
}
.social-icon-border-color .social-icon.social-facebook {
  color: var(--social-color-facebook);
  border-color: var(--social-color-facebook);
}
.social-icon-border-color .social-icon.social-facebook-square {
  color: var(--social-color-facebook);
  border-color: var(--social-color-facebook);
}
.social-icon-border-color .social-icon.social-twitter {
  color: var(--social-color-twitter);
  border-color: var(--social-color-twitter);
}
.social-icon-border-color .social-icon.social-instagram {
  color: var(--social-color-instagram);
  border-color: var(--social-color-instagram);
}
.social-icon-border-color .social-icon.social-youtube {
  color: var(--social-color-youtube);
  border-color: var(--social-color-youtube);
}
.social-icon-border-color .social-icon.social-pinterest {
  color: var(--social-color-pinterest);
  border-color: var(--social-color-pinterest);
}
.social-icon-border-color .social-icon.social-google {
  border-color: var(--social-color-google);
  color: var(--social-color-google);
}
.social-icon-border-color .social-icon.social-linkedin {
  border-color: var(--social-color-linkedin);
  color: var(--social-color-linkedin);
}
.social-icon-border-color .social-icon.social-email {
  border-color: var(--social-color-email);
  color: var(--social-color-email);
}
.social-icon-border-color .social-icon.social-var(--social-color-whatsapp) {
  border-color: var(--social-color-whatsapp);
  color: var(--social-color-whatsapp);
}
.social-icon-border-color .social-icon:hover {
  color: #fff;
}
.social-icon-border-color .social-icon:hover.social-facebook {
  background-color: var(--social-color-facebook);
}
.social-icon-border-color .social-icon:hover.social-facebook-square {
  background-color: var(--social-color-facebook);
}
.social-icon-border-color .social-icon:hover.social-twitter {
  background-color: var(--social-color-twitter);
}
.social-icon-border-color .social-icon:hover.social-instagram {
  background-color: var(--social-color-instagram);
}
.social-icon-border-color .social-icon:hover.social-youtube {
  background-color: var(--social-color-youtube);
}
.social-icon-border-color .social-icon:hover.social-pinterest {
  background-color: var(--social-color-pinterest);
}
.social-icon-border-color .social-icon:hover.social-google {
  background-color: var(--social-color-google);
}
.social-icon-border-color .social-icon:hover.social-linkedin {
  background-color: var(--social-color-linkedin);
}
.social-icon-border-color .social-icon:hover.social-email {
  background-color: var(--social-color-google);
}
.social-icon-border-color .social-icon:hover.social-whatsapp {
  background-color: var(--social-color-whatsapp);
}

.social-icons-bg-plain-color .social-icon {
  background-color: var(--social-icons-bg-plain-color);
}
.social-icons-bg-plain-color .social-icon:hover, .social-icons-bg-plain-color .social-icon:focus {
  color: #fff;
}
.social-icons-bg-plain-color .social-icon:hover.social-facebook, .social-icons-bg-plain-color .social-icon:focus.social-facebook {
  background-color: var(--social-color-facebook);
  border-color: var(--social-color-facebook);
  color: #fff;
}
.social-icons-bg-plain-color .social-icon:hover.social-facebook-square, .social-icons-bg-plain-color .social-icon:focus.social-facebook-square {
  background-color: var(--social-color-facebook);
  border-color: var(--social-color-facebook);
  color: #fff;
}
.social-icons-bg-plain-color .social-icon:hover.social-twitter, .social-icons-bg-plain-color .social-icon:focus.social-twitter {
  background-color: var(--social-color-twitter);
  border-color: var(--social-color-twitter);
  color: #fff;
}
.social-icons-bg-plain-color .social-icon:hover.social-instagram, .social-icons-bg-plain-color .social-icon:focus.social-instagram {
  background-color: var(--social-color-instagram);
  border-color: var(--social-color-instagram);
  color: #fff;
}
.social-icons-bg-plain-color .social-icon:hover.social-youtube, .social-icons-bg-plain-color .social-icon:focus.social-youtube {
  background-color: var(--social-color-google);
  border-color: var(--social-color-google);
  color: #fff;
}
.social-icons-bg-plain-color .social-icon:hover.social-pinterest, .social-icons-bg-plain-color .social-icon:focus.social-pinterest {
  background-color: var(--social-color-pinterest);
  border-color: var(--social-color-pinterest);
  color: #fff;
}
.social-icons-bg-plain-color .social-icon:hover.social-google, .social-icons-bg-plain-color .social-icon:focus.social-google {
  border-color: var(--social-color-google);
  background-color: var(--social-color-google);
  color: #fff;
}
.social-icons-bg-plain-color .social-icon:hover.social-linkedin, .social-icons-bg-plain-color .social-icon:focus.social-linkedin {
  border-color: var(--social-color-linkedin);
  background-color: var(--social-color-linkedin);
  color: #fff;
}
.social-icons-bg-plain-color .social-icon:hover.social-email, .social-icons-bg-plain-color .social-icon:focus.social-email {
  border-color: var(--social-color-google);
  background-color: var(--social-color-google);
  color: #fff;
}
.social-icons-bg-plain-color .social-icon:hover.social-whatsapp, .social-icons-bg-plain-color .social-icon:focus.social-whatsapp {
  border-color: var(--social-color-whatsapp);
  background-color: var(--social-color-whatsapp);
  color: #fff;
}

/* -------------------------------------------
    Tab
---------------------------------------------- */
.tab-content {
  background-color: transparent;
  z-index: 0;
}

.nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  color: var(--body-color);
}
.nav-tabs .nav-item {
  position: relative;
}

.nav-tabs .nav-item.nav-item__review {
 
}

.nav-tabs .nav-item.nav-item__review.nav-item__review-tp {
  width: 180px;
  padding-top: 15px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-item .nav-link.active,
.nav-tabs .nav-item:hover .nav-link.active {
  color: var(--tab-accordion-active-color);
}

.nav-tabs .nav-item:hover .nav-link {
  color: var(--tab-accordion-hover-color);
}

.nav-link {
  display: block;
  position: relative;
  font-size: 1.4rem;
  font-weight: 600;
  color: inherit;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  border-radius: 0;
  border: 0;
  padding: 1.5rem 2.85rem;
  -webkit-transition: border 0.3s, color 0.3s, background-color 0.3s;
  transition: border 0.3s, color 0.3s, background-color 0.3s;
}

.nav-tabs .nav-item.nav-item__review .nav-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.nav-tabs .nav-item.nav-item__review .product-rating {
  padding: 0;
  margin: 10px 0;
}
.nav-tabs .nav-item.nav-item__review.nav-item.nav-item__review-tp .product-rating {
  margin: 0 0;
}

.nav-item:not(:last-child) {
  margin-right: 3rem;
}

.nav-fill .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.tab-content {
  position: relative;
}
.tab-content &gt; .tab-pane {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: visibility 0.3s, opacity 0.3s;
  transition: visibility 0.3s, opacity 0.3s;
  overflow: hidden;
  display: none;
  visibility: hidden;
}
.tab-content &gt; .tab-pane.active {
  display: block;
  visibility: visible;
  opacity: 1;
  height: auto;
  position: relative;
  z-index: auto;
}
.tab-content &gt; .tab-pane#product-tab-accordion__productbeoordelingen {
  overflow: inherit;
}

.tab-pane {

}
.tab-pane p {
  margin-bottom: 0;
}

.tab-nav-boxed .nav-item:not(:last-child) {
  margin-right: 0.5rem;
}

.tab-nav-solid .nav-tabs {
  border-bottom: 0;
}
.tab-nav-solid .nav-item.show .nav-link,
.tab-nav-solid .nav-item .nav-link.active,
.tab-nav-solid .nav-item:hover .nav-link {
  color: #fff;
  background-color: var(--tab-accordion-active-color);
  border-color: var(--tab-accordion-active-color);
}
.tab-nav-solid .nav-link {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
  margin-bottom: 0.5rem;
}
.tab-nav-solid .tab-pane {
  padding: 0.8rem 0 1.4rem;
}

.tab-nav-solid2 .nav-item.show .nav-link,
.tab-nav-solid2 .nav-item .nav-link.active,
.tab-nav-solid2 .nav-item:hover .nav-link {
  color: #336699;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}
.tab-nav-solid2 .nav-item:not(:last-child) {
  margin-right: 2rem;
}
.tab-nav-solid2 .nav-link {
  color: #333;
}
.tab-nav-solid2 .tab-content {
  border: 1px solid #eee;
}

.tab-boxed .nav-tabs {
  border-bottom: 0;
}
.tab-boxed .nav-link {
  padding: 1.45rem 2.95rem 1.55rem;
  margin-bottom: -0.1rem;
  z-index: 1;
}
.tab-boxed .tab-pane {
  padding: 1.3rem 2rem 0;
}
.tab-boxed .tab-pane.active p {
  margin-bottom: 1.3rem;
}

.tab-nav-outline .nav-tabs {
  border-bottom: 0;
}
.tab-nav-outline .nav-item.show .nav-link,
.tab-nav-outline .nav-item .nav-link.active,
.tab-nav-outline .nav-item:hover .nav-link {
  border: 2px solid #336699;
  border-radius: 0.3rem;
}
.tab-nav-outline .nav-link {
  color: #333;
  border: 2px solid transparent;
  padding: 1.3rem 2.85rem;
}

.tab-nav-outline2 .nav {
  position: relative;
  z-index: 1;
}
.tab-nav-outline2 .nav-item.show .nav-link,
.tab-nav-outline2 .nav-item .nav-link.active,
.tab-nav-outline2 .nav-item:hover .nav-link {
  border: 1px solid #eee;
  border-bottom-color: #fff;
}
.tab-nav-outline2 .tab-content {
  border: 1px solid #eee;
}
.tab-nav-outline2 .nav-item:not(:last-child) {
  margin-right: 0.7rem;
}
.tab-nav-outline2 .nav-link {
  border: 1px solid transparent;
  padding: 1.4rem 2.85rem;
  margin-bottom: -1px;
}

.tab-nav-outline3 .nav-tabs {
  border-bottom: 0;
}
.tab-nav-outline3 .nav-item .nav-link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 3px;
  height: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  background-color: transparent;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 1;
}
.tab-nav-outline3 .nav-item.show .nav-link::before,
.tab-nav-outline3 .nav-item .nav-link.active::before,
.tab-nav-outline3 .nav-item:hover .nav-link::before {
  background-color: #336699;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}
.tab-nav-outline3 .nav-link {
  color: #333;
  border: 1px solid #eee;
  padding: 1.4rem 0 1.4rem 2rem;
}

.tab-nav-underline .nav-item:not(:last-child) {
  margin-right: 3rem;
}
.tab-nav-underline .nav-link {
  padding: 1.4rem 0;
}
.tab-nav-underline .nav-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  border-top: 3px solid transparent;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: border-color 0.3s, -webkit-transform 0.3s;
  transition: border-color 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, border-color 0.3s;
  transition: transform 0.3s, border-color 0.3s, -webkit-transform 0.3s;
}
.tab-nav-underline .nav-item.show .nav-link::after,
.tab-nav-underline .nav-item .nav-link.active::after {
  border-color: var(--tab-accordion-active-color);
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.tab-nav-underline .nav-item:hover .nav-link:not(.active)::after {
  border-color: var(--tab-accordion-hover-color);
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.tab-nav-underline.type2 .nav-item {
  margin-right: 0;
}
.tab-nav-underline.type2 .nav-link {
  padding: 1.4rem 1.5rem;
}

.tab-nav-center .nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tab-nav-center .nav .nav-item {
  margin: 0 1.5rem;
}
.tab-nav-center.tab-nav-outline2 .nav-item {
  margin: 0 0.5rem;
}

.tab-vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tab-vertical .nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 26.3%;
}
.tab-vertical .nav-item {
  margin-right: 0;
}
.tab-vertical .nav-link {
  position: relative;
  padding-left: 2.2rem;
  padding-right: 2rem;
  text-align: left;
  width: 100%;
  margin-bottom: 0.5rem;
}
.tab-vertical .tab-content {
  width: 73.7%;
  border-top: 1px solid #eee;
  padding-left: 2rem;
}
.tab-vertical .tab-pane {
  padding-top: 1.3rem;
}
.tab-vertical.tab-nav-outline3 .nav {
  width: 27%;
}
.tab-vertical.tab-nav-outline3 .nav-link {
  padding-left: 2.1rem;
}
.tab-vertical.tab-nav-outline3 .tab-content {
  padding-left: 1.7rem;
}

.tab-line-grow .tab-pane {
  padding: 1.7rem 0;
}

.nav-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: #666;
  line-height: 1;
}
.nav-filters li:not(:last-child) {
  margin-right: 1rem;
}

.nav-filter {
  display: inline-block;
  position: relative;
  padding: 0.6rem 0 0.7rem;
  color: inherit;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.nav-filter.active, .nav-filter:hover {
  color: #336699;
}
.nav-filter span {
  color: #aaa;
  margin-left: 0.6rem;
}

.filter-underline .nav-filter::after {
  content: "";
  display: block;
  height: 2px;
  border: 1px solid;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.filter-underline .nav-filter.active::after, .filter-underline .nav-filter:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.filter-boxed li {
  margin-bottom: 0.5rem;
}
.filter-boxed .nav-filter {
  padding: 1.1rem 1.9rem;
  border: 1px solid #ccc;
  border-radius: 0.3rem;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  -webkit-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}
.filter-boxed .nav-filter.active, .filter-boxed .nav-filter:hover {
  color: #336699;
  border-color: #336699;
}

@media (max-width: 991px) {
  .filter-boxed {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .filter-boxed li {
    margin: 0 0.5rem 0.5rem !important;
  }
}
@media (max-width: 897px) {
  .tab-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .tab-vertical .tab-content,
.tab-vertical .nav-tabs, .tab-vertical.tab-nav-outline3 .nav {
    width: 100%;
  }

  .tab-line-grow .tab-content {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media (max-width: 575px) {
  .tab-nav-outline2 .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.link-section {
  margin-bottom: 2.8rem;
}
.link-section .title {
  margin-bottom: 0.9rem;
}

.side-tab-section {
  margin-bottom: 1.1rem;
}

/*-----------------------------------
    Testimonial
------------------------------------*/
.testimonial {
  padding: 0 3rem 1rem;
}
.testimonial cite {
  color: #333;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
}
.testimonial cite span {
  display: block;
  text-align: center;
  margin-top: 0.6rem;
  font-size: 1.3rem;
  color: #999;
  line-height: 1.3;
  letter-spacing: 0.003em;
  font-weight: 400;
}
.testimonial blockquote {
  position: relative;
  text-align: center;
}

.testimonial.swiper-slide {
  margin: 0;
}

.testimonial-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 0.9rem;
}
.testimonial-info .testimonial-author-thumbnail {
  margin-bottom: 2.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
}
.testimonial-info img {
  width: 100%;
  height: auto;
}
.testimonial-info .ratings-container {
  margin-bottom: 0.9rem;
  font-size: 1.1rem;
}
.testimonial-info .ratings-container .ratings-full {
  margin-right: 0;
}
.testimonial-info .ratings-full::before, .testimonial-info .ratings::before {
  letter-spacing: 0.28em;
}

.testimonial-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.testimonial-shadow {
  background-color: #f8f8f8;
  padding: 3rem 3rem 2.3rem;
  -webkit-transition: background-color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, -webkit-box-shadow 0.4s;
  transition: background-color 0.4s, box-shadow 0.4s;
  transition: background-color 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
}
.testimonial-shadow .testimonial-info {
  margin-bottom: 0;
}
.testimonial-shadow blockquote {
  margin-top: -0.1rem;
  margin-bottom: 0.6rem;
}
.testimonial-shadow:hover {
  -webkit-box-shadow: 1px 8px 9px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 8px 9px rgba(0, 0, 0, 0.1);
}

.testimonial-blockquote {
  padding-left: 0;
  padding-right: 0;
}
.testimonial-blockquote blockquote {
  overflow: visible;
  padding: 2.1rem 3rem;
  margin-bottom: 2rem;
  text-align: start;
  border: 1px solid #eee;
}
.testimonial-blockquote blockquote::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5.3rem;
  display: block;
  width: 13px;
  height: 13px;
  background-color: #fff;
  border: 1px solid #eee;
  border-left: 0;
  border-top: 0;
  -webkit-transform: rotate(45deg) translateY(70%);
          transform: rotate(45deg) translateY(70%);
}
.testimonial-blockquote .testimonial-info {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0 2rem;
}
.testimonial-blockquote .testimonial-author-thumbnail {
  margin-bottom: 0;
  margin-right: 1.5rem;
  width: 7rem;
  height: 7rem;
}
.testimonial-blockquote cite {
  margin-bottom: 0.2rem;
}
.testimonial-blockquote cite span {
  margin-top: 0.2rem;
  text-align: start;
}
.testimonial-blockquote .testimonial-action {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #999;
  margin-left: auto;
}
.testimonial-blockquote .testimonial-action a {
  color: inherit;
}
.testimonial-blockquote .testimonial-action a:hover {
  color: #336699;
}
.testimonial-blockquote .testimonial-action i {
  margin-left: 0.5rem;
}

.testimonial-inversed .testimonial-info {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.testimonial-inversed .testimonial-author-thumbnail {
  margin: 0 0 0 1.5rem;
}
.testimonial-inversed cite span {
  text-align: end;
}
.testimonial-inversed blockquote::after {
  left: auto;
  right: 4.1rem;
}

.testimonial-centered {
  text-align: center;
}
.testimonial-centered blockquote {
  margin-left: auto;
  margin-right: auto;
}

.testimonial-bg {
  padding: 2rem;
}
.testimonial-bg .testimonial-info {
  margin-bottom: 2.6rem;
}
.testimonial-bg blockquote {
  max-width: 87.5rem;
  color: #cecece;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-bg .testimonial-author-thumbnail {
  margin-bottom: 0;
  width: 10rem;
  height: 10rem;
}
.testimonial-bg cite {
  color: #fff;
}
.testimonial-bg cite span {
  margin: 0.3rem 0 1.6rem;
  color: #cecece;
}

.slider-section {
  margin-bottom: 3.6rem;
}

.parallax-testimonial-section {
  margin-bottom: 4.7rem;
}

/*-------------------------------------
    Timeline
        - Timeline Body
        - Timeline Box
        - Timeline Content
        - Timeline Node
        - Timeline Date
        - Timeline Box Arrow
--------------------------------------*/
.timeline {
  width: 100%;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  width: 3px;
  height: 100%;
  background-color: #999;
}

.timeline-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
  width: 100%;
}
.timeline-box.left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.timeline-box.left .timeline-content {
  text-align: end;
  margin-right: 2rem;
}
.timeline-box.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.timeline-box.right .timeline-content {
  text-align: start;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 2rem;
}

.timeline-content {
  padding: 1rem;
  width: calc(50% - 3.5rem);
}

.timeline-node {
  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: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 3px solid #999;
  background-color: #fff;
}

@media (max-width: 897px) {
  .timeline::before {
    content: none;
  }
  .timeline .timeline-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .timeline .timeline-box .timeline-content {
    text-align: center;
    width: 100%;
  }
  .timeline .timeline-box p, .timeline .timeline-box .timeline-node {
    max-width: none;
    margin: auto;
  }
  .timeline .timeline-box.left .timeline-node {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
/*----------------------------
    Titles
        - Default
        - Simple
            - Link icon
            - Tab boxed
            - Tab link
        - Center
-----------------------------*/
/*  Default */
.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 1.7rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
.title.title-link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  bottom: -0.8rem;
  background-color: #336699;
  z-index: 1;
}
.title.title-sm {
  font-size: 1.6rem;
}
.title.title-md {
  font-size: 2rem;
}
.title.title-lg {
  font-size: 3rem;
}

/* Simple */
.title-underline {
  position: relative;
  padding-bottom: 1.6rem;
}
.title-underline::before {
  content: none;
}
.title-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  margin-left: 0;
  width: 100%;
  height: 1px;
  background-color: #eee;
}

.title-cross::before, .title-cross::after {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  content: "";
  height: 2px;
  background-color: #eeeeee;
}
.title-cross::before {
  margin-right: 3rem;
}
.title-cross::after {
  margin-left: 3rem;
}

@media (max-width: 479px) {
  .title-cross::before {
    margin-right: 1.5rem;
  }
  .title-cross::after {
    margin-left: 1.5rem;
  }
}
.title-link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.3rem;
}
.title-link-wrapper .title {
  position: relative;
  margin-bottom: 0.8rem;
  padding: 0.8rem 0;
}
.title-link-wrapper a {
  margin-bottom: 0.7rem;
  margin-left: auto;
  text-transform: capitalize;
}
.title-link-wrapper a:hover {
  color: #336699;
}
.title-link-wrapper a i {
  vertical-align: middle;
  margin-left: 0.5rem;
  font-size: 1.35rem;
}
.title-link-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #eee;
}
.title-link-wrapper.no-link .title-link {
  margin-bottom: 0.8rem;
}

.tab-with-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tab-with-title .nav-tabs {
  border-bottom: 0;
}
.tab-with-title .nav-item:not(:last-child) {
  margin-right: 2rem;
}
.tab-with-title .nav-link {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #333;
  text-transform: capitalize;
  padding: 0;
}
.tab-with-title.tab-nav-boxed {
  padding: 0.3rem 0;
}
.tab-with-title.tab-nav-boxed .title {
  margin-bottom: 0;
  margin-right: 2rem;
}
.tab-with-title.tab-nav-boxed .nav-item:not(:last-child) {
  margin-right: 1rem;
}
.tab-with-title.tab-nav-boxed .nav-item:last-child {
  margin: 0;
}
.tab-with-title.tab-nav-boxed .nav-link {
  border: 1px solid #ccc;
  border-radius: 0.3rem;
  padding: 0.85em 1.42em;
  font-weight: 600;
  text-transform: uppercase;
}
.tab-with-title.tab-nav-boxed .nav-link.active, .tab-with-title.tab-nav-boxed .nav-link:hover {
  border-color: #336699;
}
.tab-with-title.tab-nav-link {
  padding: 1.6rem 2rem 0.6rem;
  background: #f5f5f5;
}
.tab-with-title.tab-nav-link .title, .tab-with-title.tab-nav-link .nav-link {
  margin-bottom: 1rem;
}
.tab-with-title.tab-nav-link .title {
  margin-right: 2rem;
}
.tab-with-title.tab-nav-underline .nav-link::after {
  bottom: -1px;
}
.tab-with-title .nav-item.show .nav-link,
.tab-with-title .nav-item .nav-link.active,
.tab-with-title .nav-item:hover .nav-link {
  color: #336699;
}

.title-separator {
  margin: 0 0.5rem;
}

/* Center */
.title-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tab-with-title.tab-nav-center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1.2rem;
}
.tab-with-title.tab-nav-center .nav-tabs {
  margin: 0;
}
.tab-with-title.tab-nav-center .nav-item {
  margin: 0 1rem;
}
.tab-with-title.tab-nav-center .nav-link {
  padding: 0.8rem 0;
}
.tab-with-title.tab-nav-center .nav-link::after {
  bottom: 0;
  height: 0.3rem;
  border: none;
  background-color: #336699;
}

.filter-with-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;
  margin-bottom: 1rem;
}
.filter-with-title .title {
  margin-bottom: 0.5rem;
}

.title-section p {
  font-size: 1.3rem;
  color: #666;
  line-height: 2;
  letter-spacing: 0;
}

@media (max-width: 991px) {
  .tab-with-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tab-with-title .nav-tabs {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .tab-with-title.tab-nav-boxed .title {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  .tab-with-title.tab-nav-boxed .nav-item {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .tab-with-title.tab-nav-boxed .nav-link {
    margin-bottom: 0.5rem;
  }
  .tab-with-title.tab-nav-link .nav-item {
    margin: 0 1rem !important;
  }
  .tab-with-title.tab-nav-link .title {
    margin-right: 0;
  }

  .filter-with-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .filter-with-title .title {
    margin-bottom: 1rem;
  }
  .filter-with-title .nav-filters {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .filter-with-title .nav-filters li {
    margin: 0 1.5rem;
  }
}
@media (max-width: 575px) {
  .title-link-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .title-link-wrapper .title-link {
    margin-bottom: 2rem;
  }
  .title-link-wrapper a {
    margin-left: 0;
  }
}
/*-----------------------------
    Tooltip
-----------------------------*/
.tooltiptext {
  position: absolute;
  padding: 0.6rem 1rem;
  bottom: 125%;
  left: 50%;
  background-color: #333;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 0.3rem;
}
  .tooltiptext.tooltip-bottom {
    top: 125%;
    bottom: unset;
  }
  .tooltiptext.tooltiptext-large {
     width: 300px;
  }
  .product-swatch .tooltiptext {
     min-width: 80px;
  }

.tooltiptext.show {
  opacity: 1;
  visibility: visible;
}

.tooltip-top::after {
  content: "";
  position: absolute;
  top: 96%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}
.tooltip-bottom::after {
  content: "";
  position: absolute;
  bottom: 96%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}

/*-------------------------------------
    Widget
-------------------------------------*/
.widget-title {
  margin-bottom: 2rem;
  padding: 1.1rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.widget-products .widget-title {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  padding-bottom: 0.8rem;border
}
.widget-products .widget-body {
  padding: 0 0;
}
.widget-products.widget-products-border .widget-body {
  border: 1px solid #eee;
}
.widget-products.widget-products-border .product-widget:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.sidebar .widget-products .widget-body {
  border: 0;
  padding: 0;
}

.widget .heading-wrapper {
  margin-bottom: var(--widget-heading-margin-bottom);
}
.widget-collapsible .heading-wrapper {
  cursor: pointer;
  margin-bottom: 0;
}
  .widget-collapsible .heading-wrapper::after {
    position: absolute;
    cursor: pointer;
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: "elexio";
    top: 0px;
    right: 0px;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    content: "";
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .widget-collapsible .heading-wrapper.collapsed::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

.widget.widget-collapsible.toggle-plus-minus .heading-wrapper::after {
  content: "";
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.widget.widget-collapsible.toggle-plus-minus .heading-wrapper.collapsed::after {
  content: "";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.widget-collapsible .collapsed + .widget-wrapper {
  display: none;
}
.widget-collapsible .collapsed ~ .widget-wrapper {
  opacity: 0.1;
}

.widget .widget-wrapper {
  width: 100%;
}

.toolbox-filter-sidebar .widget .widget-wrapper {
  display: none;
}

.widget .widget-title {
  position: relative;
}
.widget .widget-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer .widget .widget-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.widget .widget-body .widget-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.widget .widget-body.widget-body-filter {

}

.widget-box .widget-content {
  position: relative;
  white-space: nowrap;
}

.menu-item {

}
.menu-item li {
  position: relative;
  display: block;
  padding: 1rem 0;
  font-size: var(--widget-menu-item-li-font-size);
  font-weight: var(--widget-menu-item-li-font-weight);
  text-transform: var(--widget-menu-item-li-text-transform);
  letter-spacing: var(--widget-menu-item-li-letter-spacing);
}
.menu-item li a {
  color: inherit;
  border-bottom: var(--widget-menu-item-li-a-border-bottom) solid transparent;
}
.menu-item li a:hover {
  border-bottom: var(--widget-menu-item-li-a-border-bottom) solid;
}

.menu-item.menu-item-sep-hor li::before {
  position: absolute;
  content: "-";
  left: -1.3rem;
  opacity: 0.6;
}
.menu-item.menu-item-sep-vert li::before {
  position: absolute;
  content: "|";
  left: -1.3rem;
  opacity: 0.6;
}
.menu-item.menu-item-sep-hor.menu-item-hor li:first-child::before {
  content: "";
  left: 0;
}
.menu-item.menu-item-sep-vert.menu-item-hor li:first-child::before {
  content: "";
  left: 0;
}
.menu-item.menu-item-sep-hor li {
  margin-left: 1.5rem;
}
.menu-item.menu-item-sep-vert li {
  margin-left: 1.5rem;
}

.menu-item.menu-item-hor li {
  display: inline-block;
  margin: 0 1rem;
}
.menu-item.menu-item-hor li:first-child {
  margin-left: 0;
}
.menu-item.menu-item-hor li:last-child {
  margin-right: 0;
}

/*----------------------
    Vendor
----------------------*/
.vendor-widget {
  margin-bottom: 2rem;
}
.vendor-widget .vendor-name {
  vertical-align: middle;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: capitalize;
  letter-spacing: -0.025em;
  line-height: 1.4;
}
.vendor-widget .vendor-name a {
  color: inherit;
}
.vendor-widget .vendor-name:hover {
  color: #336699;
}

.vendor-products.grid-type {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, calc(100% / 3));
  margin: -2.5px;
  width: calc(100% + 5px);
  grid-auto-rows: 1fr;
}
.vendor-products.grid-type &gt; * {
  padding: 2.5px;
}
.vendor-products .lg-item {
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row-span: 2;
  grid-row-end: span 2;
}
.vendor-products .sm-item {
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}
.vendor-products .product-media {
  height: 100%;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  overflow: hidden;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.vendor-products .product-media img {
  height: 100%;
}

.vendor-logo {
  max-width: 7rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 7rem;
          flex: 0 0 7rem;
  margin-right: 1rem;
}

.vendor-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.8rem 0;
}

.vendor-product-count {
  font-size: 1.2rem;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.5rem;
}

.vendor-banner {
  min-height: 18rem;
}
.vendor-banner a, .vendor-banner img {
  min-height: inherit;
}
.vendor-banner a {
  display: block;
}

.visit-vendor-btn {
  display: block;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #ff9933;
}
.visit-vendor-btn:hover {
  color: #336699;
}

.vendor-widget-1 .product-media:hover {
  border-color: #336699;
}
.vendor-widget-1 .vendor-personal {
  margin-top: 0.2rem;
}
.vendor-widget-1 .ratings-container {
  margin-bottom: 0;
}

.vendor-widget-2 {
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.vendor-widget-2:hover {
  border-color: #336699;
}
.vendor-widget-2 .vendor-details {
  padding-top: 0;
  padding-bottom: 2rem;
}
.vendor-widget-2 .product-media {
  border: none;
}
.vendor-widget-2 .ratings-container {
  margin-bottom: 0;
}

.vendor-widget-3 .vendor-logo {
  border-radius: 0.5rem;
  overflow: hidden;
}
.vendor-widget-3 .vendor-details {
  padding: 2rem 0;
}
.vendor-widget-3 .vendor-personal {
  padding-top: 0.3rem;
}
.vendor-widget-3 .ratings-container {
  margin-bottom: 0;
}
.vendor-widget-3 .ratings-container:not(:last-child) {
  margin-bottom: 0.5rem;
}

.vendor-widget-banner {
  border: 1px solid #eee;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.vendor-widget-banner .product-media {
  border: none;
}
.vendor-widget-banner .vendor-details {
  display: block;
  text-align: center;
  padding-top: 0;
  margin-top: -4.5rem;
  padding-bottom: 2rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.vendor-widget-banner .vendor-logo {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  max-width: 9rem;
  margin: 0 auto 1.3rem auto;
  border-radius: 50%;
  background-color: #336699;
}
.vendor-widget-banner .vendor-logo img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 50%;
}
.vendor-widget-banner .vendor-name {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
.vendor-widget-banner .ratings-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1rem;
}
.vendor-widget-banner .ratings-container .ratings-full {
  margin-right: 0;
}
.vendor-widget-banner .vendor-product-count {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}
.vendor-widget-banner:hover {
  -webkit-box-shadow: 5px 0 20px rgba(0, 0, 0, 0.08);
          box-shadow: 5px 0 20px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.vendor-widget-banner:hover .vendor-logo img {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.store {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}
.store .ratings-container {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.store .store-banner img {
  height: 100%;
  width: 100%;
}

.store-content {
  position: absolute;
}

.store-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.9rem;
  color: #fff;
}
.store-title a {
  display: inline-block;
  text-transform: capitalize;
  font-size: 2rem;
  line-height: 1;
  color: inherit;
  text-shadow: rgba(0, 0, 0, 0.8) 0 1px 0;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.featured-label {
  background: #2d54a3;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.2rem 1rem;
  -webkit-box-shadow: 0px 0px 25px -5px #afafaf;
          box-shadow: 0px 0px 25px -5px #afafaf;
  border-radius: 0.3rem;
  margin-left: 1.4rem;
  display: inline-block;
}

.seller-info-list {
  margin: 0;
  padding-left: 1.6em;
}
.seller-info-list .store-address, .seller-info-list .store-phone {
  font-size: 1.4rem;
}
.seller-info-list &gt; * {
  line-height: 1.6;
  letter-spacing: -0.025em;
  margin-bottom: 0.8rem;
  color: #fff;
  opacity: 0.8;
}
.seller-info-list &gt; * a {
  color: inherit;
}
.seller-info-list &gt; * i {
  margin-left: -2.2rem;
  margin-right: 0.3rem;
  vertical-align: middle;
  font-size: 1.5rem;
  line-height: 0;
}
.seller-info-list .store-phone:hover, .seller-info-list .store-email:hover {
  color: #f93;
}

.store-address {
  font-size: 1.3rem;
  color: #fff;
  opacity: 0.8;
  line-height: 1.8;
}

.store-rating, .store-open {
  color: #fff;
  opacity: 0.8;
}

.store-footer {
  position: relative;
  padding: 2.3rem 2rem;
}

.btn.btn-icon-right.btn-visit i {
  font-size: 2rem;
  margin-left: 0.4rem;
  margin-bottom: 0.4rem;
}

.seller-brand {
  border-radius: 50%;
  background-color: #ff9742;
  width: 8rem;
  height: 8rem;
}
.seller-brand img {
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.vendor-brand {
  max-width: 15rem;
  margin: 0 auto;
  text-align: center;
}
.vendor-brand .brand {
  border: 1px solid #eee;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2.2rem;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.vendor-brand .vendor-name {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.vendor-brand .vendor-name:hover {
  color: #336699;
}
.vendor-brand:hover .brand {
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.store-grid {
  -webkit-box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
}
.store-grid .store-banner img {
  min-height: 19.4rem;
}
.store-grid .store-content {
  top: 2.5rem;
  left: 3rem;
  max-width: 19.2rem;
}
.store-grid .seller-brand {
  right: 1.9rem;
  top: -58%;
}
.store-grid:hover .seller-brand img {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}
.store-grid .store-title:hover {
  color: #336699;
}

.store-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #eee;
}
.store-list .store-header {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40rem;
          flex: 0 0 40rem;
  max-width: 40rem;
}
.store-list .store-header a {
  display: block;
  height: 100%;
}
.store-list .store-banner {
  height: 100%;
}
.store-list .store-content {
  position: relative;
}
.store-list .featured-label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  margin-left: 0;
}
.store-list .store-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 2rem 2rem 6rem;
}
.store-list .store-title {
  color: #333;
}
.store-list .store-title a {
  text-shadow: none;
}
.store-list .ratings-container {
  margin-bottom: 0.3rem;
}
.store-list .store-address {
  color: #666;
  opacity: 1;
  margin-bottom: 0.9rem;
}
.store-list .seller-brand {
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.store-list:hover .seller-brand img {
  -webkit-transform: translateX(-1rem);
          transform: translateX(-1rem);
}

.store-grid .seller-brand,
.store-list .seller-brand {
  position: absolute;
}
.store-grid .seller-brand img,
.store-list .seller-brand img {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  max-width: calc(100% + 2px);
  margin: -1px;
  -webkit-box-shadow: 0px 0px 0px 1px #eee;
          box-shadow: 0px 0px 0px 1px #eee;
}

.store.store-banner .store-media img {
  min-height: 44rem;
  width: 100%;
}
.store.store-banner .store-content {
  top: 0;
  left: 0;
  max-width: 34.5rem;
  padding: 5rem 4rem 5rem 5rem;
  background-color: rgba(37, 38, 42, 0.9);
  height: 100%;
}
.store.store-banner .seller-brand {
  margin-bottom: 2.3rem;
}
.store.store-banner .store-title {
  margin-bottom: 1.6rem;
  font-size: 2rem;
  letter-spacing: -0.025em;
}
.store.store-banner .social-icon {
  margin-right: 0.5rem;
  color: #fff;
  border-color: #ccc;
  opacity: 0.8;
}

.store-wcmp .store-content {
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background-color: rgba(34, 34, 40, 0.85);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem;
}
.store-wcmp .seller-brand {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8rem;
          flex: 0 0 8rem;
  max-width: 8rem;
  margin-right: 2.2rem;
}
.store-wcmp .seller-date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 10rem);
          flex: 0 0 calc(100% - 10rem);
  max-width: calc(100% - 10rem);
}
.store-wcmp .store-title {
  margin: 0.4rem 0 1.1rem;
}
.store-wcmp .store-title a {
  font-size: 1.8rem;
}
.store-wcmp .store-title a:hover {
  text-decoration: underline;
}
.store-wcmp .seller-info-list {
  margin: 0;
}
.store-wcmp .seller-info-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  letter-spacing: 0;
  opacity: 0.7;
}
.store-wcmp .seller-info-list li p {
  margin-bottom: 0;
  line-height: 2;
}
.store-wcmp .seller-info-list .store-address p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.store-wcmp .seller-info-list .store-rating p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.store-wcmp .seller-info-list i {
  margin-top: 1.3rem;
  margin-right: 0.8rem;
  font-size: 1.4rem;
}
.store-wcmp .ratings-container {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.store-wcmp-banner .store-media img {
  width: 100%;
}
.store-wcmp-banner .store-content {
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 40%;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
}
.store-wcmp-banner .seller-brand {
  margin: -7rem auto 2rem auto;
}
.store-wcmp-banner .social-icons {
  position: absolute;
  right: 2rem;
  top: -5rem;
}
.store-wcmp-banner .store-title {
  margin-bottom: 1rem;
  font-size: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.store-wcmp-banner .seller-info-list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
}
.store-wcmp-banner .seller-info-list &gt; * {
  margin: 0 0.6rem;
  opacity: 0.6;
  text-align: center;
}
.store-wcmp-banner .seller-info-list &gt; * i {
  margin-right: 0.4rem;
  margin-left: 0;
}

.store-wcmp-banner .seller-brand,
.store-wcfm-banner .seller-brand {
  width: 10rem;
  height: 10rem;
}
.store-wcmp-banner .seller-brand img,
.store-wcfm-banner .seller-brand img {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  max-width: calc(100% + 2px);
  margin: -1px;
}
.store-wcmp-banner .social-icon:not(:last-child),
.store-wcfm-banner .social-icon:not(:last-child) {
  margin-right: 0.5rem;
}
.store-wcmp-banner .social-icon,
.store-wcfm-banner .social-icon {
  border-radius: 0.3rem;
}

.store-wcfm-banner .store-content {
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(34, 34, 34, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 16rem;
  padding: 2.3rem 3rem 2.6rem;
}
.store-wcfm-banner .store-content-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.store-wcfm-banner .personal-info {
  margin-right: 4rem;
}
.store-wcfm-banner .seller-brand {
  margin: -7.2rem 0 2rem;
}
.store-wcfm-banner .ratings-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.2rem;
}
.store-wcfm-banner .ratings-full {
  margin: 0;
}
.store-wcfm-banner .store-title {
  margin-bottom: 0.9rem;
  font-size: 2rem;
  font-weight: 600;
}
.store-wcfm-banner .seller-info-list {
  padding-left: 2.4rem;
}
.store-wcfm-banner .seller-info-list li {
  margin-bottom: 0.4rem;
  letter-spacing: 0;
}
.store-wcfm-banner .seller-info-list li i {
  margin: 0 0.4rem 0 -2.4rem;
  font-size: 1.4rem;
}
.store-wcfm-banner .store-content-right {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.store-wcfm-banner .btn-inquiry {
  margin-bottom: 3rem;
}

.btn-inquiry,
.btn-visit:not(.btn-link) {
  padding: 0.8em 1.6em;
  font-size: 1.3rem;
  background-color: #eee;
  border-color: #eee;
  color: #333;
  margin-right: 0.6rem;
}
.btn-inquiry:hover, .btn-inquiry:active, .btn-inquiry:focus,
.btn-visit:not(.btn-link):hover,
.btn-visit:not(.btn-link):active,
.btn-visit:not(.btn-link):focus {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.vendor-toolbox .vendor-search-toggle {
  margin-right: 1.5rem;
  padding: 0.73em 0.9em 0.86em;
  font-weight: 700;
}
.vendor-toolbox .vendor-search-toggle i {
  margin: 0 0.8rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.vendor-toolbox .toolbox-left label {
  font-weight: 400;
  color: #333;
}
.vendor-toolbox .toolbox-layout {
  margin-left: 1.5rem;
}
.vendor-toolbox .btn-layout {
  color: #ccc;
}
.vendor-toolbox .btn-layout.icon-mode-list i {
  font-size: 2rem;
}

.vendor-search-wrapper {
  display: none;
  padding: 2rem;
  border-radius: 5px;
  -webkit-box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
  margin-top: 3.2rem;
}
.vendor-search-wrapper .vendor-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.vendor-search-wrapper input {
  min-height: 3.8rem;
  height: 3.8rem;
  color: #777;
  border-radius: 0.3rem;
}
.vendor-search-wrapper input:focus {
  border-color: #8080809e;
}
.vendor-search-wrapper .btn {
  padding: 0.7em 1.65em;
}

.vendor-product-title {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1.9rem 1.5rem;
  border: 1px solid #eee;
  border-radius: 0.3rem;
}
.vendor-product-title a {
  color: #333;
}
.vendor-product-title a:hover {
  color: #336699;
}

.vendor-map {
  border: 1px solid #eee;
}

.google-map {
  height: 35rem;
  background-color: #98c3e5;
}

@media (max-width: 991px) {
  .store-wcmp {
    height: 100%;
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  .store-wcmp .store-content {
    display: block;
    position: relative;
    background: #fff;
  }
  .store-wcmp .seller-brand {
    margin-bottom: 2rem;
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  .store-wcmp .seller-brand img {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    max-width: calc(100% + 2px);
    margin: -1px;
    border: 1px solid #eee;
  }
  .store-wcmp .seller-date {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    max-width: 100%;
  }
  .store-wcmp .store-title a {
    color: #336699;
    text-shadow: none;
  }
  .store-wcmp .store-address, .store-wcmp .store-rating {
    color: #333;
  }

  .store-wcfm-banner .store-content {
    display: block;
  }
  .store-wcfm-banner .store-content-right {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 1rem 0 0 14rem;
  }
  .store-wcfm-banner .store-content-right .btn {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 897px) {
  .toolbox.vendor-toolbox {
    display: block;
  }

  .store-list .store-header {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30rem;
            flex: 0 0 30rem;
    max-width: 30rem;
  }

  .store.store-banner .store-content {
    background: none;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 27rem;
  }

  .store-wcmp-banner .social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    top: auto;
    right: auto;
    margin-top: 1rem;
  }
}
@media (max-width: 575px) {
  .store-list {
    display: block;
  }
  .store-list .store-header {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .store-list .store-content {
    padding-left: 2rem;
  }
  .store-list .seller-brand {
    left: auto;
    -webkit-transform: none;
            transform: none;
    right: 2rem;
    top: -27%;
  }

  .store-wcfm-banner .store-content-left {
    display: block;
    text-align: center;
  }
  .store-wcfm-banner .personal-info {
    margin-right: 0;
  }
  .store-wcfm-banner .seller-brand {
    margin-right: auto;
    margin-left: auto;
  }
  .store-wcfm-banner .store-title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .store-wcfm-banner .store-content-right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 0;
  }
}
@media (max-width: 479px) {
  .store-list .seller-brand {
    top: -22%;
    width: 7rem;
    height: 7rem;
  }
}
/*------------------------------------
    Code Popup
        - show code wrapper
            - show code button
        - boxed button
            - box-btn
        - code popup
            - code-copy
            - code-content
-------------------------------------*/
.show-code {
  position: absolute !important;
  padding: 3px 1rem;
  width: auto !important;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #26c;
  color: #fff !important;
  border-radius: 3px;
  font-size: 1.4rem;
  font-family: monospace;
  font-weight: 600;
  line-height: 1.6;
  opacity: 0;
  z-index: 1000;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  white-space: nowrap;
  cursor: pointer;
}
.show-code:hover {
  background: #37d;
  opacity: 1;
}

.show-code-action {
  position: relative;
}
.show-code-action:hover &gt; .show-code {
  opacity: 1;
}
.show-code-action &gt; .btn-copy:hover {
  background: #37d;
}

.show-code-added &gt; .show-code {
  opacity: 0.35;
}

.boxed-button {
  position: fixed;
  top: 16.8%;
  left: 5px;
  z-index: 6;
}
.boxed-button .box-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #33363b;
  border-radius: 3px;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.boxed-button .box-btn.enabled {
  background: #26c;
}
.boxed-button .box-btn span {
  font-family: monospace;
  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: 38px;
  height: 32px;
  font-size: 16px;
  line-height: 0;
}
.boxed-button span svg { 
  fill: #fff;
}
.boxed-button .box-btn div.div-content {
  display: inline-block;
  margin-bottom: 0;
  width: 0;
  font-size: 1.3rem;
  line-height: 1.4;
  -webkit-transition: width 0.3s, padding 0.3s;
  transition: width 0.3s, padding 0.3s;
  overflow: hidden;
  white-space: nowrap;
}
.boxed-button .box-btn:hover div.div-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  height: 50px;
  margin-right: 1rem;
  line-height: 1.6;
}
.boxed-button .box-btn a {
  color: inherit;
}

.code-popup {
  border-radius: 5px;
  width: 1000px;
  max-width: 100%;
  z-index: 4000;
}

.code-content {
  border-radius: 5px;
  background: #1e1e1e;
}
.code-content .CodeMirror {
  background-color: transparent;
  margin: 1rem 2rem 2rem;
  height: 58rem;
  color: #d4d4d4;
}
.code-content .code-text {
  display: block !important;
  opacity: 0;
  padding: 0;
  border: none;
  height: 1px;
}
.code-content .code-copy {
  background: #3c3c3c;
  font-weight: 600;
  border-radius: 5px 5px 0 0;
  padding: 2rem;
  -webkit-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.1);
}
.code-content .code-copy a {
  color: #ccc;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.code-content .code-copy a:hover {
  color: #fff;
}
.code-content .CodeMirror-vscrollbar::-webkit-scrollbar {
  width: 5px;
}
.code-content .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {
  margin-right: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.code-content .CodeMirror-hscrollbar::-webkit-scrollbar {
  height: 5px;
}
.code-content .CodeMirror-hscrollbar::-webkit-scrollbar-thumb {
  margin-bottom: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.code-content .CodeMirror-scrollbar-filler {
  left: 0;
  bottom: 0;
  width: 100% !important;
  background: #1e1e1e;
}
.code-content .CodeMirror-hscrollbar {
  bottom: 1.7rem;
}
.code-content .copy-icon {
  font-size: 2rem;
  vertical-align: middle;
  margin-right: 0.6rem;
  line-height: 0;
}

/* 6. Header */
/*--------------------------------
    Header
        -Pre Header
        -Header
        -Welcom-msg
        -Header Search
        -Main Menu
        -Other
            - Login
            - Wishlist
        -Stick Header
        -Other Options
--------------------------------*/
.pre-header {
  position: relative;
  color: var(--pre-header-color);    
  font-family: var(--pre-header-font-family);
  font-weight: var(--pre-header-font-weight);
  font-size: var(--pre-header-font-size);
  line-height: var(--pre-header-line-height);
  letter-spacing: var(--pre-header-letter-spacing);
}
.pre-header &gt; div {
  background-color: var(--pre-header-bg-color);
  padding-top: var(--pre-header-padding-top);
  padding-right: 0px;
  padding-bottom: var(--pre-header-padding-bottom);
  padding-left: 0px;
  margin-top: var(--pre-header-margin-top);
  margin-bottom: var(--pre-header-margin-bottom);
  border-top-left-radius: var(--pre-header-border-top-left-radius);
  border-top-right-radius: var(--pre-header-border-top-right-radius);
  border-bottom-right-radius: var(--pre-header-border-bottom-right-radius);
  border-bottom-left-radius: var(--pre-header-border-bottom-left-radius);
}
@media (max-width: 897px) {
  .pre-header &gt; div {
    padding-top: calc(var(--pre-header-padding-top) / 2);
    padding-bottom: calc(var(--pre-header-padding-bottom) / 2);
  }
}
.pre-header .pre-header-wrapper {
  width: 100%;
}

.pre-header .mfp-close {
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotateZ(0deg);
    color: inherit;
    opacity: 0.7;
}
.pre-header .mfp-close::before {
  color: #FFF;	
}

.sticky-content.fix-top.fixed .pre-header {
  display: none;
}

.header {
  position: var(--header-position);
  top: 0;
  right: 0;
  left: 0;
  color: var(--header-color);
  font-size: var(--header-font-size);
  font-weight: var(--header-font-weight);
  text-transform: var(--header-text-transform);
  letter-spacing: var(--header-letter-spacing);
  z-index: 6;
}
  .page-header-pos-absolute .header {
     position: absolute;
  }
.header.header-bg {
  background-image: var(--header-bg-image);
  background-position-x: var(--header-bg-position-x);
  background-position-y: var(--header-bg-position-y);
  background-repeat: var(--header-bg-repeat);
  background-size: var(--header-bg-size);
  background-color: var(--header-bg-color);
}
.header .container,
.header .container-fluid,
.header .inner-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
/*
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
*/
}
.header .inner-wrap {
  width: 100%;
}
.header a:not(.btn):not(.styled) {
  color: inherit;
}
.header a:not(.btn):not(.styled):hover {
  color: var(--header-link-hover-color);
}

.header-top &gt; .container-fluid,
.header-middle &gt; .container-fluid,
.header-bottom &gt; .container-fluid {
  width: calc(100% - var(--container-fluid-header-margin-right) - var(--container-fluid-header-margin-left));
  margin-right: var(--container-fluid-header-margin-right);
  margin-left: var(--container-fluid-header-margin-left);
  padding-right: var(--container-fluid-header-padding-right);
  padding-left: var(--container-fluid-header-padding-left);
}

.header-top-,
.header-middle-,
.header-bottom- {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-top,
.header-middle,
.header-bottom {
}

.header-left,
.header-center,
.header-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
/*
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
*/
}

.header-left.flex-column &gt; div,
.header-center.flex-column &gt; div,
.header-right.flex-column &gt; div {
  margin-bottom: 1rem;
}

.header-left.flex-column &gt; div:last-child,
.header-center.flex-column &gt; div:last-child,
.header-right.flex-column &gt; div:last-child {
  margin-bottom: 0;
}

.header-top {
  color: var(--header-top-color);
  font-size: var(--header-top-font-size);
  font-weight: var(--header-top-font-weight);
  text-transform: var(--header-top-text-transform);
  letter-spacing: var(--header-top-letter-spacing);
  border-color: var(--header-top-border-color);
  border-style: var(--header-top-border-style);
  border-top-width: var(--header-top-border-top-width);
  border-right-width: var(--header-top-border-right-width);
  border-bottom-width: var(--header-top-border-bottom-width);
  border-left-width: var(--header-top-border-left-width);
  padding-top: var(--header-top-padding-top);
  padding-right: var(--header-top-padding-right);
  padding-bottom: var(--header-top-padding-bottom);
  padding-left: var(--header-top-padding-left);
  margin-top: var(--header-top-margin-top);
  margin-right: var(--header-top-margin-right);
  margin-bottom: var(--header-top-margin-bottom);
  margin-left: var(--header-top-margin-left);
}
.header-top-bg {
  background-image: var(--header-top-bg-image);
  background-position-x: var(--header-top-bg-position-x);
  background-position-y: var(--header-top-bg-position-y);
  background-repeat: var(--header-top-bg-repeat);
  background-size: var(--header-top-bg-size);
  background-color: var(--header-top-bg-color);
}
.header-top &gt; div {
  border-color: var(--header-top-child-border-color);
  border-style: var(--header-top-child-border-style);
  border-top-width: var(--header-top-child-border-top-width);
  border-right-width: var(--header-top-child-border-right-width);
  border-bottom-width: var(--header-top-child-border-bottom-width);
  border-left-width: var(--header-top-child-border-left-width);
  padding-top: var(--header-top-child-padding-top);
  padding-bottom: var(--header-top-child-padding-bottom);
}
@media (max-width: 897px) {
  .header-top {
     color: var(--header-top-mobile-color);
     font-size: var(--header-top-mobile-font-size);
     font-weight: var(--header-top-mobile-font-weight);
     text-transform: var(--header-top-mobile-text-transform);
     letter-spacing: var(--header-top-mobile-letter-spacing);
     padding-top: var(--header-top-mobile-padding-top);
     padding-right: var(--header-top-mobile-padding-right);
     padding-bottom: var(--header-top-mobile-padding-bottom);
     padding-left: var(--header-top-mobile-padding-left);
     margin-top: var(--header-top-mobile-margin-top);
     margin-right: var(--header-top-mobile-margin-right);
     margin-bottom: var(--header-top-mobile-margin-bottom);
     margin-left: var(--header-top-mobile-margin-left);
  }
  .header-top-bg {
     background-image: none;
     background-color: var(--header-top-mobile-bg-color);
  }
}
.header-wrapper.sticky-content.fixed.fix-top .header-top,
.header-top.sticky-content.fixed.fix-top {
  border-color: var(--header-top-sticky-border-color);
  padding-top: var(--header-top-sticky-padding-top);
  padding-right: var(--header-top-sticky-padding-right);
  padding-bottom: var(--header-top-sticky-padding-bottom);
  padding-left: var(--header-top-sticky-padding-left);
}
.header-wrapper.sticky-content.fixed.fix-top .header-top &gt; div,
.header-top.sticky-content.fixed.fix-top &gt; div {
  border-color: var(--header-top-child-sticky-border-color);
  padding-top: var(--header-top-child-sticky-padding-top);
  padding-right: var(--header-top-child-sticky-padding-right);
  padding-bottom: var(--header-top-child-sticky-padding-bottom);
  padding-left: var(--header-top-child-sticky-padding-left);
}

.header-middle {
  color: var(--header-middle-color);
  font-size: var(--header-middle-font-size);
  font-weight: var(--header-middle-font-weight);
  text-transform: var(--header-middle-text-transform);
  letter-spacing: var(--header-middle-letter-spacing);
  border-color: var(--header-middle-border-color);
  border-style: var(--header-middle-border-style);
  border-top-width: var(--header-middle-border-top-width);
  border-right-width: var(--header-middle-border-right-width);
  border-bottom-width: var(--header-middle-border-bottom-width);
  border-left-width: var(--header-middle-border-left-width);
  padding-top: var(--header-middle-padding-top);
  padding-right: var(--header-middle-padding-right);
  padding-bottom: var(--header-middle-padding-bottom);
  padding-left: var(--header-middle-padding-left);
  margin-top: var(--header-middle-margin-top);
  margin-right: var(--header-middle-margin-right);
  margin-bottom: var(--header-middle-margin-bottom);
  margin-left: var(--header-middle-margin-left);
}
.header-middle-bg {
  background-image: var(--header-middle-bg-image);
  background-position-x: var(--header-middle-bg-position-x);
  background-position-y: var(--header-middle-bg-position-y);
  background-repeat: var(--header-middle-bg-repeat);
  background-size: var(--header-middle-bg-size);
  background-color: var(--header-middle-bg-color);
}
.header-middle &gt; div {
  border-color: var(--header-middle-child-border-color);
  border-style: var(--header-middle-child-border-style);
  border-top-width: var(--header-middle-child-border-top-width);
  border-right-width: var(--header-middle-child-border-right-width);
  border-bottom-width: var(--header-middle-child-border-bottom-width);
  border-left-width: var(--header-middle-child-border-left-width);
  padding-top: var(--header-middle-child-padding-top);
  padding-bottom: var(--header-middle-child-padding-bottom);
}
@media (max-width: 897px) {
  .header-middle {
     padding-top: var(--header-middle-mobile-padding-top);
     padding-right: var(--header-middle-mobile-padding-right);
     padding-bottom: var(--header-middle-mobile-padding-bottom);
     padding-left: var(--header-middle-mobile-padding-left);
     margin-top: var(--header-middle-mobile-margin-top);
     margin-right: var(--header-middle-mobile-margin-right);
     margin-bottom: var(--header-middle-mobile-margin-bottom);
     margin-left: var(--header-middle-mobile-margin-left);
  }
  .header-middle-bg {
     background-image: none;
     background-color: var(--header-middle-mobile-bg-color);
  }
}
.header-wrapper.sticky-content.fixed.fix-top .header-middle,
.header-middle.sticky-content.fixed.fix-top {
  border-color: var(--header-middle-sticky-border-color);
  padding-top: var(--header-middle-sticky-padding-top);
  padding-right: var(--header-middle-sticky-padding-right);
  padding-bottom: var(--header-middle-sticky-padding-bottom);
  padding-left: var(--header-middle-sticky-padding-left);
}
.header-wrapper.sticky-content.fixed.fix-top .header-middle &gt; div,
.header-middle.sticky-content.fixed.fix-top &gt; div {
  border-color: var(--header-middle-sticky-border-color);
  padding-top: var(--header-middle-child-sticky-padding-top);
  padding-right: var(--header-middle-child-sticky-padding-right);
  padding-bottom: var(--header-middle-child-sticky-padding-bottom);
  padding-left: var(--header-middle-child-sticky-padding-left);
}

.header-middle.menu-top__header-top-inside {
  padding-top: 0;
}
.header-middle.menu-top__header-top-inside .navigation-top-wrapper {
  margin-bottom: var(--header-middle-menu-top-header-top-inside-margin-bottom);
}
.header-middle.menu-top__header-bottom-inside {
  padding-bottom: 0;
}
.header-middle.menu-top__header-bottom-inside .navigation-top-wrapper {
  margin-top: var(--header-middle-menu-top-header-top-inside-margin-top);
}

.header-bottom {
  border-color: var(--header-bottom-border-color);
  border-style: var(--header-bottom-border-style);
  border-top-width: var(--header-bottom-border-top-width);
  border-right-width: var(--header-bottom-border-right-width);
  border-bottom-width: var(--header-bottom-border-bottom-width);
  border-left-width: var(--header-bottom-border-left-width);

}
.header-bottom-bg {
  background-image: var(--header-bottom-bg-image);
  background-position-x: var(--header-bottom-bg-position-x);
  background-position-y: var(--header-bottom-bg-position-y);
  background-repeat: var(--header-bottom-bg-repeat);
  background-size: var(--header-bottom-bg-size);
  background-color: var(--header-bottom-bg-color);
}
.header-bottom &gt; div {
  border-color: var(--header-bottom-child-border-color);
  border-style: var(--header-bottom-child-border-style);
  border-top-width: var(--header-bottom-child-border-top-width);
  border-right-width: var(--header-bottom-child-border-right-width);
  border-bottom-width: var(--header-bottom-child-border-bottom-width);
  border-left-width: var(--header-bottom-child-border-left-width);
  padding-top: var(--header-bottom-child-padding-top);
  padding-right: var(--header-bottom-child-padding-right);
  padding-bottom: var(--header-bottom-child-padding-bottom);
  padding-left: var(--header-bottom-child-padding-left);
}
.header-bottom .main-nav {

}
.header-bottom .header-right {
  padding-right: 0.2rem;
}
.header-bottom .header-right &gt; a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.4rem 0 1.3rem;
}
.header-bottom .header-right &gt; a i {
  vertical-align: middle;
}
.header-bottom .header-right &gt; a i.e-icon-map-marker {
  font-size: 2.2rem;
  margin-top: -0.5rem;
}
.header-bottom .header-right &gt; a i.e-icon-sale {
  font-size: 2.4rem;
  margin-right: 0.8rem;
}
.header-bottom .header-right &gt; a:first-child {
  margin-right: 3.2rem;
}
.header-bottom:not(.fixed) .show-dropdown .dropdown-box {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  margin-top: 2rem;
}

.header-border .header-bottom {
  border-bottom: 1px solid var(--header-border-color);
}

.shop-logo {

}
.shop-logo img {
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width:897px){
  .header .shop-logo img {
    max-height: var(--shop-logo-mobile-header-max-height);
    width: auto;
  }
}
.header.sticky-header.fixed.fix-top .shop-logo img,
.header .sticky-header.fixed.fix-top .shop-logo img {
  transform: var(--shop-logo-sticky-header-transform);
}
.shop-logo img.img-grayscale {
  filter: var(--shop-logo-img-filter);
  opacity: var(--shop-logo-img-opacity);
}
.shop-logo:hover img.shop-logo-grayscale {
  filter: var(--shop-logo-hover-img-filter);
  opacity: var(--shop-logo-hover-img-opacity);
}

.header .widget-box a,
.header .widget-box span.a-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header .widget-box i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: var(--header-widget-box-i-font-size);
}
  .header .header-top .widget-box i {
     font-size: var(--header-top-widget-box-i-font-size);
  }
.header .widget-box span.a-link {
  cursor: pointer
}

.header .widget-box.widget-box-hor i {
  margin-right: 0.5rem;
}
.header .widget-box.widget-box-hor i.icon__right {
  margin-right: 0;
  margin-left: 0.5rem;
}

  .header .widget-box .dropdown a {
    -ms-flex-direction: inherit;
    flex-direction: inherit;
  }

.header .widget-box.widget-box-hor a, .header .widget-box.widget-box-hor span.a-link {
  -ms-flex-direction: inherit;
  flex-direction: inherit;
}

.header .widget-box .dropdown a, .header .widget-box .dropdown span.a-link {
  -ms-flex-direction: inherit;
  flex-direction: inherit;
}

.header .widget-box-sep {
  display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
  
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;	
  width: 1px;
  background-color: var(--header-middle-seperator-delimeter-color);
  opacity: 0.1;
}
  .header .header-top .widget-box-sep {
    background-color: var(--header-top-seperator-delimeter-color);
    opacity: 0.1;
  }
.header .widget-box-divider {
  width: 1px;
  height: 1.5rem;
  background-color: var(--header-middle-seperator-delimeter-color);
  opacity: 0.1;
}
  .header-top .widget-box-sep {
    background-color: var(--header-top-seperator-delimeter-color);
    opacity: 0.1;
  }
.header .widget-box.widget-box-divider {
}

.header .widget-box .delimiter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0.3rem;
}
.header .header-top .delimiter {
  color: var(--header-top-seperator-delimeter-color);
}

.header .widget-body-header_pos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-left.flex-column .widget-body,
.header-center.flex-column .widget-body, 
.header-right.flex-column .widget-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.header-left.flex-column.flex-column-center .widget-body,
.header-center.flex-column.flex-column-center .widget-body, 
.header-right.flex-column.flex-column-center .widget-body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .widget-box.widget-box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-left .widget-box,
.header-center .widget-box, 
.header-right .widget-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0.8rem;
  margin-left: 0.8rem;
}
.header-left .widget-box:first-child,
.header-center .widget-box:first-child, 
.header-right .widget-box:first-child {
  margin-left: 0rem;
}

.header-left .widget-box:last-child,
.header-center .widget-box:last-child, 
.header-right .widget-box:last-child {
  margin-right: 0rem;
}

.header-left.flex-column .widget-box,
.header-center.flex-column .widget-box, 
.header-right.flex-column .widget-box {
  margin-right: 0rem;
  margin-bottom: 1rem;
  margin-left: 0rem;
}
.header-left.flex-column .widget-box:last-child,
.header-center.flex-column .widget-box:last-child, 
.header-right.flex-column .widget-box:last-child {
  margin-bottom: 0rem;
}

.header .widget .widget-body .menu-item li {
  display: inline-block;
  color: var(--header-widget-menu-item-li-color);
  font-size: var(--header-widget-menu-item-li-font-size);
  font-weight: var(--header-widget-menu-item-li-font-weight);
  text-transform: var(--header-widget-menu-item-li-text-transform);
  letter-spacing: var(--header-widget-menu-item-li-letter-spacing);
  margin-right: var(--header-widget-menu-item-li-margin-right);
  padding: 0px;
}
.header .widget .widget-body .menu-item li:last-child {
  margin-right: 0px;
}
.header .widget .widget-body .menu-item li:hover {
  color: var(--header-widget-menu-item-li-color-hover);
}

.header-search {
  position: relative;
  width: 100%;
  max-width: 38rem;
}
.header-search input.form-control {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 40px;
  padding: 0.9rem;
  border: 2px solid #336699;
  border-right: 0;
  font-size: 1.2rem;
  letter-spacing: 0;
}
.header-search input.form-control::-webkit-input-placeholder {
  color: inherit;
}
.header-search input.form-control::-moz-placeholder {
  color: inherit;
}
.header-search input.form-control:-ms-input-placeholder {
  color: inherit;
}
.header-search input.form-control::-ms-input-placeholder {
  color: inherit;
}
.header-search input.form-control::placeholder {
  color: inherit;
}
.header-search .btn-search {
  margin: 0;
  padding: 0;
  min-width: 5.1rem;
  color: #333;
  border-left: 0;
  border-color: #336699;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: -0.025em;
  text-transform: none;
}
.header-search .btn-search i {
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.header-search .btn-search:hover, .header-search .btn-search:active, .header-search .btn-search:focus {
  color: #336699;
  background-color: transparent;
}
.header-search .select-box::before {
  right: 1.2rem;
  margin-top: -0.1rem;
  font-weight: 400;
}
.header-search .select-box select {
  position: relative;
  padding: 0 2rem 0 1.5rem;
  border: 0;
  font-weight: 400;
  z-index: 1;
}
.header-search.hs-toggle .input-wrapper {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: -2.5rem;
  top: 100%;
  min-width: 30rem;
  padding: 1.5rem;
  height: auto;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 35px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 35px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  z-index: 100;
  -webkit-transition: visibility 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: visibility 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
  transition: transform 0.3s, visibility 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.header-search.hs-toggle:hover {
  color: #336699;
}
.header-search.hs-toggle .form-control {
  padding: 1.4rem 2rem;
  font-size: 1.3rem;
  color: #777;
  background-color: #f4f4f4;
  border: none;
  height: 5rem;
}
.header-search.hs-toggle .btn-search {
  background-color: #f4f4f4;
  min-width: 5rem;
  font-size: 1.8rem;
  color: #222;
  border: none;
}
.header-search.hs-toggle .btn-search i {
  margin-bottom: 0.3rem;
  font-size: inherit;
}
.header-search.hs-toggle.show .input-wrapper {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.header-search.hs-toggle.show .search-toggle::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
}
.header-search.hs-expanded {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 auto;
  min-width: auto;
  max-width: 55.6rem;
}
.header-search.hs-expanded .select-box {
  width: 14.6rem;
  border: 2px solid #336699;
  border-right: none;
  color: #666666;
}
.header-search.hs-expanded .select-box::after {
  content: "";
  height: 35px;
  width: 1px;
  background: #e5e5e5;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header-search.hs-expanded input.form-control {
  color: #666;
  border-right: none;
  border-left: none;
}
.header-search.hs-expanded .btn-search {
  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;
  -webkit-transition: opacity 0.4s, color 0.4s;
  transition: opacity 0.4s, color 0.4s;
}
.header-search.hs-expanded .btn-search i {
  margin: 0;
}
.header-search.hs-expanded .btn-search span {
  margin-right: 0.5rem;
  letter-spacing: -0.03em;
}
.header-search.hs-simple {
  min-width: 35rem;
}
.header-search.hs-simple input.form-control {
  border: none;
  background-color: #f5f5f5;
}
.header-search.hs-simple .btn-search {
  position: absolute;
  right: 0;
  height: 100%;
  min-width: 4.5rem;
  background: transparent;
  color: #666;
}
.header-search.hs-rounded .select-box,
.header-search.hs-rounded .form-control {
  border-radius: 0.5rem 0 0 0.5rem;
}
.header-search.hs-rounded .btn-search {
  border-radius: 0 0.5rem 0.5rem 0;
}
.header-search.hs-rounded.hs-simple input.form-control {
  border-radius: 5rem;
}
.header-search.hs-rounded.hs-expanded .form-control {
  border-radius: 0;
}
.header-search.hs-round .select-box,
.header-search.hs-round .form-control {
  border-radius: 0.3rem 0 0 0.3rem;
}
.header-search.hs-round .btn-search {
  border-radius: 0 0.3rem 0.3rem 0;
}
.header-search.hs-round.hs-simple input.form-control {
  border-radius: 3rem;
}
.header-search.hs-round.hs-expanded .form-control {
  border-radius: 0;
}

.dir-up.hs-toggle .input-wrapper {
  top: auto;
  bottom: 100%;
  margin-bottom: 2rem;
}

.main-nav .menu &gt; .has-submenu {
  padding-right: 1.5rem;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.8rem;
  line-height: 1;
}

.cart-dropdown {
  color: inherit;
}
.cart-dropdown &gt; a i {
  color: inherit;
}

.label-down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.label-down i {
  display: inline-block;
}
.label-down span {
  display: block;
}
.label-down i + span {

}

@media (max-width: 1099px) {
  .mobile-hide {
    display: none;
  }

  .header .main-nav {
    display: none;
  }
  .header .sticky-content-wrapper {
    background: var(--header-sticky-content-wrapper-bg-color);
  }

  .header-top .header-left {

  }

  .header-middle .header-right &gt; *:not(:last-child) {

  }
  
  .header-middle .header-center {
    padding: 0 1rem;
  }

  .header-bottom {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    margin-right: 1rem;
  }
  .mobile-menu-toggle span {
    font-family: arial;
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    margin-top: 0.2rem;
  }

  .header-call {
    margin-right: 1rem !important;
  }
  .header-call::after {
    content: none;
  }
}
@media (max-width: 991px) and (min-width: 480px) {
  .header-middle .logo {
    margin-left: 2rem;
  }
}
@media (max-width: 897px) {
  .header .header-top .header-center {
    max-width: 80%;
  }
  .header .header-middle .header-left {
    position: relative;
    overflow: hidden;
    min-width: 2.8rem;
    max-width: 2.8rem;
    width: 2.8rem;
  }
  .checkout-bestellen .header .header-left {
    min-width: unset;
    max-width: unset;
    width: unset;
  }

  .header .widget-content.widget-content-ticker {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation: 6s linear 2s 1 showTickerFirst, 12s linear 8s infinite showTicker;
            animation: 6s linear 2s 1 showTickerFirst, 12s linear 8s infinite showTicker;
  }

  .header .logo {
    margin: 0 auto;
  }
  .header .header-middle .header-right {
    position: relative;
  }
}

.span-total-count-parent {
  position: relative;
}

span.span-total-count {
  position: absolute;
  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: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  font-family: Arial;
  font-style: normal;
  z-index: 1;
  right: -12px;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8rem;
  background: var(--span-total-count-bg-color);
  color: var(--span-total-count-color);
  border: 1px solid var(--header-middle-bg-color);
  text-align: center;
}
.header .header-top span.span-total-count {
  border-color: var(--header-top-bg-color);
  width: 1.8rem;
  height: 1.8rem;
}
.sticky-header span.span-total-count {
  border-color: var(--sticky-content-fix-top-mobile-bg-color);
}
.sticky-footer span.span-total-count {
  border-color: var(--sticky-content-fix-bottom-mobile-bg-color);
}
.page-header-bg-color-transparent span.span-total-count {
  border-width: 0px;
}

span.span-total-count.span-total-count__t-l {
  top: -4px;
  left: -8px;
  bottom: unset;
}
  .header .header-top span.span-total-count.span-total-count__t-l {
    top: -2px;
    left: -6px;
  }
span.span-total-count.span-total-count__t-r {
  top: -4px;
  right: -8px;
  bottom: unset;
}
  .header .header-top span.span-total-count.span-total-count__t-r {
    top: -2px;
    right: -6px;
  }
span.span-total-count.span-total-count__b-r {
  top: unset;
  right: -8px;
  bottom: 0px;
}
span.span-total-count.span-total-count__b-l {
  top: unset;
  left: -8px;
  bottom: 0px;
}
  .header .header-top span.span-total-count.span-total-count__b-l {
    left: -6px;
    bottom: -2px;
  }
.sticky-link span.span-total-count.span-total-count__t-r {
  top: 3px;
  right: -2px;
}
.mobile-menu-widgets span.span-total-count.span-total-count__t-r {
  top: -4px;
  right: -12px;
}
.mobile-menu-widgets span.span-total-count.span-total-count__b-r {
  right: -10px;
  bottom: 0px;
}
span.span-total-count.span-total-count__c-r {
  right: -8px;
}
  .header .header-top span.span-total-count.span-total-count__c-r {
     right: -6px;
  }
  .header .header-top span.span-total-count.span-total-count__c-r {
     right: -6px;
  }
span.span-total-count.span-total-count__c-l {
  left: -8px;
}
  .header .header-top span.span-total-count.span-total-count__c-l {
     left: -6px;
  }
  .header .header-top span.span-total-count.span-total-count__c-l {
    left: -6px;
  }

a i.icon__hover {
  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: 31px;
  height: 31px;
  border-radius: 150%;
}
  .header .header-top a i.icon__hover { 
    width: 24px;
    height: 24px;
  }
  .header .header-middle a i.icon__hover { 
    width: 31px;
    height: 31px;
  }
a:hover i.icon__hover {
  background-color: var(--widget-box-i-hover-bg-color);
}

.header a i.icon__hover { 
  transition: all .2s ease-in-out;
}
.header a:hover i.icon__hover { 
  transform: scale(1.1);
}


.page-header-bg-color-transparent .header-bg:not(.fixed) .header-bg:not(.fixed),
.page-header-bg-color-transparent .header-bg:not(.fixed) .header-top-bg:not(.fixed),
.page-header-bg-color-transparent .header-bg:not(.fixed) .header-middle-bg:not(.fixed) {
  background-color: transparent;
}

.page-header-bg-color-transparent .navigation-top:not(.fixed) .menu-top-wrap { 
  border-width: 0px;
}
.page-header-bg-color-transparent .navigation-top:not(.fixed) .menu-top-wrap-bg {
  background-color: transparent;
}

.page-header-bg-color-transparent .header:not(.fixed) .header-wrapper:not(.fixed) .header-top:not(.fixed),
.page-header-bg-color-transparent .header:not(.fixed) .header-wrapper:not(.fixed) .header-middle:not(.fixed),
.page-header-bg-color-transparent .header:not(.fixed) .header-wrapper:not(.fixed) .header-top:not(.fixed) .widget .menu.top-menu &gt; li,
.page-header-bg-color-transparent .header:not(.fixed) .header-wrapper:not(.fixed) .header-middle:not(.fixed) .widget .menu.top-menu &gt; li,
.page-header-bg-color-transparent .header:not(.fixed) .header-wrapper:not(.fixed) .navigation-top:not(.fixed) .menu.top-menu &gt; li,
.page-header-bg-color-transparent .header:not(.fixed) .header-wrapper:not(.fixed) .menu &gt; li,
.page-header-bg-color-transparent .header:not(.fixed) .header-wrapper:not(.fixed) .menu &gt; li:hover &gt; a:not(.menu-heading),
.page-header-bg-color-transparent .header:not(.fixed) .header-wrapper:not(.fixed) .menu &gt; li.active &gt; a:not(.menu-heading) {
  color: var(--main-header-bg-color-transparent-color);
}

.page-header-bg-color-transparent .header:not(.fixed) .header-wrapper:not(.fixed) .widget-box-sep {
  background-color: var(--main-header-bg-color-transparent-color);
}
.page-header-bg-color-transparent .header:not(.fixed) .header-wrapper:not(.fixed) .header-top:not(.fixed) .delimiter {
  color: var(--main-header-bg-color-transparent-color);
}

.page-header-bg-color-transparent .header:not(.fixed) .header-wrapper:not(.fixed) .header-top:not(.fixed) .shop-logo img,
.page-header-bg-color-transparent .header:not(.fixed) .header-wrapper:not(.fixed) .header-middle:not(.fixed) .shop-logo img {
  filter: var(--main-header-bg-color-transparent-header-shop-logo-img-filter);
}

.page-header-pos-absolute .pre-main {
  display: none !important;
}
.page-header-pos-absolute .sellingpoints-wrapper {
  display: none !important;
}
.page-header-pos-absolute .breadcrumb-wrapper {
  display: none !important;
}

/*------------------------
    Navigation Top
-------------------------*/
.navigation-top-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
}
.navigation-top {
  border-color: var(--navigation-top-border-color);
  border-style: var(--navigation-top-border-style);
  border-top-width: var(--navigation-top-border-top-width);
  border-right-width: var(--navigation-top-border-right-width);
  border-bottom-width: var(--navigation-top-border-bottom-width);
  border-left-width: var(--navigation-top-border-left-width);
}

.navigation-top &gt; .container {
  padding-right: 0px;
  padding-left: 0px;
}

.navigation-top-bg {
  background-color: var(--navigation-top-bg-color);
}

/*------------------------
    Search Top
-------------------------*/
.search-top-wrapper {
  width: 100%;
}
.search-top {
  border-color: var(--search-top-border-color);
  border-style: var(--search-top-border-style);
  border-top-width: var(--search-top-border-top-width);
  border-right-width: var(--search-top-border-right-width);
  border-bottom-width: var(--search-top-border-bottom-width);
  border-left-width: var(--search-top-border-left-width);
  padding: 1rem 0;
}

.search-top-bg {
  background-color: var(--search-top-bg-color);
  color: var(--navigation-top-color);
}

.search-top .inner-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
    -ms-flex-pack: center;
      justify-content: center;  
}

/*------------------------
    Body Menu Overlay
-------------------------*/
.body-menu-overlay .header {
   z-index: 5;
}
.body-search-overlay .header {
   z-index: 5;
}
.body-menu-overlay .navigation-top-wrapper {
   z-index: 4;
}
.body-search-overlay .navigation-top-wrapper {
   z-index: 4;
}
.body-menu-overlay .toolbox-filter-top {
   z-index: 3;
}
.body-search-overlay .toolbox-filter-top {
   z-index: 3;
}

/*------------------------
    Pre Main
-------------------------*/
.pre-main {
  position: relative;
  color: var(--pre-main-color);    
  font-family: var(--pre-main-font-family);
  font-weight: var(--pre-main-font-weight);
  font-size: var(--pre-main-font-size);
  line-height: var(--pre-main-line-height);
  letter-spacing: var(--pre-main-letter-spacing);
}
.pre-main &gt; div {
  background-color: var(--pre-main-bg-color);
  padding-top: var(--pre-main-padding-top);
  padding-right: 0px;
  padding-bottom: var(--pre-main-padding-bottom);
  padding-left: 0px;
  margin-top: var(--pre-main-margin-top);
  margin-bottom: var(--pre-main-margin-bottom);
  border-top-left-radius: var(--pre-main-border-top-left-radius);
  border-top-right-radius: var(--pre-main-border-top-right-radius);
  border-bottom-right-radius: var(--pre-main-border-bottom-right-radius);
  border-bottom-left-radius: var(--pre-main-border-bottom-left-radius);
}
@media (max-width: 897px) {
  .pre-main &gt; div {
    padding-top: calc(var(--pre-main-padding-top) / 2);
    padding-bottom: calc(var(--pre-main-padding-bottom) / 2);
  }
}
.pre-main .mfp-close {
  top: 50%;
  right: 2rem;
  color: inherit;
  opacity: 0.7;
  transform: translateY(-50%) rotateZ(0deg);
	
	/*
	width: 16px;
	height: 16px;
	*/	
}
.pre-main .mfp-close::before,
.pre-main .mfp-close::after {
  color: #000;
} 
/*------------------------
    Dropdowns
        - Dropdown
        - Dropdown-expandex
        - Cart Dropdown
        - Category Dropdown
-------------------------*/
.dropdown {
  position: relative;
}
.dropdown:not(.dropdown-click):hover .dropdown-box, .dropdown.show .dropdown-box {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.dropdown:not(.dropdown-click):hover::after, .dropdown.show::after {
  visibility: visible;
  opacity: 1;
  top: calc(100% - 20px);
  -webkit-transform: translate3d(50%, 0, 0);
          transform: translate3d(50%, 0, 0);
}
.dropdown:not(.dropdown-click):hover .dropdown-box, .dropdown.show .dropdown-box {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.dropdown:not(.dropdown-click):hover &gt; a, .dropdown.show &gt; a {
 
}
.dropdown a:not(.link) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dropdown a .dropdown-image {
  max-width: 2rem;
  margin-right: 0.6rem;
  margin-top: -1px;
  height: auto;
}
.dropdown &gt; a:not(.link) {
  color: inherit;
  padding: 1.1rem 0;
}
  .dropdown.dropdown-lang-switch &gt; a {
    padding: 0 0;
  }
.dropdown.dropdown-lang-switch a {
  color: inherit;
}
.dropdown.dropdown-account a {
  color: inherit;
}
.dropdown &gt; a:not(.link)::after {
  display: inline-block;
  margin-left: 6px;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-size: 8px;
  font-weight: 900;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.dropdown:hover &gt; a:not(.link)::after {
  -webkit-transform: translate(0%, 0%) rotate(-90deg);
  transform: translate(0%, 0%) rotate(-90deg);
}
  .dropdown.dropdown-account &gt; a::after {
     content: "";
     display: none;
  }
.dropdown li.active &gt; a, .dropdown li:hover &gt; a {
  color: var(--link-active-color);
}

.dropdown-box {
  position: absolute;
  right: 0;
  top: -9999px;
  padding: 0.5rem 0;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  -webkit-transform: translate3d(0, -10px, 0);
          transform: translate3d(0, -10px, 0);
}
.dropdown-box.dropdown-box-scroll {
  max-height: 160px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.dropdown-box.dropdown-box-left {
  left: 0;
  right: unset;
}
.dropdown-box a {
  padding: 0.9rem 1.5rem;
  font-size: inherit;
  line-height: 1.1;
}

.dropdown-box &gt; a &gt; i {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1.4rem;
}

.dropdown.dropdown-account .dropdown-box {
  width: 230px;
}
@media (max-width:897px){
  .dropdown.dropdown-account .dropdown-box {
    width: 190px;
  }
}
.dropdown.dropdown-account .dropdown-box ul {

}
.dropdown.dropdown-account .dropdown-box ul li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 0;
}
.dropdown.dropdown-account .dropdown-box a.a-link {
  padding: 0;
}
.dropdown.dropdown-account .dropdown-box a {
  flex-direction: inherit;
  padding: 1.2rem 2rem;
}

.dropdown.dropdown-account .dropdown-box a i {
  font-size: 1.8rem;
  margin: 0 0.5rem 0 0;
}

.dropdown.dropdown-account .dropdown-box a.account-name {
  color: inherit;
  cursor: default;
  font-weight: 600;
}
.dropdown.dropdown-account .dropdown-box a.account-name:hover {
  color: inherit;
}
.dropdown.dropdown-account .dropdown-box a.account-logout {
  border-top: 1px solid #e5e5e5;
}

.header .dropdown-box {
  background-color: var(--header-dropdown-box-bg-color);
  color: var(--header-dropdown-box-color);
}

.header .dropdown.dropdown-account .dropdown-box a:not(:hover),
.header .dropdown.dropdown-account .dropdown-box a.account-name,
.header .dropdown.dropdown-account .dropdown-box a.account-name:hover {
  color: var(--header-dropdown-box-color);
}
.header .dropdown.dropdown-account .dropdown-box a:not(.account-name):hover {
  color: var(--header-dropdown-box-hover-color);
}

.header .dropdown.dropdown-account .dropdown-box a.account-logout {
  border-top-color: var(--header-dropdown-box-a-account-logout-border-color);
}

.cart-dropdown .cart-toggle {
  padding: 0;
}
.cart-dropdown .cart-toggle::after {
  content: none;
}
.cart-dropdown .cart-label {
  display: block;
}
.cart-dropdown .cart-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cart-dropdown .cart-action .btn-wrap {
  width: 50%;
}
.cart-dropdown .cart-action .btn-wrap:first-child {
  text-align: left;
}
.cart-dropdown .cart-action .btn-wrap:last-child {
  text-align: right;
}
.cart-dropdown .cart-action .btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  text-transform: var(--btn-cart-dropdown-text-transform);
  line-height: 1;
  padding: 1.2rem 1.5rem;
  white-space: inherit;
  overflow: inherit;
  text-overflow: inherit;
}
  .cart-dropdown .cart-action .btn:hover i {
    -webkit-animation: navItemArrow 0.6s linear infinite;
    animation: navItemArrow 0.6s linear infinite;
  }
.cart-dropdown .cart-action .btn-wrap:first-child .btn {
  margin-right: 1rem;
}
.cart-dropdown .cart-action .btn.btn-underline {
  padding-right: 0px;
  padding-left: 0px;
}

.cart-dropdown .cart-total {
  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;
  margin-bottom: 0rem;
  padding: 1.4rem 0;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  letter-spacing: -0.025em;
}
.cart-dropdown .cart-total .price {
  font-size: 1.6rem;
}
.cart-dropdown .dropdown-box {
  padding: 1rem 3rem 3rem;
  min-width: 30rem;
  margin-top: 0.5rem;
}
.cart-dropdown .product-price {
  color: #336699;
  overflow: visible;
}
.cart-dropdown .products {
  border-bottom: 1px solid #eee;
  padding-bottom: 2.1rem;
}


.product.product-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0 0;
}
.product.product-cart .product-media {
  max-width: 10rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10rem;
          flex: 0 0 10rem;
}
.product.product-cart .product-media a {
  display: block;
  padding: 0;
}
.product.product-cart .product-detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product.product-cart .product-name {
  white-space: normal;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.product.product-cart .price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product.product-cart .product-quantity {
  margin-right: 0.7rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: #999;
}
.product.product-cart .product-quantity::after {
  content: "x";
  font-size: 1.8rem;
  font-weight: 400;
  margin-left: 0.7rem;
  text-transform: none;
  line-height: 0;
}
.product.product-cart .btn-close {
  position: absolute;
  top: 0.9rem;
  right: -1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  -webkit-box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.2);
  color: #333;
  background-color: #fff;
  padding-bottom: 0;
}
.product.product-cart .btn-close:hover {
  color: #336699;
}
.product.product-cart .btn-close i {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.7rem;
}

.category-dropdown &gt; a {
  background: #fff;
  min-width: 28rem;
  padding: 1.9rem 1.8rem 1.7rem 2rem;
  letter-spacing: -0.025em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
}
.category-dropdown &gt; a i {
  margin-bottom: 0.1rem;
  font-size: 1.7rem;
  line-height: 0;
}
.category-dropdown &gt; a span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 0.7rem;
}
.category-dropdown &gt; a::after {
  font-family: "elexio";
  content: "";
  font-weight: 600;
  font-size: 0.9rem;
}
.category-dropdown &gt; a:not(.btn):hover {
  color: #fff;
}
.category-dropdown:hover &gt; a, .category-dropdown.show &gt; a {
  color: #fff;
  background-color: #336699;
}
.category-dropdown .dropdown-box {
  padding: 0;
  left: 0;
  min-width: 24rem;
  color: #333;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  -webkit-transition: z-index 0.3s, -webkit-transform 0.3s;
  transition: z-index 0.3s, -webkit-transform 0.3s;
  transition: z-index 0.3s, transform 0.3s;
  transition: z-index 0.3s, transform 0.3s, -webkit-transform 0.3s;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate3d(0, -1rem, 0);
          transform: translate3d(0, -1rem, 0);
  top: 100%;
}
.category-dropdown::before, .category-dropdown::after {
  left: 25px;
  -webkit-transform: translate3d(50%, 0, 0);
          transform: translate3d(50%, 0, 0);
}
.category-dropdown::after {
  border-bottom-color: #f4f4f4;
  visibility: hidden;
  opacity: 0;
  top: calc(100% - 20px);
}
.category-dropdown.menu-fixed .dropdown-box, .category-dropdown.menu-fixed::after {
  visibility: hidden;
  opacity: 0;
}
.category-dropdown.dropdown.show .dropdown-box {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.category-dropdown.dropdown.show .dropdown-box, .category-dropdown.dropdown.show::after {
  visibility: visible;
  opacity: 1;
}
.category-dropdown.has-border .category-toggle {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}
.category-dropdown.show-dropdown .dropdown-box {
  border-radius: 0.5rem;
}
.category-dropdown.show-dropdown .dropdown-box::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 1.7rem;
  border: 10px solid transparent;
  border-bottom: 10px solid #f5f5f5;
}
.category-dropdown.show-dropdown .dropdown-box .category-menu {
  background-color: #f5f5f5;
  border-radius: 0.5rem;
}

@media (max-width: 1099px) {
  .category-dropdown &gt; a {
    min-width: 24rem;
  }
}
@media (max-width: 991px) {
  .cart-dropdown .cart-label {
    display: none;
  }
}
@media (max-width: 479px) {
  .cart-dropdown.cart-offcanvas .dropdown-box {
    max-width: 28rem;
  }
}

.wishlist-dropdown .wishlist-toggle::after {
  content: none;
}
/*------------------------------------------
    Menu
        - Default
        - Menu(Main Menu)
            - Megamenu
            - Menu Banner
            - Tips

        -Mobile Menu
            - MobileMenuWrapper
            - MobileMenuContainer
            - MobileMenu
            - MobileMenuOverlay
            - MobileMenuCloseButtonn

        - Vertical Menu
        - Category Menu
-----------------------------------------*/
.menu- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu {
  padding-left: 2.1rem;
  padding-right: 2.1rem;
}
.menu a {
  display: inline-block;
  color: inherit;
}
.menu a span {
  border-bottom: 1px solid transparent;
}
.menu a:hover {
  color: var(--menu-hover-color);
}
.menu a:hover span {
  border-bottom: 1px solid;
}
.menu.vertical-menu a {
  display: inline-block;
  color: var(--menu-vertical-color);
}
.menu.vertical-menu a:hover {
  color: var(--menu-vertical-hover-color);
}
.menu .heading-menu {
  pointer-events: none;
}
.menu .heading-menu &gt; span {
  display: block;
  color: var(--menu-heading-color);
  font-family: var(--menu-heading-font-family);
  font-size: var(--menu-heading-font-size);
  font-weight: var(--menu-heading-font-weight);  
  border-bottom-width: var(--menu-heading-border-bottom-width);
  border-bottom-style: var(--menu-heading-border-bottom-style);
  border-bottom-color: var(--menu-heading-border-bottom-color);
  padding: var(--menu-heading-padding);
  margin-bottom: var(--menu-heading-margin-bottom);
}
.menu .heading-menu-empty &gt; span {
  border-bottom-color: transparent;
}
.menu .heading-menu &gt; span &gt; a {
  pointer-events: none;
}
.menu .col-menu-heading .heading-menu &gt; span {
  color: var(--menu-col-menu-heading-color);
  font-family: var(--menu-col-menu-heading-font-family);
  font-size: var(--menu-col-menu-heading-font-size);
  font-weight: var(--menu-col-menu-heading-font-weight);
  border-bottom-width: var(--menu-col-menu-heading-border-bottom-width);
  border-bottom-style: var(--menu-col-menu-heading-border-bottom-style);
  border-bottom-color: var(--menu-col-menu-heading-border-bottom-color);
  padding: var(--menu-col-menu-heading-padding);
  margin-bottom: var(--menu-col-menu-heading-margin-bottom);
}
.menu.vertical-menu:not(.category-menu) .heading-menu &gt; span {
  display: block;
  color: var(--menu-vertical-heading-color);
  font-family: var(--menu-vertical-heading-font-family);
  font-size: var(--menu-vertical-heading-font-size);
  font-weight: var(--menu-vertical-heading-font-weight);  
  border-bottom-width: var(--menu-vertical-heading-border-bottom-width);
  border-bottom-style: var(--menu-vertical-heading-border-bottom-style);
  border-bottom-color: var(--menu-vertical-heading-border-bottom-color);
  padding: var(--menu-vertical-heading-padding);
  margin-bottom: var(--menu-vertical-heading-margin-bottom);
}
.menu.vertical-menu:not(.category-menu) &gt; .heading-menu &gt; span {
  padding-left: 1rem;
}
.menu.vertical-menu.category-menu .heading-menu &gt; span {
  padding-left: 1.5rem;
}

.menu.top-menu .submenu {
  background-color: var(--submenu-bg-color);
}
.menu .submenu {
  padding: 0;
}
.menu li {
  position: relative;
}
.menu li a {
  display: block;
  padding: 0.8rem 1rem 0.8rem 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start !important;
}
.menu.top-menu &gt; li .megamenu,
.menu.top-menu .submenu {
  font-family: var(--menu-font-family);
  border-color: var(--menu-border-color);
  border-style: var(--menu-border-style);
  border-top-width: var(--menu-border-top-width);
  border-right-width: var(--menu-border-right-width);
  border-bottom-width: var(--menu-border-bottom-width);
  border-left-width: var(--menu-border-left-width);
}
.menu.top-menu li .megamenu {
  background-color: var(--menu-bg-color);
}
.menu li &gt; ul,
.menu li .megamenu {
  position: absolute;
  top: -9999px;
  left: 100%;
  margin: 0;
  -webkit-box-shadow: var(--menu-box-shadow);
          box-shadow: var(--menu-box-shadow);
  z-index: 1001;
  visibility: hidden;
  opacity: 1;
  -webkit-transform: translate3d(0, -10px, 0);
          transform: translate3d(0, -10px, 0);
}

.menu li &gt; .submenu {
  padding-top: var(--submenu-padding-top);
  padding-right: var(--submenu-padding-right);
  padding-bottom: var(--submenu-padding-bottom);
  padding-left: var(--submenu-padding-left);
}
.menu li &gt; .submenu &gt; li {
  padding: 0;
}
.menu.vertical-menu li &gt; .submenu {
  padding-top: var(--submenu-padding-top);
  padding-right: var(--submenu-padding-right);
  padding-bottom: var(--submenu-padding-bottom);
  padding-left: var(--submenu-padding-left);
}
.menu li:hover &gt; .submenu,
.menu li:hover .megamenu,
.menu .show &gt; .submenu,
.menu .show .megamenu {
  visibility: visible;
  top: calc(-1 * var(--megamenu-col-padding-top));
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.menu.vertical-menu li:hover &gt; .submenu,
.menu.vertical-menu li:hover .megamenu,
.menu.vertical-menu li.show &gt; .submenu,
.menu.vertical-menu li.show .megamenu {
  top: 0px;
}
.menu.top-menu li:hover &gt; .submenu,
.menu.top-menu li:hover .megamenu,
.menu.top-menu li.show &gt; .submenu,
.menu.top-menu li.show .megamenu {
  top: -10px;
}
.menu.top-menu &gt; li:hover &gt; .submenu,
.menu.top-menu &gt; li:hover .megamenu,
.menu.top-menu &gt; li.show &gt; .submenu,
.menu.top-menu &gt; li.show .megamenu {
  top: inherit;
}
.menu.category-menu li:hover &gt; .submenu,
.menu.category-menu li:hover .megamenu,
.menu.category-menu li.show &gt; .submenu,
.menu.category-menu li.show .megamenu {
  top: -8px;
}
.menu.category-menu &gt; li:hover &gt; .submenu,
.menu.category-menu &gt; li:hover .megamenu,
.menu.category-menu &gt; li.show &gt; .submenu,
.menu.category-menu &gt; li.show .megamenu {
  top: -16px;
}
.menu.top-menu &gt; li {
  margin-right: var(--menu-top-li-margin-right);
}
.menu.top-menu &gt; li:last-child {
  margin-right: 0;
}
.menu &gt; li &gt; a {
  position: relative;
  padding-top: var(--menu-top-li-a-padding-top);
  padding-right: var(--menu-top-li-a-padding-right);
  padding-bottom: var(--menu-top-li-a-padding-bottom);
  padding-left: var(--menu-top-li-a-padding-left);
}
  .menu &gt; li &gt; a.menu-icon__home {
    font-size: calc(var(--menu-top-font-size) + 0.5rem);
    padding-top: var(--menu-top-li-a-icon-home-padding-top);
    padding-right: var(--menu-top-li-a-icon-home-padding-right);
    padding-bottom: var(--menu-top-li-a-icon-home-padding-bottom);
    padding-left: var(--menu-top-li-a-icon-home-padding-left);
  }
.header-wrapper.sticky-content.fixed.fix-top .header-top .menu &gt; li &gt; a,
.header-wrapper.sticky-content.fixed.fix-top .header-middle .menu &gt; li &gt; a,
.header-top.sticky-content.fixed.fix-top .menu &gt; li &gt; a
.header-middle.sticky-content.fixed.fix-top .menu &gt; li &gt; a {
  padding-top: var(--menu-top-sticky-li-a-padding-top);
  padding-right: var(--menu-top-sticky-li-a-padding-right);
  padding-bottom: var(--menu-top-sticky-li-a-padding-bottom);
  padding-left: var(--menu-top-sticky-li-a-padding-left);
}
.menu &gt; li &gt; a::after {
  margin-left: 0.6rem;
}
.menu &gt; li &gt; .submenu,
.menu &gt; li .megamenu {
  left: 0;
  right: 0;
}
.menu li.active &gt; a:not(.menu-heading),
.menu li.active:hover &gt; a:not(.menu-heading) {
  color: var(--menu-active-color);
}
.menu li.active &gt; a:not(.menu-heading) {
  font-weight: var(--menu-active-font-weight);
}
.menu &gt; li:hover &gt; .submenu,
.menu &gt; li:hover .megamenu, .menu &gt; li.show &gt; .submenu,
.menu &gt; li.show .megamenu {
  top: 100%;
}
.menu .has-submenu &gt; a {
  display: block;
  position: relative;
}
.menu &gt; .has-submenu &gt; a::after {
  margin-top: 1px;
  right: -15px;
}
.menu.no-arrow &gt; li &gt; a::after {
  content: none;
}

.menu .megamenu ul:not(.submenu) {
  position: static;
  -webkit-box-shadow: none;
          box-shadow: none;
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
  transform: none;	
}

.menu.category-menu .megamenu ul:not(.submenu) {
  visibility: hidden;
}

.menu.category-menu li:hover .megamenu ul:not(.submenu) {
  visibility: visible;
}

.menu-underline &gt; li:not(.home) &gt; a::before {
  content: "";
  position: absolute;
  left: 0;
  margin-top: calc(var(--menu-top-font-size) + 0.6rem);
  width: 100%;
  border-top: var(--menu-top-menu-underline-border-top) solid;
  border-color: inherit;
  -webkit-transform-origin: var(--menu-top-after-transform-origin);
          transform-origin: var(--menu-top-after-transform-origin);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.menu-underline &gt; li:hover &gt; a::before, .menu-underline &gt; li.active &gt; a::before {
  -webkit-transform-origin: var(--menu-top-menu-underline-after-hover-transform-origin);
          transform-origin: var(--menu-top-menu-underline-after-hover-transform-origin);
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.menu .has-submenu &gt; a::after {
  position: absolute;
  display: inline-block;
  right: 1rem;
  font-family: "elexio";
  font-size: 1.1rem;
  line-height: 0;
  font-weight: 600;
  color: inherit;
  content: "";
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.menu &gt; li &gt; ul .has-submenu &gt; a::after {
  top: 0.8rem;
  bottom: 0.8rem;
  line-height: 1.5rem;
}
.menu:not(.top-menu) .has-submenu &gt; a::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.8rem;
  top: var(--menu-vertical-li-a-padding-top);
  bottom: var(--menu-vertical-li-a-padding-bottom);
}

.menu[data-level="0"] &gt; .has-submenu &gt; a::after {
  top: 50%;
}
.menu.vertical-menu[data-level="0"] &gt; .has-submenu &gt; a::after {

}

.has-submenu:hover &gt; a::after {
  right: 0.5rem;
}

.menu.top-menu &gt; .has-submenu &gt; a::after {
  content: "";
  right: inherit;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.menu.top-menu &gt; .has-submenu:hover &gt; a::after {
  -webkit-transform: translate(0%, 0%) rotate(-90deg);
  transform: translate(0%, 0%) rotate(-90deg);
}

.menu.vertical-menu:not(.category-menu) .has-submenu &gt; a::after,
.menu.vertical-menu:not(.category-menu) .has-submenu:hover &gt; a::after {
  left: 1rem;
}

.menu.vertical-menu:not(.category-menu) &gt; .has-submenu &gt; a::after,
.menu.vertical-menu:not(.category-menu) &gt; .has-submenu:hover &gt; a::after {
  content: "";
}

/* Mega Menu */
.megamenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.megamenu &gt; li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0;
}
.megamenu &gt; li.row:last-child {
  padding: 0 2rem 2rem 0;
}
.megamenu ul {
  padding: 0;
}
.megamenu ul:last-child {
}

.megamenu-sm {
  min-width: 40rem;
}

/* Menu Baner */
.megamenu .menu-banner {
  height: calc(100% + 2.7rem);
  margin: -2.7rem -1rem 0;
  overflow: hidden;
}
.megamenu .menu-banner figure {
  height: 100%;
}
.megamenu .menu-banner img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.megamenu .menu-banner .btn:not(.btn-outline) {
  padding: 0;
  letter-spacing: 0.005em;
}

.menu-banner1 .banner-content {
  left: 10%;
  bottom: 5%;
}
.menu-banner1 .banner-subtitle {
  font-size: 7.187rem;
  letter-spacing: -0.05em;
  -webkit-transform: rotateZ(-90deg) translate(2%, -50%);
          transform: rotateZ(-90deg) translate(2%, -50%);
  margin-bottom: 35px;
}
.menu-banner1 .banner-title {
  position: relative;
  margin-bottom: 1.1rem;
  font-size: 2.4rem;
  letter-spacing: -0.05em;
  line-height: 1.3;
}
.menu-banner1 .banner-title span {
  display: block;
  font-size: 2.6rem;
  color: #547ca5;
}

.menu-banner2 .banner-content {
  top: 8%;
  left: 12.7%;
}
.menu-banner2 .banner-price-info {
  font-weight: 500;
}
.menu-banner2 .banner-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

.menu-banner3 .banner-content {
  bottom: 2.8rem;
  left: 12.8%;
}
.menu-banner3 .banner-subtitle {
  font-size: 1.6rem;
}
.menu-banner3 .banner-title {
  margin-bottom: 0.1rem;
  font-size: 2.4rem;
  line-height: 1.25;
}
.menu-banner3 .banner-price-info {
  margin-bottom: 2.3rem;
  font-size: 2rem;
}

.menu-banner4 .banner-content {
  top: 6.9%;
  left: 12.7%;
}
.menu-banner4 .banner-subtitle {
  margin-bottom: 1.1rem;
  font-size: 1.4rem;
  color: #ccc;
}
.menu-banner4 .banner-title {
  margin-bottom: 0.3rem;
  font-size: 2.2rem;
  line-height: 1.1;
}
.menu-banner4 .banner-price-info {
  margin-bottom: 1.6rem;
  font-size: 2.2rem;
}
.menu-banner4 .btn-outline {
  padding: 0.75em 1.45em;
  letter-spacing: 0;
}
.menu-banner4 .btn-outline:hover, .menu-banner4 .btn-outline:active, .menu-banner4 .btn-outline:focus {
  color: #336699;
  background-color: #fff;
  border-color: #fff;
}

.menu-banner5 .banner-content {
  margin-top: -0.2rem;
  left: 2rem;
}
.menu-banner5 .banner-content.text-right {
  right: 2rem;
}
.menu-banner5 .banner-subtitle {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.menu-banner5 .banner-title {
  margin-bottom: 1.4rem;
  font-size: 2rem;
}
.menu-banner5 .banner-price-info {
  font-size: 1.3rem;
}

.tip {
  display: inline-block;
  position: relative;
  top: -1px;
  left: 7px;
  padding: 0.3rem 0.5rem 0.2rem;
  border-radius: 0.2rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
.tip.tip-new {
  background-color: #336699;
}
.tip.tip-hot {
  background-color: #ff9742;
}

.mobile-menu-widgets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1.5rem;
  padding-right: calc(var(--mobile-menu-padding-right) + var(--mobile-menu-li-padding-right) - var(--mobile-menu-li-padding-right));
  padding-bottom: 0;
  padding-left: calc(var(--mobile-menu-padding-left) + var(--mobile-menu-li-padding-left));
}
  .mobile-menu-compact .mobile-menu-widgets {
    padding-right: var(--mobile-menu-padding-right);
    padding-left: var(--mobile-menu-padding-left);
  }
.mobile-menu-widgets li:first-child {
  -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.mobile-menu-widgets li:not(:last-child) {
  -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  margin-right: 2.0rem;
}
.mobile-menu-widgets li.mobile-menu-widgets__lang_switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;	
}
.mobile-menu-widgets li.mobile-menu-widgets__account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;	
}
.mobile-menu-widgets li.mobile-menu-widgets__wishlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;	
}
.mobile-menu-widgets li .mijn-account {
  font-size: 2.8rem;
  color: inherit;
}
.mobile-menu-widgets li .wishlist {
  font-size: 2.8rem;
  color: inherit;
}

.mobile-menu-wrapper {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2400;
  -webkit-transition: visibility 0.4s;
  transition: visibility 0.4s;
}

.mobile-menu-container {
  max-width: 296px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: var(--mobile-menu-bg-color);
  -webkit-box-shadow: 1px 0 5px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 0 5px rgba(0, 0, 0, 0.5);
  -webkit-transform: translateX(-296px);
          transform: translateX(-296px);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.mobile-menu-container .input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile-menu-container .input-wrapper .form-control {
  min-height: 4rem;
  padding-top: 0.9rem;
  padding-bottom: 0.8rem;
  color: #777;
  border: 1px solid;
  border-color: #333;
  border-right: 0;
  background-color: transparent;
  font-size: 1.2rem;
  border-radius: 0.3rem 0 0 0.3rem;
}
.mobile-menu-container .input-wrapper .btn-search {
  padding: 0;
  min-width: 4.8rem;
  background-color: transparent;
  color: #fff;
  font-size: 2rem;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  border: 1px solid #333;
  border-left: 0;
  border-radius: 0 0.3rem 0.3rem 0;
}
.mobile-menu-container .input-wrapper .btn-search i {
  margin: 0 0 0.4rem 0;
}
.mobile-menu-container .mobile-menu {
  margin-top: 0.4rem;
  margin-bottom: 0.5rem;
}
.mobile-menu-wrapper__widgets.mobile-menu-wrapper__widgets-lang-switch .mobile-menu-container .mobile-menu {
  margin-top: 2.4rem;
}
.mobile-menu-container .tab-content {
  background-color: transparent;
}
.mobile-menu-container .nav {
  border: none;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.mobile-menu-container .nav .nav-item {
  margin: 0;
  width: 50%;
}
.mobile-menu-container .nav-link {
  margin-bottom: -2px;
  padding: 1rem;
  font-size: 1.3rem;
  color: #fff;
  border-bottom: 2px solid;
}
.mobile-menu-container .nav-item.show .nav-link,
.mobile-menu-container .nav-item .nav-link.active {
  color: #336699;
  border-color: #336699;
}
.mobile-menu-container.scrollable::-webkit-scrollbar-thumb, .mobile-menu-container .sidebar-content::-webkit-scrollbar-thumb {
  margin-right: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  cursor: pointer;
}
.mobile-menu-container .tab-pane {
  font-size: var(--mobile-menu-font-size);
  font-weight: 400;
  color: var(--mobile-menu-color);
}

.mobile-menu {
  color: var(--mobile-menu-color);
  font-size: var(--mobile-menu-font-size);
  font-weight: var(--mobile-menu-font-weight);
  letter-spacing: var(--mobile-menu-letter-spacing);
  text-transform: var(--mobile-menu-text-transform);
  line-height: 1.5;
}
.mobile-menu {
  padding-top: var(--mobile-menu-padding-top);
  padding-right: var(--mobile-menu-padding-right);
  padding-bottom: var(--mobile-menu-padding-bottom);
  padding-left: var(--mobile-menu-padding-left);
}
.mobile-menu-compact .mobile-menu {
  padding: 0px;
}
.mobile-menu-slide .mobile-menu {
  padding: 0px;
}
.mobile-menu li &gt; ul {
  width: 100%;
}
.mobile-menu:not(.mobile-menu-slide) li &gt; ul {
  display: none;
}
.mobile-menu li {
  position: relative;
}
.mobile-menu &gt; li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile-menu &gt; li a svg {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  stroke: #fff;
  fill: #fff;
  vertical-align: middle;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.mobile-menu &gt; li:hover svg, .mobile-menu &gt; li.active svg {
  stroke: #f93;
  fill: #f93;
}
.mobile-menu &gt; li:last-child {
  padding-bottom: 0.5rem;
}
.mobile-menu-default .mobile-menu &gt; li {
  border-bottom-width: var(--mobile-menu-li-border-bottom-width);
  border-bottom-style: var(--mobile-menu-li-border-bottom-style);
  border-bottom-color: var(--mobile-menu-li-border-bottom-color);
}
.mobile-menu-compact .mobile-menu &gt; li {
  border-bottom-width: var(--mobile-menu-li-border-bottom-width);
  border-bottom-style: var(--mobile-menu-li-border-bottom-style);
  border-bottom-color: var(--mobile-menu-li-border-bottom-color);
}
.mobile-menu-slide .mobile-menu &gt; li,
.mobile-menu-slide .mobile-menu .active.show &gt; ul &gt; li &gt; ul &gt; li {
  border-bottom-width: var(--mobile-menu-li-border-bottom-width);
  border-bottom-style: var(--mobile-menu-li-border-bottom-style);
  border-bottom-color: var(--mobile-menu-li-border-bottom-color);
}
.mobile-menu li.heading-menu span {
  display: block;
  padding: 1.3rem 0.6rem 1.3rem 1rem;
  font-weight: 600;
  pointer-events: none;
}
.mobile-menu-slide .mobile-menu li.heading-menu span {
  padding: 1.3rem 0.6rem 1.3rem 2rem;
}
.mobile-menu li a {
  display: block;
  position: relative;
  padding-top: var(--mobile-menu-li-padding-top);
  padding-right: var(--mobile-menu-li-padding-right);
  padding-bottom: var(--mobile-menu-li-padding-bottom);
  padding-left: var(--mobile-menu-li-padding-left);
  color: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.mobile-menu-compact .mobile-menu li a {
  padding-left: 2rem;
  padding-right: 3rem;
}
.mobile-menu-compact .mobile-menu ul[data-level="1"] li a,
.mobile-menu-compact .mobile-menu ul[data-level="2"] li a,
.mobile-menu-compact .mobile-menu ul[data-level="3"] li a,
.mobile-menu-compact .mobile-menu ul[data-level="4"] li a,
.mobile-menu-compact .mobile-menu ul[data-level="5"] li a,
.mobile-menu-compact .mobile-menu ul[data-level="6"] li a {
  padding-left: 1rem;
}
.mobile-menu-slide .mobile-menu li a {
  padding-left: 2rem;
  padding-right: 3rem;
}
.mobile-menu li i {
  display: inline-block;
  margin-top: -0.3rem;
  margin-right: 1rem;
  font-size: 1.8rem;
  line-height: 0;
  vertical-align: middle;
}
.mobile-menu li.active &gt; a {
  color: var(--mobile-menu-active-color);
  font-weight: var(--mobile-menu-active-font-weight);
}
.mobile-menu-compact .mobile-menu &gt; li.active &gt; a {
  background: var(--mobile-menu-active-show-bg-color); 
  color: var(--mobile-menu-active-show-color);
}
.mobile-menu-slide .mobile-menu li.active &gt; a {
  background: var(--mobile-menu-active-show-bg-color); 
  color: var(--mobile-menu-active-show-color);
}
.mobile-menu-slide .mobile-menu li.active.show &gt; a {
  background: var(--mobile-menu-active-show-bg-color);
  color: var(--mobile-menu-active-show-color);
  font-size: var(--mobile-menu-active-show-font-size);
  font-weight: var(--mobile-menu-active-show-font-weight);
}
.mobile-menu-slide .mobile-menu .active.show &gt; span.toggle-btn::before {
  color: var(--mobile-menu-active-show-color);
  font-size: calc(var(--mobile-menu-active-show-font-weight) + 1rem);
}

.mobile-menu-slide .mobile-menu ul {
  background: var(--mobile-menu-bg-color);
}

.mobile-menu-slide .mobile-menu.active-ul,
.mobile-menu-slide .mobile-menu ul.active-ul {
  margin-top: 4.8rem;	
}

.mobile-menu-slide .mobile-menu ul[data-level="1"],
.mobile-menu-slide .mobile-menu ul[data-level="2"],
.mobile-menu-slide .mobile-menu ul[data-level="3"],
.mobile-menu-slide .mobile-menu ul[data-level="4"],
.mobile-menu-slide .mobile-menu ul[data-level="5"],
.mobile-menu-slide .mobile-menu ul[data-level="6"] {
  position: fixed;
  top: 5.8rem;	
  left: -360px;
  height: 100%;
  z-index: 1;
		
  -webkit-transition: left .5s ease;
  -moz-transition: left .5s ease;
  -ms-transition: left .5s ease;
  -o-transition: left .5s ease;
  transition: left .5s ease;
}
.mobile-menu-slide .mobile-menu .active.show &gt; ul {
  position: fixed;
  top: 5.8rem;
  right: 0;
  bottom: 0px;
  left: 0px;
  padding-bottom: 60px;
  padding-left: 0px;
  height: 100%;
  overflow-y: auto;
  z-index: 2;
	
  -webkit-transition: left .5s ease;
  -moz-transition: left .5s ease;
  -ms-transition: left .5s ease;
  -o-transition: left .5s ease;
  transition: left .5s ease;				
}
.mobile-menu-slide .mobile-menu .active.show &gt; ul &gt; li &gt; ul {
}
.mobile-menu-slide .mobile-menu .active.show &gt; a {
  position: fixed;
  top: 1.3rem;
  left: 0;
  right: 0;
  bottom: 0;	
}
.mobile-menu-slide .mobile-menu .active.show &gt; span.toggle-btn {
  position: fixed;
  top: 3.6rem;
  right: 1.5rem;
}
.mobile-menu-slide .mobile-menu .active.show &gt; a &gt; span[data-count-products]::after {
  content: "";	
  background-color: transparent;
  padding: 0;
}

  .mobile-menu-wrapper__widgets .mobile-menu-slide .mobile-menu .active.show &gt; ul {
    top: 9.8rem;
  }
  .mobile-menu-wrapper__widgets .mobile-menu-slide .mobile-menu .active.show &gt; a {
    top: 5.6rem;
    text-align: var(--mobile-menu-slide-active-show-text-align);
  }
  .mobile-menu-wrapper__widgets .mobile-menu-slide .mobile-menu .active.show &gt; span.toggle-btn {
    top: 6.9rem;
  }

.mobile-menu-heading {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.mobile-menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: #000;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.mobile-menu-close {
  position: fixed;
  left: calc(100vw - 6rem);
  top: 25px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 1;
}
.mobile-menu-close i {
  font-size: 2.8rem;
  color: #e1e1e1;
}

.mobile-menu ul[data-level="1"],
.mobile-menu ul[data-level="2"],
.mobile-menu ul[data-level="3"],
.mobile-menu ul[data-level="4"],
.mobile-menu ul[data-level="5"],
.mobile-menu ul[data-level="6"] {
  padding-left: 12px;
}
.mobile-menu-compact .mobile-menu ul[data-level="1"],
.mobile-menu-compact .mobile-menu ul[data-level="2"],
.mobile-menu-compact .mobile-menu ul[data-level="3"],
.mobile-menu-compact .mobile-menu ul[data-level="4"],
.mobile-menu-compact .mobile-menu ul[data-level="5"],
.mobile-menu-compact .mobile-menu ul[data-level="6"] {
  padding-left: 22px;
}
.mobile-menu ul[data-level="1"] &gt; li,
.mobile-menu ul[data-level="2"] &gt; li,
.mobile-menu ul[data-level="3"] &gt; li,
.mobile-menu ul[data-level="4"] &gt; li,
.mobile-menu ul[data-level="5"] &gt; li,
.mobile-menu ul[data-level="6"] &gt; li {
  margin: 5px 0px;
}
.mobile-menu-dtree .mobile-menu ul[data-level="1"] &gt; li,
.mobile-menu-dtree .mobile-menu ul[data-level="2"] &gt; li,
.mobile-menu-dtree .mobile-menu ul[data-level="3"] &gt; li,
.mobile-menu-dtree .mobile-menu ul[data-level="4"] &gt; li,
.mobile-menu-dtree .mobile-menu ul[data-level="5"] &gt; li,
.mobile-menu-dtree .mobile-menu ul[data-level="6"] &gt; li {
  border-left-width: var(--mobile-menu-ul-border-left-width);
  border-left-style: var(--mobile-menu-ul-border-left-style);
  border-left-color: var(--mobile-menu-ul-border-left-color);
}
.mobile-menu-compact .mobile-menu ul[data-level="1"] &gt; li,
.mobile-menu-compact .mobile-menu ul[data-level="2"] &gt; li,
.mobile-menu-compact .mobile-menu ul[data-level="3"] &gt; li,
.mobile-menu-compact .mobile-menu ul[data-level="4"] &gt; li,
.mobile-menu-compact .mobile-menu ul[data-level="5"] &gt; li,
.mobile-menu-compact .mobile-menu ul[data-level="6"] &gt; li {
  border-left-width: var(--mobile-menu-ul-border-left-width);
  border-left-style: var(--mobile-menu-ul-border-left-style);
  border-left-color: var(--mobile-menu-ul-border-left-color);
}

.mmenu-active {
  overflow: hidden;
}
.mmenu-active .mmenu-anim &gt; li, .mmenu-active .mmenu-anim {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.mmenu-active .page-wrapper {
  margin-left: 296px;
  margin-right: -296px;
}
.mmenu-active .mobile-menu-wrapper {
  visibility: visible;
}
.mmenu-active .mobile-menu-container {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mmenu-active .mobile-menu-overlay {
  opacity: 0.5;
}
.mmenu-active .mobile-menu-close {
  opacity: 1;
}

span.toggle-btn {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  top: var(--menu-vertical-li-a-padding-top);
  right: 0;
  bottom: var(--menu-vertical-li-a-padding-bottom);
  line-height: 1.8rem;
  color: var(--menu-toggle-btn-color);
  cursor: pointer;
}
  .mobile-menu span.toggle-btn {
     top: var(--mobile-menu-li-padding-top);
     bottom: var(--mobile-menu-li-padding-bottom);
  }
span.toggle-btn:hover {
  color: var(--menu-toggle-btn-hover-color);
}
  .mobile-menu span.toggle-btn:hover {
    color: var(--menu-mobile-toggle-btn-color);
  }
span.toggle-btn::before {
  content: "";
  display: block;
  font-size: var(--menu-vertical-font-size);
  font-weight: 600;
  font-family: "elexio";
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
  .mobile-menu-slide .mobile-menu span.toggle-btn::before {
    content: "";
  }
.show &gt; span.toggle-btn::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
span.toggle-btn.toggle-plus-minus::before {
  content: "";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.show &gt; span.toggle-btn.toggle-plus-minus::before {
  content: "";
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.mobile-menu-slide .mobile-menu .active.show &gt; span.toggle-btn::before {
  content: "";
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.mobile-menu-compact .mobile-menu span.toggle-btn {
  right: 15px;
}
.mobile-menu-slide .mobile-menu span.toggle-btn {
  right: 15px;
}

.dtree-menu span.toggle-btn {
  left: 0px;
  right: unset;
  color: var(--menu-dtree-toggle-btn-color);
}


a.toggle {
  position: relative;
}

a.toggle-angle::after {
  position: absolute;
  content: "";
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "elexio";
  line-height: 1;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate(0%,0%) rotate(180deg);
  transform: translate(0%,0%) rotate(180deg);
  right: -20px;
  top: 3px;
}

a.open.toggle-angle::after {
  content: "";
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 3px;
}

a.toggle-plus-minus::after {
  position: absolute;
  content: "";
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "elexio";
  line-height: 1;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate(0%,0%) rotate(180deg);
  transform: translate(0%,0%) rotate(180deg);
  right: -20px;
  top: 2px;
}
a.open.toggle-plus-minus::after {
  content: "";
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 1px;
}

a.toggle-plus-minus-left {
  left: 20px;
}
a.toggle-plus-minus-left::after {
  right: unset;
  left: -20px;
}

a.toggle-block {
  display: block;
}

a.toggle-block::after {
  right: 0;
}

/* Category Menu */
.category-menu {
}
.category-menu i {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  margin-right: 0.7rem;
  font-size: 1.7rem;
  width: 1.7rem;
}
.category-menu &gt; li &gt; a {
}
.category-menu &gt; li &gt; a::before {
  content: none;
}

.category-menu li:hover &gt; a:not(.menu-heading) i {
  color: inherit;
}
.category-menu &gt; .has-submenu:hover &gt; a::after {
  right: 0.5rem;
}
.category-menu .megamenu .divider {
  border: 1px solid #eeeeee;
  border-bottom: 0px;
  margin: 0.5rem 0 2rem;
}

.category-menu .megamenu.type2 {
  display: block;
}
.category-menu .megamenu.type2 figure {
  text-align: center;
}

/* Vertical Menu */
.vertical-menu {
  display: block;
  min-width: 24rem;
}
.vertical-menu i.e-icon-electronics, .vertical-menu i.e-icon-furniture {
  font-size: 1.5rem;
  text-align: center;
}
.vertical-menu &gt; li {
  margin-right: 0;
  padding: 0;
}
.vertical-menu &gt; li &gt; ul,
.vertical-menu &gt; li .megamenu {
  -webkit-transform: translate3d(-15px, 0, 0);
          transform: translate3d(-15px, 0, 0);
}
.vertical-menu &gt; li &gt; a {
  display: block;
}
.vertical-menu &gt; li &gt; a::after {
  content: none;
}
.vertical-menu &gt; li:hover &gt; ul,
.vertical-menu &gt; li:hover .megamenu, .vertical-menu &gt; li.active &gt; ul,
.vertical-menu &gt; li.active .megamenu {
  left: 100%;
  top: 0rem;
}
.vertical-menu &gt; li:first-child:hover &gt; ul,
.vertical-menu &gt; li:first-child:hover .megamenu, .vertical-menu &gt; li:first-child.active &gt; ul,
.vertical-menu &gt; li:first-child.active .megamenu {
  top: -1rem;
}
.vertical-menu &gt; .has-submenu &gt; a::after {
  content: "";
  position: absolute;
  right: 1rem;
  line-height: 0;
  font-weight: 600;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

.dtree-menu:not(.category-menu) li &gt; a::before {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: "elexio";
  content: "";
  top: var(--menu-vertical-li-a-padding-top);
  bottom: var(--menu-vertical-li-a-padding-bottom);
  left: 5px;
  color: var(--menu-dtree-li-a-color-before);
  line-height: 1.8rem;
}
.dtree-menu:not(.category-menu) .has-submenu &gt; a::after,
.dtree-menu:not(.category-menu) .has-submenu:hover &gt; a::after {
  content: "";
}

.vertical-menu li.has-submenu &gt; a:before {
  content: none;
}

/* Horizontal Menu */
.horizontal-menu {
  width: 100%;
  padding: 1rem 3.2rem;
  background-color: #333;
  border-radius: 0.5rem;
  color: #fff;
  overflow-x: auto;
}
.horizontal-menu &gt; li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 3.05rem;
  text-align: center;
}
.horizontal-menu &gt; li:not(:last-child) &gt; a {
  border-bottom: none;
}
.horizontal-menu &gt; li &gt; a {
  padding: 0.8rem 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0;
}
.horizontal-menu &gt; li:hover i {
  -webkit-transform: translateY(-0.5rem);
          transform: translateY(-0.5rem);
}
.horizontal-menu &gt; li:last-child &gt; a i {
  margin: 0 0 0.9rem;
  font-size: 3rem;
  font-weight: 400;
}
.horizontal-menu i {
  display: block;
  width: auto;
  height: 3rem;
  margin: 0 0 0.9rem;
  font-size: 3rem;
  line-height: inherit;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.horizontal-menu::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
.horizontal-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

@media (min-width: 1100px) {
  .category-menu .megamenu.type2 {
    min-width: 88rem;
  }
}
@media (max-width: 1099px) {
  .main-nav .menu .megamenu {
    left: -18rem;
  }

  .category-menu .megamenu.type2 {
    min-width: 70rem;
  }
}
/* 7. Footer */
/*-------------------------------------
    Footer
        - Footer top
        - Footer middle
        - Footer bottom
        - Copyright
        - Widget newsletter
        - Sticky Footer
--------------------------------------*/
.footer {
  color: var(--footer-color);
  font-size: var(--footer-font-size);
  font-weight: var(--footer-font-weight);
  letter-spacing: var(--footer-letter-spacing);
  margin-top: var(--footer-margin-top);
}
@media(max-width: 897px){
  .footer {
    margin-top: var(--footer-mobile-margin-top);
  }
}
.footer.footer-bg {
  background-color: var(--footer-bg-color);
}
.footer a {
  color: var(--footer-link-color);
}
.footer a:hover, .footer a:active, .footer a.active {
  color: var(--footer-link-hover-color);
}

.footer p {
  font-size: inherit;
}

.footer .category-name {
  font-weight: 600;
  font-size: 1.4rem;
  color: #666;
  line-height: 1;
  letter-spacing: 0;
  padding-right: 2rem;
  margin-bottom: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer .category-box {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .category-box:not(:last-child) {
  margin-bottom: 1.4rem;
}
.footer .category-box a {
  font-weight: normal;
  font-size: 1.3rem;
  letter-spacing: 0;
  color: #666;
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
}
.footer .category-box a:hover, .footer .category-box a:active, .footer .category-box a:focus {
  color: #336699;
}
.footer .category-box a:last-child::before {
  width: 100%;
}
.footer .category-box a::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 13px;
  border-left: 1px solid #ccc;
  margin: 0px 0.9rem 0 1rem;
  vertical-align: bottom;
}
.footer .category-box a:last-child::after {
  content: none;
}

.logo-footer, .logo-footer img {
  display: block;
}

.newsletter-hor {
  padding: 1.8rem 0;
}
.newsletter-hor .icon-box-side {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.newsletter-hor .icon-box-title {
  margin-bottom: 0.2rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 600;
}
.newsletter-hor .icon-box-icon {
  margin-right: 2rem;
  margin-bottom: 0.4rem;
}
.newsletter-hor .icon-box-icon i {
  font-size: 4.7rem;
}
.newsletter-hor .icon-box-content p {
  line-height: 1.6;
}
.newsletter-hor .input-wrapper-inline {
  max-width: 100%;
}
.newsletter-hor .btn i {
  margin: -0.2rem 0 0 0.9rem;
  font-size: 1.6rem;
}
.newsletter-hor .btn-primary.btn-link {
  color: var(--footer-top-color);
}

.newsletter-hor .widget-newsletter-input {
  margin-right: 1rem;
}

.footer .footer-top .widget-newsletter-buttons .btn-primary.btn-link {
  color: var(--footer-top-color);
}

.footer .footer-middle .widget-newsletter-buttons .btn-primary.btn-link {
  color: var(--footer-middle-color);
}

.widget-newsletter-buttons .btn {
  padding: 0.93em 1.85em;
  white-space: inherit;
  overflow: inherit;
  text-overflow: inherit;
}
  .widget-newsletter-buttons .btn i {
    margin-left: 0.5rem;
  }
  .widget-newsletter-buttons .btn:hover i {
    -webkit-animation: navItemArrow 0.6s linear infinite;
    animation: navItemArrow 0.6s linear infinite;
  }

.footer .footer-top .row &gt; div.footer-spacer,
.footer .footer-middle .row &gt; div.footer-spacer,
.footer .footer-bottom .row &gt; div.footer-spacer {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 898px) {
  .footer .footer-top .row &gt; div.footer-border-line &gt; hr,
  .footer .footer-middle .row &gt; div.footer-border-line &gt; hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: 1px;
  }

  .footer .footer-top .row &gt; div:last-child &gt; hr,
  .footer .footer-middle .row &gt; div:last-child&gt; hr {
    margin-bottom: 0;
  }
}

.footer-top {
  color: var(--footer-top-color);
  border-color: var(--footer-top-border-color);
  border-style: var(--footer-top-border-style);
  border-top-width: var(--footer-top-border-top-width);
  border-right-width: var(--footer-top-border-right-width);
  border-bottom-width: var(--footer-top-border-bottom-width);
  border-left-width: var(--footer-top-border-left-width);
  padding-top: var(--footer-top-padding-top);
  padding-right: var(--footer-top-padding-right);
  padding-bottom: var(--footer-top-padding-bottom);
  padding-left: var(--footer-top-padding-left);
}
  .footer-top.footer-top-bg {
    background-color: var(--footer-top-bg-color);
  }
.footer-top a {
  color: var(--footer-top-link-color);
}
.footer-top a:hover, .footer-top a:active, .footer-top a.active {
  color: var(--footer-top-link-hover-color);
}

@media (min-width: 898px) {
  .footer-top .row &gt; div.footer-border-line &gt; hr {
    border-color: var(--footer-top-spacer-color);
    opacity: var(--footer-top-spacer-opacity);
  }
}

.footer-middle {
  color: var(--footer-middle-color);
  font-size: var(--footer-middle-font-size);
  font-weight: var(--footer-middle-font-weight);
  letter-spacing: var(--footer-middle-letter-spacing);
  border-color: var(--footer-middle-border-color);
  border-top-color: var(--footer-middle-border-top-color);
  border-bottom-color: var(--footer-middle-border-bottom-color);
  border-style: var(--footer-middle-border-style);
  border-top-width: var(--footer-middle-border-top-width);
  border-right-width: var(--footer-middle-border-right-width);
  border-bottom-width: var(--footer-middle-border-bottom-width);
  border-left-width: var(--footer-middle-border-left-width);
  padding-top: var(--footer-middle-padding-top);
  padding-right: var(--footer-middle-padding-right);
  padding-bottom: var(--footer-middle-padding-bottom);
  padding-left: var(--footer-middle-padding-left);
}
.footer-middle.footer-middle-bg {
  background-color: var(--footer-middle-bg-color);
}
.footer-middle a {
  color: var(--footer-middle-link-color);
}
.footer-middle a:hover, .footer-middle a:active, .footer-middle a.active {
  color: var(--footer-middle-link-hover-color);
}
  .footer-middle ul {

  }
  .footer-middle ul li {
    color: var(--footer-middle-ul-li-color);
  }
  .footer-middle ul li:hover {
    color: var(--footer-middle-ul-li-color-hover);
  }
  .footer-middle ul li a {
    color: inherit;
  }
  .footer-middle ul li a:hover {
    color: inherit;
  }

@media (min-width: 898px) {
  .footer-middle .row &gt; div {
    border-color: var(--footer-bottom-box-border-color);
    border-style: var(--footer-bottom-box-border-style);
    border-top-width: 0px;
    border-right-width: var(--footer-bottom-box-border-right-width);
    border-bottom-width: 0px;
    border-left-width: 0px;
  }
  .footer-middle .row &gt; div.no-b {
    border-right: none;
  }
  .footer-middle .row &gt; div:last-child {
    border-right: none;
  }
  .footer-middle .row &gt; div.footer-border-line &gt; hr {
    border-color: var(--footer-middle-spacer-color);
    opacity: var(--footer-middle-spacer-opacity);
  }
}

.footer-bottom {
  color: var(--footer-bottom-color);
  font-size: var(--footer-bottom-font-size);
  font-weight: var(--footer-bottom-font-weight);
  letter-spacing: var(--footer-bottom-letter-spacing);
  border-color: var(--footer-bottom-border-color);
  border-style: var(--footer-bottom-border-style);
  border-top-width: var(--footer-bottom-border-top-width);
  border-right-width: var(--footer-bottom-border-right-width);
  border-bottom-width: var(--footer-bottom-border-bottom-width);
  border-left-width: var(--footer-bottom-border-left-width);
  padding-top: var(--footer-bottom-padding-top);
  padding-right: var(--footer-bottom-padding-right);
  padding-bottom: var(--footer-bottom-padding-bottom);
  padding-left: var(--footer-bottom-padding-left);
}
.footer-bottom.footer-bottom-bg {
  background-color: var(--footer-bottom-bg-color);
}
.footer-bottom a {
  color: var(--footer-bottom-link-color);
}
.footer-bottom a:hover, .footer-bottom a:active, .footer-bottom a.active {
  color: var(--footer-bottom-link-hover-color);
} 
.footer-bottom .footer-copyright-shop-info,
.footer-bottom .footer-elexioshop-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-bottom .footer-copyright-shop-info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
  .footer-bottom .footer-copyright-shop-info .footer-copyright-shop-info__wrapper {

  }
     .footer-bottom .footer-copyright-shop-info .footer-copyright-shop-info__wrapper .copyright-info {
	display: inline-block;
     }
  .footer-bottom .footer-copyright-shop-info div.footer-copyright-shop-info__wrapper:last-child {
     margin-top: 0.3rem;
  }
.footer-bottom .footer-elexioshop-info {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer-bottom .footer-elexioshop-info a,
.footer-bottom .footer-elexioshop-info a:hover {
  color: var(--footer-bottom-color) !important;
}

.footer-bottom .footer-bar_top,
.footer-bottom .footer-bar_middle,
.footer-bottom .footer-bar_bottom {
  position: relative;
}

.footer-bottom .footer-bar_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
  border-color: var(--footer-bar_top-border-color);
  border-style: var(--footer-bar-top-border-style);
  border-top-width: var(--footer-bar-top-border-top-width);
  border-right-width: var(--footer-bar-top-border-right-width);
  border-bottom-width: var(--footer-bar-top-border-bottom-width);
  border-left-width: var(--footer-bar-top-border-left-width);
}
.footer-bottom .footer-bar_middle {
  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: 1rem 0;
  border-color: var(--footer-bar-middle-border-color);
  border-style: var(--footer-bar-middle-border-style);
  border-top-width: var(--footer-bar-middle-border-top-width);
  border-right-width: var(--footer-bar-middle-border-right-width);
  border-bottom-width: var(--footer-bar-middle-border-bottom-width);
  border-left-width: var(--footer-bar-middle-border-left-width);
}
  .footer-bottom .footer-bar_middle.text-center {
    -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
        -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer-bottom .footer-bar_middle.text-center .footer-copyright-shop-info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .footer-bottom .footer-bar_middle.text-center .footer-elexioshop-info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1rem;
  }
.footer-bottom .footer-bar_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
  border-color: var(--footer-bar-bottom-border-color);
  border-style: var(--footer-bar-bottom-border-style);
  border-top-width: var(--footer-bar-bottom-border-top-width);
  border-right-width: var(--footer-bar-bottom-border-right-width);
  border-bottom-width: var(--footer-bar-bottom-border-bottom-width);
  border-left-width: var(--footer-bar-bottom-border-left-width);
}
@media (max-width: 897px) {
  .footer-bottom .footer-bar_middle {
    -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
        -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding: 0px;
  }
}

.footer .heading-wrapper {
  background-color: var(--footer-heading-bg-color);
  margin-bottom: var(--footer-heading-margin-bottom);
  flex-direction: var(--footer-heading-flex-direction); 
  -webkit-box-pack: var(--footer-heading-justify-content);
      -ms-flex-pack: var(--footer-heading-justify-content);
          justify-content: var(--footer-heading-justify-content);
}
.footer .heading-wrapper .heading-title {
  display: flex;
  background-color: var(--footer-heading-title-bg-color);
  text-transform: var(--footer-heading-title-text-transform);
  letter-spacing: var(--footer-heading-title-letter-spacing);
  font-weight: var(--footer-heading-title-font-weight);
  margin: var(--footer-heading-title-margin);
  padding-top: var(--footer-heading-title-padding-top);
  padding-right: var(--footer-heading-title-padding-right);
  padding-bottom: var(--footer-heading-title-padding-bottom);
  padding-left: var(--footer-heading-title-padding-left);
}
  .footer .heading-wrapper::before {
    background-color: transparent;
  }
  .footer .heading-wrapper .heading-title::before {
    background-color: var(--footer-heading-title-before-bg-color);
    height: var(--footer-heading-title-before-height);
  }

.footer .widget.widget-collapsible .heading-wrapper {
  cursor: pointer;
}
.footer .widget.widget-collapsible .widget-item &gt; .widget-wrapper {
  display: none;
}
.footer .widget.widget-collapsible .widget-item {
  border-bottom-width: var(--footer-widget-collapsible-border-bottom-width);
  border-bottom-style: var(--footer-widget-collapsible-border-bottom-style);
  border-bottom-color: var(--footer-widget-collapsible-border-bottom-color);
}
.footer .widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media (max-width: 897px) {
  .footer .widget {
     height: inherit;
     margin-bottom: 1.5rem;
  }
}

.footer .widget .widget-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
    height: 100%;
}

@media (max-width: 897px) {
  .footer .widget .widget-item {
    height: inherit;
  }
}

.footer .widget .widget-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 898px) {
  .footer .widget .widget-wrapper {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.footer .widget .widget-body {
  padding: 0;
}
@media (max-width: 897px) {
  .footer .widget .widget-body {
    padding-bottom: 1.5rem;
  }
}
.footer .widget .widget-body &gt; div {
  margin-bottom: 1rem;
}
.footer .widget .widget-body &gt; div:last-child {
  margin-bottom: 0rem;
}

.footer .widget .widget-body .widget-box {
  margin-bottom: 1rem;
}
  .footer .widget .widget-body .widget-box:last-child {
    margin-bottom: 0;
  }
.footer .widget .widget-body .widget-box.widget-box-single {
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.footer .widget .widget-body .widget-box.widget-box-half {
  max-width: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
.footer .widget .widget-body .widget-box.widget-box-hor {
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.footer .widget .widget-body .widget-box {

}
.footer .widget .widget-body .widget-content {
  line-height: var(--footer-widget-content-line-height);
}
.footer .widget .widget-body ul li {
  line-height: 1.2;
  padding: 0.4rem 0;
}
  .footer .widget .widget-body ul.verzending-betaling-icons li {
    padding-top: 0;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 0;
  }
.footer .widget .widget-body ul li a {
  color: inherit;
}
.footer .widget .widget-body ul li a:hover {
  border-bottom: 1px solid;
}
.footer .widget .widget-body .menu-item li {
  color: var(--footer-widget-menu-item-li-color);
  font-size: var(--footer-widget-menu-item-li-font-size);
  font-weight: var(--footer-widget-menu-item-li-font-weight);
  text-transform: var(--footer-widget-menu-item-li-text-transform);
  letter-spacing: var(--footer-widget-menu-item-li-letter-spacing);
  padding: var(--footer-widget-menu-item-li-padding);
}
.footer .widget .widget-body .menu-item li:hover {
  color: var(--footer-widget-menu-item-li-color-hover);
}
.footer .widget .widget-body .menu-item li a {
  border-bottom-width: var(--footer-widget-menu-item-li-a-border-bottom);
}

@media (max-width: 897px) {
  .footer .widget .widget-body .menu-item li {
    padding: var(--footer-widget-menu-item-li-mobile-padding);
  }
}
  .footer .widget .widget-body ul.verzending-betaling-icons li {
     margin: 0;
  }
.footer .widget .widget-body .widget-box-widget-shop-gegevens {
  line-height: var(--footer-widget-shop-gegevens-line-height);
}
  .footer .widget .widget-body .widget-box-widget-shop-gegevens .shop-gegevens__bedrijfsnaam {
    font-weight: 800;
  }
.footer .widget .widget-body .widget-newsletter-input {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.footer .widget .widget-body .widget-newsletter-buttons {
  margin-bottom: 0.5rem;
}
.footer .footer-middle .widget .widget-body ul li a {
  opacity: var(--footer-middle-font-opacity);
}
.footer .footer-middle .widget .widget-body ul li a:hover {
  opacity: 1;
}

.footer .footer-middle .widget .widget-body p {
  opacity: var(--footer-middle-font-opacity);
}
.footer .footer-middle .widget .widget-body p a:hover {
  opacity: 1;
}

.footer .copyright {
  margin-bottom: 0;
  text-align: center;
}

.footer-top .widget-box-sep {
  width: 100%;
  height: 1px;
  background-color: var(--footer-top-seperator-delimeter-color);
  opacity: 0.1;
}

.footer-middle .widget-box-sep {
  width: 100%;
  height: 1px;
  background-color: var(--footer-middle-seperator-delimeter-color);
  opacity: 0.1;
}

@media (max-width: 897px) {
  .widget-justify-content-center .widget-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .widget-justify-content-center .widget-box .trustpilot-widget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .widget-justify-content-left .widget-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .widget-justify-content-left .widget-box .trustpilot-widget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
}

.payment img {
  display: block;
}

.payment-label {
  margin-right: 2rem;
}

.sticky-footer {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 4rem;
}
.sticky-footer &gt; * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sticky-footer .cart-dropdown {
  position: relative;
}
.sticky-footer .cart-dropdown .dropdown-box {
  top: auto;
  bottom: 100%;
  right: 0;
  min-width: 33rem;
  padding: 2rem 3rem 3rem;
  margin-bottom: 2.1rem;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
}
.sticky-footer .cart-dropdown:hover .dropdown-box {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.sticky-footer .products {
  border: none;
}
.sticky-footer .product-name a {
  padding: 0;
}
.sticky-footer .cart-total {
  padding-top: 1rem;
}

.sticky-link {
  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;
  color: var(--sticky-content-fix-bottom-mobile-color);
  margin: 0.6rem 0 0.9rem;
}
.sticky-link i, .cart-dropdown .sticky-link i {
  font-size: 2.3rem;
  color: #666;
  width: 42px;
  height: 42px;
  border-radius: 150%;
  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;
}
.sticky-link span.sticky-link-title {
  color: #666;
  font-family: arial;
  font-size: 0.7rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.sticky-link p {
  margin-top: 0.9rem;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
.sticky-link.search-toggle p {
  margin-top: 1rem;
}
.sticky-link:hover {
  color: inherit;
}
.sticky-link:hover i {
  color: inherit;
  background: #eff2f7;
}

.footer-dark {
  background-color: #222;
}
.footer-dark .footer-top,
.footer-dark .footer-middle,
.footer-dark .category-box a::after {
  border-color: #454545;
}
.footer-dark a,
.footer-dark .widget-about .widget-about-title,
.footer-dark .category-name {
  color: #999;
}
.footer-dark .widget-about .widget-about-call,
.footer-dark .widget-title {
  color: #fff;
}

@media (min-width: 992px) {
  .footer-top .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22.22%;
            flex: 0 0 22.22%;
    max-width: 22.22%;
  }
}
@media (min-width: 898px) {
  .sticky-footer {
    display: none;
  }
}
@media (max-width: 991px) {
  .footer-top {
    padding-bottom: 2.7rem;
  }

  .footer-middle .category-box a:first-child {
    margin-left: 0;
  }

  .newsletter-hor .icon-box-side {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 897px) {
  .newsletter-hor .icon-box-icon {
    margin-right: 0;
  }

  .footer-bottom,
.footer-bottom &gt; .container {
    display: block;
  }
  .footer-bottom .footer-copyright-shop-info,
.footer-bottom .footer-elexioshop-info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-bottom .footer-copyright-shop-info {
    margin-bottom: 0.2rem;
  }
  .footer-bottom .footer-elexioshop-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1rem;
  }
  .footer-bottom .payment-label {
    margin: 0 0 1rem 0;
  }
}
@media (max-width: 479px) {
  .sticky-footer {
    padding: 0;
  }
  .sticky-footer .hs-toggle .input-wrapper {
    right: 1rem;
  }
  .sticky-footer .cart-dropdown .dropdown-box {
    min-width: 30rem;
    right: -5.4rem;
  }

  .newsletter-hor .icon-box-side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .newsletter-hor .icon-box-icon {
    margin: 0 0 2rem;
  }
  .newsletter-hor .icon-box-content {
    text-align: center;
  }
  .newsletter-hor .form-control {
    text-align: center;
  }
  .newsletter-hor .input-wrapper-inline {
    display: block;
    text-align: center;
  }
  .newsletter-hor .btn {
    margin-top: 2rem;
  }
}
/* 8. Pages */
/*----------------------------------
    About Us
        - Icon Box
        - Timeline
-----------------------------------*/
.page-content {
  margin-top: 0;
}

.about-us .introduce .title {
  margin-bottom: 1.3rem;
  font-size: 4rem;
}
.about-us .introduce p {
  margin-bottom: 4.3rem;
  max-width: 57rem;
}
.about-us .introduce img {
  min-height: 20rem;
}
.about-us .customer-service .card-header {
  font-size: 1.8rem;
}
.about-us .customer-service p {
  font-size: 1.4rem;
  color: #333;
}
.about-us .customer-service img,
.about-us .boost-section img {
  width: 100%;
}
.about-us .customer-service .title,
.about-us .boost-section .title,
.about-us .member-section .title {
  font-size: 3.4rem;
}
.about-us .counter span {
  font-size: 6rem;
  font-weight: 800;
  color: #ccc;
  letter-spacing: -0.05em;
  line-height: 1.54;
}
.about-us .counter .title {
  margin-bottom: 1.2rem;
}
.about-us .boost-section {
  background-color: #fafafb;
}
.about-us .boost-section .title {
  line-height: 1.25;
  margin-bottom: 1.3rem;
}
.about-us .boost-section .btn {
  padding: 1.23em 2.35em;
}
.about-us .awards-wrapper .title {
  font-size: 3rem;
}
.about-us .awards-wrapper img {
  width: auto;
  margin: 0 auto 2rem;
}
.about-us .awards-wrapper p {
  margin-bottom: 0;
  font-size: 2rem;
  color: #333;
  line-height: 1.6;
  letter-spacing: -0.025em;
}
.about-us .member-section figure {
  position: relative;
  max-width: 29.5rem;
  margin: 0 auto 2.5rem;
}
.about-us .member-section figure:hover .overlay {
  padding-top: 0;
  opacity: 1;
}
.about-us .member-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 10rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1.3rem;
  opacity: 0;
  border-radius: 1.3rem;
  -webkit-transition: opacity 0.3s, padding-top 0.3s;
  transition: opacity 0.3s, padding-top 0.3s;
  cursor: pointer;
}
.about-us .member-section .overlay p {
  margin-bottom: 0;
  text-transform: uppercase;
}
.about-us .member-section .member-name {
  margin-bottom: 0;
}
.about-us .member-section .social-icon {
  width: 4.6rem;
  height: 4.6rem;
  font-size: 2.4rem;
  line-height: 4.1rem;
  border-color: #fff;
  color: #fff;
}
.about-us .member-section .social-icon:hover.social-facebook {
  background-color: var(--social-color-facebook);
  border-color: var(--social-color-facebook);
}
.about-us .member-section .social-icon:hover.social-facebook-square {
  background-color: var(--social-color-facebook);
  border-color: var(--social-color-facebook);
}
.about-us .member-section .social-icon:hover.social-twitter {
  background-color: var(--social-color-twitter);
  border-color: var(--social-color-twitter);
}
.about-us .member-section .social-icon:hover.social-instagram {
  background-color: var(--social-color-instagram);
  border-color: var(--social-color-instagram);
}

@media (max-width: 991px) {
  .about-us .customer-service .title,
.about-us .boost-section .title {
    font-size: 2.5rem;
  }
}
@media (max-width: 897px) {
  .about-us .introduce .title {
    font-size: 3rem;
  }
}
/*----------------------------------------
    Accordion
-----------------------------------------*/
.color-accordion-section .accordion-primary .card-body {
  background-color: #f8f8f8;
  padding-bottom: 1.3rem;
}

.icon-accordion-section {
  margin-bottom: 3.7rem;
}

/*--------------------------------------
    Blog Page
---------------------------------------*/
.post-classic .post-details,
.post-grid-type .post-details,
.post-masonry .post-details {
  padding: 1.4rem 2px 2.4rem;
}

.post-content .btn {
  padding-top: 0.3rem;
  text-transform: lowercase;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}
.post-content .btn:hover, .post-content .btn:active, .post-content .btn:focus {
  color: #333;
}

.post-classic .post-cats,
.post-listing .post-cats,
.post-grid-type .post-cats,
.post-masonry .post-cats {
  margin-bottom: 0.5rem;
}
.post-classic .post-content,
.post-listing .post-content,
.post-grid-type .post-content,
.post-masonry .post-content {
  margin-bottom: 1.5rem;
}
.post-classic .post-content p,
.post-listing .post-content p,
.post-grid-type .post-content p,
.post-masonry .post-content p {
  display: inline;
  margin-right: 1.1rem;
}

.post-listing .post-details {
  padding-top: 1rem;
  padding-bottom: 1.2rem;
}

.post-masonry .post-title {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.blog-filters {
  font-weight: 600;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333;
  line-height: 1.3;
}
.blog-filters.nav-filters li {
  margin: 0 1.5rem;
}
.blog-filters.filter-underline .nav-filter::after {
  border-top: 3px solid;
  border-bottom: 0;
}
.blog-filters .nav-filter.active,
.blog-filters .nav-filter:hover {
  color: #333;
}

.post-single .post-details {
  padding: 3.6rem 0 2.6rem;
}
.post-single .post-meta {
  margin-bottom: 0.8rem;
}
.post-single .post-title {
  margin-bottom: 1.9rem;
  white-space: normal;
}
.post-single .post-content p {
  display: block;
  margin-bottom: 1.4rem;
  font-size: 1.4rem;
  letter-spacing: 0;

}
.post-single .post-content a:hover {
  color: #336699;
  text-decoration: underline;
}

.post-single-content .post-single .post-title {
  font-size: 3rem;
}
.post-single-content blockquote {
  padding: 4.2rem 1rem;
  background-color: #f8f8f8;
}
.post-single-content blockquote i {
  font-size: 3rem;
  color: #336699;
}
.post-single-content blockquote p {
  font-size: 2.6rem;
}
.post-single-content blockquote cite {
  font-size: 1.2rem;
  font-style: normal;
}
.post-single-content .tags {
  margin-bottom: 2.6rem;
}
.post-single-content .tags label {
  font-weight: 500;
}
.post-single-content .tag {
  margin-right: 0.5rem;
}
.post-single-content .post-author-detail {
  padding: 4rem 4rem;
  background-color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-single-content .author-media {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10.5rem;
          flex: 0 0 10.5rem;
  max-width: 10.5rem;
}
.post-single-content .author-name-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-single-content .author-name-wrapper span {
  font-size: 1.3rem;
}
.post-single-content .author-details .author-name {
  white-space: nowrap;
}
.post-single-content .author-details .btn:hover {
  text-decoration: underline;
}
.post-single-content .post-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6rem 0 5.2rem;
  border-bottom: 1px solid #eee;
}
.post-single-content .post-navigation .nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  font-size: 1.6rem;
}
.post-single-content .post-navigation .nav a {
  position: relative;
  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-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #333;
  line-height: 1.2;
}
.post-single-content .post-navigation .nav .nav-content {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  display: inline-block;
  max-width: 100%;
  font-size: 1.5rem;
  font-weight: 400;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1.3rem;
}
.post-single-content .post-navigation .nav .nav-content::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #333;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.post-single-content .post-navigation .nav i {
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.post-single-content .post-navigation .nav:hover .nav-content::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.post-single-content .post-navigation .nav-prev i {
  margin-right: 1rem;
}
.post-single-content .post-navigation .nav-next i {
  margin-left: 1rem;
}
.post-single-content .btn-underline::after {
  border-top-width: 2px;
}
.post-single-content .title-lg {
  font-size: 2.4rem;
}
.post-single-content .post-details {
  padding-bottom: 2.5rem;
}
.post-single-content .post-title {
  font-size: 1.5rem;
}
.post-single-content .swiper-button-prev, .post-single-content .swiper-button-next {
  top: -4.9rem;
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
}
.post-single-content .swiper-button-prev:not(.swiper-button-disabled), .post-single-content .swiper-button-next:not(.swiper-button-disabled) {
  color: #666;
}
.post-single-content .swiper-button-prev:not(.swiper-button-disabled):hover, .post-single-content .swiper-button-next:not(.swiper-button-disabled):hover {
  color: var(--alg-color);
  background-color: #fff;
}
.post-single-content .swiper-button-prev {
  right: 0.2rem;
}
.post-single-content .swiper-button-next {
  right: 1.1rem;
}
.post-single-content .reviews {
  padding-bottom: 3.3rem;
  border-bottom: 1px solid #eee;
}
.post-single-content .review {
  padding: 2rem 0;
  border: none;
}
.post-single-content .review:nth-child(2) {
  margin-left: 9rem;
}
.post-single-content .review-date {
  font-size: 1.3rem;
  color: #666;
}
.post-single-content .btn-reply {
  text-transform: capitalize;
  font-weight: 400;
}
.post-single-content .btn-reply:hover, .post-single-content .btn-reply:focus, .post-single-content .btn-reply:active {
  color: #336699;
}
.post-single-content .form-control {
  font-size: 1.3rem;
  border-radius: 0.3rem;
}
.post-single-content input {
  min-height: 4.4rem;
}
.post-single-content textarea {
  height: 15rem;
  padding: 1.6rem 2rem;
}
.post-single-content .btn-comment i {
  margin-bottom: 0.4rem;
}

.post-slider {
  border-bottom: 1px solid #eee;
}

.post-mask-section {
  padding-bottom: 2.7rem;
}

@media (max-width: 575px) {
  .post-single-content .post-single .post-title {
    font-size: 2rem;
  }
  .post-single-content ul {
    padding-left: 0;
  }
  .post-single-content .post-navigation p {
    display: none;
  }
}
@media (max-width: 479px) {
  .post-single-content .post-author-detail {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .post-single-content .post-author-detail .author-media {
    max-width: 8rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8rem;
            flex: 0 0 8rem;
  }
  .post-single-content .review:nth-child(2) {
    margin-left: 4rem;
  }
}
/*----------------------------------------
    Become a Vendor page
-----------------------------------------*/
.become-a-vendor img {
  width: 100%;
}
.become-a-vendor .title {
  font-size: 3.4rem;
}

/* Create Store */
.create-store h4 {
  margin-bottom: 1.6rem;
}
.create-store .title {
  margin-bottom: 1.3rem;
  font-size: 4rem;
}
.create-store p {
  margin-bottom: 3.3rem;
}
.create-store .btn {
  margin-bottom: 0.6rem;
  padding: 1.2em 2.44em;
}

@media (min-width: 992px) {
  .create-store .row &gt; div:last-child {
    padding: 0 9rem 0 1.1rem;
  }
  .create-store .title {
    max-width: 47rem;
  }
}
@media (min-width: 898px) {
  .create-store img {
    min-height: 43.5rem;
  }
}
/* How to Trade */
.how-trade h4 {
  margin-bottom: 1.7rem;
}
.how-trade .title {
  margin-bottom: 1.3rem;
  line-height: 1.25;
}
.how-trade .stage-item p {
  margin-left: 1.2rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
.how-trade svg {
  fill: #336699;
  min-width: 6.1rem;
  width: 6.1rem;
  height: 6.1rem;
}
.how-trade img {
  max-height: 52rem;
}

.stage-get .stage-item p {
  margin-left: 0.7rem;
}

/* Few Fees */
.few-fees {
  padding-bottom: 2.3rem;
}

.listing-fee .counter {
  margin: 0 5.8rem 0 auto;
}

.final-fee .counter {
  margin: 0 auto 0 5.8rem;
}

.become-a-vendor .counter {
  max-width: 29rem;
}
.become-a-vendor .counter span {
  font-size: 9rem;
  font-weight: 800;
  color: #ccc;
  line-height: 1.26;
  letter-spacing: -0.06em;
}
.become-a-vendor .counter h4 {
  margin-bottom: 1.2rem;
  font-size: 2rem;
}

/* elexio Sellers */
.become-a-vendor .testimonial-boxed {
  padding-top: 4rem;
  padding-bottom: 3.7rem;
}
.become-a-vendor .testimonial-boxed blockquote {
  margin-bottom: 1.2rem;
}
.become-a-vendor .swiper-container .swiper-pagination-bullet {
  border-color: #999;
  background-color: #999;
}
.become-a-vendor .swiper-container .swiper-pagination-bullet:hover {
  border-color: #336699;
  background-color: #336699;
}
.become-a-vendor .swiper-container .swiper-pagination-bullet-active {
  width: 1.8rem;
  background-color: #336699;
  border-color: #336699;
}
.become-a-vendor .swiper-container .swiper-pagination {
  margin-top: 2.5rem;
}

.elexio-sellers h4 {
  margin: 4.7rem 0 1.9rem;
}
.elexio-sellers h2 {
  margin-bottom: 1.4rem;
  line-height: 1.22;
}
.elexio-sellers p {
  margin-bottom: 2.6rem;
}

/* Questions */
.questions {
  padding-top: 4.7rem;
}
.questions h4 {
  margin-bottom: 1.8rem;
}
.questions .title {
  margin-bottom: 3.8rem;
}
.questions p {
  margin-bottom: 4.8rem;
}

/* Banner */
.become-a-vendor .banner {
  padding: 6.2rem 6.2rem 6.9rem;
}
.become-a-vendor .banner .banner-content {
  max-width: 60rem;
  margin: 0 auto;
}
.become-a-vendor .banner .title {
  margin-bottom: 3.1rem;
  line-height: 1.25;
}
.become-a-vendor .banner .btn {
  padding: 1.22em 2.1em;
}

/* Responsive */
@media (max-width: 991px) {
  .become-a-vendor .title {
    font-size: 2.8rem;
  }

  .questions p {
    margin-bottom: 3rem;
  }
}
@media (max-width: 897px) {
  .few-fees .counter {
    margin: 0 auto;
  }

  .become-a-vendor .banner {
    padding: 5rem 2rem;
  }
}
/*----------------------------
    Element Button Page
        - Page Header
        - Button Section
            - Title
----------------------------*/
.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -2rem;
  margin-top: 0.5rem;
}
.btn-group .btn-wrap {
  min-width: 16.9rem;
  margin-left: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.btn-group .btn-wrap .btn:not(.btn-simple) {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.btn-section {
  margin-bottom: 3.6rem;
}
.btn-section p {
  position: relative;
  font-size: 1.3rem;
  padding-right: 2rem;
  line-height: 1.9;
}
.btn-section p::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  background: #eee;
  height: 44px;
  width: 2px;
}
.btn-section .title-line::after {
  position: absolute;
  right: 0;
  width: calc(75% + 1.5rem);
}

.btn-block-section .btn-group {
  margin-left: -1rem;
  margin-top: 0.6rem;
}

.btn-size-section {
  margin-bottom: 2.6rem;
}
.btn-size-section .btn-group {
  margin-top: -0.5rem;
}
.btn-size-section .btn {
  margin-left: 2rem;
  margin-bottom: 2rem;
}
.btn-size-section p::after {
  top: 0.7rem;
}

.btn-simple-section {
  margin-bottom: 3.2rem;
}
.btn-simple-section .btn-group {
  margin-top: 1.6rem;
}
.btn-simple-section .btn-group .btn-link:not(.btn-underline) {
  padding-bottom: 6px;
}
.btn-simple-section .btn-group .btn-wrap {
  min-width: 13.7rem;
}
.btn-simple-section .btn-group .btn-wrap .btn {
  width: auto;
}

.btn-parallax-section {
  padding: 5.6rem 0 4.2rem;
  margin-bottom: 0;
}
.btn-parallax-section p {
  opacity: 0.4;
}
.btn-parallax-section p::after {
  opacity: 0.6;
}
.btn-parallax-section .btn-group::before {
  background-color: #484443;
}

@media (max-width: 991px) {
  .btn-section .title-line::after {
    position: relative;
    margin-left: 3.3rem;
  }
  .btn-section p::after {
    content: none;
  }
}
/* ----------------------------------------
    Element Category Page
------------------------------------------*/
.category-default .category-title {
  position: relative;
}
  .category.category-default a {
     color: var(--category-default-category-title-link-color);
  }
  .category.category-default:hover a {
     color: var(--category-default-category-title-link-hover-color);
  }
  .category.category-default a.btn-producten-bekijken:hover {
     color: var(--category-default-category-title-btn-producten-bekijken-hover-color);
  }
.category-default .category-title::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  background: var(--category-default-category-title-link-hover-color);
}
.category-default:hover .category-title::before {
  width: 100%;
  content: "";
}
.category-default img {
  min-height: 20rem;
}
.category-default .category-content {
  left: 3rem;
}
.category-default .category-title {
  margin-bottom: 0;
  font-size: var(--category-default-category-title-font-size);
  font-weight: var(--category-default-category-title-font-weight);
  letter-spacing: var(--category-default-category-title-letter-spacing);
  text-transform: var(--category-default-category-title-text-transform);
}
@media (max-width: 897px) {
  font-size: 1.6em;
}
.category-default .category-count {
  opacity: 0.6;
  line-height: 1.8;
}

.category-ellipse-section {
  margin-bottom: 5.2rem;
}

.category-classic-section {
  background-color: #f8f8f8;
}

.category-masonry-section {
  padding-bottom: 3.7rem;
}
.category-masonry-section .category-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, calc( 100% / 4 ));
  margin: -1rem;
}
.category-masonry-section .category-grid &gt; * {
  padding: 1rem;
}
.category-masonry-section .grid-item1 {
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row-span: 2;
  grid-row-end: span 2;
}
.category-masonry-section .grid-item2 {
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}
.category-masonry-section .grid-item3 {
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row-span: 2;
  grid-row-end: span 2;
}
.category-masonry-section .grid-item3 .category-banner, .category-masonry-section .grid-item3 figure, .category-masonry-section .grid-item3 img {
  height: 100%;
}

@media (max-width: 991px) and (min-width: 898px) {
  .category-masonry-section .category-grid {
    grid-template-columns: repeat(auto-fill, calc( 100% / 3 ));
  }
  .category-masonry-section .grid-item3 {
    -ms-grid-row: 1;
        grid-row-start: 1;
    -ms-grid-column: 3;
        grid-column-start: 3;
    -ms-grid-row-span: 3;
    grid-row-end: span 3;
  }
}
@media (max-width: 897px) {
  .category-masonry-section .category-grid {
    grid-template-columns: repeat(auto-fill, calc( 100% / 2 ));
  }
}
@media (max-width: 575px) {

}
@media (max-width: 479px) {
  .category-masonry-section .grid-item2, .category-masonry-section .grid-item3 {
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }
}
/*-------------------------------
    Cart Page
--------------------------------*/
.cart .cart-summary {
  background-color: var(--cart-summary-bg-color);
  padding-top: var(--cart-summary-padding-top);
  padding-right: var(--cart-summary-padding-right);
  padding-bottom: var(--cart-summary-padding-bottom);
  padding-left: var(--cart-summary-padding-left);
  border-style: var(--cart-summary-border-style);
  border-color: var(--cart-summary-border-color);
  border-top-width: var(--cart-summary-border-top-width);
  border-right-width: var(--cart-summary-border-right-width);
  border-bottom-width: var(--cart-summary-border-bottom-width);
  border-left-width: var(--cart-summary-border-left-width);
  border-radius: var(--cart-summary-border-radius);
  line-height: 1;
}
.cart .cart-summary .cart-title {
  margin-bottom: 2.1rem;
  font-size: 2rem;
  letter-spacing: -0.01em;
}
.cart .cart-summary label {

}
  .cart .cart-summary label.estimated-verzending-message {

  }
.cart .cart-summary-info {

}
.cart .cart-summary-info .cart-info-total {
  font-size: 1.2rem;
  padding: 0.8rem 0.8rem;
}
.cart .cart-summary .btn-checkout {
  font-size: 1.6rem;
  letter-spacing: var(--btn-cart-summary-checkout-letter-spacing);
  text-transform: var(--btn-cart-summary-checkout-text-transform);
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
}
  .cart .cart-action .btn-checkout {
    letter-spacing: var(--btn-cart-summary-checkout-letter-spacing);
    text-transform: var(--btn-cart-summary-checkout-text-transform);
  }
.cart-summary .trustpilot-widget__wrapper {
  padding: 1rem 0;
}

.cart-summary .verzending-betaling-icons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
}

.cart-item-spacer {
  margin-bottom: 0.2rem;
}
.cart .form-control {
  width: 100%;
  max-width: 100%;
  border-radius: 3px;
}
.cart .select-box::before {
  font-size: 1.1rem;
  color: #333;
  right: 1rem;
}
.cart .accordion {
  border-bottom: 1px solid #eee;
}
.cart .card-header {
  text-transform: uppercase;
}
.cart .card-header a {
  padding-left: 0;
  padding-right: 0;
}
.cart .card-header a::after {
  right: 0.5rem;
  font-size: 1.4rem;
  color: #333;
}
.cart .card-body {
  margin-bottom: 2rem;
  padding: 0;
}
.cart .cart-action {
  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;
  padding: 2rem 0;
}
  @media (max-width: 897px) {
    .cart .cart-action {
      flex-direction: column;
    }
  }
.cart .cart-action input {
  border-color: #ccc;
  font-size: 1.4rem;
  font-weight: 600;
  padding-left: 1.3rem;
  max-width: 200px;
}
.cart .cart-action .btn {
  margin-bottom: 0px;
}
.cart .cart-action .btn:last-child {
  margin-bottom: 0;
}
.cart .cart-action .btn-shopping i {
  font-size: 1.9rem;
}
.cart .cart-action .btn-clear,
.cart .cart-action .btn-update {
  padding: 1em 2em;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #333;
}
.cart .cart-action .btn-clear:hover, .cart .cart-action .btn-clear:focus, .cart .cart-action .btn-clear:active,
.cart .cart-action .btn-update:hover,
.cart .cart-action .btn-update:focus,
.cart .cart-action .btn-update:active {
  border-color: #e1e1e1;
  background-color: #e1e1e1;
}
.cart .cart-action .btn-clear {
  margin-right: 0;
}
.cart .cart-action .btn-update.disabled {
  border-color: #eee;
  background-color: #eee;
  color: #666;
  cursor: not-allowed;
}
.cart .coupon-title {
  font-size: 1.6rem;
}
.cart .coupon .form-control {
  border: none;
  border-bottom: 1px solid #eee;
  border-radius: 0;
}
.cart .coupon .form-control:focus {
  border-color: #999;
}
.cart .coupon .btn {
  padding: 1em 2em;
  border-width: 1px;
}
.cart .order-total {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.cart-total {
  text-align: end;
}
.cart-total table {
  margin-top: -3px;
}
.cart-total td, .cart-total th {
  border-top: 1px solid #eee;
  text-transform: uppercase;
}

.cart-info-total {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  padding: 0.4rem 0.8rem;
}
  .checkout-winkelwagen .cart-summary-info .cart-info-total {
    font-size: 1.4rem;
    padding: 0.6rem 0rem;   
  }

.cart-info-total label span:not(.tooltiptext) {
  display: block;
  font-size: 1.1rem;
  font-size: 1.2rem;
  color: #828282;
  margin-top: 0.3rem;
}

.cart-info-total.cart-info-total__korting-info {
  color: var(--cart-info-total-korting-info-color);
  font-weight: var(--cart-info-total-korting-info-font-weight);
}

.cart-subtotal {
  padding: 0.6rem 0;
  font-size: 1.4rem;
  font-weight: 600;
}
  .cart-summary-info .cart-subtotal {
     border-bottom: 1px solid var(--cart-summary-hr-border-color);
     padding: 0.6rem 0.8rem;
  }
  .checkout-winkelwagen .cart-summary-info .cart-subtotal {
     padding: 0.6rem 0 1.2rem 0;
     font-size: 1.6rem;
     font-weight: 600;
     margin-bottom: 1rem
  }
  .cart-summary hr {
     border-top: 1px solid var(--cart-summary-hr-border-color);
  }

.cart-totalprice {
  /*
  background: #cfcfcf;
  */
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1.2rem 0.8rem;
  /*
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
  */
}
  .cart-totalprice label {
     font-size: 1.6rem;  
  }
  .cart-totalprice .cart-summary-total-price {
     font-size: 2.2rem;  
  }
  .checkout-winkelwagen .cart-totalprice {
     display: none !important;
  }

.cart-subtotal &gt; label,
.cart-info-total &gt; label,
.order-total &gt; label {
  display: block;
  width: 70%;
  max-width: 70%;
}
.cart-subtotal &gt; span,
.cart-info-total &gt; span,
.order-total &gt; span {
  display: block;
  width: 30%;
  max-width: 30%;
  text-align: right;
}
.cart-subtotal &gt; span .valuta,
.cart-info-total &gt; span .valuta,
.order-total &gt; span .valuta {

}

.checkout-winkelwagen .btn-sticky-bar-winkelwagen {
  position:fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  box-shadow: 0px -10px 10px 0px rgba(49,49,47,.1);
  right: 0;
  bottom: 0;
  left: 0;
  z-index:10;
}

.checkout-winkelwagen .btn-sticky-bar-winkelwagen .div-info-price {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  flex-direction: column;
  padding: 1rem 1rem;
}
.checkout-winkelwagen .btn-sticky-bar-winkelwagen .div-info-price label {
  color: #828282;
  font-size: 1.2rem;
}
.checkout-winkelwagen .btn-sticky-bar-winkelwagen .div-info-price .cart-summary-total-price {
  font-size: 2rem;
  font-weight: 600;
}
.checkout-winkelwagen .btn-sticky-bar-winkelwagen .div-info-button {
  width: 50%;
}
.checkout-winkelwagen .btn-sticky-bar-winkelwagen .div-info-button .btn {
  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;
  height: 100%;
  font-size: 1.8rem;
  border-radius: 0;
}
.checkout-winkelwagen .btn-sticky-bar-winkelwagen .div-info-button .btn  i {
  font-size: 2rem;
  margin-bottom: 0;
}

.shipping-methods .shipping-title {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: -0.025em;
  padding: 1.1rem 0 0.3rem;
}
.shipping-methods .custom-radio {
  line-height: 2.7;
}
.shipping-methods .custom-radio label {
  letter-spacing: 0;
  padding-left: 2.5rem;
}
.shipping-methods .custom-radio .custom-control-label::after {
  color: #ccc;
  padding-top: 1px;
}

.shipping-destination {
  font-size: 1.5rem;
  margin-bottom: 2.2rem;
}

.shipping-calculator-form .form-group {
  margin-bottom: 1.5rem;
}
.shipping-calculator-form .form-group .form-control {
  padding-left: 1rem;
  font-size: 1.4rem;
  color: #666;
  border-color: #eee;
}
.shipping-calculator-form button {
  margin-bottom: 2.5rem;
  border-width: 1px;
}

.shipping-address .form-control,
.shipping-address .select-box {
  background-color: #fff;
  margin-bottom: 2rem;
}
.shipping-address .form-control {
  padding: 1.15rem 1.2rem;
  font-size: 1.3rem;
  border-color: #eee;
  color: #999;
}
.shipping-address label {
  color: #333;
  text-transform: uppercase;
}

.shop-table.cart-table th {
  padding: 1rem 0 1.2rem;
}
.shop-table.cart-table .product-price {
  width: 17.3%;
}
.shop-table.cart-table .product-quantity {
  width: 25.7%;
}
.shop-table.cart-table .product-subtotal {
  width: 16%;
}
.shop-table.cart-table .product-name {
  color: #333;
}
.shop-table.cart-table .product-quantity .input-group {
  max-width: 120px;
}
.shop-table.cart-table .product-quantity .input-group select {
  max-width: 95px;
}

.shop-table.cart-table .btn-close {
  top: -8px;
  right: -7px;
}
.shop-table.cart-table td.product-subtotal {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}
.shop-table.cart-table td.product-price {
  font-weight: 400;
  font-size: 1.6rem;
}

@media (max-width: 897px) {
  .cart-table td.product-subtotal {
    text-align: center;
  }
  .cart-table.shop-table .product-quantity {
    width: auto;
  }
  .cart-table.shop-table .product-subtotal {
    width: auto;
  }
}
@media (max-width: 575px) {
  .cart .breadcrumb {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.div-kortingscode .form-group {
  flex-grow: 1;
  margin-bottom: 0;
}
.div-kortingscode .form-group .form-control {
  margin-bottom: 0;
}
.div-kortingscode .btn {
  padding: 0.9rem 1.8rem;
}
/*------------------------------------
    Checkout Page
-------------------------------------*/
.checkout .shop-breadcrumb {
  margin-bottom: 2.2rem;
}
.checkout .login-toggle,
.checkout .coupon-toggle {
  line-height: 1.1;
}
.checkout .login-toggle {
  margin-bottom: 1.5rem;
}
.checkout .coupon-toggle {
  margin-bottom: 2.8rem;
}
.checkout .show-login:hover,
.checkout .show-coupon:hover {
  text-decoration: underline;
}
.checkout .login-content,
.checkout .coupon-content,
.checkout .checkbox-content {
  display: none;
  margin-bottom: 2.4rem;
  padding: 3rem;
  border: 1px solid #eee;
  border-top-width: 3px;
}
.checkout .login-content p {
  font-size: 1.3rem;
  margin-bottom: 1.6rem;
}
.checkout .login-content .form-group label {
  margin-bottom: 0.2rem;
}
.checkout .login-content .form-control {
  margin-bottom: 1.7rem;
}
.checkout .login-content .checkbox {
  margin-bottom: 1.7rem;
}
.checkout .login-content .checkbox label {
  padding-left: 2.6rem;
}
.checkout .login-content .checkbox a {
  color: #336699;
}
.checkout .login-content .checkbox a:hover {
  text-decoration: underline;
}
.checkout .btn-login {
  padding-left: 1.88em;
  padding-right: 1.88em;
  background: #f1f1f1;
  border-color: #f1f1f1;
  color: #333;
}
.checkout .coupon-content {
  padding-bottom: 2rem;
}
.checkout .coupon-content p {
  margin-bottom: 1.9rem;
  line-height: 1.7;
}
.checkout .coupon-content .input-wrapper-inline {
  max-width: 40rem;
}
.checkout .btn-coupon {
  border-color: #eee;
  background-color: #eee;
  color: #333;
}
.checkout .btn-login:hover, .checkout .btn-login:active, .checkout .btn-login:focus,
.checkout .btn-coupon:hover,
.checkout .btn-coupon:active,
.checkout .btn-coupon:focus {
  background-color: #336699;
  border-color: #336699;
  color: #fff;
}
.checkout .form-control {
  margin-bottom: 1.3rem;
  padding-left: 2rem;
  border-radius: 0.3rem;
  font-size: 1.4rem;
}
.checkout .form-group label {
  display: inline-block;
  margin-bottom: 0.1rem;
  line-height: 2.1;
}
.checkout .form-group .select-box::before {
  font-size: 1.1rem;
  right: 1.4rem;
  margin-top: -0.2rem;
  color: #999;
}
.checkout .form-group select {
  padding-left: 1.4rem;
  max-width: 100%;
}
.checkout .custom-checkbox + label {
  padding-left: 2.8rem;
}
.checkout select {
  -webkit-appearance: none;
}
.checkout textarea {
  padding-top: 1.5rem;
  min-height: 13rem;
}
.checkout .order-summary-wrapper {
  padding: 2.5rem 3rem 3rem;
  border: 1px solid #eee;
  border-radius: 3px;
}
.checkout .order-summary-wrapper &gt; .title {
  margin-bottom: 0.9rem;
  padding-bottom: 0;
}
.checkout .checkbox-content {
  border: none;
  padding: 0;
}
.checkout .form-control:focus {
  border-color: #999;
}

.order-table tr {
  border-bottom: 1px solid #eee;
}
.order-table th {
  text-align: start;
  padding: 0.9rem 0;
}
.order-table td {
  padding-left: 0;
  padding-right: 0;
}
.order-table b {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0;
  margin-bottom: 0;
}
.order-table td {
  padding-top: 1.5rem;
}
.order-table td:last-child {
  text-align: end;
}
.order-table .product-name {
  font-size: 1.4rem;
  font-weight: 400;
}
.order-table .product-name i {
  font-size: 11px;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.order-table .product-total {
  font-size: 1.4rem;
  letter-spacing: -0.05em;
}
.order-table .shipping-methods .title {
  font-size: 1.5rem;
}
.order-table .cart-subtotal td {
  padding-top: 2rem;
  padding-bottom: 0.9rem;
}
.order-table .order-total th, .order-table .order-total td {
  padding-top: 1.8rem;
  padding-bottom: 1.9rem;
}

.order-summary .payment-methods {
  padding-top: 2.5rem;
  border-bottom: 1px solid #eee;
}
.order-summary .payment-methods .title {
  font-size: 1.6rem;
}
.order-summary .card-header a {
  padding: 1rem 2.7rem;
  font-size: 1.4rem;
  color: #666;
  font-weight: 400;
}
.order-summary .card-header a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ccd;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.order-summary .card-header a::after {
  content: "";
  position: absolute;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #333;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.order-summary .card-header a.collapse::after {
  opacity: 1;
}
.order-summary .card-body {
  padding: 0 0 1.5rem;
}
.order-summary .card-body p {
  padding-left: 2.7rem;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: -0.025em;
}

.payment-accordion {
  margin-bottom: 1.7rem;
}

.paypal-que {
  position: absolute;
  top: 1rem;
  left: 8rem;
}
.paypal-que:hover {
  text-decoration: underline;
}

@media (max-width: 479px) {
  .coupon-content .input-wrapper-inline {
    display: block;
  }
}

.checkout-sticky {
	top: 7rem;
	position: sticky;
}
/*--------------------------
    Contact US
        - Icon Box
        - Contact Section
            - Contact Us Form
----------------------------*/
.contact-us .icon-box-content .icon-box-title {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  text-transform: none;
}
.contact-us .icon-box-content p {
  font-size: 1.4rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.contact-us .icon-box .icon-email {
  margin: 0.3rem 0 1.5rem;
}
.contact-us .icon-box .icon-headphone {
  margin-bottom: 2.3rem;
}
.contact-us .icon-box .icon-map-marker {
  margin-bottom: 1.9rem;
}
.contact-us .icon-box .icon-fax {
  margin: 0.4rem 0 2.2rem;
}
.contact-us .icon-box .e-icon-envelop-closed {
  font-size: 5.2rem;
}
.contact-us .icon-box .e-icon-headphone {
  font-size: 4.8rem;
}
.contact-us .icon-box .e-icon-map-marker {
  font-size: 5.1rem;
}
.contact-us .icon-box .e-icon-fax {
  font-size: 4.5rem;
}
.contact-us .description {
  margin-bottom: 4.9rem;
}

.contact-information-section {
  padding-bottom: 0.9rem;
}

.contact-section .card-header {
  font-size: 1.4rem;
  letter-spacing: 0;
}
.contact-section .card-header a {
  padding-top: 1.5rem;
}

.contact-us-form .form-group label {
  color: #333;
  line-height: 2;
}
.contact-us-form .form-group .form-control {
  margin-bottom: 1.4rem;
  min-height: 4.6rem;
  border-radius: 0.3rem;
}
.contact-us-form .form-group textarea.form-control {
  margin-bottom: 2.1rem;
}

.contact-google-map {
  background-color: #ddd;
}

/*------------------------
    Verzending betaling items
--------------------------*/

.verzending-betaling-items .verzending-betaling-items-wrapper &gt; div &gt; div.verzending-betaling-item.checked::after {
  content: "" !important;
  font-family: "elexio" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  transition: opacity ease .28s,background-color ease .28s,border-color ease .28s;
  font-size: 1.4rem;
  color: #fff;
  top: 3px;
  right: 2px;
  z-index: 2;
}

/*------------------------
    Coming Soon page
--------------------------*/
.coming-content-wrapper {
  min-height: 100vh;
}

.coming-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding-left: 1rem;
  font-size: 1rem;
}
.coming-content .logo {
  display: inline-block;
  margin-bottom: 2.5rem;
}
.coming-content .coming-title {
  margin-bottom: 1rem;
  font-size: 8em;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
.coming-content .coming-title span {
  color: #1b1c25;
  -webkit-text-stroke: 1px #f79645;
}
.coming-content p {
  color: #999;
  font-size: 1.3rem;
  letter-spacing: 0;
  margin-bottom: 4.5rem;
  max-width: 55rem;
}
.coming-content p.copyright {
  font-size: 1.4rem;
}
.coming-content .countdown-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.coming-content .countdown-section {
  position: relative;
  letter-spacing: -0.025em;
}
.coming-content .countdown-section:not(:first-child) {
  margin-left: 3.5rem;
}
.coming-content .countdown-section:not(:first-child) .countdown-amount::before {
  content: ":";
  position: absolute;
  left: -2.2rem;
  color: #999;
  font-size: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.coming-content .countdown-amount {
  display: inline-block;
  position: relative;
  padding: 0.62em 0.583em;
  border-radius: 3px;
  font-size: 3.6em;
  font-weight: 600;
  background-color: #333;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.coming-content .countdown-period {
  display: block;
  position: absolute;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.4rem;
  color: #bbb;
  text-align: center;
}
.coming-content .social-icons {
  margin-bottom: 1.4rem;
}
.coming-content .social-icon {
  margin-right: 1rem;
}

.countdown-coming {
  margin-bottom: 6.8rem;
}

.coming-soon-bg {
  min-height: 100vh;
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .coming-soon-bg {
    height: 1px;
  }
}

@media (max-width: 991px) {
  .coming-content {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    max-width: 100%;
    padding: 0 2rem;
    font-size: 0.9rem;
    text-align: center;
  }
  .coming-content .countdown-row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .coming-content p {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 897px) {
  .coming-content {
    font-size: 0.7rem;
  }
}
@media (max-width: 479px) {
  .coming-content {
    font-size: 0.5rem;
  }
}
/*-------------------------
   Compare page
-------------------------*/
.compare-popup {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  padding: 2rem 0;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 2400;
}
.compare-popup .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2.1rem;
  padding-bottom: 3.1rem;
}
.compare-popup .btn-clean {
  margin-right: 1.8rem;
  padding: 0;
  border: none;
  text-transform: capitalize;
  font-weight: 400;
}
.compare-popup .btn-clean:hover, .compare-popup .btn-clean:active, .compare-popup .btn-clean:focus {
  color: #336699;
  background-color: #fff;
}
.compare-popup.show {
  -webkit-transform: translateY(-99%);
          transform: translateY(-99%);
}
.compare-popup.show + .compare-popup-overlay {
  opacity: 0.7;
  visibility: visible;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.compare-title {
  margin-top: 0.8rem;
}
.compare-title .title {
  margin-bottom: 0.3rem;
  font-size: 2.4rem;
  font-weight: 700;
  white-space: nowrap;
}

.compare-product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.9rem 2rem 0;
  padding: 0;
}
.compare-product-list li {
  position: relative;
  width: 8vw;
  max-width: 138px;
  min-height: 8vw;
}
.compare-product-list li:not(:first-child) {
  margin-left: 3rem;
}
.compare-product-list li:empty::before {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  line-height: 5rem;
  font-size: 3rem;
  color: #eee;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  -webkit-box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.12);
          box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.12);
}
.compare-product-list li::after {
  content: "";
  position: absolute;
  border: 1px solid #eee;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.compare-product-list .btn-remove {
  position: absolute;
  padding: 0;
  right: -1rem;
  top: -1rem;
  line-height: 1.2;
  width: 20px;
  height: 20px;
  font-size: 1.5rem;
  border-radius: 50%;
  border: none;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.compare-product-list .btn-remove i {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0;
}
.compare-product-list .btn-remove:hover, .compare-product-list .btn-remove:active, .compare-product-list .btn-remove:focus {
  background-color: #fff;
}

.compare-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 2399;
}

.compare-table {
  overflow-x: auto;
}
.compare-table &gt; div:nth-child(2n) .compare-col {
  background-color: #fbfbfb;
}
.compare-table .compare-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.compare-product .product-media {
  border: 1px solid #f5f5f5;
}

.compare-col {
  padding: 2.5rem 0 2.5rem 2rem;
}
.compare-col.compare-product {
  text-align: center;
}
.compare-col.compare-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: end;
  padding-right: 5rem;
  font-weight: 400;
  color: #999;
}
.compare-col.compare-value {
  padding-right: 1rem;
}
.compare-col .remove-product {
  margin-bottom: 2.4rem;
  padding: 0;
  border: none;
  color: #333;
}
.compare-col .remove-product i {
  font-size: 2.2rem;
}
.compare-col .remove-product:hover, .compare-col .remove-product:focus, .compare-col .remove-product:active {
  background-color: transparent;
  color: #336699;
}
.compare-col .product-details {
  padding: 1.6rem 0 0.7rem;
}
.compare-col .product-price {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
}
.compare-col .new-price {
  margin-right: 0;
  color: #336699;
}
.compare-col .old-price {
  color: #999;
}

.compare-availability .compare-value {
  color: #ffa800;
}

.compare-description ul {
  margin: 0;
  padding: 0;
}
.compare-description li {
  color: #333;
  line-height: 1.6;
}
.compare-description li::before {
  font-size: 1.4rem;
}

.compare-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.compare-rating .ratings-container {
  width: 100%;
  margin-bottom: 0;
  font-size: 1.4rem;
}

.compare-category .compare-value,
.compare-meta .compare-value,
.compare-size .compare-value,
.compare-brand .compare-value {
  color: #333;
}

.compare-color .swatch {
  vertical-align: middle;
  margin-right: 0.4rem;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  border-radius: 50%;
}

@media (min-width: 1921px) {
  .compare-product-list li {
    max-height: 15.5rem;
    max-width: none;
  }
  .compare-product-list li figure, .compare-product-list li img {
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .compare-popup .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .compare-product-list {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 2rem 0;
  }
  .compare-product-list li {
    width: 18vw;
    min-height: 11rem;
  }
}
@media (max-width: 991) and (min-width: 480px) {
  .compare-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 897px) {
  .compare-col.compare-field {
    max-width: 15rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media (max-width: 575px) {
  .compare-product-list li {
    min-height: 6rem;
  }
  .compare-product-list li:not(:first-child) {
    margin-left: 1.5rem;
  }
}
@media (max-width: 479px) {
  .compare-product-list li:empty::before {
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    font-size: 2rem;
  }
}
/*--------------------------
    Error 404
--------------------------*/
.error-404 {
  padding-top: 14.5rem;
  padding-bottom: 10rem;
  background-color: #f7f7f7;
}
.error-404 figure {
  margin: 0 auto;
  max-width: 82rem;
}
.error-404 .banner-content {
  margin-top: 5.5rem;
}
.error-404 .banner-title {
  margin-bottom: 0.8rem;
}
.error-404 p {
  margin-bottom: 3.3rem;
}

/*-----------------------------------
    FAQs
------------------------------------*/
.faq .title {
  letter-spacing: 0.02em;
}
.faq .card-header {
  letter-spacing: -0.0125em;
}
.faq .card-body p {
  letter-spacing: -0.005em;
}

.content-title-section .subtitle {
  font-size: 1.4rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.content-title-section .title {
  max-width: 55.5rem;
  margin: 0 auto 0.7rem;
  font-size: 2.4rem;
}
.content-title-section .description {
  margin-bottom: 4.8rem;
  font-size: 1.3rem;
}

/*----------------------------------------
    Icons
-----------------------------------------*/
.elexio-icons {
  color: #333;
  font-size: 1.6rem;
  line-height: 2.5;
}
.elexio-icons i, .elexio-icons .icon-name {
  display: inline-block;
  vertical-align: middle;
}
.elexio-icons i {
  margin-right: 0.5rem;
}

.icon-page .element-section {
  padding-top: 0.7rem;
}

/*---------------------------------------
    Element Gallery Page
---------------------------------------*/
.gallery-default .instagram {
  border-radius: var(--instagram-gallery-default-border-radius);
  overflow: hidden;
}

.gallery-masonry-grid .height-x1 {
  height: 240px;
}
.gallery-masonry-grid .height-x2 {
  height: 480px;
}
.gallery-masonry-grid .grid-item {
  padding: var(--gallery-masonry-grid-grid-item-padding);
}
.gallery-masonry-grid img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-masonry-grid .instagram {
  height: 100%;
  border-radius: var(--instagram-gallery-masonry-grid-border-radius);
  overflow: hidden;
}

@media (max-width: 897px) {
  .gallery-masonry-grid .height-x1 {
    height: 200px;
  }
  .gallery-masonry-grid .height-x2 {
    height: 400px;
  }
}
.gallery-swiper .instagram {
  border-radius: var(--instagram-gallery-swiper-border-radius);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  overflow: hidden;
}
/*---------------------------------
    My Account Page
----------------------------------*/
.my-account .breadcrumb-nav {
  margin-bottom: 3.2rem;
}
.my-account .tab-vertical .nav {
  width: 24.41%;
  border: none;
}
.my-account .tab-content {
  width: 75.59%;
  padding-left: 1.5rem;
  border: none;
}
.my-account .nav-link,
.my-account .link-item {
  margin-bottom: 0;
  padding: 1.7rem 0 1.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: none;
  border-bottom: 1px solid #eee;
}
.my-account .link-item {
  font-weight: 600;
  color: var(--body-color);
  line-height: 1;
}
.my-account .link-item a {
  color: inherit;
}
.my-account .link-item:hover {
  color: var(--tab-accordion-hover-color);
}
.my-account .nav-tabs .nav-item .nav-link.active {
  font-weight: 600;
  color: var(--tab-accordion-hover-color);
}
.my-account .tab-pane p {
  font-size: 1.4rem;
  line-height: 1.8;
}
.my-account .icon-box.text-center i {
  display: block;
  font-size: 6rem;
  color: var(--body-color);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.my-account .text-center .icon-box-icon {
  margin-bottom: 1.9rem;
}
.my-account .icon-box.text-center:hover .icon-box-icon i {
  color: var(--link-hover-color);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.my-account .icon-box.text-center:hover p {
  text-decoration: underline;
}
.my-account .icon-box.icon-box-side .icon-orders, .my-account .icon-box.icon-box-side .icon-map-marker {
  margin-right: 1rem;
}
.my-account .icon-box.icon-box-side .e-icon-download {
  font-size: 2.4rem;
}
.my-account .icon-box.icon-box-side .icon-account {
  margin-right: 0.8rem;
}
.my-account .form-control {
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
}
.my-account .form-control:focus {
  border-color: #336699;
}
.my-account .icon-box-light {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.my-account .icon-box-light i {
  font-size: 2.5rem;
  color: #999;
}
.my-account .icon-box-light .icon-box-title {
  font-size: 2rem;
}
.my-account .order:not(th) {
  padding-top: 0.9rem;
}
.my-account .order:not(th) .order-table {
  padding: 1.1rem 2.9rem 0;
}

#account-dashboard.tab-pane {
  padding-top: 1.5rem;
}
#account-dashboard p.greeting {
  font-size: 1.6rem;
}
#account-dashboard p a:hover {
  text-decoration: underline;
}
#account-dashboard .icon-box {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 3px;
  padding: 4rem 2rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#account-dashboard .icon-box:hover {
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}
#account-dashboard .icon-box:hover p {
  color: var(--link-hover-color);
}
#account-dashboard .icon-box a {
  color: inherit;
}
#account-dashboard .icon-box p {
  font-size: 1.4rem;
  color: var(--body-color);
  text-transform: uppercase;
  margin-bottom: 0;
  -webkit-transition: color;
  transition: color;
}
#account-dashboard .icon-box-title {
  font-size: 1.8rem;
  text-transform: capitalize;
}

#account-downloads.tab-pane {
  padding-top: 0.9rem;
}
#account-downloads .icon-box-side .e-icon-download {
  font-size: 2.5rem;
  margin-top: -0.5rem;
}
#account-downloads .icon-box {
  margin-bottom: 1.4rem;
}

#account-orders.tab-pane {
  padding-top: 0.8rem;
}
#account-orders .icon-box {
  margin-bottom: 1.8rem;
}
#account-orders .account-orders-table th {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#account-orders .account-orders-table td {
  padding-top: 2.1rem;
  padding-bottom: 2.1rem;
}
#account-orders .account-orders-table .order-id {
  padding-left: 1rem;
  width: 20.77%;
}
#account-orders .account-orders-table .order-date {
  width: 20.1%;
}
#account-orders .account-orders-table .order-status {
  width: 20%;
}
#account-orders .account-orders-table .order-total {
  width: 25.48%;
}
#account-orders .account-orders-table .order-action {
  width: 13.78%;
  padding-right: 1rem;
}
#account-orders .account-orders-table td.order-total {
  letter-spacing: 0;
}
#account-orders .order-action .btn {
  color: #333;
  border-color: #ccc;
  -webkit-transition: color 0.4s, border-color 0.4s, background-color 0.4s;
  transition: color 0.4s, border-color 0.4s, background-color 0.4s;
}
#account-orders .order-action .btn:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

#account-details.tab-pane {
  padding-top: 0.9rem;
}
#account-details.tab-pane .e-icon-user {
  margin-bottom: 0.3rem;
}
#account-details .icon-box {
  margin-bottom: 1.4rem;
}
#account-details .account-details-form label {
  color: #666;
  font-size: 1.4rem;
  line-height: 2.3;
}
#account-details .account-details-form .form-control {
  margin-bottom: 1.6rem;
  border-radius: 0.3rem;
  font-size: 1.4rem;
  color: #666;
}
#account-details .account-details-form p {
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  line-height: 2.1;
}
#account-details .card {
  border: 1px solid #eee;
}
#account-details .title-password {
  font-size: 1.8rem;
}

#account-addresses.tab-pane {
  padding-top: 0.8rem;
}
#account-addresses.tab-pane p {
  margin-bottom: 2.1rem;
  line-height: 1.6;
}
#account-addresses .title {
  font-size: 1.5rem;
  margin-bottom: 1.7rem;
  padding-bottom: 1.4rem;
}
#account-addresses .title-underline::after {
  background-color: #e5e5e5;
}
#account-addresses address {
  font-style: normal;
}
#account-addresses .address-table th, #account-addresses .address-table td {
  padding: 0.3rem 0;
}
#account-addresses .address-table th {
  font-weight: normal;
  text-align: start;
  width: 100px;
  color: #999;
}
#account-addresses .address-table td {
  color: #333;
}

@media (max-width: 897px) {
  .my-account .tab-vertical .nav-tabs, .my-account .tab-vertical .tab-content {
    width: 100%;
  }

  #account-orders .account-orders-table td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    word-break: break-all;
  }
  #account-orders .account-orders-table .order-id {
    width: 10%;
    padding-left: 0;
  }
  #account-orders .order-action .btn {
    padding: 0;
    border: none;
    text-align: start;
  }
  #account-orders .order-action .btn:hover, #account-orders .order-action .btn:active, #account-orders .order-action .btn:focus {
    background-color: transparent;
    border: none;
    color: #336699;
  }
}
.login-page .login-popup {
  margin: 4.2rem auto 5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.login-page .checkbox-round + label::before {
  border-radius: 50%;
  border: 1px solid #ccc;
  background: transparent;
}
.login-page .checkbox-round + label::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background-color: #333;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 5px;
  opacity: 0;
}
.login-page .checkbox-round.active + label::after {
  opacity: 1;
}
.login-page .login-vendor {
  display: none;
}

.elexio-icon-account.elexio-icon-avatar__loggedin {
  position: relative;
  margin-right: 5px;
}
.elexio-icon-account.elexio-icon-avatar__loggedin::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: 900;
  font-size: 1.6rem;
  content: "\f0d7";
  margin-left: 3.1rem;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
} 
.elexio-icon-account.elexio-icon-avatar__loggedin::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-size: 8px;
}
.header .widget-box a:hover .elexio-icon-account.elexio-icon-avatar__loggedin::after {
  -webkit-transform: translate(0%, 0%) rotate(-90deg);
  transform: translate(0%, 0%) rotate(-90deg);
}

.account-avatar__wrapper {
  position: relative;
}
.account-avatar__wrapper.account-avatar__not-loggedin::after {
  position: absolute;
  background-color: var(--account-avatar-not-loggedin-after-bg-color);
  right: -1px;
  bottom: 0px;
  font-family: "elexio" !important;
  content: "";
  font-size: 0.9rem;
  color: var(--account-avatar-not-loggedin-after-color);
  border-radius: 150%;
  padding: 0.2rem;
  border: 1px solid var(--header-middle-bg-color);
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
  .widget-box-hor .account-avatar__wrapper.account-avatar__not-loggedin::after {
     right: 2px;
  }
.account-avatar__wrapper.account-avatar__loggedin::after {
  position: absolute;
  right: 3px;
  bottom: 0px;
  font-family: "elexio" !important;
  content: "";
  font-size: 1.6rem;
  color: var(--account-avatar-loggedin-after-color);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
  .widget-box-hor .account-avatar__wrapper.account-avatar__loggedin::after {
     right: 2px;
  }

.account-avatar__wrapper .elexio-icon-account {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.account-name-short {
  position: absolute;
  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: var(--span-total-count-bg-color);
  color: var(--span-total-count-color);
  border: 1px solid var(--header-middle-bg-color);
  top: -5px;
  left: -8px;
  width: 22px;
  height: 22px;
  border-radius: 150%;
  font-weight: 600;
  font-size: 1.2rem;
}

.sticky-header .account-avatar__wrapper.account-avatar__not-loggedin::after {
  border-color: var(--sticky-content-fix-top-mobile-bg-color);
}
.page-header-bg-color-transparent .account-avatar__wrapper.account-avatar__not-loggedin::after {
  border-width: 0px;
}
.sticky-footer .account-avatar__wrapper.account-avatar__not-loggedin::after {
  right: 4px;
  bottom: 8px;
  border-color: var(--sticky-content-fix-bottom-mobile-bg-color);
}
.sticky-footer .account-avatar__wrapper.account-avatar__loggedin::after {
  right: 5px;
  bottom: 7px;
}
.header .header-top .account-avatar__wrapper.account-avatar__not-loggedin::after {
  right: -2px;
  bottom: 2px;
  font-size: 0.7rem;
  border-color: var(--header-top-bg-color);
}
  .header .header-top .widget-box-hor .account-avatar__wrapper.account-avatar__not-loggedin::after {
     right: 2px;
  }
.header .header-top .account-avatar__wrapper.account-avatar__loggedin::after {
  right: -2px;
  bottom: 2px;
  font-size: 1.3rem;
}
  .header .header-top .widget-box-hor .account-avatar__wrapper.account-avatar__loggedin::after {
     right: 2px;
  }

/*-------------------------
    Order Page
-------------------------*/
.order .shop-breadcrumb {
  margin-bottom: 2.2rem;
}
.order .order-table {
  padding: 0.6rem 3rem 3rem;
  border: 1px solid #e1e1e1;
  border-collapse: separate;
}
.order .order-table thead th {
  padding-bottom: 1.7rem;
  font-size: 1.8rem;
}
.order .order-table thead th,
.order .order-table tfoot th,
.order .order-table tfoot td {
  border-bottom: 1px solid #e1e1e1;
}
.order .order-table td {
  border: none;
}
.order .order-table tbody td:first-child {
  min-width: 16rem;
  padding-top: 3rem;
  padding-bottom: 0;
}
.order .order-table tbody a {
  color: #336699;
}
.order .order-table tbody a:hover {
  text-decoration: underline;
}
.order .order-table tbody strong {
  color: #333;
}
.order .order-table tfoot {
  font-size: 1.6rem;
}
.order .order-table tfoot th, .order .order-table tfoot td {
  padding-top: 1.5rem;
  padding-bottom: 1.8rem;
  font-weight: 600;
}
.order .order-table tfoot th {
  color: #333;
}
.order .order-table .total td {
  font-weight: 700;
  font-size: 2rem;
  color: #333;
}
.order .alert {
  border: 1px dashed #e5e5e5;
}
.order .alert i {
  color: #799b5a;
}
.order .address-table td {
  color: #666 !important;
}
.order #billing-account-addresses {
  border-bottom: 1px solid #e1e1e1;
}
.order #billing-account-addresses .email td {
  padding-top: 3.5rem;
}
.order .btn-back {
  padding: 0.85em 1.4em;
}

.order-success {
  padding: 3.6rem 1.5rem;
  border: 2px solid #e1e1e1;
  font-size: 2.4rem;
}
.order-success i {
  font-size: 28px;
  vertical-align: middle;
  margin-right: 0.8rem;
}

.order-view {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 3.2rem 0;
}
.order-view li {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1rem;
  text-align: center;
  font-size: 1.8rem;
}
.order-view strong {
  color: #333;
  display: block;
}

.order-subtable thead tr {
  border-bottom: 1px solid #e1e1e1;
}
.order-subtable thead th {
  padding-bottom: 2rem;
  font-size: 1.8rem;
  color: #333;
  text-align: start;
  font-weight: 600;
}
.order-subtable td {
  white-space: nowrap;
}
.order-subtable tbody td {
  border: none;
  padding: 1.5rem 0;
}
.order-subtable strong {
  display: block;
  color: #333;
}
.order-subtable .order {
  width: 12.5%;
}
.order-subtable .date {
  width: 21.13%;
}
.order-subtable .status {
  width: 14.11%;
}
.order-subtable .total {
  width: 32%;
  color: #333;
}
.order-subtable .action {
  text-align: end;
}
.order-subtable tbody tr:first-child td {
  padding-top: 3.4rem;
}
.order-subtable tbody .order {
  color: #336699;
}
.order-subtable tbody .btn {
  padding: 0.72em 1.2em;
  color: #333;
  border-color: #eee;
  background-color: #eee;
}
.order-subtable tbody .btn:hover, .order-subtable tbody .btn:active, .order-subtable tbody .btn:focus {
  color: #fff;
  border-color: #333;
  background-color: #333;
}
.order-subtable thead th:not(:last-child),
.order-subtable tbody td:not(:last-child) {
  padding-right: 1rem;
}

@media (max-width: 897px) {
  .order-view {
    display: block;
  }
  .order-view li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: start;
  }
  .order-view label {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding-right: 1rem;
  }
}
@media (max-width: 897px) {
  .order-subtable {
    display: block;
    overflow-x: auto;
    min-width: 100%;
  }
}
@media (max-width: 479px) {
  .order-view li {
    font-size: 1.5rem;
  }

  .order .order-table {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
/*------------------------------------
    Element Product Page
-------------------------------------*/
.product-list-section {
  margin-bottom: 4.2rem;
}
.product-list-section .title-link-wrapper .title::after {
  height: 2px;
  background-color: #666;
}

.product-wrapper.row [class*=col-] {
  margin-bottom: 2rem;
}

.product .product-countdown-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
    -ms-flex-align: end;
      align-items: flex-end;
  color: var(--product-countdown-color);
  font-size: 1.2rem;
  font-weight: var(--product-countdown-font-weight);
  margin-top: 0.5rem;
}
.product.align-center .product-countdown-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
  .product-bundel.product .product-countdown-container {
    margin-top: 0;
    margin-bottom: 1rem;
  }

.product .product-countdown-container &gt; label {
  color: var(--product-countdown-label-color);
  margin-right: 0.2rem;
}

.product .product-countdown-container &gt; label i {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  right: 0rem;
  top: 0.4rem;
  bottom: 0.2rem;
}

.product:not(.product-single) .product-countdown-container .product-countdown {
  display: inline-block
}

.product:not(.product-single) .thumbnail .product-countdown-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  white-space: nowrap;
  overflow-x: auto;
  background-color: rgba(34, 34, 34, 0.8);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: -0.025em;
  font-weight: 400;
  text-align: center;
  border-radius: 0.3rem;
  padding-left: 0;
  padding-right: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product:not(.product-single) .thumbnail .product-countdown-icon {
  float:left;
  font-size: 20px;
  margin-left: 5px;
}
.product:not(.product-single) .thumbnail .product-countdown {
  width: 100%;
  margin-right: 5px;
}
.product:not(.product-single) .countdown-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product:not(.product-single) .countdown-section {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.9em 0 0.8em;
}
.product:not(.product-single) .countdown-amount, .product:not(.product-single) .countdown-period {
  display: inline-block;
}
.product:not(.product-single) .countdown-amount {
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.3;
}
.product:not(.product-single) .countdown-period {
  font-size: 1em;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: -0.035em;
}
.product:not(.product-single):hover .thumbnail .product-countdown-container {
  opacity: 0;
  visibility: hidden;
}
.product:not(.product-single) .product-list .product-desc {
  margin-bottom: 3.9rem;
  line-height: 1.9;
}

.product-sticky-content .product-list-sm {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-sticky-content .product-media {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.5rem;
          flex: 0 0 8.5rem;
  max-width: 8.5rem;
  height: 8.5rem;
}
.product-sticky-content .product-media img {
  height: 100%;
}
.product-sticky-content .product-name {
  font-size: 1.4rem;
}
.product-sticky-content .product-price {
  font-size: 1.6rem;
}
.product-sticky-content .old-price {
  font-size: 1.6rem;
}
.product-sticky-content .product-form.container {
  padding: 0;
}
.product-sticky-content.fixed .product-list-sm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product-sticky-content.fixed .product-form {
  padding: 2rem;
}
.product-sticky-content.fixed .product-qty-form, .product-sticky-content.fixed .btn-cart {
  margin-bottom: 0;
}
.product-sticky-content.fixed .product-qty-form {
  margin-right: 0.8rem;
  max-width: 14rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14rem;
          flex: 0 0 14rem;
}
.product-sticky-content.fixed .product-qty-form label {
  display: none;
}
.product-sticky-content.fixed .btn-cart {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 21rem;
}
.product-sticky-content.fix-top.fixed .product-form {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.product-sticky-content.fix-top.fixed .product-media {
  max-width: 4.4rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4.4rem;
          flex: 0 0 4.4rem;
  height: 4.4rem;
}
.product-sticky-content.fix-top.fixed .product-name {
  display: none;
}
.product-sticky-content.fix-top.fixed .btn-cart {
  min-width: 14rem;
}

.product-single .col-md-6 .product-bm-wrapper {
  margin-bottom: 0.8rem;
}

.sticky-both-content .product-single {
  margin-top: 0.4rem;
}
.sticky-both-content .product-title {
  margin-bottom: 1.2rem;
  line-height: 1.4;
}
.sticky-both-content .product-color-swatch {
  margin-top: 0.3rem;
}
.sticky-both-content .product-size-swatch {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.product-qty-form.with-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 21.5rem;
          flex: 0 0 21.5rem;
  max-width: 21.5rem;
}

@media (max-width: 479px) {
  .product-sticky-content.fix-top.fixed .product-media, .product-sticky-content.fix-top.fixed .product-details {
    display: none;
  }
  .product-sticky-content.fix-top.fixed .btn-cart {
    max-width: none;
  }
  .product-sticky-content.fix-top.fixed .product-form {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .product-sticky-content.fixed .product-list-sm {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
/*--------------------------------------------
    Single Product Page
----------------------------------------------*/
.product-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: sticky;
}
.product-gallery.row &gt; * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-gallery.product-gallery-sticky {
  top: 7rem;
}

.product-gallery-btn {
  position: absolute;
  padding: 1rem;
  width: 4rem;
  height: 4rem;
  right: 1.5rem;
  bottom: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0;
  border-radius: 50%;
  color: #999;
  background: #fff;
  font-size: 2rem;
  line-height: 1;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s, color 0.3s;
  transition: opacity 0.3s, color 0.3s;
  z-index: 1;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.product-gallery-btn.product-degree-viewer {
  bottom: 6.5rem;
}
.product-gallery-btn.product-video-viewer {
  bottom: 11.5rem;
}
.product-gallery-btn:hover {
  opacity: 1;
  color: #333;
}

.product-gallery .product-gallery-container-wrapper-pagination .product-gallery-btn {
  bottom: calc(1.5rem + 3rem); 
}

.product-sticky-content.fixed {
  background-color: #fff;
}

.bought-together-products &gt; * {
  width: auto;
}
.bought-together-products .product-wrap {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15.8rem;
          flex: 0 0 15.8rem;
  max-width: 15.8rem;
}
.bought-together-products .product-wrap:not(:first-child) {
  margin-left: 3rem;
}
.bought-together-products .product-wrap:not(:first-child) .product-media::before, .bought-together-products .product-wrap:not(:first-child) .product-media::after {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 50%;
  background-color: #999;
}
.bought-together-products .product-wrap:not(:first-child) .product-media::before {
  width: 17px;
  height: 1px;
  -webkit-transform: translateX(-8px);
          transform: translateX(-8px);
}
.bought-together-products .product-wrap:not(:first-child) .product-media::after {
  width: 1px;
  height: 17px;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.bought-together-products .product-details {
  padding: 1.5rem 0.2rem 0;
}
.bought-together-products .product-button {
  position: relative;
  margin: 1.3rem 0 2.5rem 10rem;
}
.bought-together-products .product-button::before, .bought-together-products .product-button::after {
  content: "";
  position: absolute;
  left: -5rem;
  top: 70px;
  width: 17px;
  height: 1px;
  -webkit-transform: translateX(-8px);
          transform: translateX(-8px);
  background-color: #999;
}
.bought-together-products .product-button::before {
  margin-top: -12px;
}
.bought-together-products .bought-price {
  font-size: 2.4rem;
}
.bought-together-products .bought-count {
  margin-bottom: 2.7rem;
  line-height: 1.3;
}
.bought-together-products .product-media:hover img {
  opacity: 1;
}
.bought-together-products .product-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bought-together-products .product-checkbox label {
  position: static;
  padding-left: 0;
}
.bought-together-products .custom-checkbox {
  cursor: pointer;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.bought-together-products .custom-checkbox + label::before {
  top: 1.5rem;
  left: 1.5rem;
  -webkit-transform: none;
          transform: none;
}

.product-bundel {
	
}
.product-bundel .product-wrap {
	
}
.product-bundel .product-wrapper {
   width: 100%;
}
.product-bundel .product-wrapper &gt; .product-wrap {
   border-bottom: 0px;
}
   .product-bundel.product-bundel-single .product-wrapper &gt; .product-wrap {
      border-bottom: 1px solid var(--alg-border-color);
   }
.product-bundel .product-wrapper &gt; .product-wrap::after {
   content: "+";
   font-family: "Arial";
   position: absolute;
   top: calc(50%);
   right: -11px;
   font-size: var(--product-bundel-product-wrap-after-font-size);
   font-weight: 300;
   background-color: var(--product-bundel-product-wrap-after-bg-color);
   color: var(--product-bundel-product-wrap-after-color);
   border-width: var(--product-bundel-product-wrap-after-border-width);
   border-style: solid;
   border-color: var(--product-bundel-product-wrap-after-border-color);
   line-height: 14px;
  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;
   height: 22px;
   width: 22px;
   border-radius: 150%;
   z-index: 1;	
}

@media (max-width: 897px) {
   .product-bundel .product-wrapper &gt; .product-wrap:nth-of-type(2n)::after {
      top: unset;
      left: -11px;
      bottom: -11px;
   }
}
.product-bundel .product-wrapper &gt; .product-wrap:last-child::after {
   content: "";	
   background-color: transparent;
   border-width: 0px;
   padding: 0;
}
.product-bundel.product-bundel-single .product-wrapper.product-wrapper__widget &gt; .product-wrap::after {
   top: unset;
   right: calc(50% - 15px);
   bottom: -16px;
   left: unset;/*11rem*/
   font-size: var(--product-bundel-single-product-wrap-after-font-size);
   width: 32px;
   height: 32px;
   border: 4px solid var(--main-content-bg-color);
   background-color: var(--product-bundel-single-product-wrap-after-bg-color);
   color: var(--product-bundel-single-product-wrap-after-color);
}
.mfp-popup-product .product-bundel.product-bundel-single .product-wrapper.product-wrapper__widget &gt; .product-wrap::after {
   border-color: transparent;
}
.product-bundel.product-bundel-single .product-wrapper.product-wrapper__widget &gt; .product-wrap:last-child::after {
   padding: 0;
   background-color: transparent;
   border-width: 0px;
   width: 0px;
   height: 0px;
}

.product-bundel .product-bundel-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-bundel .product-bundel-wrap .product-wrapper {
  width: 70%;
}

.product-bundel .product-bundel-wrapper-info {
  position :relative;	

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
      -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 80px;
}
.product-bundel .product-bundel-wrapper-info::before {
  content: "=";
  position: absolute;
  top: calc(50% - 18px);
  left: 30px;
  font-size: 34px;
  font-weight: 300;
  color: var(--product-bundel-product-button-after-color);
  line-height: 14px;
  display: inline-block;
  width: 18px;
  height: 18px;
  z-index: 1;	
}

@media (max-width: 897px) {
  .product-bundel .product-bundel-wrapper-info {
    padding-left: 40px;
  }
  .product-bundel .product-bundel-wrapper-info::before {
    left: 0px;
  }
}

.product-bundel .product-bundel-wrapper-info .product-bundel-wrapper-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-bundel .product-bundel-wrapper-info .product-bundel-image {
  width: 40%;
  margin-right: 1rem;
}

.product-bundel .product-bundel-wrapper-info .product-bundel-info {
  width: 60%;
}

.product-bundel .bundel-aantal-item {

}

.product-bundel .bundel-normal-price {

}

.product-bundel .bundel-bespaar-info {

}

.product-bundel .bundel-bespaar-info .bundel-bespaar-info-perc {
  color: var(--product-bundel-bespaar-perc-color);	
  font-weight: 700;
}

.product-bundel .bundel-voorraad {
  margin-top: 1.5rem;
}

@media (max-width: 897px) {
   .product-bundel .product-bundel-wrap {
      display: block;
   }
   .product-bundel .product-bundel-wrap .product-wrapper {
      width: inherit;
   }
   .product-bundel .product-bundel-wrapper-info {

   }
   .product-bundel .product-bundel-wrapper-info::before {

   }
}

.product-tabs .nav-item:not(:last-child) {
  margin-right: 4rem;
}
.product-tabs .nav-link {
  padding: 1.5rem 0 1.3rem;
  font-size: var(--tab-accordion-font-size); 
  font-weight: var(--tab-accordion-font-weight);
  color: var(--tab-color);
}
.product-tabs .nav-link::after {
  border-top: 2px solid transparent;
}

.product-tabs .nav-tabs .nav-link {
  color: var(--tab-color);
}
.product-tabs .nav-tabs .nav-link:hover {
  color: var(--body-color);
}
.product-tabs .tab-pane {
  padding: 3.5rem 0 2.7rem;
}
.product-tabs ul {

}
@media (max-width: 897px) {
  .product-tabs ul.nav-tabs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-snap-type: x proximity;
    scroll-snap-type: x proximity;
    flex-wrap: unset;
    height: 47px;
  }
  .product-tabs ul.nav-tabs &gt; li {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 44px;
    scroll-snap-align: center;
  }
  .product-tabs ul.nav-tabs &gt; li:last-child {
    margin-right: 10px;
  }
  .product-tabs .nav-tabs-wrapper {
    position: relative;
  }
  .product-tabs .nav-tabs-wrapper::after {
    position: absolute;
    top: 0;
    right: 0px;
    width: 20px;
    height: 100%;
    background: linear-gradient(-90deg, var(--main-content-bg-color) 0%, var(--main-content-bg-color) 25%, rgba(255, 255, 255, 0) 100%);
    content: "";
    z-index: 0;
  }
}

.product-tabs .product-video img {
  min-height: 20rem;
}

#product-tab-description .sub-title {
  margin: 0.4rem 0 0.4rem;
  font-size: 1.4rem;
}
#product-tab-description .sub-title span {
  margin-right: 1.2rem;
}
#product-tab-description .detail {
  line-height: 1.6;
}
#product-tab-description ul {
  
}
#product-tab-description.card-body .col-md-6 {
  margin-bottom: 1.7rem;
}

#product-tab-specification ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0rem 0 1rem;
}
#product-tab-specification ul label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20rem;
          flex: 0 0 20rem;
  max-width: 20rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  z-index: 1;
  color: #333;
}
#product-tab-specification ul p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0;
}

#product-tab-vendor .vendor-banner img {
  min-height: 29.5rem;
  width: 100%;
}
#product-tab-vendor .vendor-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.7rem;
}
#product-tab-vendor .vendor-logo img {
  border: 1px solid #eee;
  border-radius: 5px;
}
#product-tab-vendor .vendor-name {
  margin: 0.3rem 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
}
#product-tab-vendor .vendor-name a {
  color: inherit;
}
#product-tab-vendor .ratings-full {
  margin-right: 0.8rem;
}
#product-tab-vendor .rating-reviews {
  font-size: 1.4rem;
  color: #666;
}
#product-tab-vendor .vendor-info {
  margin-bottom: 3.1rem;
  font-size: 1.4rem;
}
#product-tab-vendor .vendor-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.75rem 0;
}
#product-tab-vendor .vendor-info label {
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12rem;
          flex: 0 0 12rem;
  max-width: 12rem;
  padding-right: 1rem;
  color: #333;
}
#product-tab-vendor .store-address {
  font-size: 1.4rem;
  color: #666;
  opacity: 1;
}
#product-tab-vendor .store-phone a {
  color: #333;
}
#product-tab-vendor .store-phone a:hover {
  color: #336699;
}
#product-tab-vendor p {
  font-size: 1.4rem;
  line-height: 1.75;
}

.accordion-simple:not(.accordion-icon) .card-header a::after {
  font-size: var(--tab-accordion-font-size); 
  font-weight: var(--tab-accordion-font-weight);
}

@media (min-width: 898px) {
  #product-tab-vendor .pl-md-6 {
    padding-left: 3rem !important;
  }
}
#product-tab-accordion__productbeoordelingen {
  border-bottom-width: 0;
}
#product-tab-accordion__productbeoordelingen p {
  font-size: 1.4rem;
}
#product-tab-accordion__productbeoordelingen .avg-rating-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
#product-tab-accordion__productbeoordelingen .avg-mark {
  width: 8rem;
  font-size: 6em;
  font-weight: 700;
  color: var(--rating-avg-color);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-right: 1.8rem;
  margin-bottom: 0;
}
#product-tab-accordion__productbeoordelingen .avg-rating {
}
#product-tab-accordion__productbeoordelingen .avg-rating p {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}
#product-tab-accordion__productbeoordelingen .avg-rating .ratings-container {
  margin-bottom: 0.3rem;
}
#product-tab-accordion__productbeoordelingen .avg-rating .ratings-container .div-stars {
  margin-right: 0.8rem;
}
#product-tab-accordion__productbeoordelingen .avg-rating .ratings-full {
  margin-right: 0.8rem;
}
#product-tab-accordion__productbeoordelingen .avg-rating .rateit-font {
  font-size: 2.4rem;
  height: 27px;
  margin-right: 0.8rem;
}
#product-tab-accordion__productbeoordelingen .ratings-value {
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
}
#product-tab-accordion__productbeoordelingen .ratings-value .avg-perc {
  width: 8rem;
  margin-right: 2.1rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--rating-avg-perc-color);
}
#product-tab-accordion__productbeoordelingen .ratings-value .avg-recommended {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#product-tab-accordion__productbeoordelingen .ratings-value .recommended {
  font-size: 1.6rem;
  margin-right: 0.5rem;
}
#product-tab-accordion__productbeoordelingen .ratings-value .count {
  margin-left: 0rem;
  font-size: 1.2rem;
  color: #aaa;
}
#product-tab-accordion__productbeoordelingen .ratings-list .ratings-container {
  margin-bottom: 0.5rem;
}
#product-tab-accordion__productbeoordelingen .rating .rateit-font {
  font-size: 1.8rem;
  height: 18px;
}
#product-tab-accordion__productbeoordelingen .ratings-list .progress-bar {
  background-color: #eee;
  margin-left: 1.3rem;
  margin-bottom: 0;
  border-radius: 0.4rem;
}
#product-tab-accordion__productbeoordelingen .ratings-list .progress-bar span {
  background-color: var(--rating-progress-bg-color);
  border-radius: var(--rating-progress-border-radius);
}
#product-tab-accordion__productbeoordelingen .ratings-list .progress-value {
  margin-left: 2rem;
  min-width: 7rem;
}
#product-tab-accordion__productbeoordelingen .ratings-list .progress-value mark {
  font-size: 1.2rem;
  color: #666;
}
#product-tab-accordion__productbeoordelingen .title-link {
  font-size: 1.4rem;
}
#product-tab-accordion__productbeoordelingen .review-form-wrapper p {
  font-size: 1.4rem;
  line-height: 1.5;
}
#product-tab-accordion__productbeoordelingen .rating-form {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 2.4rem;
  line-height: 1;
}
#product-tab-accordion__productbeoordelingen .rating-form label {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
#product-tab-accordion__productbeoordelingen .rating-form .rateit.rateit-font {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 40px;
}
#product-tab-accordion__productbeoordelingen .rating-form .rateit-font .rateit-range {
}
#product-tab-accordion__productbeoordelingen .review-form {
  padding-top: 0.3rem;
}
#product-tab-accordion__productbeoordelingen .review-form textarea {
  height: 14.3rem;
}
#product-tab-accordion__productbeoordelingen .form-group {
  margin-bottom: 1.5rem;
}
#product-tab-accordion__productbeoordelingen .form-group .custom-checkbox + label::before {
  top: 0;
  -webkit-transform: none;
          transform: none;
  margin-top: 0.2rem;
}
#product-tab-accordion__productbeoordelingen .review-interest {

}
#product-tab-accordion__productbeoordelingen .review-interest .form-group {
  margin-bottom: 0.5rem;
}
#product-tab-accordion__productbeoordelingen .tab-nav-boxed .nav-item {
  margin: 0 1rem 0.5rem 1rem;
}
#product-tab-accordion__productbeoordelingen .tab-nav-boxed .nav-link {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  border-width: 1px;
  padding: 0.9em 1.5em;
  border-radius: 2rem;
}
#product-tab-accordion__productbeoordelingen .tab-nav-boxed .nav-link::after {
  content: none;
}
#product-tab-accordion__productbeoordelingen .tab-nav-boxed .nav-link:hover, #product-tab-accordion__productbeoordelingen .tab-nav-boxed .nav-link.active {
  color: var(--link-active-color);
}
#product-tab-accordion__productbeoordelingen .tab-nav-boxed .tab-pane {
  padding: 1.5rem 0 0;
}

.vendor-product-section {
  margin-bottom: 4.2rem;
}

.vendor-product-section .ratings-container, .related-product-section .ratings-container {
  margin-bottom: 0.3rem;
}

.product-single .product-countdown__single.product-countdown-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
    -ms-flex-align: end;
      align-items: flex-end;
  margin: -0.7rem 0 1rem;
  font-size: 1.4rem;
}
.product-single .product-countdown__single.product-countdown-container .countdown-amount {
  font-weight: 700;
  color: inherit;
}
.product:not(.product-single) .thumbnail .product-countdown-container .countdown-amount {
  color: #fff;
}

.description-section .title.title-link::before, .review-section .title.title-link::before {
  height: 0.2rem;
}

aside .service-list {
  padding: 0 2rem;
  border: 1px solid #eee;
}
aside .service-list &gt; * {
  padding: 1.6rem 0;
}
aside .service-list &gt; *:not(:last-child) {
  border-bottom: 1px solid #eee;
}
aside .service-list .icon-box svg {
  width: 3rem;
  height: 3rem;
}
aside .service-list .icon-box-title {
  font-size: 1.3rem;
  line-height: 1.3;
  letter-spacing: 0;
}
aside .service-list p {
  font-size: 1.2rem;
  line-height: 1.2;
}
aside .sp-sidebar-banner .banner-content {
  top: 9%;
  left: 6.5%;
}
aside .sp-sidebar-banner .banner-title, aside .sp-sidebar-banner .banner-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
aside .sp-sidebar-banner span {
  font-size: 2.4rem;
  margin-right: 0.5rem;
}

@media (min-width: 992px) {
  .sticky-both-content .product-details-1 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.hotspot-banner {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: visible;
}

.hotspot-banner &gt; figure img {
  background: var(--placeholder-skeleton-bg-color);
}

.hotspot-product {
  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: var(--hotspot-product-dot-width-height);
  height: var(--hotspot-product-dot-width-height);
  border-radius: 50%;
  position: absolute;
  background: var(--hotspot-product-dot-bg-color);
  box-shadow: var(--hotspot-product-dot-box-shadow);
  z-index: 1;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
}
.hotspot-product .product {
  position: absolute;
  opacity: 0;
  width: 20em;
  padding: 1rem;
  visibility: hidden;
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s, z-index 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, z-index 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, z-index 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, z-index 0.3s, -webkit-transform 0.3s;
  z-index: -1;
}
.hotspot-product .product .product-action-vertical {
  opacity: 1;
  visibility: visible;
}
.hotspot-product:hover {
  background-color: var(--hotspot-product-dot-hover-bg-color);
  z-index: 2;
}
.hotspot-product:hover .product {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hotspot-product .product-name {
  margin-bottom: 1rem;
}
.hotspot-product .product-qty-form {
  display: none;
}
.hotspot-product .product-price {

}

.hotspot-right .product {
  left: 100%;
  top: -6rem;
}
.hotspot-right:hover .product {
  -webkit-transform: translateX(1rem);
          transform: translateX(1rem);
}

.hotspot-top .product {
  bottom: 100%;
  left: -40px;
}
.hotspot-top:hover .product {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.hotspot-left .product {
  right: 100%;
  top: -60px;
}
.hotspot-left:hover .product {
  -webkit-transform: translateX(-1rem);
          transform: translateX(-1rem);
}

@-moz-keyframes pulse-hotspot{0%{-moz-transform:scale(1);opacity:0}25%{-moz-transform:scale(1);opacity:.1}50%{-moz-transform:scale(1.1);opacity:.3}75%{-moz-transform:scale(1.3);opacity:.5}to{-moz-transform:scale(1.5);opacity:0}}@-webkit-keyframes pulse-hotspot{0%{-webkit-transform:scale(1);opacity:0}25%{-webkit-transform:scale(1);opacity:.1}50%{-webkit-transform:scale(1.1);opacity:.3}75%{-webkit-transform:scale(1.3);opacity:.5}to{-webkit-transform:scale(1.5);opacity:0}}@keyframes pulse-hotspot{0%{transform:scale(1);opacity:0}25%{transform:scale(1);opacity:.1}50%{transform:scale(1.1);opacity:.3}75%{transform:scale(1.3);opacity:.5}to{transform:scale(1.5);opacity:0}}

.hotspot-product .hotspot__dot {
  position: absolute;
  border-width: 5px;
  border-color: var(--hotspot-product-dot-border-color);
  border-style: solid;
  background: transparent;
  border-radius: 50%;
  height: var(--hotspot-product-dot-width-height);
  width: var(--hotspot-product-dot-width-height);
  box-shadow: var(--hotspot-product-dot-box-shadow);
  z-index: 0;
  opacity: .8;
}
.hotspot-product:hover .hotspot__dot {
  border-color: var(--hotspot-product-dot-hover-border-color);
  border-width: 15px;
}

.hotspot-product:hover .hotspot__dot,
.hotspot-product .hotspot__dot-pulse {
  -webkit-animation: pulse-hotspot 2s ease-out;
  -moz-animation: pulse-hotspot 2s ease-out;
  animation: pulse-hotspot 2s ease-out;
    animation-iteration-count: 1;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.hotspot-product a.btn-hotspot {
  background: var(--hotspot-product-dot-btn-hotspot-bg-color);
  height: var(--hotspot-product-dot-btn-hotspot-width-height);
  width: var(--hotspot-product-dot-btn-hotspot-width-height);
  position: relative;
  display: block;
  border-radius: 150%;
}
.hotspot-product:hover a.btn-hotspot {
  background: var(--hotspot-product-dot-hover-bg-color);
}

.hotspot-list-content {
  position: absolute;
  top: 34px;
  bottom: 20px;
  left: 40px;
  z-index: 0;
}
.hotspot-list-content-sticky {
  position: sticky;
  top: 64px;
  bottom: 20px;
}
.hotspot-hint {
  margin-bottom: 21px;
}
.hotspot-hint-title {
  color: var(--hotspot-product-hint-title-color);
  font-size: var(--hotspot-product-hint-title-font-size);
  display: block;
  text-transform: var(--hotspot-product-hint-title-text-transform);
  text-align: left;
  padding-bottom: 1px;
  -webkit-transition: all .3s linear 0s;
  -moz-transition: all .3s linear 0s;
  -ms-transition: all .3s linear 0s;
  -o-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
}
.hotspot-hint-price {
  color: var(--hotspot-product-hint-price-color);
  font-size: 20px;
  line-height: 1em;
  display: block;
}

.pswp img {
  background-color: #fff;
  border-radius: 0.3rem;
}

@media (min-width: 898px) {
  body.addtocart-fixed .footer {
    padding-bottom: 12.5rem;
  }
}
@media (max-width: 897px) {
  .hotspot-banner {
    font-size: 0.8rem;
  }
}
@media (max-width: 575px) {
  .bought-together-products .product-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12rem;
            flex: 0 0 12rem;
    max-width: 12rem;
  }
  .bought-together-products .product-button {
    margin: -1rem 0 3rem 3rem;
  }
  .bought-together-products .product-button::before, .bought-together-products .product-button::after {
    left: -1.5rem;
  }
}
@media (max-width: 479px) {
  .hotspot-banner {
    font-size: 0.6rem;
  }
}
@media (max-width: 375px) {
  #product-tab-specification ul li::before {
    width: calc(44% - 1rem);
  }
  #product-tab-specification ul label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44%;
            flex: 0 0 44%;
    max-width: 44%;
  }
}
/*-----------------------------------------------
    Shop Page
        - Default Shop Banner
        - List
        - Category Wrapper
        - Toolbox
            (toolbox toolbox-left toolbox-right select-box)
        - Toolbox Item
        - Select Menu
        - Selected Items
        - Toolbox Pagination
        - Toolbox Horizontal
        - Toolbox Navigation
------------------------------------------------*/
.shop-default-banner {
  padding: 7.4em 8.7em 7.6em;
}
.shop-default-banner .banner-subtitle {
  margin-bottom: 0.2rem;
  font-size: 2.8em;
}
.shop-default-banner .banner-title {
  margin-bottom: 1.9rem;
  font-size: 4em;
}
.shop-default-banner .btn {
  padding: 1.25em 1.98em;
  font-size: 1.4em;
}
.shop-default-banner .btn i {
  font-size: 1.7rem;
}

.shop-boxed-banner {
  padding-left: 4.8em;
  padding-right: 4.8em;
}
.shop-boxed-banner .banner-subtitle {
  letter-spacing: -0.02em;
}

.shop-default-brands {
  padding: 0.5rem 0;
}

.shop-default-category {
  border-bottom: 1px solid #eee;
  padding-bottom: 3.5rem;
}
.shop-default-category .category-name {
  text-transform: capitalize;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0;
}
.shop-default-category .category-media {
  border: none;
  -webkit-transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
}
.shop-default-category .category-ellipse:hover .category-media {
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.shop-default-category .category-ellipse:hover .category-name {
  color: #336699;
}

.product-lists .product-list {
  border-top: 1px solid #eee;
}
.product-lists .product-list .description-short-product {
  margin-bottom: 1.5rem;
}
.product-lists .product-wrap:last-child .product-list {
  margin-bottom: 0;
}

.toolbox,
.toolbox-right,
.toolbox-left,
.toolbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.toolbox label,
.toolbox-right label,
.toolbox-left label,
.toolbox-item label,
.toolbox-filter-items label.filters-title {
  font-weight: 600;
  margin-right: 1rem;
  line-height: 1.5;
}

.toolbox-right {
  margin-left: auto;
}

.toolbox {
  padding-bottom: 0;
}
.toolbox.toolbox-pagination {
  position: relative;
  padding: 2.5rem 0;
  border-top-width: var(--page-toolbox-pagination-border-top-width);
  border-top-color: var(--page-toolbox-pagination-border-top-color);
  border-top-style: solid;  
}
  #product-tab-accordion__productbeoordelingen .toolbox.toolbox-pagination {
    border-top-width: 0px;
  }
@media (max-width: 897px) {
  .toolbox.toolbox-pagination {
    padding: 1.5rem 0;
  }
}
  .toolbox.toolbox-pagination.toolbox-pagination-infinity {
    border-top: 0px;   
  }
  .toolbox.toolbox-pagination.toolbox-page-heading {
    border-top: 0px;   
  }
  .toolbox.toolbox-pagination.toolbox-result-info {
  
  }
.toolbox &gt; :not(.toolbox-pagination)*:not(:last-child), .toolbox-left &gt; :not(.toolbox-pagination)*:not(:last-child), .toolbox-right &gt; :not(.toolbox-pagination)*:not(:last-child) {
  margin-right: 1rem;
}
.toolbox.toolbox-pagination-bg-border::before {
  content: "";
  position: absolute;
  height: var(--page-pagination-before-height);
  background: var(--page-pagination-before-bg-color);
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.toolbox .showing-info {
  background-color: var(--pagination-showing-bg-color);
  font-size: var(--pagination-showing-font-size);
  color: var(--pagination-showing-info-color);
  padding: var(--pagination-showing-padding);
  z-index: 0;
}
.toolbox .showing-info span {
  margin: 0 0.2rem;
  color: var(--body-color);
}
.toolbox .item-found {
  color: #a9a9a9;
  font-size: 1.4rem;
  letter-spacing: 0;
}
.toolbox .item-found span {
  color: #333;
  margin-right: 0.4rem;
}
.toolbox .left-sidebar-toggle,
.toolbox .right-sidebar-toggle {
  padding: 0.78em 1.05em;
  font-size: 1.3rem;
}
.toolbox .left-sidebar-toggle i,
.toolbox .right-sidebar-toggle i {
  margin-right: 0.7rem;
  margin-left: 0.3rem;
  font-size: 1.4rem;
}
.toolbox .left-sidebar-toggle {
  margin: 0 2rem 1rem 0;
}
.toolbox .right-sidebar-toggle {
  margin-left: 2rem;
}

.toolbox-item {
  position: relative;
  margin-bottom: 1rem;
}

.sidebar.sidebar-vertical .toolbox-item {
  border-bottom-width: var(--sidebar-vertical-toolbox-item-border-bottom-width);
  border-bottom-style: var(--sidebar-vertical-toolbox-item-border-bottom-style);
  border-bottom-color: var(--sidebar-vertical-toolbox-item-border-bottom-color);
  padding-bottom: 1rem;
}

.toolbox-item .toolbox-item-filter-heading {
  width: 100%;
}

.toolbox-item .toolbox-item-filter-heading .heading-wrapper::before {
  height: 0;
}

.toolbox-item .toolbox-item-filter-heading .heading-wrapper .heading-title {
  background: none;
  padding-bottom: 0px;
  font-size: var(--sidebar-vertical-toolbox-item-heading-title-font-size);	
  font-family: var(--sidebar-vertical-toolbox-item-heading-title-font-family);	
  font-weight: var(--sidebar-vertical-toolbox-item-heading-title-font-weight);
  color: var(--sidebar-vertical-toolbox-item-heading-title-color);	
  text-transform: var(--sidebar-vertical-toolbox-item-heading-title-text-transform);
  letter-spacing: var(--sidebar-vertical-toolbox-item-heading-title-letter-spacing);

}

.toolbox-item .toolbox-item-filter-heading .heading-wrapper .heading-title::before {
  height: 0;
}

.sticky-toolbox.fixed {
  background: #fff;
  padding: 1rem 2rem !important;
}

.selected-items {

}
.toolbox + .selected-items {
  font-size: 1.2rem;
}
.selected-items &gt; * {
  display: inline-block;
  margin: 0 0.8rem 0.5rem 0;
}
.selected-items &gt; span:last-child {

}
.selected-items .filter-clean {
  position: relative;
  margin-left: 1.2rem;
  font-size: 1.2rem;
}
.selected-items .filter-clean::before {
  content: "";
  position: absolute;
  left: 0;
  margin-top: calc(1.2rem + 0.6rem);
  width: 100%;
  border-top: 2px solid;
  border-color: inherit;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.selected-items .filter-clean:hover::before {
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.selected-item {
  background-color: var(--filter-selected-item-bg-color);
  color: var(--filter-selected-item-color);
  font-size: var(--filter-selected-item-font-size);
  line-height: 1;
  letter-spacing: 0;
  padding: 8px 1rem;
  border-radius: 0.3rem;
}
.selected-item a {
  color: inherit;
}
.selected-item i {
  display: inline-block;
  margin-left: 1.1rem;
  vertical-align: middle;
  margin-top: -2px;
}

.toolbox-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1.9rem;
}

.btn-layout {
  line-height: 1;
  color: var(--btn-layout-color);
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.btn-layout + .btn-layout {
  margin-left: 1rem;
}
.btn-layout i {
  font-size: 1.9rem;
  color: inherit;
}
.btn-layout.active, .btn-layout:hover {
  color: var(--btn-layout-active-color);
}

@media (max-width: 991px) {
  .shop-content .main-content {
    width: 100%;
  }

  .toolbox .sidebar-fixed {
    margin-right: 0;
  }
  .toolbox .sidebar-content {
    display: block;
  }
}
@media (max-width: 897px) {
  .shop-default-banner {
    padding: 5em;
    font-size: 0.9rem;
  }
}
@media (max-width: 575px) {
  .shop-default-banner {
    padding: 4rem 3rem;
    font-size: 0.8rem;
  }

  .toolbox-left label,
.toolbox-right .toolbox-layout {
    display: none;
  }

  .toolbox-right .toolbox-item.toolbox-show {
    margin-right: 0;
  }

  .toolbox-pagination {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .product-lists .product-list {
    border-top: 0;
  }

  .toolbox .left-sidebar-toggle {
    padding: 0.79em 0.83em;
  }
  .toolbox .left-sidebar-toggle i {
    margin: 0;
  }
  .toolbox .left-sidebar-toggle span {
    display: none;
  }
}
@media (max-width: 479px) {
  .shop-default-banner {
    font-size: 0.7rem;
  }

  .sticky-toolbox.fixed {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
    .header .sticky-toolbox.fixed .container {
      padding-right: 0px;
      padding-left: 0px;
    }

  .toolbox .left-sidebar-toggle {
    margin-right: 1rem;
  }
}
/*----------------------------------------
    Wishlist Page
----------------------------------------*/
.wishlist-page .wishlist-title {
  margin-bottom: 2.4rem;
  line-height: 1.6;
  letter-spacing: -0.015em;
}
.wishlist-page .social-links {
  margin-bottom: 2.8rem;
  padding: 2.2rem 0;
}
.wishlist-page .social-links label {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  margin-right: 1.6rem;
  letter-spacing: -0.01em;
}
.wishlist-page .social-icon {
  margin-right: 0.8rem;
}

.shop-table {
  text-align: left;
}
.shop-table tbody {
  border-bottom: 1px solid var(--shop-table-border-color);
}
.shop-table td {
  padding: 0.8rem 0;
  border-top: 1px solid var(--shop-table-border-color);
  font-size: 1.4rem;
}
.shop-table tbody td:not(:first-child),
.shop-table thead th:not(:first-child) {
  padding-left: 1.5rem;
}
.shop-table .product-thumbnail {
  width: 9rem;
  padding-right: 1rem;
}
.shop-table .product-info {
  white-space: normal;
  word-break: break-word;
  font-weight: normal;
}
  .shop-table .product-info .cart-item-productnaam {
  }
  .shop-table .product-info .cart-item-productnaam a {
    margin-right: 20px;
  }
  .shop-table .product-info .cart-item-product-artikelnummer {
  }
  .shop-table .product-info .cart-item-productattribuut-options label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 400;
  }
  .shop-table .product-info .cart-item-productattribuut-options select {
    max-width: 220px;
  }
  .shop-table .product-info .cart-item-productattribuut-options &gt; div:not(:last-child) {
    margin-bottom: 0.6rem;
  }
  .shop-table .product-price-total .cart-item-product-prijs-totaal {
    font-weight: 600;	
  }
  .shop-table .product-quantity .input-group {
    width: inherit;
  }
  .shop-table .product-quantity select {
    max-width: 7.5rem;
    width: 7.5rem;
  }
  .shop-table .product-quantity input {
    max-width: 10.3rem;
    width: 10.3rem;
  }
  .shop-table .product-quantity label {
    display: block;
    margin-top: 0.3rem;
  }
.shop-table .product-thumbnail a {
  position: relative;
}
.shop-table th {
  padding: 1rem 0 .5rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.6;
  letter-spacing: 0;
}
.shop-table img {
  display: block;
  max-width: 9rem;
}
.shop-table .product-thumbnail &gt; div {
  display: block;
  max-width: 10rem;
  width: 100%;
}
.shop-table th.product-quantity {
  width: 135px;
}
.shop-table th.product-checkout-korting {
  width: 95px;
}
.shop-table .btn-close {
  position: absolute;
  padding: 0;
  background: #fff;
  border: 2px solid #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.4);
  top: -14px;
  right: -8px;
}
.shop-table .btn-close i {
  color: #333;
  font-size: 12px;
  font-weight: 600;
  margin-left: 0;
}
.shop-table .btn-close:hover {
  background-color: #fff;
}
.shop-table .btn-close:hover i {
  color: #336699;
}
.shop-table .cart-item-delete a {
  color: #666;
}
.shop-table .btn-modify {
  display: inline-block;
  margin-top: 1rem;
  border-bottom: 1px solid;
}


.wishlist-table .new-price {
  color: #333;
}
.wishlist-table .wishlist-in-stock {
  color: #336699;
}
.wishlist-table .wishlist-out-stock {
  color: #f93;
}
.wishlist-table .btn-sm {
  padding: 0.77em 2.07em;
}
.wishlist-table .btn-quickview {
  padding-top: 0.85em;
  padding-bottom: 0.85em;
  border: 1px solid #ccc;
  color: #333;
}
.wishlist-table .btn-quickview:hover {
  background-color: #e1e1e1;
  border-color: #e1e1e1;
}
.wishlist-table .product-price {
  width: 15.17%;
}
.wishlist-table .product-stock-status {
  width: 19.84%;
}
.wishlist-table .wishlist-action {
  width: 24.19%;
}

@media (max-width: 897px) {
  .shop-table:not(.account-orders-table) {
  }
  .shop-table:not(.account-orders-table) thead {
    display: none;
  }
  .shop-table:not(.account-orders-table) tbody {
    border: 1px solid #eee;
  }
  .shop-table:not(.account-orders-table) tbody, .shop-table:not(.account-orders-table) tr, .shop-table:not(.account-orders-table) td {
    display: block;
  }
  .shop-table:not(.account-orders-table) tr {
    display: inline-block;
    position: relative;
    padding: 1rem 1rem;
  }
  .shop-table:not(.account-orders-table) tr + tr {
    border-top: 1px solid #eee;
  }
  .shop-table:not(.account-orders-table) td {
    padding: 0;
    border: none;
  }
  .shop-table:not(.account-orders-table) td.product-thumbnail,
.shop-table:not(.account-orders-table) .product-quantity {
    margin-bottom: 1rem;
  }
  .shop-table:not(.account-orders-table) td.product-thumbnail {
    padding-right: 1rem;
    width: 25%;
    float: left;
  }
  .shop-table:not(.account-orders-table) .product-info,
  .shop-table:not(.account-orders-table) .product-price-info,
  .shop-table:not(.account-orders-table) .product-quantity,
  .shop-table:not(.account-orders-table) .product-price-checkout-korting,
  .shop-table:not(.account-orders-table) .product-price-total {
    width: 75%;
    float: right;   
  }
  .shop-table:not(.account-orders-table) .product-price-info {
    margin: 1.4rem 0;
  }
  .shop-table:not(.account-orders-table) .product-quantity .input-group {
    width: auto;
  }
  .shop-table:not(.account-orders-table) .product-quantity label {
    display: inline-block;
  }
  .shop-table:not(.account-orders-table) .cart-item-delete {
    float: right;
    position: absolute;
    right: 5px;
  }
  .shop-table:not(.account-orders-table) [data-mobile-label]::before {
    content: attr(data-mobile-label) ":";
    margin-right: 0.3rem;
  }
  .shop-table:not(.account-orders-table) .form-select {
    padding: .65rem 2.1rem .65rem .9rem;
  }

  .shop-table:not(.account-orders-table) .product-name, .shop-table:not(.account-orders-table) .product-price, .shop-table:not(.account-orders-table) .product-stock-status {
    margin-bottom: 1rem;
  }
  .shop-table:not(.account-orders-table) .product-thumbnail &gt; div, .shop-table:not(.account-orders-table) td {
    margin-left: auto;
    margin-right: auto;
  }
  .shop-table:not(.account-orders-table) .product-thumbnail &gt; div {
    max-width: 30rem;
  }
  .shop-table:not(.account-orders-table) .product-thumbnail &gt; div img {
    max-width: 100%;
  }
  .shop-table:not(.account-orders-table) .product-stock-status,
.shop-table:not(.account-orders-table) .wishlist-action {
    width: auto;
  }
  .shop-table:not(.account-orders-table) tbody td:not(:first-child),
.shop-table:not(.account-orders-table) thead th:not(:first-child) {
    padding-left: 0;
  }
  .cart .cart-action .btn {
     display: inline-block; 
  }
  .cart .cart-action .btn:not(.btn-underline) {
     display: block; 
  }
  .cart .cart-action .btn.btn-shopping {
     margin: 5px auto;
  }
}
/*----------------------------------------
    Vendor Dokan Store Grid Page
-----------------------------------------*/
.vendor-toolbox .toolbox-sort select {
  width: 15.2rem;
  padding: 0.61em 2.5rem 0.61em 1.5rem;
  font-size: 1.4rem;
  border-color: #edecec;
}
.vendor-toolbox .select-box::before {
  right: 1rem;
  margin-top: -0.1rem;
}

.vendor-map-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #f5f5f5;
  padding: 2rem 2rem 1rem;
}
.vendor-map-filter .form-control {
  margin-right: 1rem;
  background: #fff;
  border: none;
  min-height: 4.4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.vendor-map-filter input {
  width: 58.9rem;
}
.vendor-map-filter .select-box::before {
  z-index: 2;
  font-size: 1.2rem;
  right: 2.3rem;
}
.vendor-map-filter select {
  min-width: 22rem;
  font-size: 1.4rem;
  color: #333;
}
.vendor-map-filter select option {
  font-size: 1.4rem;
}
.vendor-map-filter .btn {
  padding: 0.93em 2.97em;
}

.vendor-filter,
.vendor-filter-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.vendor-filter {
  padding: 3rem 0 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #eee;
}
.vendor-filter .select-box::before {
  font-weight: 400;
  right: 1.4rem;
  margin-top: -0.1rem;
}
.vendor-filter select {
  font-size: 1.3rem;
  border-color: #ccc;
  border-radius: 0.3rem;
  color: #333;
  padding-left: 1.5rem;
  min-width: 19rem;
  max-width: none;
}
.vendor-filter select option {
  font-size: 1.4rem;
}
.vendor-filter .btn {
  padding: 0.81em 1.4em;
  background-color: #eee;
  border-color: #eee;
  font-size: 1.3rem;
  color: #333;
}
.vendor-filter .btn:hover, .vendor-filter .btn:focus, .vendor-filter .btn:active {
  background-color: #dcdcdc;
  border-color: #dcdcdc;
}

.store-wcmp .store-banner img {
  min-height: 31.8rem;
}

.store-wcmp-banner {
  margin-bottom: 3.5rem;
}
.store-wcmp-banner .store-media img {
  min-height: 39rem;
}

.tab-vendor-products.tab-nav-underline .nav-link {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}
.tab-vendor-products.tab-nav-underline .nav-link::after {
  border-top-width: 2px;
}
.tab-vendor-products.tab-nav-underline .nav-item:not(:last-child) {
  margin-right: 1rem;
}
.tab-vendor-products .toolbox {
  padding: 0.7rem 0 1rem;
}
.tab-vendor-products .toolbox label {
  font-size: 1.4rem;
}
.tab-vendor-products .reviews {
  margin: 0;
  padding: 0;
}
.tab-vendor-products .review {
  border: none;
  padding-top: 2rem;
  font-size: 1.4rem;
}
.tab-vendor-products .review p {
  margin-bottom: 0;
}
.tab-vendor-products .ratings-container {
  font-size: 1.4rem;
}
.tab-vendor-products .ratings-container .ratings::before {
  color: #FF7272;
}
.tab-vendor-products .review-author {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.tab-vendor-products .review-date {
  font-size: 1.4rem;
  color: #666;
}

.widget-search-products .input-wrapper-inline .form-control {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 9.3rem);
          flex: 0 0 calc(100% - 9.3rem);
  max-width: calc(100% - 9.3rem);
}

.store-wcfm-banner {
  margin-bottom: 2.7rem;
}
.store-wcfm-banner .store-media img {
  min-height: 46rem;
}

.widget-coupons .coupon {
  padding: 1.2rem 2rem;
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 3px;
  font-weight: 600;
  display: inline-block;
  border: 1px dashed #666;
}
.widget-coupons .coupon:hover .coupon-tip {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 2rem);
          transform: translate(-50%, 2rem);
}
.widget-coupons .coupon-tip {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 15.8rem;
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid #17a2b8;
  background-color: #fff;
  border-radius: 0.5rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s;
  z-index: 1;
}
.widget-coupons .coupon-tip::before, .widget-coupons .coupon-tip::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.widget-coupons .coupon-tip::after {
  border: 3px solid transparent;
  border-bottom: 7px solid #fff;
}
.widget-coupons .coupon-tip::before {
  border: 4px solid transparent;
  border-bottom: 8px solid #17a2b8;
}

.vendor-sidebar .widget-title i {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-top: -0.5rem;
  line-height: 0;
}
.vendor-sidebar .widget-title i.e-icon-truck {
  font-size: 2rem;
}

.widget-location .google-map {
  height: 28rem;
  background-color: #ddd;
}

.policies-area {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #eee;
}
.policies-area .title {
  font-weight: 600;
  margin-bottom: 3rem;
}
.policies-area p {
  padding-bottom: 2.1rem;
}

.tab-vendor-wcfm .nav-link {
  padding: 1.5rem 0;
  font-size: 1.5rem;
  text-transform: capitalize;
}
.tab-vendor-wcfm .tab-pane {
  padding: 3rem 0;
}

.average-rating {
  display: inline-block;
  background: #4e4e4e;
  color: #fff;
  font-size: 2.6rem;
  padding: 0.1rem 1.3rem;
  border-radius: 0.3rem;
  margin-bottom: 0.5rem;
}

.user-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.user-wrap .review-ratings {
  display: block;
  margin-right: 1.5rem;
  margin-bottom: 0;
  border: none;
  padding: 0;
}

.user-photo {
  margin-right: 3.6rem;
}
.user-photo figure {
  width: 70px;
  margin-bottom: 1.5rem;
}
.user-photo label {
  display: block;
  margin-bottom: 0.3rem;
}
.user-photo .score {
  background: #666;
  color: #fff;
  padding: 0.1rem 1.2rem;
  border-radius: 0.3rem;
}

.user-info {
  max-width: 49.4rem;
  margin-right: auto;
  padding-right: 2rem;
}
.user-info p {
  font-size: 1.4rem;
  line-height: 1.78;
}

.vendor-wcfm-map .google-map {
  background-color: #ebebeb;
}

.widget-filter .form-control {
  height: 4.6rem;
  max-width: 100%;
  padding-left: 1.5rem;
  border-color: #eee;
  border-radius: 0.3rem;
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 1rem;
}
.widget-filter .widget-body {
  padding: 0.4rem 0 2.3rem;
}

.vendor-sidebar .widget-search-form .widget-body {
  padding: 0 0 3.5rem;
}

.wcfm-toolbox {
  padding-bottom: 1rem;
}
.wcfm-toolbox select {
  font-size: 1.3rem;
  border-color: #eee;
  width: 24rem;
  max-width: none;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
}
.wcfm-toolbox option {
  font-size: 1.3rem;
}
.wcfm-toolbox .showing-info {
  color: #333;
  font-weight: 400;
}

.store-wcfm .store-content {
  max-width: none;
}

.default-section {
  margin-bottom: 1.7rem;
}

.vendors-section {
  background-color: #f8f8f8;
}
.vendors-section .vendor-widget {
  margin-bottom: 0;
}

@media (max-width: 1036px) {
  .store-wcfm .store-footer {
    padding-top: 5rem;
  }
  .store-wcfm .seller-brand {
    right: auto;
    left: 2rem;
    top: -39%;
  }
}
@media (max-width: 991px) {
  .store-wcmp .store-banner img {
    min-height: auto;
    max-height: 20rem;
  }

  .default-section {
    margin-bottom: 5rem;
  }
}
@media (max-width: 897px) {
  .review-ratings .review-ratings-right {
    margin-right: 0;
  }

  .user-wrap .review-ratings {
    display: none;
  }

  .user-photo {
    margin-right: 2rem;
  }

  .user-info {
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .store-list:hover .seller-brand img {
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
  }
}
@media (max-width: 479px) {
  .wcfm-toolbox {
    display: block;
  }

  .review-ratings {
    display: block;
  }
  .review-ratings .ratings-container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .average-rating {
    margin-top: 1rem;
  }

  .tab-vendor-products .nav-tabs {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#description-top {
  margin-bottom: 2.5rem;
}
#description-bottom {
  margin-top: 2.5rem;
}

.description {
  text-align: var(--description-text-align);
}
.description p {
  font-size: var(--description-p-font-size);
  line-height: var(--description-p-line-height);
  letter-spacing: var(--description-p-letter-spacing);
  font-weight: var(--description-p-font-weight);
  margin-bottom: var(--description-p-margin-bottom);
  word-wrap: break-word;
}
  #description-blog.description p {
    font-size: var(--description-blog-p-font-size);
    line-height: var(--description-blog-p-line-height);
    font-weight: var(--description-blog-p-font-weight);
    letter-spacing: var(--description-blog-p-letter-spacing);
    margin-bottom: var(--description-blog-p-margin-bottom);
  }
  #description-blog.description p:first-child {
     font-weight: 600;
  }

.description.description-overview {
  text-align: var(--description-overview-text-align);
}
.description.description-overview p {
  font-size: var(--description-overview-p-font-size);
  line-height: var(--description-overview-p-line-height);
  font-weight: var(--description-overview-p-font-weight);
  letter-spacing: var(--description-overview-p-letter-spacing);
  margin-bottom: var(--description-overview-p-margin-bottom);
}

.description.description-short-product {
  text-align: var(--description-short-product-text-align);
}
.description.description-short-product p {
  font-size: var(--description-short-product-p-font-size);
  line-height: var(--description-short-product-p-line-height);
  font-weight: var(--description-short-product-p-font-weight);
  letter-spacing: var(--description-short-product-p-letter-spacing);
  margin-bottom: var(--description-short-product-p-margin-bottom);
}

.description.description-product {
  text-align: var(--description-product-text-align);
}
.description.description-product p {
  font-size: var(--description-product-p-font-size);
  line-height: var(--description-product-p-line-height);
  font-weight: var(--description-product-p-font-weight);
  letter-spacing: var(--description-product-p-letter-spacing);
  margin-bottom: var(--description-product-p-margin-bottom);
}

.description.description-order-placed p {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.description.description-payment-processed p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 3rem;
}

.description.description-overview-product a{
  color: inherit;
}

.description p:last-child, .description p:last-of-type {
  margin-bottom: 0;
}
.description p a {
  position: relative;
}
.description p a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin-top: calc(var(--body-font-size) + 0.6rem);
  width: 100%;
  border-top: var(--description-a-before-border-top) solid;
  border-color: inherit;
  -webkit-transform-origin: var(--description-a-before-transform-origin);
  transform-origin: var(--description-a-before-transform-origin);
  -webkit-transform: var(--description-a-before-transform);
  transform: var(--description-a-before-transform);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.description p a:hover::before {
  -webkit-transform-origin: var(--description-a-hover-before-transform-origin);
  transform-origin: var(--description-a-hover-before-transform-origin);
  -webkit-transform: var(--description-a-hover-before-transform);
  transform: var(--description-a-hover-before-transform);
}
.description- a {
  text-decoration: var(--description-a-text-decoration);
  text-underline-offset: var(--description-a-text-underline-offset);
  text-decoration-thickness: var(--description-a-text-decoration-thickness);
}
.description- a:hover {
  text-decoration: var(--description-a-hover-text-decoration);
  text-decoration-thickness: var(--description-a-hover-text-decoration-thickness);
}

.description table {
  border: 1px solid var(--description-table-border-color);
  width: 100%;
}
.description table td, .description table th {
  border-bottom: 1px solid var(--description-table-border-color);
  padding: 9px 15px;
}

.description ul,
.description ol {
  line-height: var(--description-p-line-height);
}

.description ul li {
  position: relative;
  list-style-type: none;
  word-wrap: break-word;
}
.description ol li {
  position: relative;
}
.description ul li:last-child,
.description ol li:last-child {
  margin-bottom: 0px;
}
.description ul:not(.ul-plain),
.description ol:not(.ul-plain) {
  padding-left: var(--description-ul-padding-left);
  margin: var(--description-ul-margin);
}
  .description#description-blog ul:not(.ul-plain),
  .description#description-blog ol:not(.ul-plain) {
    margin: var(--description-blog-ul-margin);
  }
.description ul:not(.ul-plain) li,
.description ol:not(.ul-plain) li {
  margin-bottom: var(--description-ul-li-margin-bottom);
}
.description ul:not(.ul-plain) li::before {
  font-family: "elexio" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--description-li-color);
  position: absolute;
  content: "\2022";
  font-size: 18px;
  top: var(--description-ul-li-before-top);
  left: -12px;
}
.description.description-checked ul:not(.ul-plain) li:before {
  content: "";
  font-size: 1em;
  font-weight: 600;
  top: var(--description-checked-ul-li-before-top);
  left: -15px;
}
.description.description-checked ul:not(.ul-plain) li {
  padding-left: 5px;
}

.description.error-info__description {
  color: rgb(0,0,0,0.2);
  font-size: 9.4rem;
  font-weight: 500;
  letter-spacing: 1.2rem;
}

.description.error-info__description- {
  font-size: 9.4rem;
  font-weight: 500;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  letter-spacing: 1.2rem;
  animation: text-shadow-description-error-info 2s linear infinite
}

@keyframes text-shadow-description-error-info{
  0% {text-shadow: 2px 2px 8px rgba(0,0,0,0.4);}
  50%{text-shadow: 0 0 0 rgba(0,0,0,0.4);}
  100%{text-shadow: 2px 2px 8px rgba(0,0,0,0.4);}
}
</pre></body></html>