:root {
  --generalSpacing: 40px;
  --accent: #0090E3;
  --accentLight: #F2F7FC;
  --accentHighlight: #FF6600;
  --accentGreen: #1ECB3B;
  --accentRed: #CB1E1E;
  --accentYellow: #FFB500;
  --rgb_accent: 0, 144, 227;
  --rgb_accentLight: 242, 247, 252;
  --rgb_accentHighlight: 255, 102, 0;
  --rgb_accentGreen: 30, 203, 59;
  --rgb_accentRed: 203, 30, 30;
  --rgb_accentYellow: 255, 181, 0;
}

@font-face {
  font-display: auto;
}

body {
  color: #333;
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px x(0, 0, 0, 0.004);
  width: 100%;
  /*   font-size: 15px; */
  font-size: 14px;
}

html.no-scroll {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

div[class*=" col-"] {
  margin-left: -.5px;
}

.relative {
  position: relative;
}

.body-wrap {
  position: relative;
  -webkit-transition: -webkit-transform .35s cubic-bezier(.29, .58, .32, 1);
  transition: -webkit-transform .35s cubic-bezier(.29, .58, .32, 1);
  -o-transition: transform .35s cubic-bezier(.29, .58, .32, 1);
  transition: transform .35s cubic-bezier(.29, .58, .32, 1);
  transition: transform .35s cubic-bezier(.29, .58, .32, 1), -webkit-transform .35s cubic-bezier(.29, .58, .32, 1);
}

.body-wrap.cart-open {
  -webkit-transform: translate(-400px, 0px);
  -ms-transform: translate(-400px, 0px);
  transform: translate(-400px, 0px);
}

.general-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.general-overlay.active {
  opacity: 1;
  visibility: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.line-height {
  line-height: 2em;
}

a,
a:hover,
a:visited,
a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}

.ul-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.general-content .row {
  margin: 0;
}

.general-content {
  font-size: 1em;
}

.general-content strong {
  color: #000;
}

.general-content *:first-child {
  margin-top: 0;
}

.general-content *:last-child {
  margin-bottom: 0;
}

.general-content h1,
.general-content h2,
.general-content h3,
.general-content h4,
.general-content h5,
.general-content h6 {
  font-weight: bold;
  color: #333;
  line-height: 1.4em;
}

.general-content h1 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.general-content h2 {
  font-size: 1.3em;
  margin-bottom: 20px;
}

.general-content h3 {
  font-size: 1.3em;
  margin-bottom: 20px;
}

.general-content h4 {
  font-size: 1.2em;
  margin-bottom: 15px;
}

.general-content h5 {
  font-size: 1em;
  margin-bottom: 10px;
}

.general-content h6 {
  font-size: .95em;
  margin-bottom: 10px;
}

.general-content a,
.general-content a:visited,
.general-content a:active,
.general-content a:hover {
  text-decoration: underline;
  font-weight: bold;
  color: var(--accentHighlight);
}

.general-content ul {
  padding-left: 25px;
}

.general-content ul li {
  list-style: none;
  position: relative;
}

.general-content ul li:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
  vertical-align: middle;
  margin-right: 15px;
}

.general-content img,
.general-content video {
  height: auto;
}

.general-content img,
.general-content video,
.general-content iframe {
  max-width: 100%;
}

.general-content table {
  width: 100%;
}

.general-content table tr td {
  padding: 5px 15px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px;
  background: #FF6600;
  color: #fff;
  font-weight: bold;
  font-size: 1em;
  border-radius: 3px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.btn:active,
.btn:focus,
.btn:visited,
.btn:hover {
  color: #fff;
}

.standard-input {
  height: 45px;
  padding: 0px 15px;
  outline: none;
  border-radius: 3px;
  font-size: 14px;
  background: #fff;
  color: #888;
  border: 2px solid #eee;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

textarea.standard-input {
  padding: 10px 15px;
}

.standard-input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #aaa;
}

.standard-input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #aaa;
  opacity: 1;
}

.standard-input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #aaa;
  opacity: 1;
}

.standard-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #aaa;
}

.standard-input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #aaa;
}

.icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.icon:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.align-stretch {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.accent {
  color: var(--accent) !important;
}

.accent-bg {
  background-color: var(--accent) !important;
}

.accent-light {
  color: var(--accentLight) !important;
}

.accent-bg-light {
  background-color: var(--accentLight) !important;
}

.accent-highlight {
  color: var(--accentHighlight) !important;
}

.accent-bg-highlight {
  background-color: var(--accentHighlight) !important;
}

.accent-green {
  color: var(--accentGreen) !important;
}

.accent-bg-green {
  background-color: var(--accentGreen) !important;
}

.block-padding {
  padding-top: var(--generalSpacing);
  padding-bottom: var(--generalSpacing);
}

.block-padding-top {
  padding-top: var(--generalSpacing);
}

.block-padding-bottom {
  padding-bottom: var(--generalSpacing);
}

.block-margin {
  margin-top: var(--generalSpacing);
  margin-bottom: var(--generalSpacing);
}

.block-margin-top {
  margin-top: var(--generalSpacing);
}

.block-margin-bottom {
  margin-bottom: var(--generalSpacing);
}

.block-border {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.block-border-top {
  border-top: 1px solid #eee;
}

.block-border-bottom {
  border-bottom: 1px solid #eee;
}

.block-grey {
  background: #f7f7f7;
}

.image-wrap.grey {
  position: relative;
  background: #fff;
}

.image-wrap.grey:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.03);
}

.image-wrap img {
  width: 100%;
}

.title-featured {
  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: 25px;
}

.title-featured.small-spacing {
  margin-bottom: 15px;
}

.title-featured.with-subtitle {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.title-featured.text-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.title-featured.text-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.title-featured .title {
  font-weight: bold;
  font-size: 1.8em;
  color: var(--accent);
}

.title-featured .subtitle {
  font-weight: bold;
  color: #888;
  margin-top: 5px;
  max-width: 450px;
  line-height: 1.8em;
}

.title-featured .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  color: #888;
}

.title-featured .link span {
  text-decoration: underline;
}

.title-featured .link i {
  font-size: 12px;
  margin-left: 6px;
  margin-bottom: -0.2em;
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  -o-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.title-featured .link:hover i {
  -webkit-transform: translateX(3px);
  -ms-transform: translateX(3px);
  transform: translateX(3px);
}

.title-featured .slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.title-featured .slider-nav li:first-child {
  margin-right: 10px;
}

.title-featured .slider-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 45px;
  max-width: 45px;
  min-height: 45px;
  max-height: 45px;
  border-radius: 50%;
  font-size: 15px;
  border: 1px solid #eee;
  color: var(--accentHighlight);
}

.title-featured .slider-nav li.disabled a {
  color: #aaa;
}

select.custom-select {
  height: 50px;
  opacity: 0;
}

.nothing-found-box {
  padding: 30px;
  background: var(--accentLight);
  border-radius: 3px;
}

.nothing-found-box .title {
  font-weight: bold;
  font-size: 1.7em;
  margin-bottom: 5px;
  color: var(--accent);
}

.nothing-found-box .text {
  line-height: 1.6em;
  opacity: .7;
}

.nothing-found-box .link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--accent);
  font-weight: bold;
  margin-top: 20px;
}

.nothing-found-box .link i {
  font-size: 13px;
  margin-left: 5px;
  margin-bottom: -.1em;
  -webkit-transition: -webkit-transform .15s ease-in-out;
  transition: -webkit-transform .15s ease-in-out;
  -o-transition: transform .15s ease-in-out;
  transition: transform .15s ease-in-out;
  transition: transform .15s ease-in-out, -webkit-transform .15s ease-in-out;
}

.zopim {
  /* 	right: auto; */
  /*   left: 15px; */
  z-index: 9999 !important;
}

.scroll-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  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;
  font-size: 18px;
  color: var(--accentHighlight);
  -webkit-transform: translateZ(0) translateY(calc(100% + 30px));
  transform: translateZ(0) translateY(calc(100% + 30px));
  visibility: hidden;
  -webkit-box-shadow: 0 0px 10px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0px 10px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  z-index: 999;
}

.scroll-top.active {
  -webkit-transform: translateZ(0) translateY(0);
  transform: translateZ(0) translateY(0);
  visibility: visible;
}

.scroll-top.on-productpage.active {
  -webkit-transform: translateZ(0) translateY(-70px);
  transform: translateZ(0) translateY(-70px);
  visibility: visible;
}

@media (min-width: 1200px) {
  .container {
    width: 100%;
    max-width: 1460px;
    padding: 0px 30px;
  }

  .btn:hover {
    -webkit-filter: brightness(90%);
    filter: brightness(90%);
  }

  .nothing-found-box .link:hover i {
    -webkit-transform: translateX(2px);
    -ms-transform: translateX(2px);
    transform: translateX(2px);
  }
}

@media (max-width: 1199px) {
  .title-featured .title {
    font-size: 1.6em;
  }
}

@media (max-width: 991px) {
  .title-featured {
    margin-bottom: 20px;
  }

  .title-featured .title {
    font-size: 1.5em;
  }

  .title-featured .slider-nav li a {
    min-width: 35px;
    max-width: 35px;
    min-height: 35px;
    max-height: 35px;
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  :root {
    --generalSpacing: 30px;
  }

  body,
  .standard-input {
    font-size: 13px;
  }

  .btn {
    height: 45px;
    line-height: 45px;
    padding: 0 25px;
    font-size: 14px;
  }

  .title-featured .title {
    font-size: 1.385em;
  }

  .title-featured .subtitle {
    margin-top: 5px;
  }

  .general-content h1 {
    font-size: 1.6em;
    margin-bottom: 20px;
  }

  .general-content h2 {
    font-size: 1.4em;
    margin-bottom: 20px;
  }

  .general-content h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
  }

  .general-content h4 {
    font-size: 1em;
    margin-bottom: 15px;
  }

  .general-content h5 {
    font-size: .95em;
    margin-bottom: 10px;
  }

  .general-content h6 {
    font-size: .85em;
    margin-bottom: 10px;
  }

  .nothing-found-box {
    padding: 20px;
  }
}

/* End general styles */

/* Header */
#header.fixed .header-fixed-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

#header .main-header {
  background: #fff;
}

#header .main-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#header .main-header .header-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#header .main-header .header-col.search-col {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#header .main-header .header-col.icons-col {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#header .main-header .logo-menu-wrap {
  position: relative;
}

#header .main-header .logo-menu-wrap,
#header .main-header .logo,
#header .vertical-menu-wrap,
#header .vertical-menu-wrap .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#header .main-header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header .main-header .logo img {
  height: 28px;
}

#header .vertical-menu-wrap {
  margin-left: 10px;
}

#header .vertical-menu-btn {
  border-radius: 0;
  background: #fff;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 7px 15px;
  text-decoration: none;
  -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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  white-space: nowrap;
}

#header .vertical-menu-btn i {
  font-size: 80%;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#header .vertical-menu-btn:hover i,
#header .vertical-menu-wrap.active .vertical-menu-btn i {
  -webkit-transform: translate(0, -2px);
  -ms-transform: translate(0, -2px);
  transform: translate(0, -2px);
}

#header .vertical-menu-btn:hover .bottom {
  color: var(--accentHighlight);
}

#header .vertical-menu-btn .top {
  font-size: 12px;
  display: block;
  opacity: .6;
  line-height: normal;
}

#header .vertical-menu-btn .bottom {
  font-size: 16px;
  display: block;
  line-height: normal;
}

#header .vertical-menu-btn i {
  margin-left: 7px;
}

/* #header .vertical-menu-wrap .btn-wrap {
	position:relative;
} */

#header .vertical-menu-wrap.active .btn-wrap {
  z-index: 99999;
}

#header .vertical-menu {
  position: absolute;
  left: 0px;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#header .vertical-menu.active {
  opacity: 1;
  visibility: visible;
}

#header .vertical-menu a {
  color: inherit;
  text-decoration: none;
}

#header .vertical-menu {
  background: #fff;
}

#header .vertical-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  width: 354px;
  /*   padding:20px 0px; */
  padding: 10px 0;
}

#header .vertical-menu ul li {
  padding: 0px 15px;
  -webkit-transition: opacity .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
}

#header .vertical-menu ul li.subs-title {
  font-weight: bold;
}

#header .vertical-menu ul.subs-ul li {
  padding-left: unset;
  padding-right: unset;
}

#header .vertical-menu ul li:last-child>a {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}

#header .vertical-menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#header .vertical-menu ul li .category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header .vertical-menu ul li img {
  width: 40px;
  margin-right: 10px;
  height: auto;
  border-radius: 3px;
}

#header .vertical-menu ul li .arrow-right {
  font-size: .75em;
  -webkit-transform: translate(-2px, 0px);
  -ms-transform: translate(-2px, 0px);
  transform: translate(-2px, 0px);
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  -o-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  margin-left: 10px;
}

#header .vertical-menu ul li:hover>a>.arrow-right {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

#header .vertical-menu ul .subs {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 100%;
  top: 0px;
  min-height: 100%;
  background: #fff;
  /*   padding:20px; */
  padding: 15px;
  border-left: 1px solid rgba(0, 0, 0, .07);
}

#header .vertical-menu ul .subs:after {
  content: '';
  display: block;
  position: absolute;
  right: 100%;
  width: 355px;
  height: 100%;
  background: #fff;
  top: 0;
  z-index: -1;
}

#header .vertical-menu ul .subs ul {
  padding: 0;
  width: auto;
  display: block;
  line-height: 1.7em;
}

#header .vertical-menu ul .subs ul li:not(.subs-title) {
  font-size: 13px;
  padding-top: 3px;
}

#header .vertical-menu ul .subs ul li a:hover {
  text-decoration: underline;
}

#header .vertical-menu ul .subs ul li.active a {
  font-weight: bold;
  text-decoration: underline;
}

#header .vertical-menu ul .subs ul li a {
  padding: 0;
  border: none;
  margin: 0;
  line-height: 1.6em;
}

#header .vertical-menu ul .subs .menus {
  margin: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#header .vertical-menu ul .subs .menus .menu {
  padding: 10px;
}

#header .vertical-menu ul li:hover>.subs {
  opacity: 1;
  visibility: visible;
}

#header .vertical-menu ul li.active>a>.category-wrap,
#header .vertical-menu ul li:hover>a>.category-wrap {
  text-decoration: underline;
}

#header .vertical-menu ul li.active>a {
  font-weight: bold;
  color: var(--accent);
}

#header .vertical-menu ul .subs .subs-title a {
  border: none;
  color: var(--accent);
  margin-bottom: 5px;
  line-height: 1.4em;
}

#header .header-icons,
#header .header-icons>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#header .header-icons>li>a,
#header .header-icons>li>a .link-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header .header-icons>li {
  position: relative;
}

#header .header-icons>li:not(:last-child) {
  margin-right: 35px;
}

#header .header-icons>li>a .link-inner i {
  font-size: 25px;
  color: var(--accent);
}

#header .header-icons>li>a .link-inner .title {
  font-size: 14px;
  font-weight: bold;
  margin-left: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header .header-icons>li>a .link-inner .title i {
  margin-left: 5px;
  font-size: 13px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#header .header-icons>li.active>a .link-inner .title,
#header .header-icons>li>a:hover .link-inner .title {
  color: var(--accentHighlight);
}

#header .header-icons>li>a:hover .link-inner .title i {
  -webkit-transform: translate(0, -2px);
  -ms-transform: translate(0, -2px);
  transform: translate(0, -2px);
}

#header .header-icons>li>a .link-inner .cart-icon-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#header .header-icons>li>a .link-inner .cart-icon-wrap .qty {
  position: absolute;
  top: -5px;
  right: -7px;
  min-width: 18px;
  max-width: 18px;
  min-height: 18px;
  max-height: 18px;
  border-radius: 50%;
  background: var(--accentHighlight);
  color: #fff;
  font-size: 12px;
  text-align: center;
  font-weight: bold;
  line-height: 18px;
}

#header .main-header .search-bar {
  padding: 10px 0;
}

#header .main-menu {
  background: var(--accentLight);
}

#header .main-menu .main-nav {
  height: 55px;
}

#header .main-menu .main-nav li .submenu {
  display: block;
  position: absolute;
  z-index: 999;
  background: rgba(255, 255, 255, 1);
  padding: 20px 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
  border-radius: 3px;
  -webkit-box-shadow: 0px 10px 14px 5px rgba(0, 0, 0, 0.63);
  -moz-box-shadow: 0px 10px 14px 5px rgba(0, 0, 0, 0.63);
  box-shadow: 0px 10px 14px 5px rgba(0, 0, 0, 0.63);
}

#header .main-menu .main-nav li .submenu li {
  position: relative;
}

#header .main-menu .main-nav li .submenu li:hover .submenu.second {
  left: 100%;
}

#header .main-menu .main-nav li .submenu.second {
  left: calc(100% + 20px);
  top: -20px;
  width: max-content;
}

#header .main-menu .main-nav li:hover>.submenu {
  opacity: 1;
  visibility: visible;
}

#header .main-menu .main-nav li .submenu .inner a {
  font-weight: normal;
  color: #333;
  text-decoration: none;
  padding: 2px 15px;
  transition: all .3s ease-in-out;
  height: 24px;
  width: 100%;
  justify-content: space-between;
}

#header .main-menu .main-nav li .submenu .inner a:hover {
  font-weight: bold;
  color: #337ab7;
}

#header .main-menu .main-nav li .submenu .inner a .sub-title {
  padding-right: 40px;
}

#header .main-menu .main-nav li .submenu .inner a i {
  margin-right: 5px;
  color: #337ab7;
}

#header .main-menu .main-nav,
#header .main-menu .main-nav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  color: var(--accent);
  font-weight: bold;
}

#header .main-menu .main-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header .main-menu .main-nav>li {
  margin-right: 40px;
}

#header .main-menu .main-nav li:last-child {
  margin-right: 0;
}

#header .main-menu .main-nav li.highlight {
  color: #fff;
  padding: 0 15px;
  background: var(--accent);
}

#header .main-menu .main-nav li:hover a {
  text-decoration: underline;
}

#header .main-menu .main-nav li.active a {
  color: var(--accentHighlight);
  text-decoration: underline;
}

#header .usp-bar {
  border-bottom: 1px solid #eee;
}

#header .usp-bar .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 45px;
}

#header .usp-bar .usp-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header .usp-bar .usp-wrap li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 50px;
}

#header .usp-bar .usp-wrap li:last-child {
  margin-right: 0;
}

#header .usp-bar .usp-wrap li i {
  font-size: 20px;
  margin-right: 7px;
}

#header .usp-bar .usp-wrap li .usp-title {
  font-size: 13px;
}

#header .usp-bar .usp-wrap li i {
  color: var(--accent);
}

#header .usp-bar .usp-wrap li .usp-title span {
  color: var(--accentHighlight);
}

#header .usp-bar .usp-wrap li .usp-title span {
  font-weight: bold;
}

#header .usp-bar .service-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  height: 100%;
  color: var(--accent);
}

#header .usp-bar .service-link i {
  font-size: 19px;
  margin-left: 10px;
  margin-right: 5px;
  margin-top: -3px;
}

#header .open-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  margin-left: -.3em;
}

#header .open-menu i {
  font-size: 30px;
}

#header .open-menu span {
  font-size: 13px;
  margin-left: 1px;
}

#header .search-bar.mobile {
  background: #f9f9f9;
}

#header .search-bar.mobile input[type="text"] {
  width: 100%;
  border: none;
  background: #f9f9f9;
  padding-left: 0;
  padding-right: 30px;
}

.search-bar.mobile .icon {
  width: auto;
  left: auto;
  right: 0;
  color: var(--accentHighlight);
}

.gui-checkout .gui-form input.error[type="text"],
.gui-checkout .gui-form input.error[type="email"],
.gui-checkout .gui-form textarea.error,
.gui-checkout .gui-form input.error,
.gui-checkout .gui-form select.error,
.gui-checkout .gui-form .gui-input-phone-number.error {
  border: 1px solid red !important;
}

.gui-checkout .gui-form .gui-input-phone-number {
  background: #fff !important;
}

.gui-checkout .gui-confirm-input .gui-checkbox.highlight {
  border: 2px solid var(--accentHighlight);
  border-radius: 5px;
  padding: 5px;
}

@media (max-width: 1399px) {
  .search-bar input[type="text"] {
    width: 350px;
  }

  #header .main-menu .main-nav>li {
    margin-right: 30px;
    font-size: 1em;
  }

  #header .main-menu .main-nav li:last-child {
    margin-right: 0px;
  }

  #header .header-icons>li:not(:last-child) {
    margin-right: 25px;
  }

  #header .header-icons>li>a .link-inner .title {
    display: none;
  }
}

@media (max-width: 1199px) {
  #header .main-header {
    background: var(--accent);
    padding: 20px 0;
  }

  #header .main-header .header-col.logo-col {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #header .header-icons>li>a .link-inner i {
    color: #fff;
  }

  #header .usp-bar .inner,
  #header .usp-bar .usp-wrap li {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  #header .usp-bar .usp-wrap.mobile-hidden {
    height: 45px;
    opacity: 0;
  }
}

@media (max-width: 991px) {
  #header .main-header {
    padding: 15px 0;
  }

  #header .main-header .logo img {
    height: 27px;
  }

  #header .header-icons>li>a .link-inner i {
    font-size: 22px;
  }

  #header .header-icons>li>a .link-inner .cart-icon-wrap .qty {
    top: -5px;
    right: -7px;
    min-width: 16px;
    max-width: 16px;
    min-height: 16px;
    max-height: 16px;
    font-size: 10px;
    line-height: 16px;
  }
}

@media (max-width: 767px) {
  #header .main-header {
    padding: 10px 0;
  }

  #header .main-header .logo img {
    height: 25px;
  }

  #header .open-menu i {
    font-size: 25px;
  }

  #header .open-menu span {
    font-size: 12px;
  }

  #header .header-icons>li:not(:last-child) {
    margin-right: 12px;
  }

  #header .header-icons>li>a .link-inner i {
    font-size: 20px;
  }

  #header .header-icons>li>a .link-inner .cart-icon-wrap .qty {
    top: -6px;
    right: -8px;
  }

  #header .usp-bar .usp-wrap.mobile-hidden,
  #header .usp-bar .inner {
    height: 40px;
  }
}

/* End header */

/* Header popups */
@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  25% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg)
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg)
  }

  75% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg)
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
}

@keyframes wiggle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  25% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg)
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg)
  }

  75% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg)
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
}

@-webkit-keyframes cartQ {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  50% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes cartQ {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  50% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

.wiggle .qty {
  -webkit-animation: cartQ .5s ease-in-out;
  animation: cartQ .5s ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.wiggle .cart-icon-wrap i {
  -webkit-animation: wiggle .5s ease-in-out;
  animation: wiggle .5s ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.custom-popup {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  z-index: 999;
  -webkit-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.05);
  min-width: 350px;
  border-radius: 3px;
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  -webkit-transform: scale(.8);
  -ms-transform: scale(.8);
  transform: scale(.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.custom-popup .popup-inner {
  padding: 25px;
}

.custom-popup .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 25px;
}

.custom-popup .title-wrap .popup-title {
  font-weight: bold;
  font-size: 1.4em;
}

.custom-popup .title-wrap .close-popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  color: #ccc;
}

.custom-popup.active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.custom-popup.login form .inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: -10px 0;
}

.custom-popup.login form .inputs .input {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.custom-popup.login form .inputs .input label {
  font-weight: normal;
  margin-bottom: 8px;
  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;
}

.custom-popup.login form .inputs .input label a {
  font-size: 0.867em;
  color: var(--accent);
}

.custom-popup.login form .buttons {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.custom-popup.login form .buttons .btn.facebook {
  background: #fff;
  border: 2px solid #eee;
  color: #3b5998;
  margin-top: 10px;
}

.custom-popup.login form .buttons .btn.facebook i {
  margin-right: 8px;
  font-size: 1.2em;
}

.custom-popup.login form .buttons .register {
  margin-top: 10px;
}

.custom-popup.login form .buttons .register a {
  color: var(--accent);
  font-weight: bold;
  text-decoration: underline;
}

.custom-popup.cart {
  min-width: 400px;
}

.custom-popup.cart .cart-products {
  max-height: 260px;
  overflow-y: scroll;
}

.custom-popup.cart .cart-products li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.custom-popup.cart .cart-products li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.custom-popup.cart .cart-products li .product-title {
  color: var(--accent);
}

.custom-popup.cart .cart-products li .product-title:hover {
  text-decoration: underline;
}

.custom-popup.cart .cart-products li .price {
  font-weight: bold;
  margin-left: 15px;
}

.custom-popup.cart .totals {
  width: 100%;
  text-align: right;
  font-size: 14px;
  font-weight: bold;
}

.custom-popup.cart .totals tr td {
  padding-top: 5px;
}

.custom-popup.cart .totals tr:first-child td {
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.custom-popup.cart .totals .shipping-cost.free {
  color: var(--accentHighlight);
}

.custom-popup.cart .accent-orange {
  color: var(--accentHighlight);
}

.custom-popup.cart .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  margin-top: 25px;
}

.custom-popup.cart .buttons .link {
  margin-right: 15px;
  font-size: 14px;
  color: var(--accent);
}

.custom-popup.cart .buttons .link:hover {
  text-decoration: underline;
}

.custom-popup.cart .buttons .btn {
  background: var(--accentGreen);
}

.custom-popup.cart .no-cart-products {
  padding: 20px;
  background: var(--accentLight);
  border-radius: 3px;
}

.custom-popup.cart .no-cart-products .title {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 5px;
  color: var(--accent);
}

.custom-popup.cart .no-cart-products .text {
  line-height: 1.6em;
  font-size: 13px;
  opacity: .7;
}

.cart-mobile {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
  background: #fff;
  z-index: 9999;
  overflow-x: hidden;
  -webkit-transform: translate(-300px, 0px);
  -ms-transform: translate(-300px, 0px);
  transform: translate(-300px, 0px);
  -webkit-transition: -webkit-transform .35s cubic-bezier(.29, .58, .32, 1);
  transition: -webkit-transform .35s cubic-bezier(.29, .58, .32, 1);
  -o-transition: transform .35s cubic-bezier(.29, .58, .32, 1);
  transition: transform .35s cubic-bezier(.29, .58, .32, 1);
  transition: transform .35s cubic-bezier(.29, .58, .32, 1), -webkit-transform .35s cubic-bezier(.29, .58, .32, 1);
}

.cart-mobile.active {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.cart-mobile .inner {
  height: 100%;
}

.cart-mobile .top-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--accent);
  color: #fff;
  padding: 0 15px;
  z-index: 9;
}

.cart-mobile .top-wrap .col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart-mobile .top-wrap .col.menu-col {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  font-size: 15px;
}

.cart-mobile .top-wrap .col.close-col {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 18px;
}

.cart-mobile .cart-products-outer {
  padding: 15px;
  height: calc(100% - 120px);
  overflow-x: hidden;
  overflow-y: scroll;
}

.cart-mobile .bottom-wrap {
  height: 75px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px;
  border-top: 1px solid #eee;
}

.cart-mobile .cart-products li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart-mobile .cart-products li:not(:first-child) {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #eee;
}

.cart-mobile .cart-products li .product-title {
  display: block;
  width: 70%;
  color: var(--accent);
}

.cart-mobile .cart-products li .price {
  width: 30%;
  text-align: right;
  font-weight: bold;
}

.cart-mobile .bottom-wrap .btn {
  width: 100%;
  background: var(--accentGreen);
}

/* End header popups */

/* Live search */
.search-bar input[type="text"] {
  width: 430px;
  padding-right: 45px;
  border-color: #eee;
}

.search-autocomplete {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 9999;
  width: 100%;
  text-align: left;
  display: none;
}

.search-autocomplete .box {
  padding: 50px;
  background: #f7f7f7;
  -webkit-box-shadow: 0px 2px 40px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 40px 8px rgba(0, 0, 0, 0.08);
}

.search-autocomplete .more {
  padding: 0px;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}

.search-autocomplete .more .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-autocomplete .more .btn span {
  /* 	font-size:80%; */
  margin-left: 7px;
}

.search-autocomplete.noresults .more {
  display: none;
}

.search-autocomplete .notfound {
  display: none;
  padding: 10px 0px;
  font-size: 13px;
  font-style: italic;
}

.search-autocomplete.noresults .notfound {
  display: block;
}

.search-autocomplete.noresults .search-products {
  display: none;
}

.search-autocomplete .search-products {
  padding: 20px 0px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.search-autocomplete .search-products .product {
  padding: 15px 0px;
}

.search-autocomplete .search-products .product .product-inner {
  padding: 0px 15px;
}

.search-autocomplete .search-products .product {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.search-autocomplete .search-products .product:nth-child(odd) .product-inner {
  border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.search-autocomplete .search-products .product:nth-child(1),
.search-autocomplete .search-products .product:nth-child(2) {
  border-top: 0;
}

.search-autocomplete .search-products .product .product-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.search-autocomplete .search-products .product .image-wrap {
  min-width: 75px;
  max-width: 75px;
  margin-right: 20px;
  position: relative;
  background: #fff;
}

.search-autocomplete .search-products .product .image-wrap:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.03);
}

.search-autocomplete .search-products .product .info .title {
  font-size: .95em;
  font-weight: bold;
  color: var(--accent);
}

.search-autocomplete .search-products .product .info .brand {
  margin-bottom: 2px;
  font-size: .95em;
  opacity: .85;
}

.search-autocomplete .search-products .product .info .price {
  margin-top: 5px;
  opacity: .85;
  font-size: .95em;
}

.search-autocomplete .search-products .product .image-wrap img {
  width: 100%;
}

.search-autocomplete .title-small {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 2em;
}

.search-autocomplete .inner-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.search-autocomplete .side {
  min-width: 270px;
  max-width: 270px;
  margin-right: 30px;
}

.search-autocomplete .side .filter-scroll-wrap {
  position: relative;
}

.search-autocomplete .side .filter-scroll {
  max-height: 500px;
  padding-bottom: 50px;
  overflow-y: scroll;
  padding-right: 15px;
}

.search-autocomplete .side .filter-scroll-wrap:after {
  content: '';
  display: block;
  position: absolute;
  height: 50px;
  width: 100%;
  bottom: 0;
  background: -o-linear-gradient(top, rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 247, 247, 0)), to(rgba(247, 247, 247, 1)));
  background: linear-gradient(to bottom, rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 1) 100%);
}

.search-autocomplete .results {
  width: 100%;
  max-width: 670px;
}

.search-autocomplete .subtitle {
  font-size: 1.4em;
  margin-bottom: 20px;
  font-weight: bold;
}

.search-autocomplete .feat-categories {
  padding: 25px;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 30px;
}

.search-autocomplete .feat-categories .cats ul {
  margin: -5px;
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.search-autocomplete .feat-categories .cats ul li {
  padding: 5px;
}

.search-autocomplete .feat-categories .cats ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
  height: 35px;
  border-radius: 3px;
  background: #f7f7f7;
  color: #aaa;
  font-weight: bold;
}

.search-autocomplete .feat-categories .cats ul li a:hover {
  color: #777;
}

.search-bar span.icon {
  position: absolute;
  height: 45px;
  width: 45px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  right: 0;
  top: 0;
  font-size: 18px;
  border-left: 1px solid #eee;
  color: var(--accentHighlight);
}

@media (max-width: 1199px) {
  .search-autocomplete .results {
    max-width: unset;
  }

  .search-autocomplete .title-small {
    font-size: 1.7em;
  }

  .search-autocomplete .box {
    padding: 50px 30px;
  }

  .search-bar span.icon {
    border: none;
  }
}

@media (max-width: 991px) {
  .search-autocomplete .title-small {
    font-size: 1.4em;
    margin-bottom: 20px;
  }

  .search-autocomplete .feat-categories {
    padding: 20px;
    margin-bottom: 0px;
  }

  .search-autocomplete .search-products {
    padding: 10px 0;
  }

  .search-autocomplete .search-products .product {
    padding: 10px 0;
  }

  .search-autocomplete .box {
    padding: 30px 20px;
  }

  .search-autocomplete .search-products .product .info .title,
  .search-autocomplete .search-products .product .info .price {
    font-size: 1em;
  }

  .search-autocomplete .search-products .product .product-inner,
  .search-autocomplete .search-products .product:nth-child(even) .product-inner,
  .search-autocomplete .search-products .product:nth-child(odd) .product-inner {
    border: 0;
  }

  .search-autocomplete .search-products .product:not(:first-child) {
    border-top: 1px solid #eee;
  }

  .search-autocomplete .search-products .product {
    width: 100%;
  }

  .search-autocomplete .search-products .product .product-inner {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .search-autocomplete .box {
    padding: 20px;
    -webkit-box-shadow: 0px 4px 10px 5px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 10px 5px rgba(0, 0, 0, 0.08);
  }

  .search-autocomplete .title-small {
    font-size: 1.2em;
    margin-bottom: 10px;
  }

  .search-autocomplete .container {
    padding: 0;
  }

  .search-autocomplete .feat-categories {
    display: none;
  }

  .search-autocomplete .search-products .product .image-wrap {
    min-width: 50px;
    max-width: 50px;
    margin-right: 15px;
  }

  .search-autocomplete .more {
    margin-top: 10px;
  }
}

/* End live search */

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
  background: #fff;
  z-index: 9999;
  overflow-x: hidden;
  -webkit-transform: translate(-300px, 0px);
  -ms-transform: translate(-300px, 0px);
  transform: translate(-300px, 0px);
  -webkit-transition: -webkit-transform .35s cubic-bezier(.29, .58, .32, 1);
  transition: -webkit-transform .35s cubic-bezier(.29, .58, .32, 1);
  -o-transition: transform .35s cubic-bezier(.29, .58, .32, 1);
  transition: transform .35s cubic-bezier(.29, .58, .32, 1);
  transition: transform .35s cubic-bezier(.29, .58, .32, 1), -webkit-transform .35s cubic-bezier(.29, .58, .32, 1);
}

.mobile-menu.mobile-menu-open {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.body-wrap.mobile-menu-open {
  -webkit-transform: translate(300px, 0px);
  -ms-transform: translate(300px, 0px);
  transform: translate(300px, 0px);
}

.mobile-menu-overlay,
.general-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .35s cubic-bezier(.29, .58, .32, 1);
  -o-transition: all .35s cubic-bezier(.29, .58, .32, 1);
  transition: all .35s cubic-bezier(.29, .58, .32, 1);
}

.general-overlay.active,
.mobile-menu-overlay.mobile-menu-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .top-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--accent);
  color: #fff;
  padding: 0 15px;
  z-index: 9;
}

.mobile-menu .top-wrap .col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-menu .top-wrap .col.menu-col {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  font-size: 15px;
}

.mobile-menu .top-wrap .col.close-col {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 18px;
}

.mobile-menu .mobile-menu-inner {
  overflow: hidden;
}

.mobile-menu ul li .cat-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-menu ul li .cat-inner>a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
}

.mobile-menu ul li .cat-inner>a.cat-title {
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
  color: var(--accent);
}

.mobile-menu ul li.active>.cat-inner>a.cat-title {
  font-weight: bold;
  color: var(--accentHighlight);
}

.mobile-menu ul li .cat-inner>a.more-cats {
  font-size: 12px;
  color: #bbb;
  min-width: 40px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.mobile-menu ul.main-cats {
  position: relative;
  padding: 15px;
  margin: -10px 0;
}

.mobile-menu ul.main-cats.lvl-1-active {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.mobile-menu ul.main-cats.lvl-2-active {
  -webkit-transform: translateX(-200%);
  -ms-transform: translateX(-200%);
  transform: translateX(-200%);
}

.mobile-menu .subs-wrap {
  position: absolute;
  top: 0;
  left: 100%;
  padding: 15px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.mobile-menu .subs-wrap.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .subs-wrap .subs-title {
  margin-bottom: 10px;
  font-weight: bold;
}

.mobile-menu .subs-wrap ul.sub-cats {
  padding-left: 15px;
  border-left: 3px solid #eee;
}

.mobile-menu .subs-wrap ul.sub-cats li.active>.cat-inner>a.cat-title {
  font-weight: bold;
  color: var(--accentHighlight);
}

.mobile-menu .cat-crumbs {
  padding: 15px;
  margin: -10px 0;
}

.mobile-menu .cat-crumbs li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
  color: var(--accent);
}

.mobile-menu .cat-crumbs li a i {
  font-size: 12px;
  color: #bbb;
  margin-right: 10px;
}

.mobile-menu .menu-bottom {
  padding: 15px;
  border-top: 1px solid #eee;
}

.mobile-menu .menu-bottom ul {
  margin: -10px 0;
}

.mobile-menu .menu-bottom ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
  color: var(--accent);
}

.mobile-menu .menu-bottom ul li a i {
  margin-right: 5px;
  font-size: 1.1em;
}

.mobile-menu .menu-bottom ul li.active a {
  font-weight: bold;
  color: var(--accentHighlight);
}

/* End mobile menu */

/* Homepage mobile */
@media (max-width: 767px) {
  #homepage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #homepage .search-block {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  #homepage .home-categories {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  #homepage .home-usp-block {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  #homepage .home-products {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  #homepage .home-branches {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
}

/* End homepage mobile */

/* Headline */
.headline-wrap {
  margin: 20px 0;
}

.headline-wrap .headline-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: -7px;
}

.headline-wrap .spacing-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 7px;
  /*   height: 100%; */
  width: 100%;
}

.headline-wrap .content-col.col-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.headline-wrap .content-col.col-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.headline-wrap .col-left {
  min-width: calc(100% - 400px);
  max-width: calc(100% - 400px);
}

.headline-wrap .col-right {
  min-width: 400px;
  max-width: 400px;
}

.headline-wrap .headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 60px 50px;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 0;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
}

.headline-wrap .headline:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: -o-linear-gradient(right, rgba(189, 213, 215, 0.00) 0%, rgba(93, 129, 143, 0.41) 42%, rgba(0, 47, 75, 0.80) 100%);
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(189, 213, 215, 0.00)), color-stop(42%, rgba(93, 129, 143, 0.41)), to(rgba(0, 47, 75, 0.80)));
  background-image: linear-gradient(270deg, rgba(189, 213, 215, 0.00) 0%, rgba(93, 129, 143, 0.41) 42%, rgba(0, 47, 75, 0.80) 100%);
  z-index: -1;
}

.headline-wrap .headline .text-box {
  color: #fff;
  max-width: 400px;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
}

.headline-wrap .headline .text-box .title {
  font-weight: bold;
  font-size: 2.133em;
}

.headline-wrap .headline .text-box .text {
  font-weight: bold;
  font-size: 0.933em;
  margin-top: 10px;
}

.headline-wrap .headline .text-box .btn {
  margin-top: 20px;
}

.headline-wrap .product-featured {
  width: 100%;
}

@media (max-width: 1199px) {
  .headline-wrap .headline {
    padding: 40px 30px;
  }
}

@media (max-width: 991px) {
  .headline-wrap .headline-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .headline-wrap .col-left,
  .headline-wrap .col-right {
    min-width: 100%;
    max-width: 100%;
  }

  .headline-wrap .headline .text-box .btn {
    margin-top: 30px;
  }

  .headline-wrap .headline .text-box .title {
    font-size: 2em;
  }
}

@media (max-width: 767px) {
  .headline-wrap .headline {
    padding: 30px 25px;
  }

  .headline-wrap .headline .text-box .title {
    font-size: 1.9em;
  }

  .headline-wrap .headline .text-box .text {
    font-size: 1em;
  }
}

/* End headline */

/* General USP bar */
.general-usp-bar {
  width: 100%;
}

.general-usp-bar .usp-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;
  width: 100%;
  height: 55px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.general-usp-bar .usp-wrap li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  margin-right: 80px;
}

.general-usp-bar .usp-wrap li:last-child {
  margin-right: 0;
}

.general-usp-bar .usp-wrap li i {
  color: var(--accent);
}

.general-usp-bar .usp-wrap li span {
  color: var(--accentHighlight);
}

.general-usp-bar .usp-wrap li i {
  font-size: 20px;
  margin-right: 8px;
}

.general-usp-bar .usp-wrap li:last-child i {
  font-size: 22px;
}

.general-usp-bar .usp-wrap li span {
  font-weight: bold;
}

@media (max-width: 1399px) {
  .general-usp-bar.on-collection .usp-wrap li {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 1199px) {
  .general-usp-bar .usp-wrap.mobile-hidden {
    height: 55px;
    opacity: 0;
  }

  .general-usp-bar .usp-wrap li {
    height: 55px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 50px;
  }
}

@media (max-width: 767px) {
  .general-usp-bar.on-collection .usp-wrap li {
    padding: 0 10px;
  }
}

/* End general USP bar */

/* Custom widget */
.custom-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  border: none;
  -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.07);
  border-radius: 3px;
  width: 100%;
  margin-top: 8px;
}

.custom-widget .info .stars {
  color: #c41b6f;
  font-size: 1.3em;
}

.custom-widget .info .title {
  font-weight: bold;
  margin-top: 2px;
}

.custom-widget .info .link {
  font-size: 0.933em;
  margin-top: 7px;
  text-decoration: underline;
}

.custom-widget .info .link span {
  font-weight: bold;
}

.custom-widget img {
  height: 40px;
  margin-left: 15px;
}

@media (max-width: 767px) {
  .custom-widget .title {
    font-size: 1.1em;
  }
}

/* End custom widget */

/* Search block */
.search-block {
  background: var(--accentLight);
  margin-top: 20px;
}

.search-block .search-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -7px;
}

.search-block .search-wrap .search-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 25%;
  padding: 7px;
}

.search-block .search-wrap .search-step .inner {
  width: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 3px;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.search-block .search-wrap .search-step .top-wrap,
.search-block .search-wrap .search-step .title-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.search-block .search-wrap .search-step .top-wrap .main-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.search-block .search-wrap .search-step .number {
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  border-radius: 50%;
  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;
  font-weight: bold;
  background: rgba(var(--rgb_accentHighlight), 0.1);
  color: var(--accentHighlight);
  margin-right: 10px;
}

.search-block .search-wrap .search-step .title {
  font-weight: bold;
  font-size: 1.067em;
  color: var(--accent);
}

.search-block .search-wrap .search-step .subtitle {
  color: #888;
  margin-top: 10px;
  line-height: 1.7em;
}

.search-block .search-wrap .search-step img {
  min-width: 65px;
  max-width: 65px;
  margin-left: 15px;
}

.search-block .search-wrap .search-step select.filters-dropdown {
  height: 45px;
  opacity: 0;
}

.search-block .search-wrap .search-step .filters-dropdown {
  height: 45px;
  width: 100%;
  line-height: 45px;
  font-size: 13px;
  margin-top: 40px;
}

.search-block .search-wrap .search-step .filters-dropdown .menu>.item[data-value="default"] {
  display: none;
}

.search-block .search-wrap .search-step .filters-dropdown>.dropdown.icon {
  width: 45px;
}

.search-block .search-wrap .search-step .filters-dropdown>.text,
.search-block .search-wrap .search-step .filters-dropdown>.text:not(.default) {
  font-weight: bold;
  color: #aaa;
}

.search-block .search-btn {
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .search-block .search-wrap .search-step {
    width: 50%;
  }
}

@media (max-width: 991px) {
  .search-block .search-btn {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .search-block {
    margin-top: 0;
  }

  .search-block .search-wrap .search-step {
    width: 100%;
  }

  .search-block .search-wrap .search-step .filters-dropdown {
    margin-top: 10px;
  }

  .search-block .search-wrap .search-step .inner {
    padding: 10px;
  }

  .search-block .search-wrap .search-step .title {
    font-size: 1.077em;
  }

  .search-block .search-wrap .search-step .number {
    min-width: 30px;
    max-width: 30px;
    min-height: 30px;
    max-height: 30px;
    font-size: 1.077em;
  }

  .search-block .search-wrap .search-step .subtitle {
    margin-top: 0;
  }

  .search-block .search-wrap .search-step img {
    min-width: 45px;
    max-width: 45px;
    margin-left: 30px;
  }

  .search-block .search-wrap .search-step .content-wrap {
    margin-top: 10px;
    display: none;
  }

  .search-block .search-wrap .search-step .top-wrap .title-wrap,
  .search-block .search-wrap .search-step .top-wrap .main-title {
    width: 100%;
  }

  .search-block .search-wrap .search-step .top-wrap .main-title i {
    margin-left: auto;
    font-size: 12px;
    color: var(--accentHighlight);
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    -o-transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  }

  .search-block .search-wrap .search-step.active .top-wrap .main-title i {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .search-block .btn-wrap,
  .search-block .search-btn {
    width: 100%;
  }
}

/* End search block */

/* Products */
.product-featured .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #eee;
  border-radius: 3px;
}

.product-featured .image-wrap {
  min-width: 120px;
  max-width: 120px;
  border-radius: 0 3px 3px 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-featured .info {
  padding: 15px;
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
}

.product-featured .info .product-title {
  font-weight: bold;
  font-size: 0.933em;
  max-height: 3em;
  overflow: hidden;
  line-height: 1.5em;
}

.product-featured .info .stars {
  color: var(--accentGreen);
  margin-top: 2px;
}

.product-featured .info .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 7px;
}

.product-featured .info .price-old {
  font-size: 0.933em;
  text-decoration: line-through;
  color: #aaa;
  margin-right: 7px;
}

.product-featured .info .price-new {
  font-weight: bold;
  font-size: 1.133em;
}

.slider-block .products-slider .owl-nav {
  display: none;
}

.products-slider .owl-stage-outer {
  margin: -10px 0 -120px 0;
}

.products-slider .owl-stage-outer .owl-stage {
  padding: 10px 0 120px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.products-slider .owl-stage-outer .owl-stage .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -7px;
}

.products.row-margin {
  margin: 42px -7px 0 !important;
}

.products .product.has-label .product-content-wrap {
  border: 2px solid var(--accent);
}

.products .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 7px;
  z-index: 0;
  margin-left: -1px;
}

.products .product .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  position: relative;
  z-index: 1;
  background: #fff;
}

.usp-bar-col:not(.default):last-child {
  display: none;
}

.usp-bar-col {
  padding: 7px;
}

.products .product .product-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 2;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 3px;
}

.products .product.has-label .product-content-wrap {
  border: 2px solid var(--accent);
}

.products .product .hover-content {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% + 55px);
  width: 100%;
  background: #fff;
  z-index: -1;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.products .product.has-label .hover-content {
  border: 2px solid var(--accent);
}

.products .product.has-category .hover-content {
  height: calc(100% + 85px);
}

.products .product .hover-content .product-category {
  font-size: 14px;
  margin-top: 10px;
  text-decoration: underline;
  color: var(--accent);
  text-align: center;
}

.products .product .hover-content .btn {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: var(--accentGreen);
}

.products .product .info {
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.products .product .info .product-title {
  font-weight: bold;
  font-size: 0.933em;
  line-height: 1.4em;
  max-height: 4.2em;
  overflow: hidden;
}

.products .product .info .stars {
  margin-top: 5px;
  color: var(--accentGreen);
}

.products .product .info .product-usp {
  font-size: 13px;
  color: #777;
  margin-top: 15px;
}

.products .product .info .product-usp li:not(:last-child) {
  margin-bottom: 3px;
}

.products .product .info .product-usp li:before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  vertical-align: middle;
  display: inline-block;
  margin-right: 8px;
  background: #ccc;
}

.products .product .info .price-stock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 15px;
}

.products .product .info .price {
  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: flex-start;
}

.products .product .info .price-old {
  color: #aaa;
  font-size: 0.83em;
  text-decoration: line-through;
  margin-bottom: 1px;
}

.products .product .info .price-new {
  font-weight: bold;
}

.products .product .info .stock {
  font-weight: bold;
  font-size: 0.867em;
}

.products .product .info .stock.available {
  color: var(--accentGreen);
}

.products .product .info .stock.unavailable {
  color: var(--accentRed);
}

.product-labels-wrap {
  position: absolute;
  top: 3px;
  left: 3px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

.product-labels {
  /* 	position: absolute;
  top: 8px;
  left: 8px; 
  margin: -2px;*/
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  padding: 3px;
}

.product-labels .product-label .inner {
  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;
  height: 30px;
  padding: 0 5px;
  border-radius: 3px;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
}

.product-labels .product-label .inner i {
  font-size: 1.1em;
  margin-right: 3px;
}

/* .products .product-label-image {
  position: absolute;
  top: 10px;
  right: 0px;
  display: flex;
  justify-content: flex-end;
} */

.products .product.has-label .product-label-image {
  width: unset;
}

.products .product-label-image {
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.products .product-label-image img {
  width: 80px;
  height: auto;
}

.products .product .info .btn {
  margin-top: 13px;
  width: 100%;
  height: 40px;
  background: var(--accentGreen);
}

.products .product .hover-content .btn i,
.products .product .info .btn i {
  font-size: 20px;
  margin-right: 3px;
}

@media (min-width: 1200px) {
  .products-slider {
    z-index: -1;
  }

  .products:hover .products-slider {
    z-index: 1;
  }

  .products .product .inner:hover .hover-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .products .product .inner:hover .product-content-wrap {
    border-color: #ddd;
    border-bottom: 1px solid transparent;
    border-radius: 3px 3px 0 0;
  }

  .products .product.has-label .inner:hover .product-content-wrap {
    border-color: var(--accent);
    border-bottom: 1px solid transparent;
  }

  .products .product:hover {
    z-index: 1;
  }

  .products .product .inner:hover .info .product-title {
    color: var(--accent);
  }
}

@media (max-width: 767px) {
  .slider-app-style-block {
    overflow: hidden;
  }

  .slider-app-style {
    margin-right: -25%;
  }

  .slider-app-style .owl-stage-outer {
    overflow: visible;
  }

  .product-featured .info .product-title {
    font-size: 1.1em;
  }

  .products .product .product-content-wrap {
    padding: 10px;
  }

  .product-labels .product-label {
    height: 27px;
    font-size: 12px;
  }

  .products {
    margin: -5px;
  }

  .products .product,
  .usp-bar-col {
    padding: 5px;
  }

  .products .product .info .product-title,
  .products .product .info .stock,
  .products .product .info .delivery {
    font-size: 1em;
  }

  .products .product .info .price-stock {
    margin-top: 5px;
  }

  .products .product .info .price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .products .product .info .price-old {
    margin: 0;
    margin-right: 3px;
  }

  .products .product .info .stars {
    margin: 0;
    margin-bottom: 1px;
  }

  .products .product .info .stock-delivery {
    margin-top: 10px;
  }

  .products .product .info .stock,
  .products .product .info .delivery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
  }

  .products .product .info .delivery {
    color: var(--accentGreen);
    margin-top: 2px;
  }

  .products .product .info .stock i,
  .products .product .info .delivery i {
    font-size: 1.2em;
    margin-right: 5px;
  }
}

@media (max-width: 500px) {
  .product-labels-wrap {
    flex-direction: column-reverse;
  }

  .products .product-label-image {
    justify-content: flex-start;
  }

}

/* End products */

/* Home branches */
.home-branches {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative;
  z-index: 0;
}

.home-branches:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.home-branches .title-featured .title,
.home-branches .title-featured .link {
  color: #fff;
}

.home-branches .tags .tag a {
  background: var(--accentHighlight);
  color: #fff;
}

@media (max-width: 767px) {
  .home-branches .title-featured {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .home-branches .tags {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* End home branches */

/* Home banners */
.home-banners .banners-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -15px;
}

.home-banners .banners-wrap .banner-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 50%;
  padding: 15px;
}

.home-banners .banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-size: cover !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #f7f7f7;
  border-radius: 3px;
  overflow: hidden;
}

.home-banners .banner-1 {
  background-color: var(--accentLight);
}

.home-banners .banner .banner-inner {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.home-banners .banner-1 .content,
.home-banners .banner-1 .image {
  min-width: 50%;
  max-width: 50%;
}

.home-banners .banner-1 .content {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.home-banners .banner-1 .timer-box {
  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: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.home-banners .banner-1 .timer-box .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  color: var(--accent);
  font-size: 1.3em;
  margin-bottom: 15px;
}

.home-banners .banner-1 .timer-box .title i {
  font-size: 25px;
  margin-right: 7px;
}

.home-banners .banner-1 .timer-box .timer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-banners .banner-1 .text-box .title {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.1em;
}

.home-banners .banner-1 .timer-box .banner-timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 15px;
}

.home-banners .banner-1 .banner-timer .block {
  padding: 0px 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.home-banners .banner-1 .banner-timer .block .digit {
  width: 20px;
  height: 30px;
  background: rgba(var(--rgb_accentHighlight), 0.1);
  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: 1.5px;
  border-radius: 3px;
  color: var(--accentHighlight);
  padding-top: 2px;
}

.home-banners .banner-1 .banner-timer .block .time-title {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #888;
  font-size: 9px;
  margin-top: 5px;
}

.home-banners .banner-1 .image {
  padding-left: 50px;
}

.home-banners .banner-1 .image img {
  width: 100%;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.home-banners .banner-2 {
  position: relative;
  z-index: 0;
}

.home-banners .banner-2:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.home-banners .banner-2 .banner-inner {
  -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;
}

.home-banners .banner-2 .text-box {
  color: #fff;
  max-width: 400px;
}

.home-banners .banner-2 .text-box .title {
  font-weight: bold;
  font-size: 2em;
}

.home-banners .banner-2 .text-box .subtitle {
  font-weight: bold;
  margin-top: 5px;
}

.home-banners .banner-2 .btn {
  margin-top: 60px;
}

.home-banners .service-banner {
  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-top: 40px;
  padding: 30px;
  background: var(--accentHighlight);
  border-radius: 4px;
  color: #fff;
}

.home-banners .service-banner .title {
  font-size: 1.7em;
}

.home-banners .service-banner .title span {
  font-weight: bold;
}

.home-banners .service-banner .btn {
  background: transparent;
  border: 1px solid #fff;
  margin-left: 30px;
  padding: 0 20px;
}

.home-banners .service-banner .btn i {
  font-size: 1.3em;
  margin-left: 7px;
  margin-bottom: -0.05em;
}

@media (max-width: 1199px) {
  .home-banners .banners-wrap .banner-col {
    width: 100%;
  }

  .home-banners .banner-1 .image,
  .home-banners .banner-1 .content {
    max-width: unset;
    min-width: unset;
  }

  .home-banners .banner-1 .image {
    text-align: right;
    padding-left: 20px;
  }

  .home-banners .service-banner .title {
    font-size: 1.5em;
  }
}

@media (max-width: 991px) {
  .home-banners .banner-2 .text-box .title {
    font-size: 1.6em;
  }

  .home-banners .banner .banner-inner {
    padding: 25px;
  }

  .home-banners .service-banner {
    padding: 25px;
  }

  .home-banners .service-banner .title {
    font-size: 1.3em;
  }
}

@media (max-width: 767px) {
  .home-banners .banners-wrap {
    margin: -10px;
  }

  .home-banners .banners-wrap .banner-col {
    padding: 10px;
  }

  .home-banners .banner-1 .banner-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .home-banners .banner-1 .image {
    padding: 0 20%;
    margin-bottom: 25px;
    background: #fff;
  }

  .home-banners .banner-1 .timer-box {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .home-banners .banner-1 .text-box {
    width: 100%;
    text-align: center;
  }
}

/* End home banners */

/* Breadcrumbs */
.breadcrumbs {
  margin: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  width: 100%;
  font-size: 13px;
  color: #888;
}

.breadcrumbs i {
  color: #D1D1D1;
  font-size: 0.889em;
}

.breadcrumbs a.home,
.breadcrumbs .crumb {
  display: inline;
}

.breadcrumbs .crumb i {
  margin: 0 10px;
}

.breadcrumbs .crumb:last-child a {
  font-weight: bold;
  color: #737373;
}

.breadcrumbs .btn {
  height: 40px;
  padding: 0 15px;
  margin-right: 10px;
  background: rgba(var(--rgb_accentHighlight), 0.1);
  color: var(--accentHighlight);
}

.breadcrumbs .btn i {
  color: var(--accentHighlight);
  font-size: 13px;
}

.breadcrumbs .btn span {
  margin-left: 5px;
}

@media (max-width: 767px) {
  .breadcrumbs {
    font-size: 13px;
    margin: 15px 0;
  }

  .breadcrumbs .btn {
    background: none;
    height: auto;
    line-height: inherit;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .breadcrumbs .btn span {
    text-decoration: underline;
  }

  /*   .breadcrumbs .btn:not(.on-productpage) {
    width: 35px;
    padding: 0;
    height: 35px;
  } */

  .breadcrumbs .btn i {
    font-size: 12px;
  }
}

/* End breadcrumbs */

/* Collection page */
#collection .products .category-usp-banner {
  padding: 7px;
}

#collection .products .category-usp-banner .image-wrap {
  height: 100%;
  width: 100%;
  display: flex;
}

#collection .page-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#collection .page-wrap .col-sidebar {
  min-width: 380px;
  max-width: 380px;
  padding-right: 50px;
}

#collection .page-wrap .col-main {
  min-width: calc(100% - 380px);
  max-width: calc(100% - 380px);
}

#collection .collection-usp-bar {
  width: 100%;
}

#collection .general-content {
  line-height: 1.6em;
}

/* End collection page */

/* Sidebar */
.sidebar .sb-block {
  background: #fff;
  padding: 25px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
}

.sidebar .sb-block:last-child {
  margin-bottom: 0;
}

.sidebar .sb-title {
  font-weight: bold;
  /*   font-size: 1.4em; */
  font-size: 1.2em;
  margin-bottom: 20px;
}

.sidebar .sb-cats .cats-wrap li .cat-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sidebar .sb-cats .cats-wrap li .cat-inner .cat-title {
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
  padding: 7px 0;
  font-weight: bold;
  color: #888;
}

.sidebar .sb-cats .cats-wrap li .cat-inner .more-cats {
  color: #bbb;
  font-size: 13px;
  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: 30px;
  height: 30px;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.sidebar .sb-cats .cats-wrap li.active>.cat-inner>.more-cats {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  color: var(--accentHighlight);
}

.sidebar .sb-cats .cats-wrap.sub-cats {
  display: none;
  padding-left: 15px;
  border-left: 3px solid #eee;
  font-size: 13px;
}

.sidebar .sb-cats .cats-wrap li.subs-active>ul.sub-cats {
  display: block;
}

.sidebar .sb-cats .cats-wrap.sub-cats li .cat-inner .cat-title {
  color: #aaa;
}

.sidebar .sb-cats .cats-wrap.sub-cats li.active>.cat-inner>.cat-title,
.sidebar .sb-cats .cats-wrap li.active>.cat-inner>.cat-title {
  color: var(--accentHighlight);
}

@media (max-width: 1199px) {
  .sidebar .sb-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;
  }

  .sidebar .sb-title .close-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 24px;
    color: #ccc;
    padding: 10px;
    margin: -10px;
  }

  #collection .page-wrap .col-sidebar {
    min-width: unset;
    max-width: unset;
    padding: 0;
  }

  #collection .page-wrap .col-main {
    min-width: 100%;
    max-width: 100%;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px;
    background: #fff;
    padding: 30px 20px;
    z-index: 99999;
    -webkit-transform: translate(-300px, 0px);
    -ms-transform: translate(-300px, 0px);
    transform: translate(-300px, 0px);
    -webkit-transition: -webkit-transform .35s cubic-bezier(.29, .58, .32, 1);
    transition: -webkit-transform .35s cubic-bezier(.29, .58, .32, 1);
    -o-transition: transform .35s cubic-bezier(.29, .58, .32, 1);
    transition: transform .35s cubic-bezier(.29, .58, .32, 1);
    transition: transform .35s cubic-bezier(.29, .58, .32, 1), -webkit-transform .35s cubic-bezier(.29, .58, .32, 1);
    overflow-y: scroll;
    overflow-x: hidden;
  }

  .sidebar.active {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  .sidebar .sb-block {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
  }
}

/* End sidebar */

/* Collection filters */
.price-filter {
  width: 100%;
}

.price-filter a {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.collection-filter-price {
  height: 5px;
  border: none;
  margin: 0px;
  padding: 0;
  position: relative;
  width: 100%;
}

.collection-filter-price .ui-slider-range {
  background-color: var(--accent);
  border: none;
  margin: 0;
  position: absolute;
  height: 5px;
  top: 0;
  z-index: 1;
}

.collection-filter-price .ui-slider-handle {
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: 0;
  top: -5px;
  cursor: col-resize;
  border: none;
  background-color: #fff;
  border: 2px solid var(--accent);
  outline: none;
  z-index: 9;
}

.collection-filter-price .ui-slider-handle:last-child {
  margin-left: -10px;
}

.collection-filter-price:after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: rgba(var(--rgb_accent), 0.1);
}

.price-filter-range {
  margin-top: 10px;
  font-size: .9em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.price-filter-range .min,
.price-filter-range .max {
  display: inline-block;
}

.price-filter-range .min span,
.price-filter-range .max span {
  font-weight: 600;
}

.price-filter-range .max {
  margin-left: 15px;
}

.filter-wrap:last-child {
  margin-bottom: 0;
}

.filter-wrap,
.filter-wrap.sort {
  margin-bottom: 30px;
}

.filter-wrap .ui.selection.dropdown {
  width: 100%;
}

.filter-wrap .filter-title {
  margin-bottom: 10px;
  font-weight: bold;
}

.filter-wrap .filter-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: -10px 0;
}

/* End collection filters */

/* Collection sort */
#collection .sort.top {
  /* margin-bottom: 15px; */
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

#collection .sort.bottom {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

#collection .sort .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#collection .sort.top .inner {
  -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;
}

#collection .sort.top .title-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  /* margin-bottom: 15px; */
}

#collection .sort.top .title-featured {
  margin: 0;
}

#collection .sort.top .title-featured .title {
  font-size: 1.5em;
  line-height: 1.4em;
}

#collection .sort.top .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#collection .sort .collection-count {
  margin-right: 20px;
}

#collection .sort .collection-count span {
  font-weight: bold;
}

#collection .sort .sort-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#collection .sort .sort-block .sort-title {
  margin-right: 10px;
}

#collection .fixed-filter-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
}

#collection .fixed-filter-btn .btn {
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  width: 200px;
}

#collection .fixed-filter-btn .btn i {
  font-size: 20px;
  margin-top: -.1em;
  margin-right: 10px;
}

@media (max-width: 1199px) {
  #collection .sort .inner {
    -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;
  }

  #collection .sort.bottom .collection-count {
    margin-right: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  #collection .sort.top .title-featured .title {
    font-size: 1.3em;
  }
}

@media (max-width: 767px) {
  #collection .sort.top .title-featured .title {
    font-size: 1.2em;
  }

  #collection .sort .btn {
    margin-right: 10px;
  }

  #collection .sort .sort-block {
    width: 100%;
  }

  #collection .sort .sort-block .custom-select {
    -webkit-box-flex: 10;
    -ms-flex-positive: 10;
    flex-grow: 10;
  }

  #collection .sort.top .title-sort {
    margin-bottom: 5px;
    flex-direction: column;
    align-items: flex-start;
  }

  #collection .sort.top .right {
    width: 100%;
    margin-top: 10px;
  }

  #collection .sort.top .sort-dropdown-top {
    margin-top: 10px;
  }
}

/* End collection sort */

/* Dropdown */
.ui.selection.dropdown {
  height: 50px;
  min-height: unset;
  border: 2px solid #eee;
  line-height: 50px;
  border-radius: 3px;
  padding: 0 20px;
  padding-right: 50px;
}

.ui.selection.dropdown>.dropdown.icon {
  padding: 0;
  margin: 0;
  right: 0;
  left: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  height: 100%;
  width: 50px;
  background: transparent;
  font-size: 1em;
  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;
  color: #aaa;
}

.ui.dropdown>.dropdown.icon:before {
  content: '\f078';
  font-family: "FontAwesome" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.ui.selection.dropdown:hover,
.ui.selection.active.dropdown,
.ui.selection.active.dropdown:hover,
.ui.selection.active.dropdown .menu,
.ui.selection.active.dropdown .menu:hover,
.ui.selection.active.dropdown:hover .menu,
.ui.selection.dropdown:focus {
  border-color: #eee;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.ui.selection.dropdown .menu {
  width: calc(100% + 4px);
  margin: 0 -2px;
  border-radius: 0 0 3px 3px;
  border: 2px solid #eee;
  max-height: 14em;
}

.ui.selection.dropdown .menu>.item {
  padding: 10px 20px !important;
  line-height: 2em;
  font-size: .8em;
}

@media (max-width: 767px) {
  .ui.selection.dropdown {
    height: 45px;
    line-height: 45px;
  }

  .ui.selection.dropdown>.dropdown.icon {
    width: 45px;
  }
}

/* End dropdown */

/* Checkbox */
.checkbox {
  margin: 0;
}

.ui.checkbox {
  font-size: .9em;
  display: block;
  padding: 8px 0;
}

.ui.checkbox .box,
.ui.checkbox label {
  padding-left: 2em;
  cursor: pointer;
  font-size: 1em;
  line-height: 18px;
  color: #000 !important;
  font-weight: 300;
}

.ui.checkbox input:checked~label,
.ui.checkbox label:hover,
.ui.checkbox+label:hover {
  color: #000 !important;
}

.ui.checkbox label span {
  font-size: 12px;
  color: #aaa;
}

.ui.checkbox input:checked~.box:after,
.ui.checkbox input:checked~label:after,
.ui.checkbox input:checked~.box:after,
.ui.checkbox input:checked~label:after {
  color: #fff !important;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 11px;
}

.ui.checkbox:not(.radio) .box:before,
.ui.checkbox:not(.radio) label:before {
  border-radius: 3px !important;
}

.ui.checkbox label:before,
.ui.checkbox input:checked:focus~.box:before,
.ui.checkbox input:checked:focus~label:before,
.ui.checkbox input:indeterminate:focus~.box:before,
.ui.checkbox input:indeterminate:focus~label:before,
.ui.checkbox input:checked~.box:before,
.ui.checkbox input:checked~label:before,
.ui.checkbox input:focus~.box:before,
.ui.checkbox input:focus~label:before {
  border-color: #ccc !important;
  width: 18px;
  height: 18px;
  line-height: 18px;
}

.ui.checkbox input:checked:focus~.box:before,
.ui.checkbox input:checked:focus~label:before,
.ui.checkbox input:checked~.box:before,
.ui.checkbox input:checked~label:before {
  background: var(--accentHighlight);
  border-color: var(--accentHighlight) !important;
}

.ui.checkbox .box:hover:before,
.ui.checkbox label:hover:before {
  border-color: var(--accentHighlight) !important;
}

/* End checkbox */

/* Productpage */
#productpage .top-info-wrap {
  margin-bottom: 15px;
}

#productpage .top-info-wrap .product-title {
  font-size: 1.5em;
  line-height: 1.4em;
  font-weight: bold;
}

#productpage .top-info-wrap .links-wrap {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#productpage .top-info-wrap .links-wrap li:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #bbb;
}

#productpage .top-info-wrap .links-wrap li .stars {
  color: var(--accentGreen);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
}

#productpage .top-info-wrap .links-wrap li a {
  font-size: 14px;
  color: #7B7B7B;
  text-decoration: underline;
}

#productpage .productpage-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#productpage .productpage-row .productpage-col.col-left {
  /* 	min-width: 750px;
  max-width: 750px; */
  min-width: 700px;
  max-width: 700px;
  padding-right: 80px;
}

#productpage .productpage-row .productpage-col.col-right {
  /* 	min-width: calc(100% - 750px);
  max-width: calc(100% - 750px); */
  min-width: calc(100% - 700px);
  max-width: calc(100% - 700px);
}

#productpage .product-images .productpage-slider-outer {
  border: 2px solid #eee;
  border-radius: 4px;
}

#productpage .product-images .productpage-slider .image-wrap {
  padding: 1% 20%;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
}

#productpage .product-images .productpage-slider .image-wrap.video-wrap {
  padding: 0;
  position: relative;
}

#productpage .product-images .productpage-slider .zoom-image {
  position: absolute;
  top: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9;
  font-weight: bold;
  color: var(--accent);
}

#productpage .product-images .productpage-slider .zoom-image i {
  font-size: 1.3em;
  margin-right: 1px;
  margin-bottom: -.1em;
}

#productpage .product-images .productpage-slider .owl-prev,
#productpage .product-images .productpage-slider .owl-next {
  position: absolute;
  top: 50%;
  left: 20px;
  padding: 10px;
  font-size: 20px;
  color: var(--accent);
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#productpage .product-images .productpage-slider .owl-next {
  left: auto;
  right: 20px;
}

#productpage .product-images .productpage-slider .owl-prev.disabled,
#productpage .product-images .productpage-slider .owl-next.disabled {
  opacity: 0;
  visibility: hidden;
}

#productpage .product-images .productpage-slider .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#productpage .product-images .productpage-slider .owl-stage .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#productpage .product-images .productpage-slider .owl-stage .owl-item a {
  width: 100%;
}

#productpage .product-images .productpage-slider .owl-stage .owl-item .image-wrap img {
  width: 100%;
}

#productpage .product-images .productpage-slider .owl-stage .owl-item .image-wrap iframe {
  position: absolute;
  top: 0;
  left: 1px;
  height: 100%;
  width: 100%;
}

#productpage .product-images .thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 15px;
  margin: -7px;
}

#productpage .product-images .thumbs .thumb {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 7px;
  max-width: calc(100% / 7);
}

#productpage .product-images .thumbs .thumb a {
  display: block;
  position: relative;
}

#productpage .product-images .thumbs .thumb a.more-images .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 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;
  color: #fff;
  font-weight: bold;
  font-size: 1.8em;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  border-radius: 3px;
}

#productpage .product-images .thumbs .thumb a.more-images .image-wrap {
  z-index: -1;
}

#productpage .product-images .thumbs .thumb .image-wrap {
  padding: 10%;
  border: 2px solid #eee;
  border-radius: 3px;
}

#productpage .product-images .thumbs .thumb .image-wrap img {
  opacity: .4;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

#productpage .product-images .thumbs .thumb.active .image-wrap {
  border-color: var(--accent);
}

#productpage .product-images .thumbs .thumb.active .image-wrap img {
  opacity: 1;
}

#productpage .product-info .price-stock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#productpage .product-info .price-stock .price-incl-wrap {
  display: flex;
  font-weight: bold;
  color: #999;
  /*   font-size: 1.1em; */
  align-items: flex-end;
  font-size: 1em;
}

#productpage .product-info .price-stock .price-incl-wrap .old-price-incl {
  margin-right: 10px;
  text-decoration: line-through;
  font-size: 1em;
}

#productpage .product-info .price-stock .price-incl-wrap .price-incl {
  color: var(--accentHighlight);
  font-size: 1.4em;
  margin-right: 7px;
}

#productpage .product-info .price-stock .price-incl-wrap .btw {
  color: #444;
}

#productpage .product-info .price-stock .price-excl-wrap {
  display: flex;
  font-weight: bold;
  color: #999;
  /*   font-size: 1.1em; */
  align-items: flex-end;
  font-size: 1em;
}

#productpage .product-info .price-stock .price-excl-wrap .old-price-excl {
  margin-right: 10px;
  text-decoration: line-through;
  font-size: 1.4em;
}

#productpage .product-info .price-stock .price-excl-wrap .price-excl {
  font-size: 1.8em;
  margin-right: 7px;
  color: #333;
}

#productpage .product-info .price-stock .price-excl-wrap .btw {
  color: #444;
}

#productpage .product-info .price .price-old {
  font-weight: bold;
  color: #888;
  /*   font-size: 1.1em; */
  font-size: 1em;
}

#productpage .product-info .price .price-old .actual-price {
  text-decoration: line-through;
}

#productpage .product-info .price .price-new .price-before {
  font-weight: bold;
  /*   font-size: 1.1em; */
  font-size: 1em;
  color: #888;
}

#productpage .product-info .price .price-new .actual-price {
  /*   font-size: 2em; */
  font-size: 1.8em;
  font-weight: bold;
  position: relative;
  color: initial;
}

#productpage .product-info .price .price-new .actual-price .discount-label {
  position: absolute;
  top: 50%;
  left: 100%;
  margin-left: 15px;
  font-size: 14px;
  white-space: nowrap;
  padding: 0 15px;
  height: 35px;
  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;
  background: var(--accentHighlight);
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#productpage .product-info .price .price-new .actual-price .discount-label:before {
  content: '';
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid var(--accentHighlight);
  position: absolute;
  top: 50%;
  right: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#productpage .product-info .price .price-incl {
  font-size: 14px;
}

#productpage .product-info .stock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
}

#productpage .product-info .stock.available {
  color: var(--accentGreen);
}

#productpage .product-info .stock.unavailable {
  color: var(--accentRed);
}

#productpage .product-info .stock i {
  font-size: 25px;
  margin-right: 3px;
}

#productpage .product-info .order-form-outer {
  margin-top: 20px;
  border-top: 1px solid #eee;
}

#productpage .product-info .product-variant,
#productpage .product-info .product-configure,
#productpage .product-info .cart,
#productpage .product-info .additional-products {
  padding-top: 20px;
}

#productpage .product-info .cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#productpage .product-info .cart .input-wrap input {
  height: 55px;
  width: 55px;
  text-align: center;
  padding: 0;
  font-size: 1.1em;
  font-weight: bold;
  margin-right: 10px;
}

#productpage .product-info .cart .btn {
  height: 55px;
}

#productpage .product-info .cart .add-cart {
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
  background: var(--accentGreen);
  font-size: 1.2em;
}

#productpage .product-info .cart .add-cart i {
  font-size: 25px;
  margin-right: 3px;
}

#productpage .product-info .cart .add-cart.out-of-stock {
  background: #eee;
  color: #aaa;
  pointer-events: none;
}

#productpage .product-info .cart .wishlist {
  border: 2px solid #eee;
  background: #fff;
  color: #aaa;
  padding: 0;
  width: 55px;
  margin-left: 10px;
  font-size: 1.5em;
}

#productpage .product-info .cart .wishlist:hover i:before {
  content: '\ecea';
}

#productpage .product-info .payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -2px;
  padding-top: 20px;
}

#productpage .product-info .payments li {
  padding: 2px;
}

#productpage .product-info .payments li a {
  display: inline-block;
}

#productpage .product-info .payments li a img {
  height: 30px;
}

/* #productpage .product-info .product-info-usp {
	padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #eee;
} */

#productpage .product-info .product-info-usp li {
  font-size: 14px;
  margin-bottom: 15px;
}

#productpage .product-info .product-info-usp li:last-child {
  margin-bottom: 0;
}

#productpage .product-info .product-info-usp li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#productpage .product-info .product-info-usp li a:hover,
#productpage .product-info .product-info-usp li a:hover i,
#productpage .product-info .product-info-usp li a:hover span {
  color: var(--accentHighlight);
}

#productpage .product-info .product-info-usp li i {
  font-size: 25px;
  margin-right: 10px;
  color: var(--accent);
}

#productpage .product-info .product-info-usp li span {
  font-weight: bold;
  color: var(--accentHighlight);
}

#bulkForm {
  display: none;
}

#productpage .product-content-bar {
  background: var(--accentLight);
}

#productpage .product-content-bar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#productpage .product-content-bar ul li:not(:last-child) {
  margin-right: 50px;
}

#productpage .product-content-bar ul li a {
  font-size: 1.1em;
  font-weight: bold;
  color: var(--accent);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
}

#productpage .product-content .content-block:not(:first-child) {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

#productpage .product-content .content-block.product-manuals {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

#productpage .product-content .content-block .content-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 20px;
}

#productpage .product-content .description .content-outer-wrap.closed .content-wrap {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

#productpage .product-content .description .content-outer-wrap.closed .content-wrap:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.00) 0%, #ffffff 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.00)), to(#ffffff));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #ffffff 100%);
}

#productpage .product-content .description .toggle-content {
  margin-top: 15px;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--accent);
}

#productpage .product-content .description .toggle-content i {
  margin-left: 5px;
  font-size: 13px;
}

#productpage .product-content .pros-cons ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

#productpage .product-content .pros-cons ul li:last-child {
  margin-bottom: 0;
}

#productpage .product-content .pros-cons ul li .i-wrap {
  min-width: 22px;
  max-width: 22px;
  min-height: 22px;
  max-height: 22px;
  border-radius: 50%;
  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-weight: bold;
  color: #fff;
  margin-right: 7px;
}

#productpage .product-content .pros-cons ul li .i-wrap i {
  font-weight: bold;
}

#productpage .product-content .pros-cons ul li.plus .i-wrap {
  background: var(--accentGreen);
}

#productpage .product-content .pros-cons ul li.min .i-wrap {
  background: var(--accentRed);
}

.specs-table {
  width: 100%;
}

.specs-table tr td {
  padding: 12px 20px;
}

.specs-table tr:nth-child(odd) td {
  background: #f7f7f7;
}

.specs-table tr td:first-child {
  font-weight: bold;
  border-radius: 3px 0 0 3px;
  display: flex;
  align-items: center;
}

.specs-table tr td:last-child {
  border-radius: 0 3px 3px 0;
}

.specs-table tr td .bxs-check-circle {
  font-size: 20px;
  color: var(--accentGreen);
}

.specs-table .spec-info-link {
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  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;
  font-size: 13px;
  margin-right: 10px;
}

.specs-table .spec-info-link i {
  font-weight: bold;
}

#productpage .product-content .specs .all-specs {
  margin-top: 15px;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--accent);
}

#productpage .product-content .specs .all-specs i {
  margin-left: 5px;
  font-size: 13px;
  margin-bottom: -0.1em;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

#productpage .product-content .specs .all-specs:hover i {
  -webkit-transform: translateX(2px);
  -ms-transform: translateX(2px);
  transform: translateX(2px);
}

#specs-popup {
  display: none;
  width: 100%;
  max-width: 700px;
}

#specs-popup .popup-title,
#offer-popup .popup-title,
.spec-info-popup .popup-title {
  font-weight: bold;
  font-size: 1.5em;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.spec-info-popup {
  display: none;
  max-width: 500px;
  width: 100%;
}

.reviews-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -7px;
}

.reviews-wrap .review {
  padding: 7px;
}

.reviews-wrap .review .review-inner {
  background: var(--accentLight);
  padding: 20px;
  border-radius: 3px;
}

.reviews-wrap .review .top-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}

.reviews-wrap .review .top-wrap .name {
  font-weight: bold;
  color: var(--accent);
}

.reviews-wrap .review .top-wrap .stars {
  color: var(--accentGreen);
}

.reviews-wrap .review .review-content {
  font-size: 13px;
  line-height: 1.9em;
  color: #7b7b7b;
}

.reviews-wrap .review .review-content a {
  font-weight: bold;
  color: initial;
}

#productpage .product-reviews .reviews-wrap .review {
  width: 100%;
}

#productpage .product-reviews .btn-wrap {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}

#productpage .product-reviews .btn-wrap .btn-col {
  padding: 5px;
}

#productpage .product-reviews .btn-wrap .btn.read-all {
  background: var(--accentLight);
  color: var(--accent);
}

.reviews-popup {
  display: none;
  max-width: 600px;
  width: 100%;
}

.single-review-popup .top-wrap {
  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;
  margin-bottom: 20px;
}

.single-review-popup .top-wrap .product-stars {
  font-size: 20px;
  color: #F1C40F;
}

.single-review-popup .top-wrap .name {
  font-weight: bold;
  font-size: 1.2em;
}

.single-review-popup .review-content {
  line-height: 2em;
  color: #7b7b7b;
}

#productpage .product-content .product-manuals .download-manual {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--accent);
}

#productpage .product-content .product-manuals .download-manual i {
  margin-right: 7px;
}

#offer-popup {
  display: none;
  width: 100%;
  max-width: 600px;
}

#offer-form .inputs-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}

#offer-form .inputs-wrap .input-col {
  padding: 5px;
  width: 100%;
}

#offer-form .inputs-wrap .input-col.col-50 {
  width: 50%;
}

#offer-form .inputs-wrap .input-col input {
  width: 100%;
}

#offer-form input.error,
#offer-form textarea.error {
  border-color: var(--accentRed);
}

#offer-form textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 120px;
}

#offer-form .btn i {
  margin-left: 5px;
}

#offer-form .form-message {
  margin-top: 10px;
  padding: 20px 10px;
  border-radius: 3px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background: #000;
}

#offer-form .form-message.success {
  background: var(--accentGreen);
}

#offer-form .form-message.error {
  background: var(--accentRed);
}

#productpage .product-content .download-manuals,
#productpage .product-content .request-offer,
#productpage .product-content .tuv-info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#productpage .product-content .download-manuals .i-wrap,
#productpage .product-content .request-offer .i-wrap {
  min-width: 80px;
  max-width: 80px;
  min-height: 80px;
  max-height: 80px;
  border-radius: 50%;
  background: rgba(var(--rgb_accent), 0.1);
  color: var(--accent);
  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;
  font-size: 30px;
  margin-right: 15px;
}

#productpage .product-content .download-manuals .i-wrap {
  background: rgba(var(--rgb_accent), 0.1);
  color: var(--accent);
}

#productpage .product-content .tuv-info-block img {
  min-width: 80px;
  max-height: 80px;
  margin-right: 15px;
}

#productpage .product-content .download-manuals .title,
#productpage .product-content .request-offer .title,
#productpage .product-content .tuv-info-block .title {
  font-weight: bold;
  font-size: 1.2em;
}

#productpage .product-content .request-offer .text,
#productpage .product-content .tuv-info-block .text {
  font-size: 14px;
  line-height: 1.6em;
  color: #888;
  margin-top: 5px;
}

#productpage .product-content .request-offer .link,
#productpage .product-content .tuv-info-block .link {
  margin-top: 10px;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--accent);
}

#productpage .product-content .request-offer .link i,
#productpage .product-content .tuv-info-block .link i {
  margin-left: 5px;
  font-size: 13px;
  margin-bottom: -0.1em;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

#productpage .product-content .request-offer .link:hover i,
#productpage .product-content .tuv-info-block .link:hover i {
  -webkit-transform: translateX(2px);
  -ms-transform: translateX(2px);
  transform: translateX(2px);
}

#productpage .product-content .download-manuals .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}

#productpage .product-content .download-manuals .btn-wrap .btn-col {
  padding: 5px;
}

#productpage .product-content .download-manuals .download {
  margin-top: 10px;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--accent);
}

#productpage .product-content .download-manuals .download i {
  margin-left: 5px;
  font-size: 13px;
  margin-bottom: -0.1em;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

#productpage .product-content .download-manuals .btn.download i {
  margin-right: 5px;
}

#productpage .content-block.contact-links .btn-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}

#productpage .content-block.contact-links .btn-links li {
  padding: 5px;
}

#productpage .content-block.contact-links .btn-links .btn i {
  font-size: 1.2em;
  margin-right: 7px;
}

#productpage .share-whatsapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
  font-weight: bold;
}

#productpage .share-whatsapp i {
  background: var(--accentGreen);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  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;
  font-size: 19px;
  color: #fff;
  margin-right: 7px;
}

#productpage .product-related .tags-wrap {
  margin-bottom: 20px;
}

#productpage .product-related .title {
  color: #333;
}

.faq-popup {
  display: none;
  max-width: 500px;
  width: 100%;
  padding: 30px;
}

.faq-popup .question-title {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  color: var(--accent);
}

#productpage .faq-wrap .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  margin-bottom: 15px;
}

#productpage .faq-wrap .question:last-child {
  margin-bottom: 0;
}

#productpage .faq-wrap .question i {
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  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;
  font-size: 16px;
  margin-right: 10px;
}

#productpage .contact-links li:not(:last-child) {
  margin-bottom: 10px;
}

#productpage .contact-links li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  background: #fff;
  border-radius: 4px;
  font-weight: bold;
  color: var(--accent);
}

#productpage .contact-links li a i {
  min-width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  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(--accent);
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
}


#productpage .contact-links .title-wrap .title {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 5px;
}

#productpage .contact-links .status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

#productpage .contact-links .status .dot {
  min-height: 11px;
  max-height: 11px;
  min-width: 11px;
  max-width: 11px;
  margin-right: 8px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

#productpage .contact-links .status .dot.open {
  background-color: var(--accentGreen);
}

#productpage .contact-links .status .dot.closed {
  background-color: var(--accentRed);
}

#productpage .product-newsletter .title-wrap .title {
  font-weight: bold;
  font-size: 1.3em;
}

#productpage .product-newsletter .title-wrap .subtitle {
  opacity: .7;
}

#productpage .product-newsletter form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

#productpage .product-newsletter form input {
  height: 50px;
  margin-right: 10px;
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
}

@media (max-width: 1299px) {
  #productpage .productpage-row .productpage-col.col-left {
    min-width: 650px;
    max-width: 650px;
    padding-right: 30px;
  }

  #productpage .productpage-row .productpage-col.col-right {
    min-width: calc(100% - 650px);
    max-width: calc(100% - 650px);
  }
}

@media (max-width: 1199px) {

  #productpage .productpage-row .productpage-col.col-left,
  #productpage .productpage-row .productpage-col.col-right {
    min-width: 50%;
    max-width: 50%;
  }

  #productpage .product-info .price .price-new .actual-price {
    font-size: 1.6em;
  }

  #productpage .product-images .thumbs {
    margin: -3px;
    padding-top: 6px;
  }

  #productpage .product-images .thumbs .thumb {
    padding: 3px;
  }

  #productpage .product-images .thumbs .thumb .image-wrap {
    padding: 5%;
  }

  #productpage .product-images .thumbs .thumb a.more-images .overlay {
    font-size: 1.4em;
  }
}

@media (max-width: 991px) {
  #productpage .productpage-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #productpage .productpage-row .productpage-col.col-left,
  #productpage .productpage-row .productpage-col.col-right {
    min-width: 100%;
    max-width: 100%;
    padding: 0;
  }

  #productpage .product-info .product-configure {
    padding-top: 0;
  }

  #productpage .product-info .order-form-outer {
    margin-top: 0;
    border-top: 0;
  }

  #productpage .product-configure .ui.selection.dropdown {
    height: 45px;
    line-height: 45px;
    width: 100%;
    padding: 0 15px;
  }

  #productpage .product-info .price .price-new .actual-price {
    font-size: 1.6em;
  }

  #productpage .product-info .price-stock {
    margin-top: 20px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  #productpage .product-info .price .price-old .price-before {
    font-size: 13px;
  }

  #productpage .product-content {
    padding-bottom: var(--generalSpacing);
    margin-top: var(--generalSpacing);
    background: var(--accentLight);
  }

  #productpage .product-content .content-block.product-manuals {
    margin-top: unset;
    padding-top: unset;
  }

  #productpage .product-content .content-block .content-title {
    margin: 0;
    padding: 12px 0;
    font-size: 15px;
    color: var(--accent);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  #productpage .product-content .content-block .content-title .plusmin {
    position: relative;
    min-width: 10px;
    max-width: 10px;
    height: 10px;
    margin-left: 10px;
  }

  #productpage .product-content .content-block .content-title .plusmin:before,
  #productpage .product-content .content-block .content-title .plusmin:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--accent);
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    -o-transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  #productpage .product-content .content-block .content-title .plusmin:after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
  }

  #productpage .product-content .content-block.active .content-title .plusmin:after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  #productpage .product-content .content-block .toggle-content-wrap {
    display: none;
    margin-bottom: 12px;
  }

  #productpage .product-content .content-block.specs .toggle-content-wrap,
  #productpage .product-content .content-block.description .toggle-content-wrap {
    display: block;
  }

  #productpage .product-content .content-block:not(:first-child) {
    margin-top: 0px;
    padding-top: 0px;
    border-top: none;
  }

  #productpage .product-content .content-block {
    border-bottom: 1px solid #E2E2E2;
  }

  #productpage .product-content .content-block .toggle-content-wrap .specs-table tr:nth-child(odd) td {
    background: #fff;
  }

  #footer.on-productpage {
    margin-top: 0;
  }

  #productpage .product-images {
    margin-bottom: 20px;
  }

  #productpage .product-reviews .btn-wrap {
    padding-top: 15px;
  }

  .toggle-content-wrap .reviews-wrap .review .review-inner,
  #productpage .product-reviews .toggle-content-wrap .btn-wrap .btn.read-all {
    background: #fff;
  }
}

@media (max-width: 767px) {
  #productpage .product-info .product-info-usp li {
    margin-bottom: 10px;
  }

  #productpage .product-info .payments li {
    padding: 2px 5px;
    width: calc(100%/6 - 6px);
    margin: 3px;
  }

  #productpage .product-info .payments li a img {
    height: auto;
    width: 100%;
  }

  #productpage .product-info .price .price-incl {
    font-size: 12px;
  }

  #specs-popup,
  .spec-info-popup {
    padding: 40px 20px;
  }

  #sticky-cart {
    display: none;
  }

  #productpage .top-info-wrap .product-title {
    font-size: 1.385em;
  }

  #productpage .top-info-wrap .links-wrap {
    margin-top: 5px;
  }

  #productpage .top-info-wrap .links-wrap li .stars {
    font-size: 15px;
  }

  #productpage .product-info .cart:not(.cart-related) {
    padding: 15px;
    position: fixed;
    bottom: 0;
    z-index: 9999;
    background: #fff;
    width: 100%;
    left: 0;
    -webkit-box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.05);
  }

  #productpage .product-info .cart .input-wrap input {
    height: 45px;
    width: 45px;
  }

  #productpage .product-info .cart .btn {
    height: 45px;
  }

  #productpage .product-info .cart .wishlist {
    width: 45px;
  }

  .ui.checkbox .box,
  .ui.checkbox label {
    font-size: 1em;
    padding-left: 2em;
  }

  #productpage .product-content .description .toggle-content {
    margin-top: 0;
  }
}

/* End productpage */

/* Product configure */
#productpage .product-configure .product-configure-inner {
  margin: -15px 0;
}

#productpage .product-configure .product-configure-inner .option-wrap {
  padding: 15px 0;
}

#productpage .product-configure .ui.selection.dropdown {
  height: 55px;
  line-height: 55px;
  width: 100%;
}

#productpage .product-configure .ui.selection.dropdown .text {
  font-weight: bold;
  color: #888;
}

#productpage .product-info .product-variant .ui.selection.dropdown {
  height: 55px;
  line-height: 55px;
  display: flex;
}

#productpage .product-info .product-variant .ui.selection.dropdown .text {
  font-weight: bold;
  color: #888;
  overflow: hidden;
}

#productpage .product-configure .ui.selection.dropdown .menu>.item {
  height: 45px;
  font-size: 1em;
}

#productpage .product-info label.label-title {
  font-size: 1.1em;
  margin-bottom: 10px;
  display: block;
}

#productpage .open-mobile-variants {
  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 15px;
  height: 45px;
  border: 2px solid #eee;
  border-radius: 4px;
  margin: 10px 0;
  font-weight: bold;
  color: #aaa;
}

#productpage .open-mobile-variants .text span {
  color: #777;
}

#productpage .mobile-variants {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 99999;
  -webkit-transform: translate(-100%, 0px);
  -ms-transform: translate(-100%, 0px);
  transform: translate(-100%, 0px);
  -webkit-transition: -webkit-transform .35s cubic-bezier(.29, .58, .32, 1);
  transition: -webkit-transform .35s cubic-bezier(.29, .58, .32, 1);
  -o-transition: transform .35s cubic-bezier(.29, .58, .32, 1);
  transition: transform .35s cubic-bezier(.29, .58, .32, 1);
  transition: transform .35s cubic-bezier(.29, .58, .32, 1), -webkit-transform .35s cubic-bezier(.29, .58, .32, 1);
  overflow-y: scroll;
  overflow-x: hidden;
}

#productpage .mobile-variants.active {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

#productpage .mobile-variants .top-wrap {
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 50px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background: var(--accent);
  position: relative;
  font-size: 14px;
}

#productpage .mobile-variants .top-wrap .close-mobile-variants {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 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: 20px;
  color: #fff;
}

#productpage .mobile-variants .variants {
  padding: 20px;
}

#productpage .mobile-variants .variants .variant:not(:last-child) {
  margin-bottom: 10px;
}

#productpage .mobile-variants .variants .variant a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  border: 2px solid #eee;
  border-radius: 4px;
}

#productpage .mobile-variants .variants .variant.active a {
  border-color: var(--accent);
}

#productpage .mobile-variants .variants .variant .image-wrap {
  min-width: 60px;
  max-width: 60px;
  margin-right: 15px;
}

#productpage .mobile-variants .variants .variant .image-wrap img {
  width: 100%;
}

#productpage .mobile-variants .variants .variant {
  font-weight: bold;
}

#productpage .product-configure select {
  height: 50px;
  opacity: 0;
}

#productpage .product-configure .product-configure-inner .option-wrap.product-custom-text,
#productpage .product-configure .product-configure-inner .option-wrap.product-custom-textarea,
#productpage .product-configure .product-configure-inner .option-wrap.product-custom-date,
#productpage .product-configure .product-configure-inner .option-wrap.product-custom-datetime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#productpage .product-configure input[type="text"],
#productpage .product-configure input[type="date"],
#productpage .product-configure input[type="datetime-local"],
#productpage .product-configure textarea {
  border: 2px solid rgba(0, 0, 0, 0.07);
  height: 45px;
  border-radius: 3px;
  padding: 0 15px;
}

#productpage .product-configure textarea {
  padding: 15px;
  height: auto;
  min-height: 100px;
  min-width: 100%;
  max-width: 100%;
}

/* End product configure */

/* Footer */
#footer .main-footer .logo img {
  height: 30px;
}

#footer .footer-bottom .payments img {
  height: 35px;
}

/* End footer */

/* Categories */
.categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -7px;
}

.categories .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 7px;
}

.categories .category .inner {
  display: block;
  border: 1px solid #eee;
  border-radius: 3px;
  padding: 20px;
  background: #fff;
}

.categories .category .info {
  margin-top: 20px;
  text-align: center;
}

.categories .category .info .title {
  font-weight: bold;
  color: var(--accent);
}

.categories .category .info .count {
  font-size: 13px;
  margin-top: 5px;
  color: #888;
}

.home-categories .catalog-btn {
  display: none;
}

@media (min-width: 1200px) {
  .categories .category .inner:hover {
    border: 1px solid #ddd;
  }
}

@media (max-width: 767px) {
  .home-categories .catalog-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 20px;
  }

  .home-categories .categories .category:nth-child(n+5) {
    display: none;
  }

  .categories .category .inner {
    padding: 10px;
  }

  .categories .category .info {
    margin-top: 10px;
  }

  .categories .category .info .title {
    font-size: 14px;
  }

  .categories .category .info .count {
    line-height: 1;
  }
}

/* End categories */

/* Brands */
.brands {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -7px;
}

.brands .brand {
  padding: 7px;
}

.brands .brand .image-wrap {
  border-radius: 3px;
  overflow: hidden;
  padding: 2% 10%;
}

.brands .brand .image-wrap img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

@media (min-width: 1200px) {
  .brands .brand .image-wrap:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }
}

/* End brands */

/* Tags */
.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}

.tags .tag {
  padding: 5px;
}

.tags .tag a {
  height: 35px;
  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-weight: bold;
  color: #333;
  padding: 0 15px;
  background: #f7f7f7;
  font-size: 13px;
  border-radius: 3px;
}

@media (max-width: 767px) {
  .tags {
    margin: -2px;
  }

  .tags .tag {
    padding: 2px;
  }

  .tags .tag a {
    padding: 0 10px;
    height: 30px;
    font-size: 13px;
  }
}

/* End tags */

/* messages */
.gui-messages {
  display: none !important;
}

.message-wrap {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 99999999999;
  display: none;
}

.message-wrap.active {
  display: block;
}

.message-wrap .message {
  background: #fff;
  border-radius: 0px;
  padding: 20px;
  width: 350px;
  -webkit-box-shadow: 0px 2px 40px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 40px 8px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.1em;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.message-wrap.active .message {
  -webkit-animation: jump 1s ease 0s 1 normal;
  animation: jump 1s ease 0s 1 normal;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px, 0);
  -ms-transform: translate(0px, 0);
  transform: translate(0px, 0);
}

.message-wrap .message .icon {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  border-radius: 100%;
  text-align: center;
  line-height: 40px;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.message-wrap .message.error .icon {
  background: #cd3b3b;
}

.message-wrap .message.success .icon {
  background: #2ecc71;
}

.message-wrap .message.info .icon {
  background: #3ca1cd;
}

.message-wrap .text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@-webkit-keyframes jump {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes jump {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .message-wrap {
    top: auto;
    bottom: 10px;
    z-index: 99999999999;
    left: 0;
    padding: 0px 10px;
  }

  .message-wrap .message {
    padding: 15px;
    width: 100%;
  }

  .message-wrap .message .icon {
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 15px;
    font-size: 10px;
  }
}

/* End messages */

/* Sticky cart */
#sticky-cart {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  -webkit-transform: translateY(-100%) translateZ(0);
  transform: translateY(-100%) translateZ(0);
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

@media(min-width: 1599px) {
  #sticky-cart.active {
    -webkit-transform: translateY(0) translateZ(0);
    transform: translateY(0) translateZ(0);
    opacity: 1;
    visibility: visible;
  }
}

#sticky-cart .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#sticky-cart .image-wrap {
  min-width: 100px;
  max-width: 100px;
  padding: 3%;
  border-radius: 3px;
  margin-right: 15px;
}

#sticky-cart .image-wrap img {
  width: 100%;
}

#sticky-cart .col-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#sticky-cart .info-wrap .product-title {
  font-weight: bold;
  margin-bottom: 5px;
  max-width: 450px;
  max-height: 3.7em;
  overflow: hidden;
  line-height: 1.3em;
}

#sticky-cart .info-wrap .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 13px;
}

#sticky-cart .info-wrap .price-old {
  text-decoration: line-through;
  color: #888;
}

#sticky-cart .info-wrap .new-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

#sticky-cart .info-wrap .price-new {
  font-size: 14px;
  font-weight: bold;
}

#sticky-cart .info-wrap .price-incl {
  font-size: 12px;
  margin-left: 5px;
}

#sticky-cart .cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 15px;
}

#sticky-cart .cart .input-wrap input {
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
  font-weight: bold;
  text-align: center;
  padding: 0;
  margin-right: 10px;
}

#sticky-cart .cart .add-live {
  background: var(--accentGreen);
  padding: 0 50px;
  min-width: 250px;
}

#sticky-cart .cart .add-live i {
  font-size: 20px;
  margin-right: 3px;
}

#sticky-cart .cart .wishlist-btn {
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 3px;
  font-size: 1.3em;
  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-left: 10px;
}

@media (max-width: 1199px) {
  #sticky-cart .cart .add-live {
    padding: 0 30px;
    min-width: unset;
  }

  #sticky-cart .image-wrap {
    min-width: 80px;
    max-width: 80px;
    margin-right: 10px;
  }

  #sticky-cart .info-wrap .product-title,
  #sticky-cart .info-wrap .price {
    font-size: 1em;
  }

  #sticky-cart .cart {
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  #sticky-cart .image-wrap {
    display: none;
  }

  #sticky-cart .info-wrap {
    padding-right: 30px;
  }

  #sticky-cart .info-wrap .product-title,
  #sticky-cart .info-wrap .price {
    font-size: .95em;
  }

  #sticky-cart .cart .add-live {
    padding: 0;
    width: 45px;
  }

  #sticky-cart .cart .add-live i {
    margin: 0;
  }

  #sticky-cart .info-wrap .price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #sticky-cart .info-wrap .price-old {
    margin-right: 10px;
  }
}

/* End sticky cart */

/* Footer - Start */

/* Footer - USPS - Start */
#footer .footer-usps {
  background-color: var(--accent);
}

#footer .footer-usps .inner {
  padding: 50px 100px;
}

#footer .footer-usps ul.usps {
  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: -15px;
}

#footer .footer-usps ul.usps li.usp-item {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
}

#footer .footer-usps ul.usps li.usp-item>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#footer .footer-usps ul.usps li.usp-item i.icon {
  background-color: var(--accentHighlight);
  max-height: 60px;
  min-height: 60px;
  max-width: 60px;
  min-width: 60px;
  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;
  line-height: 60px;
  font-size: 1.4em;
  border-radius: 50%;
  margin-right: 15px;
}

#footer .footer-usps ul.usps li.usp-item i.icon-delivery {
  font-size: 1.6em;
}

@media(max-width: 1199px) {
  #footer .footer-usps .inner {
    padding: 50px 0;
  }
}

@media(max-width: 991px) {
  #footer .footer-usps .inner {
    padding: 35px 0;
  }

  #footer .footer-usps ul.usps {
    margin: unset;
  }

  #footer .footer-usps ul.usps li.usp-item {
    padding: unset;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #footer .footer-usps ul.usps li.usp-item i.icon {
    max-height: 50px;
    min-height: 50px;
    max-width: 50px;
    min-width: 50px;
    line-height: 50px;
    font-size: 1.2em;
  }

  #footer .footer-usps ul.usps li.usp-item i.icon-delivery {
    font-size: 1.4em;
  }
}

@media(max-width: 767px) {
  #footer .footer-usps .inner {
    padding: 30px 0;
  }

  #footer .footer-usps ul.usps li.usp-item i.icon {
    max-height: 40px;
    min-height: 40px;
    max-width: 40px;
    min-width: 40px;
    line-height: 40px;
    font-size: 1.1em;
    margin-right: 9px;
  }

  #footer .footer-usps ul.usps li.usp-item i.icon-delivery {
    font-size: 1.3em;
  }
}

/* Footer - USPS - End */

#footer .footer-text-blocks {
  background: var(--accentLight);
}

#footer .footer-text-blocks .inner-wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 30px 0;
}

#footer .footer-text-blocks .inner-wrap .text-col {
  width: calc(50% - 15px);
  background: var(--accentLight);
  padding: 0;
}

@media (max-width: 991px) {
  #footer .footer-text-blocks .inner-wrap {
    flex-direction: column;
  }

  #footer .footer-text-blocks .inner-wrap .text-col {
    width: 100%;
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
  }

  #footer .footer-text-blocks .inner-wrap .text-col:last-child {
    margin-bottom: 0px;
  }
}

/* Footer - Categories - Start */
#footer .footer-categories {
  background: var(--accentLight);
}

#footer .footer-categories .categories-title-wrap {
  margin-bottom: 20px;
}

#footer .footer-categories .categories-title-wrap .title {
  font-size: 1.200em;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 7px;
}

#footer .footer-categories .categories-wrap {
  padding: 30px;
  background: #fff;
  border-radius: 3px;
}

#footer .footer-categories .categories-wrap .categories-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: -10px;
  border-radius: 3px;
}

#footer .footer-categories .category-col .title {
  font-size: 1.200em;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 7px;
}

#footer .footer-categories .categories-col-wrap {
  padding: 10px;
}

#footer .footer-categories .categories-col-wrap .category-col.col-2,
#footer .footer-categories .categories-col-wrap .category-col.col-3,
#footer .footer-categories .categories-col-wrap .category-col.col-6,
#footer .footer-categories .categories-col-wrap .category-col.col-7 {
  margin-top: 15px;
}

#footer .footer-categories ul.category-links {
  color: #888;
  line-height: 2em;
  font-size: 0.933em;
}

#footer .footer-categories ul.category-links li.category-item a {
  display: block;
}

@media(max-width: 1199px) {
  #footer .footer-categories .categories-wrap {
    padding: 20px;
  }

  #footer .footer-categories .category-col .title {
    font-size: 1em;
  }
}

/* Footer - Categories - End */
/* Footer - Service Blocks - Start */
.footer-service .inner .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.footer-service .inner .title-wrap .title {
  margin-right: 20px;
  color: var(--accent);
  font-size: 1.467em;
  font-weight: bold;
}

.footer-service .inner .title-wrap .dot {
  min-height: 11px;
  max-height: 11px;
  min-width: 11px;
  max-width: 11px;
  margin-right: 8px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.footer-service .inner .title-wrap .dot.open {
  background-color: var(--accentGreen);
}

.footer-service .inner .title-wrap .dot.closed {
  background-color: var(--accentRed);
}

.footer-service .inner .title-wrap .subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
}

.footer-service ul.blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -7px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.footer-service ul.blocks li.block {
  padding: 7px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.footer-service ul.blocks li.block .block-inner {
  padding: 20px;
  background-color: var(--accentLight);
  border-radius: 3px;
  width: 100%;
  font-size: 0.933em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-service ul.blocks li.block i.bx {
  background-color: var(--accent);
  min-height: 50px;
  max-height: 50px;
  min-width: 50px;
  max-width: 50px;
  line-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 1.6em;
}

.footer-service ul.blocks li.block i.bxl-whatsapp {
  font-size: 1.7em;
}

@media(max-width: 1199px) {
  .footer-service ul.blocks {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-service ul.blocks li.block {
    width: 33%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }

  .footer-service ul.blocks li.block .block-inner {
    width: 100%;
  }
}

@media(max-width: 991px) {
  .footer-service ul.blocks {
    margin: -5px;
  }

  .footer-service ul.blocks li.block {
    padding: 5px;
    width: 50%;
  }

  .footer-service ul.blocks li.block:last-child {
    width: 100%;
  }

  .footer-service .inner .title-wrap .title {
    font-size: 1.3em;
    margin-right: 15px;
  }

  .footer-service ul.blocks li.block .block-inner {
    padding: 15px;
  }

  .footer-service ul.blocks li.block i.bx {
    max-height: 40px;
    min-height: 40px;
    max-width: 40px;
    min-width: 40px;
    line-height: 40px;
  }

  .footer-service .inner .title-wrap {
    margin-bottom: 20px;
  }
}

/* Footer - Service Blocks - End */
/* Footer - Contacts & Links - Start */
#footer .footer-links-contact {
  background: var(--accentLight);
}

#footer .footer-links-contact .inner {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: -10px;
}

#footer .footer-links-contact .title {
  font-size: 1.200em;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 17px;
}

#footer .footer-links-contact ul.footer-links {
  color: #888;
  line-height: 2em;
  font-size: 0.933em;
}

#footer .footer-links-contact ul.footer-links li.link-item {
  -webkit-transition: .15s color ease-in-out;
  -o-transition: .15s color ease-in-out;
  transition: .15s color ease-in-out;
}

#footer .footer-links-contact ul.footer-links li.link-item a {
  display: block;
}

#footer .footer-links-contact .links-col-wrap.wrap-2 .links-col.col-3,
#footer .footer-links-contact .links-col-wrap.wrap-3 .links-col.col-5,
#footer .footer-links-contact .links-col-wrap.wrap-4 .links-col.col-7 {
  margin-top: 35px;
}

#footer .footer-links-contact .links-col-wrap {
  /* 	max-width: 235px; */
  padding: 10px;
}

#footer .footer-links-contact .links-col.socials .title {
  margin-bottom: 22px;
}

#footer .footer-links-contact .links-col.socials ul.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#footer .footer-links-contact .links-col.socials ul.socials li.social-link:not(:last-child) {
  margin-right: 15px;
}

#footer .footer-links-contact .links-col.socials i.bx {
  max-height: 40px;
  min-height: 40px;
  max-width: 40px;
  min-width: 40px;
  line-height: 40px;
  background-color: var(--accentHighlight);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4em;
  border-radius: 50%;
}

#footer .footer-links-contact .links-col.contact-info ul.contact li.contact-item>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#footer .footer-links-contact .links-col.contact-info ul.contact li.contact-item>a>i.bx {
  max-height: 40px;
  min-height: 40px;
  max-width: 40px;
  min-width: 40px;
  background-color: var(--accentHighlight);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  margin-right: 15px;
  font-size: 1.4em;
}

#footer .footer-links-contact .links-col.contact-info ul.contact li.contact-item .text {
  font-weight: bold;
  font-size: 0.933em;
  color: #888;
  line-height: 1.333em;
}

#footer .footer-links-contact .links-col.contact-info ul.contact li.contact-item:not(:last-child) {
  margin-bottom: 20px;
}

#footer .footer-links-contact .newsletter .btn {
  min-height: 45px;
  max-height: 45px;
  max-width: 45px;
  min-width: 45px;
  padding: 0 15px;
  line-height: 45px;
  border-radius: 0 3px 3px 0;
}

#footer .footer-links-contact .support-logo img {
  width: 300px;
  margin-top: 35px;
}

#footer .footer-links-contact .newsletter #formNewsletter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#footer .footer-links-contact .newsletter .subtitle {
  color: #888;
  font-size: 0.93em;
  line-height: 1.667em;
  margin-bottom: 15px;
}

#footer .footer-links-contact .newsletter .standard-input {
  height: 45px;
  width: 100%;
  border-radius: 3px 0 0 3px;
  border: 0;
}

@media(min-width: 1200px) {
  #footer .footer-links-contact ul.footer-links li.link-item:hover {
    color: var(--accent);
  }

  #footer .footer-categories ul.category-links li.category-item:hover {
    color: var(--accent);
  }
}

@media(max-width: 991px) {
  #footer .footer-links-contact .inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: unset;
    padding: 35px 0;
  }

  #footer .footer-links-contact .links-col-wrap {
    padding: unset;
    width: 100%;
    max-width: unset;
  }

  #footer .footer-links-contact .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: 10px;
    font-size: 1.1em;
  }

  #footer .footer-links-contact .links-col.col-1,
  #footer .footer-links-contact .links-col.col-2,
  #footer .footer-links-contact .links-col.col-3,
  #footer .footer-links-contact .links-col.col-4 {
    border-bottom: 1px solid #eee;
  }

  #footer .footer-links-contact .links-col ul.footer-links {
    display: none;
    padding-bottom: 10px;
  }

  #footer .footer-links-contact .links-col-wrap.wrap-2 .links-col.col-3,
  #footer .footer-links-contact .links-col-wrap.wrap-3 .links-col.col-5,
  #footer .footer-links-contact .links-col-wrap.wrap-4 .links-col.col-7 {
    margin-top: unset;
  }

  #footer .footer-links-contact .links-col-wrap.wrap-3 .links-col.col-5.socials {
    margin-top: 20px;
  }

  #footer .footer-links-contact .links-col-wrap:not(:last-child) {
    padding-bottom: 10px;
  }

  #footer .footer-links-contact .links-col-wrap.wrap-2 .links-col.col-2,
  #footer .footer-links-contact .links-col-wrap.wrap-3 .links-col.col-4 {
    margin-bottom: 10px;
  }

  #footer .footer-links-contact .links-col-wrap.wrap-4 .links-col.col-6 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  #footer .footer-links-contact .links-col.contact-info ul.contact li.contact-item:not(:last-child) {
    margin-bottom: 10px;
  }

  #footer .footer-links-contact .links-col.socials .title {
    margin-bottom: 10px;
  }

  #footer .footer-links-contact .links-col.socials i.bx,
  #footer .footer-links-contact .links-col.contact-info ul.contact li.contact-item>a>i.bx {
    max-height: 40px;
    min-height: 40px;
    min-width: 40px;
    max-width: 40px;
    line-height: 40px;
    font-size: 1.3em;
  }

  #footer .footer-links-contact .links-col.socials ul.socials li.social-link:not(:last-child) {
    margin-right: 10px;
  }

  #footer .footer-links-contact .links-col .title>i {
    -webkit-transition: .15s all ease-in-out;
    -o-transition: .15s all ease-in-out;
    transition: .15s all ease-in-out;
  }

  #footer .footer-links-contact .links-col.active .title>i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  #footer .footer-links-contact .newsletter .subtitle {
    margin-bottom: 10px;
  }
}

@media(max-width: 767px) {
  #footer .footer-links-contact .newsletter .standard-input {
    height: 35px;
  }

  #footer .footer-links-contact .newsletter .btn {
    min-height: 35px;
    max-height: 35px;
    max-width: 35px;
    min-width: 35px;
  }

  #footer .footer-links-contact .inner {
    padding: 20px 0;
  }

  #footer .footer-links-contact .links-col.socials i.bx,
  #footer .footer-links-contact .links-col.contact-info ul.contact li.contact-item>a>i.bx {
    max-height: 35px;
    min-height: 35px;
    min-width: 35px;
    max-width: 35px;
    line-height: 35px;
    font-size: 1.2em;
  }
}

/* Footer - Contacts & Links - End */
#footer .footer-bottom {
  background-color: var(--accent);
}

#footer .footer-bottom .inner {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.933em;
}

#footer .footer-bottom .inner .copyright {
  color: #fff;
  font-weight: bold;
}

#footer .footer-bottom ul.payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: -5px;
  justify-content: center;
}

#footer .footer-bottom ul.payments img {
  height: 35px;
}

#footer .footer-bottom ul.payments li {
  padding: 5px;
}

#footer .footer-bottom ul.payments li>a {
  background: #fff;
  display: block;
  border-radius: 2px;
}

@media(max-width: 991px) {
  #footer .footer-bottom .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #footer .footer-bottom .inner .copyright {
    margin-bottom: 10px;
  }
}

@media(max-width: 767px) {
  #footer .footer-bottom ul.payments img {
    height: 30px;
  }

  #footer .footer-bottom ul.payments {
    margin: -2px;
  }

  #footer .footer-bottom ul.payments li {
    padding: 2px;
  }
}

/* Footer - End */
/* Fixed Pages - Start */
#textpage .general-content {
  color: #444;
}

@media(max-width: 767px) {
  #brands .brands {
    margin: -5px;
  }

  #brands .brands .brand {
    padding: 5px;
  }
}

@media(max-width: 767px) {
  #catalog .categories {
    margin: -5px;
  }

  #catalog .categories .category {
    padding: 5px;
  }
}

/* Fixed Pages - End */


/* 404 */

.page-404 .image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.page-404 .image img {
  width: 100%;
}

.page-404 .button {
  margin-top: 40px;
}

/* END 404 */

/* Custom Register Page - Start */
.gui-login .gui-input,
.gui-register .gui-input {
  border: 1px solid #F2F2F2 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.gui-login .gui-input input,
.gui-register .gui-input input {
  height: 40px !important;
  padding: 0px 12px !important;
  font-family: inherit;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.gui-login .gui-block-title,
.gui-login .gui-block,
.gui-register .gui-block-title,
.gui-register .gui-block {
  border-color: #F2F2F2 !important;
}

body .gui-login .gui-button-small,
body .gui-register .gui-button-small {
  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: 0px 40px;
  height: 50px;
  font-size: 16px;
}

body .gui-login .gui-block,
body .gui-register .gui-block {
  /*   -webkit-box-shadow: 4px 4px 25px 0px rgba(0,0,0,0.04);
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.05); */
  border: 1px solid #eee;
}

body .gui-login .gui-block-title,
body .gui-login .gui-content-title,
body .gui-register .gui-block-title,
body .gui-register .gui-content-title {
  border: none;
  font-size: 20px;
  font-weight: 700;
  font-family: inherit;
  padding: 30px;
}

body .gui-login .gui-content-title,
body .gui-register .gui-content-title {
  padding: 0;
  padding-bottom: 30px;
}

body .gui-login .gui-block-title strong,
body .gui-register .gui-block-title strong {
  font-weight: bold;
}

body .gui-login .gui-block-content,
body .gui-register .gui-block-content {
  padding: 30px;
  padding-top: 0;
}

body .gui p {
  line-height: 150%;
  margin-bottom: 20px;
}

body .gui-login label,
body .gui-register label,
body .gui-register .gui-form .gui-field>label,
body .gui-login .gui-form .gui-field>label {
  font-size: 14px;
  font-weight: bold;
  line-height: 28px;
  margin: 0;
  display: block;
  margin-bottom: 5px;
  color: #303d43;
}

body .gui a.gui-button-facebook {
  margin: 0;
  height: 50px;
  background: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0px 40px;
  height: 50px;
  font-size: 16px;
  background: #3C5A99;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  border-radius: 3px;
}

body .gui a.gui-button-facebook span {
  margin: 0;
  background: transparent;
  border: none;
  color: inherit;
  padding: 0;
}

body .gui a.gui-button-facebook:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f082";
  font-size: 22px;
  margin-right: 10px;
}

.gui-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent !important;
  padding: 0px 10px !important;
}

body .gui-select {
  background: #fff !important;
  color: #000;
  font-size: 13px;
  position: relative;
  z-index: 0;
  border-radius: 5px;
  overflow: hidden;
}

body .gui-select:after {
  font-family: fontawesome;
  content: "\f107";
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  z-index: -1;
  font-size: .9em;
}

.gui-form .gui-radio input {
  margin: 0;
  margin-right: 10px;
}

.gui-checkout .gui-form .gui-input,
.gui-checkout .gui-form .gui-text,
body .gui-select {
  border: none !important;
}

.gui-select select {
  height: 40px !important;
  -webkit-appearance: none;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
}

.gui-checkout .gui-form input[type="text"],
.gui-checkout .gui-form input[type="email"],
.gui-checkout .gui-form textarea {
  height: 40px;
  padding: 0px 20px;
  outline: none;
  border: 1px solid #efefef;
  border-radius: 0px;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.gui-checkout .gui-form textarea {
  padding: 13px 20px;
  max-width: 100%;
  min-height: 100px;
}

.gui-checkout .gui-form input::-webkit-input-placeholder,
.gui-checkout .gui-form textarea::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #aaa;
  color: rgba(0, 0, 0, 0.4);
}

.gui-checkout .gui-form input:-moz-placeholder,
.gui-checkout .gui-form textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #aaa;
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.gui-checkout .gui-form input::-moz-placeholder,
.gui-checkout .gui-form textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #aaa;
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.gui-checkout .gui-form input:-ms-input-placeholder,
.gui-checkout .gui-form textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #aaa;
  color: rgba(0, 0, 0, 0.4);
}

.gui-checkout .gui-form input::-ms-input-placeholder,
.gui-checkout .gui-form textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #aaa;
  color: rgba(0, 0, 0, 0.4);
}

body .gui-input.gui-focus,
body .gui-text.gui-focus,
.gui-input input:focus,
.gui-text textarea:focus {
  border: 1px solid rgba(0, 0, 0, .07) !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

body .gui-select.gui-focus {
  border: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.gui-checkout .gui-progressbar {
  display: block;
}

.gui-checkout .gui-form a.gui-button-action {
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
}

.gui-input-phone-number .gui-input-phone-number-code-wrapper {
  position: relative !important;
  top: 5px;
  left: 5px;
  width: 90px !important;
}

.gui-input-phone-number .gui-input-phone-number-code-placeholder {
  left: 23px !important;
  line-height: 22px !important;
  height: 100% !important;
}

/* Responsive */
@media (max-width: 991px) {

  .gui-form .gui-checkout-steps.gui-col3-equal>.gui-col3-equal-col1,
  .gui-form .gui-checkout-steps.gui-col3-equal>.gui-col3-equal-col2,
  .gui-form .gui-checkout-steps.gui-col3-equal>.gui-col3-equal-col3 {
    width: 100% !important;
  }
}

@media(max-width: 767px) {

  .gui-col2-big .gui-col2-big-col1,
  .gui-col2-big .gui-col2-big-col2,
  .gui-col2-equal .gui-col2-equal-col1,
  .gui-col2-equal .gui-col2-equal-col2,
  .gui-col2-left .gui-col2-left-col1,
  .gui-col2-left .gui-col2-left-col2,
  .gui-col2-leftm .gui-col2-leftm-col1,
  .gui-col2-leftm .gui-col2-leftm-col2,
  .gui-col2-right .gui-col2-right-col1,
  .gui-col2-right .gui-col2-right-col2,
  .gui-col2-rightm .gui-col2-rightm-col1,
  .gui-col2-rightm .gui-col2-rightm-col2,
  .gui-col3-center .gui-col3-center-col3,
  .gui-col3-center .gui-col3-center-col2,
  .gui-col3-center .gui-col3-center-col3,
  .gui-col3-equal .gui-col3-equal-col1,
  .gui-col3-equal .gui-col3-equal-col2,
  .gui-col3-equal .gui-col3-equal-col3,
  .gui-col3-equal .gui-col3-equal-col2.gui-div-cart-coupons,
  .gui-col2-right-col1.gui-div-faq-questions,
  .gui-blog .gui-col2-right-col1,
  .gui-col2-right-col2.gui-div-faq-right,
  .gui-blog .gui-col2-right-col2,
  .gui-buttons .gui-right,
  .gui .gui-right a {
    float: none;
    margin: 0px;
    width: 100%;
  }

  .gui-input-phone-number .gui-input-phone-number-code-wrapper {
    width: 100px !important;
  }
}

/* Custom Register Page - End */

/* Custom Checkout - Start */
.gui-checkout .order-summary table tr:first-child td small {
  display: none;
}

.gui-payment-method-service .gui-payment-method-icon {
  opacity: 0;
  background: #fff;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, .07);
}

.gui-payment-method-service .gui-payment-method-icon.updated {
  opacity: 1;
}

.gui-form .gui-radio label,
.gui-form .gui-checkbox label {
  position: relative;
  padding-left: 30px !important;
  padding-top: 4px;
}

.gui-form .gui-radio label:before,
.gui-form .gui-checkbox label:before {
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid rgba(0, 0, 0, .07);
}

.gui-form .gui-checkbox label[for="gui-form-terms"]:before {
  border: 1.5px solid #337ab7a3
}

.gui-form .gui-checkbox label:before {
  border-radius: 0;
}

.gui-form .gui-radio input,
.gui-form .gui-checkbox input {
  display: none;
}

.gui-form .gui-radio input:checked~label:after {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 100%;
}

.gui-form .gui-checkbox input:checked~label:after {
  content: "\f00c";
  display: block;
  position: absolute;
  left: 4px;
  top: 4px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--accentHighlight) !important;
}

.gui-checkout-one-step .gui-payment-method-service>label {
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  margin: 0;
  margin-bottom: 10px;
  border: 2px solid transparent;
}

.gui-checkout-one-step .gui-payment-method-service>label input {
  display: none;
}

.gui-checkout .gui-form a.gui-button-small {
  height: 40px;
  line-height: 37px;
  padding: 0 20px;
}

.gui a.gui-button-large,
.gui a.gui-button-small {
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 3px !important;
  background-color: var(--accentHighlight) !important;
  border-color: var(--accentHighlight) !important;
}

.gui-checkout-one-step .gui-block {
  padding: 7%;
  border-radius: 10px;
}

.gui-checkout-one-step .gui-block,
.gui-checkout-one-step .gui-block {
  background: var(--accentLight);
}

.gui-input,
.gui-text,
.gui-select,
.gui-number {
  background-color: #ffffff !important;
  border: 1px solid #cccccc !important;
}

body .gui-block-subtitle,
body .gui-content-subtitle {
  font-size: 1.3em;
  font-weight: bold;
  color: var(--accent);
}

.gui-block-subtitle a {
  font-size: 12px;
  line-height: 2em;
  text-transform: none;
}

.gui-form .gui-checkout-steps {
  margin: -15px;
}

.gui-checkout-one-step .gui-checkout-steps {
  width: auto !important;
}

.gui-form .gui-checkout-steps.gui-col3-equal>.gui-col3-equal-col1,
.gui-form .gui-checkout-steps.gui-col3-equal>.gui-col3-equal-col2,
.gui-form .gui-checkout-steps.gui-col3-equal>.gui-col3-equal-col3 {
  width: 33.3333% !important;
  padding: 15px !important;
  margin: 0 !important;
}

.gui-form .gui-field>label {
  font-size: .9em;
}

.gui-checkout #gui-block-review .gui-product-image {
  display: block !important;
  border: none;
  border-radius: 3px;
  overflow: hidden;
  margin-right: 15px;
}

.order-summary .gui-table tbody tr td:first-child {
  padding-left: 0;
}

.order-summary .gui-table tbody tr td:last-child {
  padding-right: 0;
  color: #404040;
}

.order-summary .gui-table thead {
  display: none;
}

.order-summary .gui-table tbody tr td {
  font-size: 14px;
}

.gui-cart-sum .gui-item .gui-desc {
  font-size: 12px;
  text-align: left !important;
}

.gui-cart-sum .gui-line {
  background: #eee !important;
}

body .gui-table tbody tr:last-child td {
  border-color: #eee;
}

.gui-checkout .gui-confirm-buttons a.gui-button-action {
  padding: 0px 40px !important;
  height: 45px;
  line-height: 45px;
  font-size: 13px;
}

input#gui-form-discount_code {
  font-size: 1em;
}

.gui-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent !important;
  padding: 0px 10px !important;
}

body .gui-select {
  background: #fff !important;
  color: #000;
  font-size: 13px;
  position: relative;
  z-index: 0;
  border-radius: 5px;
  overflow: hidden;
}

body .gui-select:after {
  font-family: fontawesome;
  content: "\f107";
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  z-index: -1;
  font-size: .9em;
}

.gui-form .gui-radio input {
  margin: 0;
  margin-right: 10px;
}

.gui-checkout .gui-form .gui-input,
.gui-checkout .gui-form .gui-text,
body .gui-select {
  border: none !important;
}

.gui-select select {
  height: 40px !important;
  -webkit-appearance: none;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
}

.gui-checkout .gui-form input[type="text"],
.gui-checkout .gui-form input[type="email"],
.gui-checkout .gui-form textarea {
  height: 40px;
  padding: 0px 20px;
  outline: none;
  border: 1px solid #efefef;
  border-radius: 0px;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.gui-checkout .gui-form textarea {
  padding: 13px 20px;
  max-width: 100%;
  min-height: 100px;
}

.gui-checkout .gui-form input::-webkit-input-placeholder,
.gui-checkout .gui-form textarea::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #aaa;
  color: rgba(0, 0, 0, 0.4);
}

.gui-checkout .gui-form input:-moz-placeholder,
.gui-checkout .gui-form textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #aaa;
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.gui-checkout .gui-form input::-moz-placeholder,
.gui-checkout .gui-form textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #aaa;
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.gui-checkout .gui-form input:-ms-input-placeholder,
.gui-checkout .gui-form textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #aaa;
  color: rgba(0, 0, 0, 0.4);
}

.gui-checkout .gui-form input::-ms-input-placeholder,
.gui-checkout .gui-form textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #aaa;
  color: rgba(0, 0, 0, 0.4);
}

body .gui-input.gui-focus,
body .gui-text.gui-focus,
.gui-input input:focus,
.gui-text textarea:focus {
  border: 1px solid rgba(0, 0, 0, .07) !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

body .gui-select.gui-focus {
  border: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}



.gui-checkout .gui-progressbar {
  display: block;
}

.gui-checkout .gui-form a.gui-button-action {
  width: 100%;
  height: 55px;
  line-height: 55px;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
}

.gui-input-phone-number .gui-input-phone-number-code-wrapper {
  margin: unset !important;
}

.gui-input-phone-number #gui-form-details-phone-number {
  padding-left: 25px !important;
}

.gui-delivery-time-checkout {
  display: none;
}

.gui-checkout .gui-form a.gui-button-action {
  background: var(--accentGreen) !important;
  border-color: var(--accentGreen) !important;
}

.gui-form label em {
  color: var(--accentHighlight) !important;
}

.gui-form .gui-radio input:checked~label:after {
  background: var(--accentHighlight) !important;
}

.gui-checkout-one-step .gui-payment-method-service.gui-is-selected>label {
  border: 2px solid #2ECC72 !important;
}

.gui-payment-method-compact .gui-payment-method-service label {
  padding-right: 8px !important;
}

/* Responsive */
@media (max-width: 1199px) {

  .gui-form .gui-checkout-steps.gui-col3-equal>.gui-col3-equal-col1,
  .gui-form .gui-checkout-steps.gui-col3-equal>.gui-col3-equal-col2,
  .gui-form .gui-checkout-steps.gui-col3-equal>.gui-col3-equal-col3 {
    width: 100% !important;
  }
}

@media(max-width: 991px) {
  .gui-checkout-one-step .gui-block {
    padding: 30px !important;
  }

  .gui-block-subtitle,
  .gui-content-subtitle {
    font-size: 1.3em;
  }
}

@media(max-width: 767px) {
  .gui-input-phone-number #gui-form-details-phone-number {
    padding-left: 10px !important;
  }

  .gui-block-subtitle,
  .gui-content-subtitle {
    font-size: 1.1em;
  }

  .gui-checkout-one-step .gui-block {
    padding: 20px !important;
  }
}

/* Custom checkout - End */

/* CHECKOUT FOOTER */
.checkout-footer {
  text-align: center;
  padding: calc(var(--generalSpacing) * .7) 0;
}

.checkout-footer .title {
  font-weight: bold;
}

.checkout-footer .text {
  opacity: .7;
}

/* END CHECKOUT FOOTER */

/* blog */
.blog-articles {
  margin: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-articles .blog-article {
  padding: 15px;
}

.home-blog .blog-articles {
  margin: -10px;
}

.home-blog .blog-articles .blog-article {
  padding: 10px;
}

.blog-article .image-wrap {
  display: block;
  overflow: hidden;
  border-radius: 3px;
}

.blog-article .image-wrap .image:after {
  content: '';
  display: block;
  padding-top: 60%;
}

#blog .headline-articles {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #f3f3f3;
}

.blog-article .info {
  margin-top: 20px;
}

.blog-article .title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
  line-height: 1.1em;
}

.home-blog .blog-article .title {
  font-size: 1.4em;
}

.blog-article .title:hover {
  color: var(--accent);
}

.blog-article .summary a {
  font-weight: bold;
  text-decoration: underline;
}

.blog-spinner {
  margin-top: 50px;
}

#blog .complete-article .article-title {
  font-size: 3.3em;
  text-align: center;
  margin: 0;
  font-weight: bold;
}

#blog .complete-article .image:after {
  display: block;
  padding-top: 60%;
  content: '';
}

#blog .complete-article .image-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

#blog .complete-article .text-container.top-content {
  margin-bottom: 40px;
}

#blog .complete-article .date-author,
.blog-article .date-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #8a8a8a;
  margin-top: 10px;
  font-size: 12px;
}

.blog-article .date-author {
  margin-top: 0;
  margin-bottom: 10px;
}

#blog .complete-article .date-author {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#blog .complete-article .author,
.blog-article .author {
  margin-right: 10px;
  text-transform: lowercase;
}

#blog .complete-article .author span,
.blog-article .author span {
  text-decoration: underline;
  text-transform: none;
}

#blog .complete-article .date,
.blog-article .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#blog .complete-article .date i,
.blog-article .date i {
  margin-right: 5px;
}

#blog .complete-article .text-container {
  max-width: 700px;
  margin: 0 auto;
}

#blog .complete-article .article-text {
  margin-top: 30px;
}

#blog .complete-article .share ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: -5px;
  margin-top: 15px;
}

#blog .complete-article .share ul li {
  padding: 5px;
}

#blog .complete-article .share ul li a {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #aaa;
  color: #fff;
  padding: 0px 20px;
  min-width: 120px;
  font-weight: bold;
}

#blog .complete-article img {
  max-width: 100%;
  height: auto;
}

#blog .complete-article .share ul li a i {
  margin-right: 10px;
}

#blog .complete-article .share ul li a.facebook {
  background: #3b5999;
}

#blog .complete-article .share ul li a.twitter {
  background: #55acee;
}

#blog .complete-article .share ul li a.pinterest {
  background: #bd081c;
}

#blog .recent-articles {
  margin: 0 auto;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #f3f3f3;
}

@media (max-width: 991px) {
  #blog .complete-article .article-title {
    font-size: 2.7em;
  }
}

@media (max-width: 767px) {
  .blog-articles {
    margin: -10px;
  }

  .blog-articles .blog-article {
    padding: 10px;
  }

  .blog-article .info {
    margin-top: 10px;
  }

  .blog-article .title {
    font-size: 1.7em;
  }

  #blog .headline-articles {
    border: none;
    padding: 0;
    margin-bottom: 10px;
  }

  #blog .complete-article .article-title {
    font-size: 2.5em;
  }

  #blog .complete-article .share ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -3px;
    margin-top: 15px;
  }

  #blog .complete-article .share ul li {
    padding: 3px;
  }

  #blog .complete-article .text-container.top-content {
    margin-bottom: 25px;
  }

  #blog .complete-article .share ul li a {
    height: 30px;
    font-size: 12px;
  }

  #blog .complete-article .article-text {
    font-size: 1.1em;
  }

  #blog .recent-articles {
    margin-top: 30px;
    padding-top: 30px;
  }

  #blog .complete-article .image-wrap {
    margin: 0 -20px;
  }
}

/* end blog */

/* CUSTOM CART */
#cart-page .stock {
  font-weight: normal;
  font-size: 13px;
  margin-top: 5px;
}

#cart-page .stock i {
  margin-right: 5px;
  color: var(--accentGreen);
}

#cart-page .cart-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px -25px;
}

#cart-page .cart-body-col {
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
  padding: 0px 25px;
  min-height: 1px;
}

#cart-page .cart-total-col {
  min-width: 500px;
  max-width: 500px;
  padding: 0px 25px;
  min-height: 1px;
}

#cart-page .cart-title,
.checkout-title,
#service-page .service-title {
  margin-bottom: 30px;
}

#cart-page .cart-title .title,
.checkout-title .title,
#service-page .service-title .title {
  font-size: 25px;
  margin: 0;
}

#cart-page .cart-table {
  width: 100%;
}

#cart-page .cart-table th {
  font-size: 120%;
  text-align: center;
  padding-bottom: 10px;
}

#cart-page .cart-table th:first-child {
  text-align: left;
}

#cart-page .cart-table td {
  padding: 15px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.065);
}

#cart-page .cart-table td.image {
  width: 100px;
}

#cart-page .cart-table td.image img {
  width: 100%;
}

#cart-page .cart-table .image-wrap {
  position: relative;
}

#cart-page .cart-table .image-wrap.img-gray {
  padding: 12%;
}

#cart-page .cart-table .image-wrap.img-gray:after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.025);
}

#cart-page .cart-table .info .title {
  font-weight: bold;
  font-size: 1.1em;
  color: var(--accent);
}

#cart-page .cart-table .info .extra-info {
  color: #888;
  margin-top: 5px;
}

#cart-page .cart-table .option-icons {
  font-size: 12px;
  color: #333;
  font-weight: bold;
}

#cart-page .cart-table td:last-child {
  padding-right: 0;
}

#cart-page .cart-table td:first-child {
  padding-left: 0;
}

#cart-page .cart-table .extra-info ul {
  margin: 0px;
  padding: 0;
  list-style: none;
  font-size: 12px;
}

#cart-page .cart-table .extra-info ul li.variant {
  font-size: 120%;
  margin-bottom: 5px;
}

#cart-page .cart-table .info a.title .items {
  font-size: 80%;
  color: #777;
}

#cart-page .cart-table .subtotal {
  text-align: right;
  font-weight: bold;
}

#cart-page .cart-table .input-wrap {
  margin-top: 10px;
}

#cart-page .cart-table .input-wrap input {
  width: 45px;
  border-radius: 0;
  margin: 0px -2px;
}

#cart-page .cart-table .input-wrap .change {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#cart-page .cart-table .input-wrap .change a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 45px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid #eee;
  border-radius: 3px;
  color: var(--accentHighlight);
}

#cart-page .total-block {
  padding: 30px;
  background: var(--accentLight);
  border-radius: 5px;
}

#cart-page .total-block .title {
  margin-bottom: 20px;
  font-weight: bold;
}

#cart-page .total-block .green {
  color: var(--accentGreen);
}

#cart-page .total-block table {
  width: 100%;
  font-weight: 700;
}

#cart-page .total-block table td {
  padding: 3px 0px;
}

#cart-page .total-block table td:last-child {
  text-align: right;
}

#cart-page .total-block table tr:last-child td {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 120%;
}

#cart-page .total-block table tr:nth-last-child(2) td {
  padding-bottom: 20px;
}

#cart-page .total-block table .delete-discount {
  font-size: 70%;
  margin-left: 5px;
}

#cart-page .total-block ul.payments {
  margin: -3px;
  margin-top: 37px;
  padding: 0;
  list-style: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#cart-page .total-block ul.payments li {
  margin: 3px;
  padding: 3px 5px;
  background: #fff;
  width: 60px;
  border-radius: 2px;
  display: inline-block;
  width: calc(16.6666% - 6px);
}

#cart-page .total-block ul.payments li a {
  border-radius: 2px;
}

#cart-page .total-block ul.payments li img {
  width: 100%;
  height: auto;
}

#cart-page .total-block .button {
  margin-top: 20px;
}

#cart-page .total-block .button .btn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0px;
  background: var(--accentGreen);
  margin-top: 5px;
}

#cart-page .total-block .button .btn i {
  margin-right: 7px;
}

#cart-page .total-block .button .btn:first-child {
  margin-top: 0;
}

#cart-page .total-block .button .btn.paypal {
  background: #012169;
}

#cart-page .total-block .button .btn.fastcheckout {
  background: #1ba5de;
}

#cart-page .total-block .discount-block form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#cart-page .total-block .discount-block input {
  height: 50px;
  padding: 0px 20px;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
}

#cart-page .total-block .discount-block .btn {
  width: 50px;
  height: 50px;
  padding: 0;
  line-height: 50px;
  background: var(--accentHighlight);
  margin-left: 10px;
}

#cart-page .total-block .discount-block {
  margin: 20px 0;
}

#cart-page .total-block .discount-block.shipping-active {
  margin-bottom: 25px;
}

#cart-page .total-block .shipping-costs-block {
  margin-bottom: 20px;
}

#cart-page .total-block .toggle-shipping-costs {
  font-weight: bold;
}

#cart-page .total-block .toggle-shipping-costs i {
  margin-left: 7px;
}

#cart-page .total-block .shipping-costs-wrap {
  display: none;
  padding: 10px 0px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 15px;
}

#cart-page .total-block .shipping-costs-wrap.used {
  display: block;
}

#cart-page .total-block .shipping-costs-wrap .ui.selection.dropdown {
  width: 100%;
  background-color: #fff;
  height: 40px;
  margin-bottom: 10px;
  padding: 0px 20px;
}

#cart-page .total-block .shipping-costs-wrap .ui.selection.dropdown .menu {
  max-height: 20.22857143rem;
}

#cart-page .total-block .shipping-costs-wrap .ui.search.selection.dropdown>input.search {
  padding: 0px 20px;
  height: 100%;
}

#cart-page .total-block .shipping-costs-wrap .ui.selection.dropdown>.dropdown.icon {
  height: 40px;
  line-height: 38px;
  width: 40px;
  color: #000;
}

#cart-page .total-block .shipping-costs-wrap .radio-block {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 5px 0px;
}

#cart-page .total-block .shipping-costs-wrap .radio-block .radio-wrap label {
  margin-left: 7px;
}

.custom-cart-page .gui-progressbar {
  display: none;
}

.gui-input,
.gui-text,
.gui-select,
.gui-number,
.gui-select select {
  border: none !important;
  background: rgba(0, 0, 0, 0.05) !important;
  border-radius: 0 !important;
}

.gui-input input,
.gui-select select {
  height: 40px !important;
}

.gui-checkout .gui-inactive {
  opacity: 1;
}

.gui-checkout .gui-form a.gui-button-small {
  float: none;
  height: 40px;
  line-height: 40px;
  padding: 0px 25px;
  font-weight: bold;
  background: #2ecc71;
  border: none;
  color: #fff;
  font-size: 12px;
  border-radius: 0;
  text-transform: uppercase;
}

.gui-checkout .gui-form a.gui-button-primary,
.gui-checkout .gui-form a.gui-button-action {
  padding: 0px 25px !important;
  background: #2ecc71 !important;
  color: #fff !important;
}

.gui-checkout input:-webkit-autofill {
  background: transparent !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
}

.upsell-products {
  padding-top: 70px;
}

#cart-page ul.cart-usp-wrap li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  padding: 5px 0px;
}

#cart-page ul.cart-usp-wrap li i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accentGreen);
}

#cart-page ul.cart-usp-wrap li strong {
  color: var(--accentHighlight);
}

#cart-page ul.cart-usp-wrap {
  margin-top: 10px;
}

@media (max-width: 1450px) {
  #cart-page .cart-total-col {
    min-width: 450px;
    max-width: 450px;
  }
}

@media (max-width: 1199px) {
  #cart-page .cart-row {
    margin: 0px -15px;
  }

  #cart-page .cart-body-col {
    padding: 0px 15px;
  }

  #cart-page .cart-total-col {
    min-width: 400px;
    max-width: 400px;
    padding: 0px 15px;
  }

  #cart-page .total-block {
    padding: 25px;
    font-size: 13px;
  }

  #cart-page .cart-table {
    font-size: 13px;
  }

  #cart-page .cart-table th {
    font-size: 100%;
  }

  #cart-page .cart-table td {
    padding: 15px 10px;
  }

  #cart-page .cart-table td.image {
    width: 75px;
  }
}

@media (max-width: 991px) {
  #cart-page .cart-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #cart-page .cart-body-col {
    width: 100%;
  }

  #cart-page .cart-total-col {
    min-width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }

  #cart-page .total-block .payments ul li {
    width: calc(10% - 6px);
  }
}

@media (max-width: 767px) {
  #cart-page .total-block .payments ul li {
    width: calc(16.6666% - 6px);
  }

  #cart-page .cart-table td {
    padding: 10px 5px;
  }

  #cart-page .cart-table td.image {
    width: 60px;
  }

  #cart-page .cart-title .title,
  .checkout-title .title,
  #service-page .service-title .title {
    font-size: 18px;
  }

  #cart-page .cart-table {
    font-size: 12px;
  }

  #cart-page .cart-table .extra-info ul {
    font-size: 11px;
  }

  /*   #cart-page .cart-total-col {
  	padding:0;
  } */
  #cart-page .total-block {
    font-size: 12px;
    padding: 20px 15px;
    margin: 0 -15px;
  }

  #cart-page .cart-title,
  .checkout-title,
  #service-page .service-title {
    margin-bottom: 20px;
  }

  #cart-page .total-block .discount-block {
    margin-bottom: 20px;
  }

  #cart-page .total-block .payments ul {
    margin-top: 17px;
  }

  #cart-page .total-block .payments img {
    height: 30px;
  }

  #cart-page .total-block table tr:last-child td {
    padding-top: 10px;
  }

  #cart-page .total-block table tr:nth-last-child(2) td {
    padding-bottom: 10px;
  }

  .upsell-products {
    padding-top: 30px;
  }

  #cart-page .total-block .discount-block input {
    height: 40px;
    padding: 0px 15px;
  }

  #cart-page .total-block .discount-block .btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

/* END CUSTOM CART */

/* Custom service */
#custom-service .title-featured {
  justify-content: center;
}

#custom-service .faq-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -25px;
}

#custom-service .faq-wrap .faq-block {
  padding: 25px;
  width: 50%;
}

#custom-service .faq-wrap .faq-block .subject-title {
  font-size: 1.5em;
  font-weight: bold;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#custom-service .faq-wrap .faq-block .subject-title i {
  margin-right: 15px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--rgb_accentHighlight), .1);
  color: var(--accentHighlight);
  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;
  font-size: 22px;
}

ul.faq-questions li:not(:last-child) {
  margin-bottom: 15px;
}

ul.faq-questions li:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  min-width: 11px;
  max-width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 15px;
  background: var(--accentGreen);
}

ul.faq-questions li a {
  text-decoration: underline;
  font-weight: bold;
  opacity: .7;
}

ul.faq-questions li a:hover {
  opacity: 1;
  color: var(--accentHighlight);
}

.search-faq {
  margin-bottom: 30px;
}

.search-faq .search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.search-faq .search-box input {
  height: 50px;
  margin-right: 10px;
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
  width: 100%;
}

.search-faq .search-box .btn i {
  margin-right: 5px;
  font-size: 1.2em;
}

#custom-service .service-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -25px;
}

#custom-service .service-blocks .service-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% / 3);
  padding: 25px;
}

#custom-service .service-blocks .service-block .block-inner {
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.05);
  padding: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#custom-service .service-blocks .service-block:last-child .block-inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: rgba(var(--rgb_accentHighlight), 0.1);
  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;
  text-align: center;
}

#custom-service .service-blocks .service-block .block-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.3em;
  margin-bottom: 30px;
}

#custom-service .service-blocks .service-block .block-title i {
  color: var(--accentHighlight);
  margin-right: 7px;
  font-size: 1.3em;
}

#custom-service .service-blocks .service-block .service-links li:not(:last-child) {
  margin-bottom: 10px;
}

#custom-service .service-blocks .service-block .service-links li a:hover {
  color: var(--accentHighlight);
}

#custom-service .service-blocks .service-block .contact-links li:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

#custom-service .service-blocks .service-block .contact-links li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
}

#custom-service .service-blocks .service-block .contact-links li a i {
  color: var(--accent);
  margin-right: 8px;
  font-size: 1.2em;
}

#custom-service .service-blocks .service-block .btn {
  margin-top: 30px;
}

#contact-popup {
  display: none;
  width: 100%;
  max-width: 350px;
  padding: 30px;
}

#contact-popup .popup-title {
  font-weight: bold;
  color: var(--accent);
  font-size: 1.3em;
  margin-bottom: 15px;
}

#contact-popup form,
#contact-popup form input {
  width: 100%;
}

#contact-popup form input,
#contact-popup form textarea {
  margin-bottom: 10px;
}

#contact-popup form textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 120px;
}

#contact-popup .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#contact-popup .btn-wrap .required-notification {
  font-size: 13px;
  opacity: .7;
}

#custom-service .textpage-content .general-content {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

@media (max-width: 1199px) {
  #custom-service .faq-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: -25px 0;
  }

  #custom-service .faq-wrap .faq-block {
    padding: 25px 0;
    width: 100%;
  }

  #custom-service .faq-wrap .faq-block .subject-title i {
    margin-right: 10px;
  }

  ul.faq-questions li:before {
    min-width: 8px;
    max-width: 8px;
    height: 8px;
    margin-right: 10px;
  }

  #custom-service .service-blocks {
    margin: -15px;
  }

  #custom-service .service-blocks .service-block {
    padding: 15px;
  }

  #custom-service .service-blocks .service-block .block-inner {
    padding: 20px;
  }

  #custom-service .service-blocks .service-block .block-title {
    margin-bottom: 20px;
    font-size: 1.1em;
  }

  #custom-service .textpage-content .general-content {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0px;
    -moz-column-gap: 0px;
    column-gap: 0px;
  }
}

@media (max-width: 991px) {
  #custom-service .service-blocks .service-block {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .search-faq .search-box .btn {
    width: 50px;
    height: 50px;
    padding: 0;
  }

  .search-faq .search-box .btn i {
    margin: 0;
  }
}

/* End custom service */

/* WEBWINKELKEUR */
.webwinkelkeur {
  border: 1px solid #ccc;
  width: 100%;
  font-size: 14px;
}

.webwinkelkeur a {
  color: #444;
  display: flex;
  flex-flow: wrap;
  align-items: center;
}

.webwinkelkeur .wwk-logo {
  width: 40%;
  padding: 15px;
  float: left;
}

.webwinkelkeur .wwk-logo img {
  width: 100%;
  max-width: 100px;
  margin: 0 auto;
  display: block;
}

.webwinkelkeur .wwk-avg {
  width: 60%;
  padding: 0px;
  float: left;
  text-align: center;
}

.webwinkelkeur .wwk-avg .wwk-title {
  display: block;
  font-weight: 600;
  margin-bottom: -3px;
}

.webwinkelkeur .wwk-avg .wwk-url {
  margin-top: 5px;
  display: block;
}

.webwinkelkeur .wwk-avg .wwk-url span {
  display: block;
  width: 100%;
  font-size: 12px;
  margin-top: -7px;
  text-decoration: underline;
}

.webwinkelkeur .wwk-stars {
  padding: 0;
  background-color: #0090e3;
  float: left;
  width: 100%;
  text-align: center;
  color: #fff;
  width: 100%;
}

.webwinkelkeur .wwk-avg .wwk-avgnum {
  font-size: 22px;
  font-weight: bolder;
}

.webwinkelkeur .wwk-avg .wwk-url span {
  color: #444;
  display: block;
  width: 100%;
  text-decoration: underline;
}

.webwinkelkeur .wwk-avg .wwk-url span:hover {
  text-decoration: none;
}

#productpage .webwinkelkeur {
  margin-top: 8px;
}

/* @media (min-width:980px){
   .wwk-logo-desktop { display:block;}
   .wwk-logo-tabletphone { display:none;}
}


@media (min-width:980px) and (max-width:1200px){
   
}

@media (max-width:980px){
   .wwk-logo-desktop { display:none;}
   .wwk-logo-tabletphone { display:block;}
   .webwinkelkeur { border: 0;padding-top: 40px;width: 81%; }
   .webwinkelkeur .wwk-avg .wwk-title,
   .webwinkelkeur .wwk-avg .wwk-url{display:none;}
   .webwinkelkeur .wwk-stars { background:transparent; color:#000; width:auto; margin-top:-10px; }
   .webwinkelkeur .wwk-logo{ width:30%;}
   .webwinkelkeur .wwk-avg{ text-align:left; width:70%;}
}

@media(max-width:800px){
   .webwinkelkeur .wwk-avg .wwk-avgnum{ font-size:14px;}
   .webwinkelkeur .wwk-logo img{ max-height:25px;width:auto;}
}


@media(max-width:580px){
   .webwinkelkeur { position:absolute; top:-5px; left:auto; right:5px;}
} */
/* Header topbar */
#header .topbar {
  position: relative;
}

#header .topbar a.close-topbar {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

#header .topbar .inner {
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
}

@media(max-width: 767px) {
  #header .topbar .inner {
    padding: 7px 0;
  }
}

/* Header topbar end */
/* Mega menu */
/* #header .main-menu .main-nav{
	position: relative;
}
#header .main-menu .megamenu{
	display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  width: 100%;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: 0 0 15px #0000001a;
          box-shadow: 0 0 15px #0000001a;
  -webkit-transition: .25s all ease-in-out;
  -o-transition: .25s all ease-in-out;
  transition: .25s all ease-in-out;
}
#header .main-menu .megamenu .inner{
	padding: 30px;
}
#header .main-menu .megamenu .cat-wrap{
	margin: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#header .main-menu .megamenu .cat-wrap .cat{
	width: calc(100%/4);
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#header .main-menu .megamenu .cat-wrap .cat-title{
	margin-bottom: 10px;
}
#header .main-menu .main-nav li:hover a{
	text-decoration: none;
}
#header .main-menu .megamenu .cat-wrap ul.subs li.sub-item{
	padding: 3px 0;
}
#header .main-menu .megamenu .cat-wrap ul.subs li.sub-item a{
	font-weight: normal;
  color: #000;
  -webkit-transition: .15s all ease-in-out;
  -o-transition: .15s all ease-in-out;
  transition: .15s all ease-in-out;
}
#header .main-menu .megamenu .cat-wrap a{
  -webkit-transition: .15s all ease-in-out;
  -o-transition: .15s all ease-in-out;
  transition: .15s all ease-in-out;
}
@media(min-width: 1200px){
	#header .main-menu li:hover .megamenu{
  	visibility: visible;
    opacity: 1;
  }
  #header .main-menu .megamenu .cat-wrap a:hover{
  	text-decoration: underline;
  }
} */
/* Mega menu end */

#productpage.productpage-2023 .productpage-row.productpage-row-top {
  gap: 0px 20px;
}

#productpage.productpage-2023 .productpage-row .productpage-col {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}

#productpage.productpage-2023 .productpage-row .productpage-col.col-right-right {
  background: none;
  padding: 0;
  border-radius: 0;
}

#productpage.productpage-2023 .productpage-row .productpage-col.col-right-right h3 {
  margin-bottom: 15px;
}

#productpage.productpage-2023 .productpage-row .productpage-col.col-right-top {
  min-width: calc((100% / 3 - (40px / 3)) - 20px);
  max-width: calc((100% / 3 - (40px / 3)) - 20px);
}

#productpage.productpage-2023 .productpage-row .productpage-col.col-left-top {
  min-width: calc((100% / 3 - (40px / 3)) + 40px);
  max-width: calc((100% / 3 - (40px / 3)) + 40px);
}

#productpage.productpage-2023 .productpage-row .productpage-col.col-center-top {}

#productpage.productpage-2023 .product-images .productpage-slider .image-wrap {
  padding: 1% 10%;
}

#productpage.productpage-2023 .product-images .thumbs .thumb {
  max-width: calc(100% / 5);
}

#productpage.productpage-2023 .product-info .price-stock {
  flex-direction: column;
  gap: 20px 0px;
  align-items: flex-start;
}

#productpage.productpage-2023 .product-info .order-form-outer {
  margin: 0;
  border: none;
}

#productpage.productpage-2023 .product-info .usp-actionbanner-wrap:not(.usp-bottom) {
  padding: 20px;
  background: #fff;
  border: none;
  border-radius: 10px;
  margin: 0;
}

#productpage.productpage-2023 .product-info .usp-actionbanner-wrap.usp-bottom {
  margin: 0;
  padding: 0;
  border: none;
}

#productpage.productpage-2023 .product-info .usp-actionbanner-wrap .action-banner {
  display: block;
  padding: 0;
  width: 100%;
}

#productpage.productpage-2023 .product-info .usp-actionbanner-wrap .usp-actie-inner {
  flex-direction: column;
}

#productpage.productpage-2023 .product-info .usp-actionbanner-wrap .usp-actie-inner .product-info-usp {
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
  gap: 10px;
}

#productpage.productpage-2023 .product-info .usp-actionbanner-wrap .usp-actie-inner .product-info-usp li {
  margin: 0;
}

#productpage.productpage-2023 .search-block {
  background: #fff;
  margin-top: 0px;
  margin-bottom: 20px;
}

#productpage.productpage-2023 .search-block .search-wrap {
  flex-direction: column;
  gap: 15px 0px;
  margin: 0;
}

#productpage.productpage-2023 .search-block .search-wrap .search-step {
  width: 100%;
  padding: 0;
}

#productpage.productpage-2023 .search-block .search-wrap .search-step .inner {
  padding: 0;
}

#productpage.productpage-2023 .search-block .search-wrap .search-step .filters-dropdown {
  margin-top: 5px;
}

#productpage.productpage-2023 .search-block .search-wrap .search-step .title {
  color: #333;
}

.related-top {
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  padding-top: 10px;
  flex-grow: 1;
}

.product-related-small {
  margin-top: 15px;
}

.product-related-small-inner {
  display: flex;
  padding: 10px;
  border: 2px solid #eee;
  border-radius: 4px;
  gap: 10px;
  align-items: center;
}

.product-related-small-inner .image-wrap {
  min-width: 50px;
  max-width: 50px;
}

.product-related-small-inner .info {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  flex-grow: 1;
}

.product-related-small-inner .info .title {
  font-weight: 700;
  font-size: 0.95em;
}

#productpage .product-related-small-inner .info .cart {
  padding: 0;
}

#productpage .product-related-small-inner .info .cart .input-wrap input {
  width: 45px;
  height: 45px;
}

#productpage .product-related-small-inner .info .cart .btn {
  padding: 0px 15px;
  height: 45px;
  font-size: 1.1em;
}

#productpage.productpage-2023 .productpage-top {
  background: #f7f7f7;
}

#productpage.productpage-2023 .search-block .search-wrap .search-step .content-wrap {
  display: block !important;
}

#productpage.productpage-2023 .product-info .usp-actionbanner-wrap .usp-actie-inner {
  margin: 0;
}

#productpage.productpage-2023 .productpage-row .productpage-col.col-right-right .product-info,
#productpage.productpage-2023 .productpage-row .productpage-col.col-right-right .product-info .order-form-outer,
#productpage.productpage-2023 .productpage-row .productpage-col.col-right-right .product-info .order-form-outer .order-form {
  height: 100%;
}

#productpage.productpage-2023 .productpage-row .productpage-col.col-right-right .product-info .order-form-outer .order-form {
  display: flex;
  flex-direction: column;
}

#productpage.productpage-2023 .productpage-row .productpage-col.col-right-right .product-info .order-form .usp-actionbanner-wrap {
  display: flex;
  flex: 1;
  align-items: center;
}

#productpage.productpage-2023 .productpage-row .productpage-col.col-right-right .product-info .order-form.no-related .usp-actionbanner-wrap {
  flex: 0;
}

#productpage.productpage-2023 .productpage-row .productpage-col.col-right-right .product-info .order-form {
  height: 100%;
}

#productpage.productpage-2023 .share-whatsapp {
  margin-bottom: 20px;
}

@media (max-width: 991px) {

  #productpage.productpage-2023 .productpage-row .productpage-col.col-right-top,
  #productpage.productpage-2023 .productpage-row .productpage-col.col-left-top {
    min-width: 100%;
    max-width: 100%;
  }

  #productpage.productpage-2023 .search-block {
    margin-top: 20px;
  }

  #productpage.productpage-2023 .productpage-row.productpage-row-top {
    gap: 20px 0px;
  }

  #productpage.productpage-2023 .product-info .usp-actionbanner-wrap:not(.usp-bottom) {
    flex-direction: row;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  #productpage.productpage-2023 .product-info .usp-actionbanner-wrap .usp-actie-inner .product-info-usp {
    flex-direction: column;
  }

}

@media (max-width: 767px) {
  #productpage.productpage-2023 .product-info .usp-actionbanner-wrap:not(.usp-bottom) {
    flex-direction: column;
    gap: 10px;
  }
}

/* Pagination - Start  */
.pagination {
  align-items: center;
  margin: 0;
  font-size: 16px;
  color: gray;
  display: flex;
  justify-content: space-between;
}

.pagination-right,
.pagination-left {
  padding: 0;
  display: flex;
  align-items: center;
  margin: 0;
}

.pagination li {
  display: flex;
  margin: 0 5px;
  list-style: none;
}

.pagination a {
  padding: 10px;
}

.pagination .number a:hover {
  text-decoration: underline;
}

.pagination .number.active {
  color: var(--accentHighlight);
}

.pagination .number.active a:hover {
  cursor: text;
  text-decoration: none;
}

.paginaton .disabled {
  display: none;
}

.pagination .next,
.pagination .prev {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  max-width: 45px;
  min-height: 45px;
  max-height: 45px;
  border-radius: 50%;
  font-size: 15px;
  border: 1px solid #eee;
  color: var(--accentHighlight);
  transition: all ease .2s;
}

.pagination .next:hover,
.pagination .prev:hover {
  border: 1px solid var(--accentHighlight);
}

.pagination .next a {
  position: relative;
  left: 1px;
}

.pagination .prev a {
  position: relative;
  right: 1px;
}

.pagination .prev.disabled,
.pagination .next.disabled {
  color: #eee;
  border: 1px solid #eee;
}

.pagination .prev.disabled a,
.pagination .next.disabled a {
  pointer-events: none;
}

.pagination .prev.disabled a:hover,
.pagination .next.disabled a:hover {
  cursor: default;
}

.pagination li.number:last-of-type {
  color: red;
}

.pagination .dots {
  padding-top: 10px;
}

@media (max-width: 991px) {
  .pagination {
    justify-content: center;
  }

  .pagination-left {
    display: none;
  }

  .pagination ul.pagination-right {
    padding: 0;
    padding-inline-start: 0;
  }

  .pagination a {
    padding: 10px 5px;
  }

  .pagination .next,
  .pagination .prev {
    font-size: 12px;
    min-width: 35px;
    max-width: 35px;
    min-height: 35px;
    max-height: 35px;
  }
}

/* Pagination - End  */


/* Sub categories slider - Start  */

#sub-slider .sub-carousel {
  display: block;
  height: 84px;
  /* margin: 35px 0; */
  padding: 10px;
  /* box-shadow: 0 0px 10px rgba(2, 0, 0, 0.10); */
  transition: all ease .2s;
  border: 2px solid #eee;
  /* background-color: #0090e30d; */
  background-color: white;
}

#sub-slider .owl-stage {
  padding-left: 0 !important;
}

#sub-slider.owl-carousel .owl-item .sub-carousel-image-holder {
  position: relative;
}

#sub-slider.owl-carousel .tooltip_title {
  font-size: 13px;
  font-weight: bold;
}

/* #sub-slider.owl-carousel .owl-item .sub-carousel-image-holder:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0090e30d;
} */

#sub-slider .sub-carousel.current {
  border: 2px solid var(--accent);
}

@media (min-width: 576px) {
  #sub-slider .sub-carousel:hover {
    border: 2px solid var(--accent);
  }
}

#sub-slider .sub-cat-inner {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 100%;
}

#sub-slider .sub-cat-inner img {
  max-width: 60px;
  max-height: 60px;
}

#sub-slider.owl-carousel .owl-item img {
  width: auto !important;
}

#sub-slider .sub-cat-inner h5 {
  display: block;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.title-full {
  margin: 15px;
}

/* .tooltip_title-text {
  visibility: hidden;
  width: 200px;
  max-width: 300px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;

  position: absolute;
  z-index: 1;
  bottom: 60%;
  left: 35%;
  margin-left: -60px;

  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip_title-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
} */

#sub-slider .sub-carousel:hover .tooltip_title-text {
  visibility: visible;
  opacity: 1;
}

.owl-custom-nav {
  position: relative;
}

.owl-custom-nav ul {
  position: absolute;
  left: -25px;
  right: -25px;
  display: flex;
  justify-content: space-between;
  top: 20px;
}

.owl-custom-nav ul li {
  z-index: 2;
}

@media (max-width: 600px) {
  .owl-custom-nav {
    display: none;
  }

  .owl-custom-nav ul {
    left: 4px;
    right: 4px;
  }
}

.owl-custom-nav ul li a {
  z-index: 999;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 45px;
  max-width: 45px;
  min-height: 45px;
  max-height: 45px;
  border-radius: 50%;
  font-size: 15px;
  border: 1px solid #eee;
  color: var(--accentHighlight);
  /* color: var(--accentLight); */

  background: white;
}

.owl-custom-nav ul li a.disabled-nav {
  color: var(--accentLight);
}

.owl-custom-nav ul li a i {
  font-size: 30px;
}

.main-title-sort .title-featured .title {
  font-size: 1.5em;
  line-height: 1.4em;
}

/* Sub Categories Slider - End  */

.paginate-filter-bar {
  align-items: center;
  display: flex;
  justify-content: space-between;

  margin-top: 16px;
}

.bar-top {
  border-bottom: 1px solid #eee;
  padding-bottom: 16px;
  margin: 16px 0;
  padding: 10px 0;
}

.bar-bottom {
  border-top: 1px solid #eee;
  padding-top: 16px;
}

#collection .paginate-filter-bar div.sort.top {
  padding: 0;
  border: none;
  margin-left: auto;
  /* margin: 15px; */
}

@media (max-width: 991px) {
  .paginate-filter-bar {
    flex-direction: column;
  }

  #collection .paginate-filter-bar div.sort.top {
    margin-left: 0;
  }

  #sub-slider .sub-carousel {
    height: 70px;
  }
}

.sort-wrap {
  display: flex;
  align-items: center;
}

#collection .paginate-filter-bar div.sort.top.active {
  top: 80px;
  left: auto;
  right: auto;
  padding: 10px 100%;
  background-color: var(--accentLight);
}

#collection .page-wrap div.col-main.active {
  padding-top: 60px;
}

.col-main-top {
  background-color: var(--accentLight);
  padding: 10px 25px;
  margin-left: -15px;
  margin-right: -15px;
}

@media (max-width: 991px) {
  .col-main-top {
    padding: 10px 0 10px 25px;
    padding: 10px 0;
  }

  .col-main-top .title {
    padding-left: 25px;
  }

  #sub-slider {
    padding-left: 25px;
  }

}