@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap);
/*!
 * Kobisi v1.0-beta
 * Copyright 2021 KOBISI Dev. Team.
 */
.lightboxed {
  cursor: pointer;
}

div#lightboxed--cache {
  position: fixed;
  left: -99999999px;
}

div#lightboxed--container {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--bodyBackgroundColor);
  background: var(--bodyBackgroundColor);
  z-index: 9999;
}

div#lightboxed--stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

div#lightboxed--content {
  position: absolute;
  top: 0;
  left: 0;
}

div#lightboxed--content .lightboxed--frame {
  position: absolute;
  top: 0;
  left: 0;
}

div#lightboxed--content .lightboxed--frame img,
div#lightboxed--content .lightboxed--frame iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto !important;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
}

div#lightboxed--content .lightboxed--frame .lightboxed--caption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  color: #fff !important;
}

div#lightboxed--thumbs {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

div#lightboxed--thumbs .lightboxed--thumb {
  float: left;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

div#lightboxed--thumbs .lightboxed--thumb .lightboxed--thumb_border {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  background: rgba(255, 255, 255, 0.4);
  transition: 500ms background;
}

div#lightboxed--thumbs .lightboxed--thumb.lightboxed--active .lightboxed--thumb_border {
  background: rgba(255, 255, 255, 0.7);
  transition: 500ms background;
}

div#lightboxed--thumbs .lightboxed--thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}

div#lightboxed--bttn_next {
  display: none;
  position: absolute;
  top: 50%;
  right: 10px;
  background: #fff;
  background: rgba(255, 255, 255, 0.6);
  background-image: url(/images/controls.png?5213419829fb078d3738dbb0014c8e06);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 50%;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  cursor: pointer;
  transform: translateY(-50%);
}

div#lightboxed--bttn_prev {
  display: none;
  position: absolute;
  top: 50%;
  left: 10px;
  background: #fff;
  background: rgba(255, 255, 255, 0.6);
  background-image: url(/images/controls.png?5213419829fb078d3738dbb0014c8e06);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 0%;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  cursor: pointer;
  transform: translateY(-50%);
}

div#lightboxed--bttn_close {
  background-color: var(--bodyBackgroundColor);
  border-radius: 50%;
  cursor: pointer;
  height: 40px;
  overflow: hidden;
  position: absolute;
  inset-inline-end: 20px;
  inset-block-start: 20px;
  width: 40px;
  border-radius: 50%;
  color: var(--generalTextColor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--boxBorderColor);
}
div#lightboxed--bttn_close::before {
  background: transparent;
  font-family: icomoon;
  content: "\e920";
  color: inherit;
  font-size: 14px;
}

#lightboxed--thumbs {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

#lightboxed--container .lightboxed--frame img {
  max-height: 100%;
  width: unset !important;
}

div#lightboxed--content .lightboxed--frame iframe {
  width: 85% !important;
  height: 85% !important;
}

.lightboxed--thumb_border img {
  width: auto;
  position: relative !important;
  width: 34px;
}

div#lightboxed--thumbs .lightboxed--thumb {
  width: auto !important;
  border-radius: calc(var(--generalBorderRadius) * 0.3);
  border: 1px solid transparent;
}

div#lightboxed--thumbs .lightboxed--thumb .lightboxed--thumb_border {
  background: transparent !important;
}

div#lightboxed--thumbs .lightboxed--thumb.lightboxed--active {
  border: 1px solid var(--generalPrimaryColor);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  line-height: 1;
  font-size: 100%;
}

a {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

strong {
  font-weight: 600;
  color: inherit;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.c-scroll ::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.c-scroll ::-webkit-scrollbar-track {
  background-color: transparent;
  box-shadow: none;
}
.c-scroll ::-webkit-scrollbar-thumb {
  background-color: #999;
  outline: none !important;
}

img {
  display: block;
  width: 100%;
}

html[dir=rtl] body {
  direction: rtl;
  unicode-bidi: bidi-override;
}

@media (min-width: 768px) and (max-width: 1320px) {
  .container {
    max-width: 100% !important;
  }
}
.hidden {
  display: none;
}

.clearfix:after, .clearfix:before {
  content: "";
  display: table;
  width: 100%;
}

.f-r {
  float: right;
}

.f-l {
  float: left;
}

.f-n {
  float: none;
}

.h-t {
  display: block;
  text-indent: -9999em;
  position: absolute;
}

.h-a-l {
  text-align: left;
}

.ha-c {
  text-align: center;
}

.ha-r {
  text-align: right;
}

.va-t {
  vertical-align: top;
}

.va-m {
  vertical-align: middle;
}

.va-b {
  vertical-align: bottom;
}

.d-b {
  display: block;
}

.d-ib {
  width: 100%;
  font-size: 0;
}
.d-ib > * {
  display: inline-block;
  zoom: 1;
  *display: inline;
  float: none;
}

.dt {
  display: table;
  width: 100%;
}

.dt-c {
  float: none;
  display: table-cell !important;
  vertical-align: middle;
}

.fw-w {
  flex-wrap: wrap;
}

.d-f {
  display: flex;
}

.d-if {
  display: inline-flex;
}

.ai-c {
  align-items: center;
}

.ai-fs {
  align-items: flex-start;
}

.ai-fe {
  align-items: flex-end;
}

.jc-c {
  justify-content: center;
}

.jc-sb {
  justify-content: space-between;
}

.jc-fs {
  justify-content: flex-start;
}

.jc-fe {
  justify-content: flex-end;
}

.p-r {
  position: relative;
}

.p-a {
  position: absolute;
}

.p-f {
  position: fixed;
}

.p-s {
  position: -webkit-sticky;
  position: sticky;
}

.p-n {
  position: auto;
}

.r-m {
  margin: 0 !important;
}

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

.r-mt {
  margin-top: 0 !important;
}

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

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

.r-p {
  padding: 0 !important;
}

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

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

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

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

body {
  font-family: "Poppins", sans-serif;
  font-size: 100%;
  color: var(--generalTextColor);
}

.shape {
  align-self: center;
  display: inline-flex;
}
.shape svg {
  width: 100%;
  height: 100%;
  fill: var(--generalTextColor);
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 90%;
  }
}
@media screen and (max-width: 414px) {
  body {
    font-size: 80%;
  }
}
@media screen and (max-width: 370px) {
  body {
    font-size: 70%;
  }
}
@media screen and (max-width: 320px) {
  body {
    font-size: 70%;
  }
}
@media screen and (max-width: 300px) {
  body {
    font-size: 55%;
  }
}
@font-face {
  font-family: "icomoon";
  src: url(/fonts/icomoon.eot?79877e549bd5ec9c93ed8325820c61fe);
  src: url(/fonts/icomoon.eot?79877e549bd5ec9c93ed8325820c61fe) format("embedded-opentype"), url(/fonts/icomoon.ttf?e2b4b777ca47b73b4e3c885ce4dd39dc) format("truetype"), url(/fonts/icomoon.woff?774da42a06d5385416fa8da3666ddfd9) format("woff"), url(/images/icomoon.svg?ed61227ec333af0f13952bf9d54ff916) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-cancel-circle:before {
  content: "\e91f";
}

.icon-cancel:before {
  content: "\e920";
}

.icon-trasher:before {
  content: "\e900";
}

.icon-right-arrow:before {
  content: "\e901";
}

.icon-down-arrow:before {
  content: "\e902";
}

.icon-left-arrow:before {
  content: "\e903";
}

.icon-up-arrow:before {
  content: "\e904";
}

.icon-plus:before {
  content: "\e905";
}

.icon-minus:before {
  content: "\e906";
}

.icon-check-mark:before {
  content: "\e907";
}

.icon-smartphone:before {
  content: "\e908";
}

.icon-tablet:before {
  content: "\e909";
}

.icon-monitor:before {
  content: "\e90a";
}

.icon-hide:before {
  content: "\e90b";
}

.icon-eye:before {
  content: "\e90c";
}

.icon-left-arrow-line:before {
  content: "\e90d";
}

.icon-right-arrow-line:before {
  content: "\e90e";
}

.icon-focus:before {
  content: "\e90f";
}

.icon-footer:before {
  content: "\e910";
}

.icon-price-tag:before {
  content: "\e911";
}

.icon-mail:before {
  content: "\e912";
}

.icon-horizontal:before {
  content: "\e913";
}

.icon-grid:before {
  content: "\e914";
}

.icon-box:before {
  content: "\e915";
}

.icon-portraits:before {
  content: "\e916";
}

.icon-log-out:before {
  content: "\e917";
}

.icon-outbox:before {
  content: "\e918";
}

.icon-tick:before {
  content: "\e919";
}

.icon-drag:before {
  content: "\e91a";
}

.icon-settings:before {
  content: "\e91b";
}

.icon-ico:before {
  content: "\e91c";
}

.icon-settings-cog:before {
  content: "\e91d";
}

.icon-font:before {
  content: "\e91e";
}

@font-face {
  font-family: "kobisi-checkout";
  src: url(/fonts/kobisi-checkout.eot?c3389944bcd26144dc5b1ce87f66f6ee);
  src: url(/fonts/kobisi-checkout.eot?c3389944bcd26144dc5b1ce87f66f6ee) format("embedded-opentype"), url(/fonts/kobisi-checkout.ttf?683d21680ff20391cd075b55f8dad66c) format("truetype"), url(/fonts/kobisi-checkout.woff?faf3f77a3013c84033d276b8bc3557f6) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=kbs-],
[class*=" kbs-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "kobisi-checkout" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.kbs-check-mark:before {
  content: "\e903";
}

.kbs-down-chevron:before {
  content: "\e900";
}

.kbs-left-arrow:before {
  content: "\e901";
}

.kbs-add-button:before {
  content: "\e902";
}

.kbs-double-arrow-vertical-symbol:before {
  content: "\e906";
}

.kbs-google {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.kbs-google .path1 {
  position: absolute;
}
.kbs-google .path1:before {
  float: left;
  content: "\e907";
  color: rgb(251, 187, 0);
}

.kbs-google .path2 {
  position: absolute;
}
.kbs-google .path2:before {
  float: left;
  content: "\e908";
  color: rgb(81, 142, 248);
}

.kbs-google .path3 {
  position: absolute;
}
.kbs-google .path3:before {
  float: left;
  content: "\e909";
  color: rgb(40, 180, 70);
}

.kbs-google .path4:before {
  float: left;
  content: "\e90a";
  color: rgb(241, 67, 54);
}

.kbs-facebook:before {
  content: "\e90b";
  color: #475993;
}

.kbs-man:before {
  content: "\e90c";
}

.kbs-woman:before {
  content: "\e90d";
}

.kbs-right-chevron:before {
  content: "\e90e";
}

.kbs-hide:before {
  content: "\e90f";
}

.kbs-left-chevron:before {
  content: "\e910";
}

.kbs-checked:before {
  content: "\e911";
}

.kbs-visibility:before {
  content: "\e912";
}

.kbs-up-chevron:before {
  content: "\e913";
}

.kbs-delete:before {
  content: "\e914";
}

.kbs-secure:before {
  content: "\e915";
}

.kbs-remove-button:before {
  content: "\e916";
}

.kbs-plus:before {
  content: "\e917";
}

.kbs-ellipsis:before {
  content: "\e918";
}

.kbs-minus:before {
  content: "\e91a";
}

@font-face {
  font-family: "arrowset";
  src: url(/fonts/arrowset.eot?6239be040f73ccc64e45948084153be2);
  src: url(/fonts/arrowset.eot?6239be040f73ccc64e45948084153be2) format("embedded-opentype"), url(/fonts/arrowset.ttf?b650f764faa7ee07bd4c0b749eacb857) format("truetype"), url(/fonts/arrowset.woff?c3707bdfac35ec051102d495272699ee) format("woff"), url(/images/arrowset.svg?8a025ebbfaac4d5e27cc7ef32fbb6666) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=arrowset-]:before,
[class*=" arrowset-"]:before {
  font-family: "arrowset" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.arrowset-up-chevron:before {
  content: "\f101";
}

.arrowset-left-chevron:before {
  content: "\f102";
}

.arrowset-down-chevron:before {
  content: "\f103";
}

.arrowset-right-chevron:before {
  content: "\f104";
}

.arrowset-right-arrow:before {
  content: "\f105";
}

.arrowset-left-arrow:before {
  content: "\f106";
}

.arrowset-up-arrow:before {
  content: "\f107";
}

.arrowset-down-arrow:before {
  content: "\f108";
}

.arrowset-right-arrow-1:before {
  content: "\f109";
}

.arrowset-left-arrow-1:before {
  content: "\f10a";
}

.arrowset-down-arrow-1:before {
  content: "\f10b";
}

.arrowset-up-arrow-1:before {
  content: "\f10c";
}

.arrowset-right-chevron-1:before {
  content: "\f10d";
}

.arrowset-left-chevron-1:before {
  content: "\f10e";
}

.arrowset-down-chevron-1:before {
  content: "\f10f";
}

.arrowset-up-chevron-1:before {
  content: "\f110";
}

.arrowset-left-chevron-2:before {
  content: "\f111";
}

.arrowset-down-chevron-2:before {
  content: "\f112";
}

.arrowset-right-chevron-2:before {
  content: "\f113";
}

.arrowset-up-chevron-2:before {
  content: "\f114";
}

.arrowset-right-arrow-2:before {
  content: "\f115";
}

.arrowset-left-arrow-2:before {
  content: "\f116";
}

.arrowset-up-arrow-2:before {
  content: "\f117";
}

.arrowset-down-arrow-2:before {
  content: "\f118";
}

.arrowset-left-arrow-3:before {
  content: "\f119";
}

.arrowset-right-arrow-3:before {
  content: "\f11a";
}

.arrowset-up-arrow-3:before {
  content: "\f11b";
}

.arrowset-down-arrow-3:before {
  content: "\f11c";
}

.arrowset-play-music-button:before {
  content: "\f11d";
}

.arrowset-left-arrow-4:before {
  content: "\f11e";
}

.arrowset-pyramidal-up-arrow:before {
  content: "\f11f";
}

.arrowset-triangular-arrow-pointing-down:before {
  content: "\f120";
}

.arrowset-arrow-pointing-up:before {
  content: "\f121";
}

.arrowset-arrow-pointing-left:before {
  content: "\f122";
}

.arrowset-geometric-pyramid:before {
  content: "\f123";
}

.arrowset-right-chevron-3:before {
  content: "\f124";
}

.arrowset-triangular-arrow-facing-left:before {
  content: "\f125";
}

.arrowset-arrow-point-down:before {
  content: "\f126";
}

.arrowset-triangular-down-arrow:before {
  content: "\f127";
}

.arrowset-thin-play-button:before {
  content: "\f128";
}

.arrowset-big-right-arrow:before {
  content: "\f129";
}

.arrowset-arrow-pointing-left-1:before {
  content: "\f12a";
}

.arrowset-thin-download-arrow:before {
  content: "\f12b";
}

.arrowset-thin-up-arrow:before {
  content: "\f12c";
}

.content-table {
  position: relative;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-x: auto;
}
.content-table .table-header {
  min-width: 450px;
  width: 100%;
  overflow: hidden;
  padding: 0 14px;
}
.content-table .table-content {
  max-height: 200px;
  min-width: 450px;
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
  padding: 0 14px;
}
.content-table table {
  width: 100%;
  table-layout: fixed;
}
.content-table table thead tr th {
  min-width: 99px;
  padding: 0;
  text-align: left;
  max-width: 500px;
  min-width: 100px;
}
.content-table table thead tr th div {
  background: transparent;
  padding: 20px 14px 14px;
  font-size: 80%;
  font-weight: 700;
  color: #555;
  min-width: 99px;
  top: 10px;
  overflow-wrap: break-word;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.content-table table tbody tr {
  transition: all 0.2s;
  position: relative;
  z-index: 1;
  background: none;
}
.content-table table tbody tr:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.content-table table tbody tr:hover > td {
  color: #fff;
  background-color: rgb(101, 128, 179) !important;
}
.content-table table tbody tr td {
  transition: all 0.2s;
  font-size: 80%;
  padding: 10px 14px;
  vertical-align: middle;
  overflow-wrap: break-word;
  max-width: 500px;
  min-width: 100px;
}
.content-table table tbody tr td:first-child {
  border-radius: 6px 0 0 6px;
}
.content-table table tbody tr td:last-child {
  border-radius: 0 6px 6px 0;
}
.content-table table tbody tr td.table-actions i {
  font-size: 100%;
}
.content-table table tbody tr td.nowrap {
  white-space: nowrap;
}
.content-table table tbody tr:nth-child(odd) td {
  background-color: rgba(255, 255, 255, 0.6);
}

.data-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  visibility: hidden;
  z-index: -1000;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.data-modal .modal-wrapper {
  width: 100%;
  height: 100%;
  background-color: transparent;
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  transition: all 0.4s;
}
.data-modal .modal-container {
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.data-modal .modal-container .modal-content {
  max-height: 90%;
  background-color: var(--bodyBackgroundColor);
  padding: 0 1.1em;
  border-radius: 1em;
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.3);
  transform: translateY(10%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  overflow-y: auto;
  max-width: 500px;
}
.data-modal .modal-container .modal-content .modal-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
  margin-bottom: 1em;
  padding: 1.4em 0.5em 1em;
  background-color: var(--bodyBackgroundColor);
}
.data-modal .modal-container .modal-content .modal-header .modal-title {
  font-weight: 600;
  font-size: 1.3em;
}
.data-modal .modal-container .modal-content .modal-footer {
  position: -webkit-sticky;
  position: sticky;
  z-index: 2;
  bottom: 0;
  padding: 1em 0.5em 1.4em;
  display: flex;
  width: 100%;
  border-top: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
  background-color: var(--bodyBackgroundColor);
}
.data-modal.active {
  visibility: visible !important;
  z-index: 99999;
  padding: 0;
}
.data-modal.active .modal-wrapper {
  background-color: rgba(var(--rgbGeneralTextColor), 0.3);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  transition: all 0.4s;
}
.data-modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}

@media screen and (max-width: 567px) {
  .modal-content {
    max-height: 100% !important;
    height: 100%;
    border-radius: 0 !important;
  }
}
.b-row {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

button,
.bttn {
  background-color: var(--buttonBackgroundColor);
  color: var(--buttonTextColor);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  min-height: 3.2em;
  padding: 0 1em;
  font-weight: 600;
  font-size: 1em;
  opacity: 1;
  transition: all 0.2s;
  box-shadow: 0 0 0 0 transparent;
  cursor: pointer;
  top: 0;
  border-radius: var(--buttonBorderRadius);
  position: relative;
}
button:hover, button:active,
.bttn:hover,
.bttn:active {
  opacity: 0.7;
  color: var(--buttonTextColor);
}
button.circle,
.bttn.circle {
  padding: 0;
  min-width: 3em !important;
  min-height: 3em !important;
  max-width: 3em !important;
  max-height: 3em !important;
  border-radius: 50%;
  background-color: rgba(var(--rgbGeneralTextColor), 0.09) !important;
}
button.circle svg,
.bttn.circle svg {
  fill: var(--generalTextColor);
  width: 20px;
  margin: 0;
}
button.ml,
.bttn.ml {
  margin-left: 1em;
}
button.mr,
.bttn.mr {
  margin-right: 1em;
}
button.mb,
.bttn.mb {
  margin-bottom: 1em;
}
button.mt,
.bttn.mt {
  margin-top: 1em;
}
button.link,
.bttn.link {
  justify-content: flex-start;
  padding: 0;
  min-width: unset;
  font-weight: normal;
  color: inherit;
  background-color: transparent !important;
  color: var(--buttonBackgroundColor) !important;
}
button.link:hover,
.bttn.link:hover {
  box-shadow: none;
}
button.link svg,
.bttn.link svg {
  fill: var(--buttonBackgroundColor) !important;
}
button.link.light,
.bttn.link.light {
  color: var(--generalTextColor) !important;
  opacity: 0.6;
}
button.link.light svg,
.bttn.link.light svg {
  fill: var(--generalTextColor) !important;
}
button.outline,
.bttn.outline {
  color: var(--buttonBackgroundColor) !important;
  border: 2px solid var(--buttonBackgroundColor);
  background-color: transparent !important;
}
button.outline svg,
.bttn.outline svg {
  fill: var(--buttonBackgroundColor) !important;
}
button.light,
.bttn.light {
  color: var(--generalTextColor) !important;
  background-color: var(--bodyBackgroundColor);
}
button.light svg,
.bttn.light svg {
  fill: var(--generalTextColor) !important;
}
button.small,
.bttn.small {
  min-height: 2.8em;
  padding: 0 1.1em !important;
}
button.big,
.bttn.big {
  min-height: 3.8em;
  font-size: 1.1em;
  padding: 0 1.4em;
  font-weight: 600;
}
button:disabled,
.bttn:disabled {
  background-color: var(--boxBackgroundColor);
  opacity: 0.5;
  color: var(--generalTextColor);
  padding: 0 1em;
}
button.full-w,
.bttn.full-w {
  width: 100%;
}
button svg,
.bttn svg {
  width: 14px;
  margin: 0 0.24em 0 0;
  fill: var(--buttonTextColor);
}

input[type=text],
input[type=email],
input[type=password],
input[type=date],
input[type=tel],
input[type=link],
input[type=number],
select,
textarea {
  width: 100%;
  outline: none;
  box-sizing: border-box;
  background-color: var(--inputBackgroundColor);
  border: 1px solid var(--inputBorderColor);
  border-radius: var(--inputGeneralBorderRadius);
  color: var(--GeneralTextColor);
  min-height: 3.2em;
  padding: 0 1.3em;
  font-family: inherit;
  font-size: 1em;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=link]::-moz-placeholder, input[type=number]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: var(generalTextColor) !important;
  opacity: 0.9;
  font-family: var(--fontFamilyBodyLabel);
  letter-spacing: 0 !important;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder,
input[type=tel]::placeholder,
input[type=link]::placeholder,
input[type=number]::placeholder,
select::placeholder,
textarea::placeholder {
  color: var(generalTextColor) !important;
  opacity: 0.9;
  font-family: var(--fontFamilyBodyLabel);
  letter-spacing: 0 !important;
}
input[type=text].filled,
input[type=email].filled,
input[type=password].filled,
input[type=date].filled,
input[type=tel].filled,
input[type=link].filled,
input[type=number].filled,
select.filled,
textarea.filled {
  background-color: #efefef;
  min-height: 50px;
}
input[type=text].transparent,
input[type=email].transparent,
input[type=password].transparent,
input[type=date].transparent,
input[type=tel].transparent,
input[type=link].transparent,
input[type=number].transparent,
select.transparent,
textarea.transparent {
  background-color: transparent;
}
input[type=text].bordered,
input[type=email].bordered,
input[type=password].bordered,
input[type=date].bordered,
input[type=tel].bordered,
input[type=link].bordered,
input[type=number].bordered,
select.bordered,
textarea.bordered {
  border: 1px solid var(--inputBorderColor);
}

input[type=password] {
  font-family: "Verdana", sans-serif !important;
  letter-spacing: 0.2em;
}

input[type=color] {
  border: 1px solid var(--inputBorderColor);
  outline: none;
  border-radius: 0.4em;
  padding: 0;
  box-shadow: none;
  overflow: hidden;
  -webkit-margin-end: 1em;
          margin-inline-end: 1em;
  display: inline-block;
}
input[type=color]::-webkit-color-swatch {
  border: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  appearance: none;
  padding: 0px 2em 0px 0.8em;
  outline: none;
  cursor: pointer;
  font-size: inherit;
}
select::-ms-expand {
  display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea {
  padding: 1em;
  height: 150px;
  resize: none;
}

label {
  position: relative;
  cursor: pointer;
  width: 100%;
  display: flex;
}
label > span {
  vertical-align: middle;
  font-size: 0.95em;
  line-height: 1.2;
}
label input[type=checkbox],
label input[type=radio] {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  height: 0;
  width: 0;
}
label input[type=checkbox]:checked ~ .checkbox:after, label input[type=checkbox]:checked ~ .radio:after,
label input[type=radio]:checked ~ .checkbox:after,
label input[type=radio]:checked ~ .radio:after {
  opacity: 1;
}
label input[type=checkbox]:checked ~ .checkbox, label input[type=checkbox]:checked ~ .radio,
label input[type=radio]:checked ~ .checkbox,
label input[type=radio]:checked ~ .radio {
  color: var(--buttonBackgroundColor);
  border-color: var(--buttonBackgroundColor);
}
label .checkbox {
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  min-height: 20px;
  width: 20px;
  min-width: 20px;
  border-radius: 3px;
  background-color: transparent;
  border: 2px solid var(--inputBorderColor);
  background-color: transparent;
  position: relative;
  -webkit-margin-end: 1em;
          margin-inline-end: 1em;
}
label .checkbox:after {
  content: "\e907";
  font-family: "icomoon";
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--buttonBackgroundColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
}
label .radio {
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  min-height: 20px;
  width: 20px;
  min-width: 20px;
  border-radius: 20px;
  background-color: transparent;
  border: 2px solid var(--inputBorderColor);
  background-color: transparent;
  position: relative;
  -webkit-margin-end: 1em;
          margin-inline-end: 1em;
}
label .radio:after {
  content: "";
  position: absolute;
  opacity: 0;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--buttonBackgroundColor);
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-row {
  margin: 0 0 1em 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.f-row.vert {
  flex-wrap: wrap;
}
.f-row.vert label {
  display: block;
  -webkit-padding-start: 0.3em;
          padding-inline-start: 0.3em;
  margin-bottom: 0.6em;
}
.f-row.vert label > span {
  font-size: 0.8em;
}
.f-row.boxed {
  padding: 0 1em;
  border-radius: 0.6em;
  min-height: 3em;
  background-color: var(--inputBackgroundColor);
  border: 1px solid var(--inputBorderColor);
  border-radius: var(--inputGeneralBorderRadius);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.f-row.boxed input {
  border: none !important;
  background-color: none !important;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding: 0;
  -webkit-padding-start: 86px;
          padding-inline-start: 86px;
  -webkit-padding-end: 6px;
          padding-inline-end: 6px;
}

.iti__flag-container {
  right: auto !important;
  left: auto !important;
  inset-inline-start: 0;
}

.iti__selected-flag {
  border-radius: var(--inputGeneralBorderRadius) 0 0 var(--inputGeneralBorderRadius);
  overflow: hidden;
}

html[dir=rtl] .iti__selected-flag {
  border-radius: 0 var(--inputGeneralBorderRadius) var(--inputGeneralBorderRadius) 0;
  overflow: hidden;
}

.iti__country-list {
  border-radius: calc(var(--inputGeneralBorderRadius) * 0.5);
  background-color: var(--inputBackgroundColor);
  z-index: 30;
  border: 1px solid var(--inputBorderColor);
  max-width: 360px;
  top: 110%;
}

.iti-mobile .iti--container {
  z-index: 99999;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
}
.iti-mobile .iti__country-list {
  top: auto;
  max-width: unset;
}

.iti__country {
  display: flex;
}

.iti__country-name,
.iti__dial-code {
  font-size: 80%;
  display: inline-block;
}

.iti__country-name {
  max-width: 260px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
}

.combo-box {
  quotes: inherit;
  width: 100%;
  outline: none;
  cursor: pointer;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.combo-box .select-info {
  padding: 0 1.4em;
  min-height: 3.2em;
  background-color: var(--inputBackgroundColor);
  border: 1px solid var(--inputBorderColor);
  border-radius: var(--inputGeneralBorderRadius);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.combo-box .select-info .selected {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  font-size: 1em;
}
.combo-box .shape {
  width: 16px;
  height: 16px;
}
.combo-box .shape svg {
  fill: var(--generalTextColor);
}
.combo-box ul {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: all 0.2s;
  width: 100%;
  top: 0%;
  left: 0;
  border-radius: 0.6em;
  background-color: var(--inputBackgroundColor);
  z-index: 30;
  border: 1px solid var(--inputBorderColor);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
  max-height: 250px;
  overflow-y: auto;
}
.combo-box ul li {
  line-height: 1.3em;
  border-bottom: 1px solid var(--inputBorderColor);
  opacity: 0.7;
}
.combo-box ul li label {
  padding: 1em !important;
  margin-bottom: 0 !important;
}
.combo-box ul li label input:checked + * {
  color: var(--generalPrimaryColor);
}
.combo-box ul li:hover {
  opacity: 1;
}
.combo-box ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.combo-box ul li:first-child {
  padding-top: 0;
}
.combo-box .combo-info:focus + ul {
  opacity: 1;
  visibility: visible;
  top: -30%;
}
.combo-box input {
  margin: 0;
  position: absolute;
}
@media screen and (max-width: 650px) {
  .combo-box ul {
    position: fixed;
    top: auto;
    bottom: -100%;
    left: 0;
    z-index: 999999;
  }
  .combo-box ul:before {
    position: relative;
    content: "";
    width: 30px;
    height: 3px;
    border-radius: var(--inputGeneralBorderRadius);
    background-color: var(--inputBackgroundColor);
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .combo-box ul li {
    min-height: 4em;
  }
  .combo-box .combo-info:focus + ul {
    top: auto;
    bottom: 0;
  }
  .combo-box .combo-info:focus ~ .combo-overlay {
    position: fixed;
    outline: none;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 999998;
    background-color: rgba(var(--rgbGeneralTextColor), 0.3);
  }
}

@font-face {
  font-family: "WashCareSymbolsM54";
  src: url(/fonts/Wash_Care_Symbols_M54.ttf?e8b6f88624a0ca064e6e18be07b40b90);
}
body {
  background-color: var(--bodyBackgroundColor);
  color: var(--generalTextColor);
  font-family: var(--fontFamilyBodyLabel);
}
body .shape {
  fill: var(--generalTextColor);
}
body.menu-opened {
  overflow: hidden;
  height: 100vh;
}
body .ask-price {
  font-size: 1em;
}
body section.divider-top .section-wrapper {
  padding-top: 0 !important;
}
body section.divider-bottom .section-wrapper {
  padding-bottom: 0 !important;
}
body .container {
  max-width: 1350px;
}
@media screen and (min-width: 671px) and (max-width: 991px) {
  body .page-container {
    left: 0;
    position: relative;
    transition: left 0.4s;
  }
  body.menu-opened {
    overflow: hidden;
  }
  body.menu-opened .page-container {
    left: 50%;
  }
}
body img.washingIcon {
  display: inline;
  max-width: 1.2em;
}

.section-title .view-all {
  display: none;
}
.related-price{
    font-size: .7em;
    margin-top: 5px;
}
.related-products{
    position: relative;
    display: inline-block;
}
.out-of-stock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-align: center;
    width: 95%;
    padding:4px 0;
    box-sizing: border-box;
    font-size: .7em;
    background-color: #000000;
}

@media screen and (max-width: 671px) {
  footer .contact-col {
    width: 100%;
  }
}
.swal2-container {
  z-index: 99999 !important;
}

.page-title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page-title.text-center {
  align-items: center;
}
.page-title.text-end {
  align-items: flex-end;
}
.page-title h1 {
  font-size: 2.4em;
  line-height: 1.5em;
}

.product-list-item .no-stock {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  text-align: center;
  padding: 0.7em;
  font-size: 0.8em;
  background-color: var(--buttonBackgroundColor);
  color: var(--buttonTextColor);
  z-index: 2;
}
.product-list-item .to-run-out {
  background-color: transparent !important;
  min-height: unset;
  display: inline-flex;
  color: var(--generalPrimaryColor) !important;
  font-size: 0.8em;
  align-items: center;
  margin-top: 0.3em;
}
.product-list-item .to-run-out .shape {
  -webkit-margin-end: 0.3em;
          margin-inline-end: 0.3em;
  width: 12px;
  height: 12px;
}
.product-list-item .to-run-out .shape svg {
  fill: var(--generalPrimaryColor) !important;
}

.swiper-slide .product-list-item {
  margin-bottom: 0 !important;
}

.modal-open .modal {
  z-index: 20001 !important;
}

.modal-backdrop {
  z-index: 20000 !important;
}

.slider-overlay a {
  display: block;
  width: 100%;
  height: 100%;
}

.user-menu-item .languge-list .language-item {
  outline: none !important;
  position: relative;
}
.user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.user-menu-item .languge-list .language-item.current .shape.down {
  width: 10px;
  height: 10px;
  transform: translateY(2px);
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.user-menu-item .languge-list .language-item.current a {
  text-transform: uppercase;
}
.user-menu-item .languge-list .language-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  width: 60px;
  padding: 0.4em 0;
  z-index: 30;
}
.user-menu-item .languge-list .language-item ul a {
  justify-content: end;
  padding: 0.7em 1em !important;
  text-transform: uppercase;
}
.user-menu-item .languge-list .language-item:hover > ul, .user-menu-item .languge-list .language-item:focus > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

:not(.slider) .kbs-prev,
:not(.slider) .kbs-next {
  padding: 0.5em;
}

.top-side-menu .user-menu > li a span {
  text-align: end;
}

#home section .banner-image.circle-image picture,
#home section .banner-image.circle-image svg {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}

#product .recomended-products {
  position: relative;
  z-index: 0;
}

footer .footer-bottom .inner-wrap .owner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 671px) {
  footer .footer-bottom .inner-wrap .owner {
    flex-direction: column;
  }
}
footer .footer-bottom .inner-wrap .owner .etbis-member {
  width: 60px;
  -webkit-margin-end: 1em;
          margin-inline-end: 1em;
}
footer .footer-bottom .inner-wrap .owner .etbis-member img {
  width: 100% !important;
  height: unset !important;
}
@media screen and (max-width: 671px) {
  footer .footer-bottom .inner-wrap .legal-text {
    flex-direction: column;
  }
  footer .footer-bottom .inner-wrap .legal-text .owner {
    margin-bottom: 0.7em;
  }
  footer .footer-bottom .inner-wrap .legal-text .owner .etbis-member {
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    -webkit-margin-after: 0.7em;
            margin-block-end: 0.7em;
  }
  footer .footer-bottom .inner-wrap .payment-provider {
    order: -1;
    margin-top: 0;
    margin-bottom: 0.7em;
  }
}

@media screen and (max-width: 992px) {
  #product footer .footer-bottom {
    padding-bottom: 6em;
  }
}
.product-list-container {
  width: 100%;
}

.about-us-page .page-content .container {
  overflow: hidden;
}
.about-us-page .page-content .container img {
  max-width: 100%;
}

.blog-detail-page .container {
  overflow: hidden;
}
.blog-detail-page .container img {
  max-width: 100%;
}

.cropper-container {
  max-height: 75vh;
}

.kobisi-cart {
  background-color: var(--bodyBackgroundColor);
  color: var(--generalTextColor);
  box-shadow: 0 15px 60px -15px rgba(0, 0, 0, 0.3);
}
.kobisi-cart .kobisi-cart-title {
  padding: 1em 0 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5em;
  font-weight: 600;
}
.kobisi-cart .kobisi-cart-title .cart-info {
  font-family: var(--fontFamilyHeading);
}
.kobisi-cart .kobisi-cart-title .cart-info span {
  font-family: var(--fontFamilyBody);
  margin-left: 0.7em;
  font-size: 0.8em;
  font-weight: normal;
  opacity: 0.6;
  display: inline-block;
}
.kobisi-cart .kobisi-cart-title .closer {
  cursor: pointer;
  font-size: 0.7em;
}
.kobisi-cart .kobisi-cart-title .closer i {
  color: var(--generalTextColor);
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li {
  display: flex;
  padding: 1em 0;
  border-bottom: 1px solid var(--boxBorderColor);
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-photo {
  width: 80px;
  margin-right: 1em;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-photo img {
  max-height: 100%;
  max-height: 75px;
  overflow: hidden;
  border-radius: calc(var(--generalBorderRadius) * 0.3);
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info {
  width: 100%;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-product-name {
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 0.7em;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-product-bundle {
  padding: 0 0 0 0.6em;
  margin: 1em 0 2em;
  -webkit-border-start: 1px solid var(--boxBorderColor);
          border-inline-start: 1px solid var(--boxBorderColor);
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-product-bundle .cart-product-bundle-item {
  font-size: 0.7em;
  margin-bottom: 0.7em;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-product-bundle .cart-product-bundle-item span {
  color: var(--generalPrimaryColor);
  -webkit-margin-start: 0.4em;
          margin-inline-start: 0.4em;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-product-variants {
  font-size: 0.8em;
  opacity: 0.7;
  margin-bottom: 0.3em;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-product-variants span {
  padding-right: 0.5em;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-product-variants span:after {
  content: ",";
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-product-variants span:last-child:after {
  display: none;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-counter .cart-product-quantity {
  font-size: 0.8em;
  opacity: 0.7;
  padding: 0 1em;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-counter .cart-counter-button {
  cursor: pointer;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-counter .cart-counter-button svg {
  fill: var(--buttonBackgroundColor);
  width: 14px;
  height: 14px;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-product-bottom {
  display: flex;
  justify-content: space-between;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-product-bottom .cart-product-price {
  font-size: 1em;
  font-weight: 500;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-product-bottom .cart-product-price span {
  display: inline-flex;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-product-bottom .cart-product-price span.old-price {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 90%;
  margin-bottom: 0.3em;
  display: flex;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-product-bottom .cart-product-remover {
  display: flex;
  align-items: center;
  font-size: 0.8em;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.2s;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-product-bottom .cart-product-remover svg {
  fill: var(--buttonBackgroundColor);
  width: 14px;
  height: 14px;
}
.kobisi-cart .kobisi-cart-content .kobisi-product-list li .cart-product-info .cart-product-bottom .cart-product-remover:hover {
  color: var(--buttonBackgroundColor);
  opacity: 1;
}
.kobisi-cart .kobisi-product-summary {
  padding: 1em 0;
}
.kobisi-cart .kobisi-product-summary li {
  padding: 0.5em 0;
  display: flex;
  justify-content: space-between;
}
.kobisi-cart .kobisi-product-summary li .summary-row-title {
  font-weight: 500;
}
.kobisi-cart .kobisi-product-summary li .summary-row-amount {
  opacity: 0.7;
}
.kobisi-cart .kobisi-cart-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.kobisi-cart .kobisi-cart-actions a {
  width: 100%;
  font-size: 1em !important;
  background-color: var(--buttonBackgroundColor) !important;
  color: var(--buttonTextColor) !important;
  margin-bottom: 1.5em;
  transition: all 0.3s;
}
.kobisi-cart.slide-cart {
  position: fixed;
  z-index: 99;
  padding: 0 3em 3em;
  max-width: 400px;
  width: 100%;
  height: 100%;
  right: -600px;
  top: 0;
  transition: all 0.4s ease-in-out;
}
.kobisi-cart.slide-cart.active {
  right: 0;
}
.kobisi-cart.slide-cart .kobisi-cart-wrapper {
  height: 100%;
}
.kobisi-cart.slide-cart .kobisi-cart-content {
  height: calc(100% - 303px);
}
.kobisi-cart.slide-cart .kobisi-cart-content ul {
  max-height: 100%;
  overflow-y: auto;
}
.kobisi-cart.slide-cart .kobisi-cart-title {
  padding: 2em 0 1em;
}
.kobisi-cart.popup-cart {
  position: absolute;
  z-index: -10;
  padding: 0 2em 1em;
  width: 450px;
  right: -12px;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  filter: drop-shadow(15px 0 30px -15 rgba(0, 0, 0, 0.3));
  border-radius: var(--generalBorderRadius);
}
.kobisi-cart.popup-cart:before {
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--bodyBackgroundColor);
  position: absolute;
  bottom: 100%;
  right: 2em;
  margin-right: -3px;
}
@media screen and (max-width: 991px) {
  .kobisi-cart.popup-cart {
    position: fixed;
    top: auto;
    right: 0;
    bottom: -100%;
    width: 100%;
    border-radius: var(--generalBorderRadius) var(--generalBorderRadius) 0 0;
  }
  .kobisi-cart.popup-cart:before {
    display: none;
  }
  .kobisi-cart.popup-cart.active {
    bottom: 0;
  }
}
.kobisi-cart.popup-cart.active {
  visibility: visible;
  opacity: 1;
  z-index: 99;
}
.kobisi-cart.popup-cart .kobisi-cart-wrapper {
  height: calc(100% - 227px);
}
.kobisi-cart.popup-cart .kobisi-cart-title {
  padding: 1em 0 1em;
}
.kobisi-cart.popup-cart .kobisi-cart-content .kobisi-product-list {
  max-height: 400px;
  overflow-y: auto;
}

html[dir=rtl] .kobisi-cart.slide-cart {
  right: unset !important;
  left: -600px;
}
html[dir=rtl] .kobisi-cart.slide-cart.active {
  left: 0;
}
html[dir=rtl] .kobisi-cart.popup-cart {
  right: unset !important;
  left: 0;
}
html[dir=rtl] .kobisi-cart.popup-cart:before {
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  bottom: 100%;
  right: auto;
  left: 2em;
  margin-right: unset;
  margin-left: -3px;
}
html[dir=rtl] .kobisi-cart.popup-cart .go-to-checkout {
  margin-left: 0 !important;
  margin-right: 1em !important;
}
html[dir=rtl] .kobisi-cart .cart-info {
  font-family: var(--fontFamilyHeading);
}
html[dir=rtl] .kobisi-cart .cart-info span {
  font-family: var(--fontFamilyBody);
  margin-left: 0 !important;
  margin-right: 0.7em !important;
}
html[dir=rtl] .kobisi-cart .cart-product-photo {
  margin-right: 0 !important;
  margin-left: 1em !important;
}

.cart-overlay,
.menu-overlay {
  background-color: rgba(var(--rgbGeneralTextColor), 0.3);
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  visibility: hidden;
  opacity: 0;
}

.menu-overlay.active {
  visibility: visible;
  opacity: 1;
  z-index: 0;
}

.cart-open .cart-overlay {
  visibility: visible;
  opacity: 1;
  z-index: 0;
}

#comingsoon-header {
  padding: 2em 0;
  position: relative;
  z-index: 10;
}
#comingsoon-header .logo img {
  max-height: 120px;
  max-width: 300px;
}
#comingsoon-header .logo h1 {
  font-size: 2.4em;
  margin-bottom: 0;
}
@media screen and (max-width: 671px) {
  #comingsoon-header .logo h1 {
    font-size: 1.4em;
  }
}
#comingsoon-header .contact {
  display: flex;
  align-items: center;
}
#comingsoon-header .contact a {
  text-decoration: none;
  border: 2px solid;
  border-radius: var(--buttonBorderRadius);
  padding: 0.4em 1em;
  text-align: center;
  font-size: 1em;
  margin: 0 0.5em;
  line-height: 0.9;
}
#comingsoon-header .contact a span {
  display: block;
  font-size: 0.8em;
  margin-top: 0.4em;
}
#comingsoon-header .contact a .shape {
  width: 20px;
  height: 20px;
}

.footerlogo {
  display: contents;
}
.footerlogo svg {
  max-width: 44px;
  -webkit-margin-end: 0.3em;
          margin-inline-end: 0.3em;
}

#comingsoon-page {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
#comingsoon-page + footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.7em 0;
  font-size: 0.8em;
}
#comingsoon-page.customization-active {
  z-index: -1;
}
@media screen and (max-width: 671px) {
  #comingsoon-page {
    font-size: 90%;
  }
}
#comingsoon-page .comingsoon-content {
  max-width: 750px;
  width: 100%;
  padding: 3em 0;
}
#comingsoon-page .comingsoon-content .info .title {
  font-size: 2.4em;
  margin-bottom: 0.6em;
}
#comingsoon-page .comingsoon-content .info .message {
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 1.4em;
}
#comingsoon-page .comingsoon-content .count-dowwn {
  margin-bottom: 2em;
}
#comingsoon-page .comingsoon-content .count-dowwn #date {
  display: inline-flex;
}
#comingsoon-page .comingsoon-content .count-dowwn #date .numbers-date {
  padding: 10px;
  border-radius: var(--generalBorderRadius);
  border: 1px solid;
  margin: 0 14px;
  font-size: 2em;
  line-height: 1;
  text-align: center;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 670px) {
  #comingsoon-page .comingsoon-content .count-dowwn #date .numbers-date {
    width: 70px;
    height: 70px;
    margin: 0 7px;
  }
}
#comingsoon-page .comingsoon-content .count-dowwn #date .numbers-date:first-child {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
#comingsoon-page .comingsoon-content .count-dowwn #date .numbers-date:last-child {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}
#comingsoon-page .comingsoon-content .count-dowwn #date .numbers-date span {
  display: block;
  text-align: center !important;
  font-size: 0.4em;
  font-weight: normal;
}
#comingsoon-page .comingsoon-content .image {
  padding: 0 0 4em 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
#comingsoon-page .comingsoon-content .image svg {
  width: 100%;
}
#comingsoon-page .comingsoon-content .image .rocket-1 {
  isolation: isolate;
}
#comingsoon-page .comingsoon-content .image .rocket-2 {
  mix-blend-mode: multiply;
  opacity: 0.7;
}

.cookie-policy-message {
  padding: 1em 0;
  margin-top: 1em;
  background-color: rgba(var(--rgbBodyBackgroundColor), 90%);
  color: var(--generalTextColor);
  display: inline-flex;
  z-index: 999;
  -webkit-backdrop-filter: blur(0.5em);
          backdrop-filter: blur(0.5em);
  border-radius: var(--generalBorderRadius);
  box-shadow: 0 -20px 30px -15px rgba(0, 0, 0, 0.2);
}
.cookie-policy-message.type1 {
  width: 100%;
  bottom: 0;
}
.cookie-policy-message.type1 .cookie-policy-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-policy-message.type2 {
  left: 0;
  bottom: 0;
  max-width: 490px;
}
.cookie-policy-message.type2 .cookie-policy-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-policy-message .cookie-policy-content p {
  font-size: 0.9em;
  line-height: 1.2;
  -webkit-margin-after: 0.4em;
          margin-block-end: 0.4em;
}
.cookie-policy-message .cookie-policy-content p a {
  color: var(--generalPrimaryColor);
}
.cookie-policy-message .cookie-policy-content button,
.cookie-policy-message .cookie-policy-content p {
  -webkit-margin-start: 0.4em;
          margin-inline-start: 0.4em;
}

#product .cookie-policy-message {
  margin-top: -60px;
}

.filter-top {
  position: relative;
}
@media screen and (min-width: 992px) {
  .filter-top #side-bar {
    height: auto !important;
    width: 100%;
    top: 100%;
    position: relative;
    z-index: 301;
    margin-top: 0;
    display: none;
    padding: 1em 0;
    inset-inline-start: 0;
  }
  .filter-top #side-bar .side-filter {
    border: 1px solid var(--boxBorderColor);
  }
  .filter-top #side-bar .side-filter .filter-item-list {
    display: flex;
    width: 100%;
    margin: 1.3em 0 0;
    flex-wrap: wrap;
  }
  .filter-top #side-bar .side-filter .filter-item {
    width: 33.333%;
    padding: 0 1.2em;
  }
  .filter-top #side-bar.opened {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .filter-top #side-bar .side-filter .filter-item {
    width: 20%;
  }
}

.filter-overlay {
  background-color: rgba(var(--rgbGeneralTextColor), 0.3) !important;
  position: fixed !important;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}
.filter-overlay.active {
  visibility: visible;
  opacity: 1;
  z-index: 300;
}

#side-bar {
  position: relative;
  margin: 2em 0 0;
  padding: 0 3em 0 0;
}
#side-bar .filter-fire button {
  width: 100%;
}
@media screen and (min-width: 992px) {
  #side-bar .side-filter {
    padding: 1em;
    background-color: var(--boxBackgroundColor);
    border-radius: calc(var(--generalBorderRadius) * 0.5);
  }
}
@media screen and (min-width: 992px) {
  #side-bar {
    position: -webkit-sticky;
    position: sticky;
    top: 5em;
  }
}
@media screen and (max-width: 992px) {
  #side-bar {
    position: fixed;
    left: -100%;
    top: 0;
    z-index: 999;
    background-color: var(--mainMenuBackgroundColor);
    height: 100%;
    padding: 0 1em;
    margin-top: 0;
    transition: all 0.3s;
    overflow-y: auto;
  }
  #side-bar.opened {
    left: 0;
  }
}
@media screen and (max-width: 992px) {
  #side-bar {
    width: 320px;
  }
}
@media screen and (max-width: 671px) {
  #side-bar {
    width: 100% !important;
  }
}
#side-bar .zi-100 {
  z-index: 100;
}
#side-bar .mobile-filter-top {
  padding: 1em 0 1em;
  background-color: var(--mainMenuBackgroundColor);
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  margin-bottom: 1em;
  width: 100%;
  display: none;
  top: 0;
  position: -webkit-sticky;
  position: sticky;
  z-index: 10;
}
#side-bar .mobile-filter-top .filter-title {
  font-size: 1.2em;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  #side-bar .mobile-filter-top {
    align-items: center;
    justify-content: space-between;
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  #side-bar.filter-top-option .mobile-filter-top {
    display: none !important;
  }
}
#side-bar .filter-closer {
  position: relative;
  z-index: 99;
  font-size: 1.1em;
  display: inline-flex;
  align-items: center;
}
#side-bar .filter-closer .shape {
  display: inline-flex;
  width: 21px !important;
  height: 21px !important;
  -webkit-margin-end: 0.3em;
          margin-inline-end: 0.3em;
}
@media screen and (max-width: 991px) {
  #side-bar .side-action {
    margin-bottom: 0;
    height: 100%;
  }
}
#side-bar .side-action .side-main-title {
  font-size: 1.3em;
  padding-bottom: 0.5em;
  margin-bottom: 0.8em;
  border-bottom: 2px solid var(--generalTextColor);
  display: inline-flex;
}
#side-bar .side-action .side-item-name {
  font-size: 1em;
  cursor: pointer;
  padding-bottom: 0.6em;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  #side-bar .side-action .side-item-name {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    margin-bottom: 0;
    padding: 1em 0 0.6em;
  }
}
#side-bar .side-action .shape {
  width: 13px;
  height: 13px;
  display: inline-flex;
}
@media screen and (max-width: 991px) {
  #side-bar .side-action.side-filter .filter-item-list {
    height: calc(100% - 160px);
    margin-bottom: 1em;
    overflow: auto;
  }
}
#side-bar .side-action.side-filter .filter-item {
  margin-bottom: 1em;
}
#side-bar .side-action.side-filter .filter-item .side-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#side-bar .side-action.side-filter .filter-item ul {
  padding: 0.5em 0 0.5em 0;
  border-top: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
@media screen and (max-width: 991px) {
  #side-bar .side-action.side-filter .filter-item ul {
    display: none;
  }
}
#side-bar .side-action.side-filter .filter-item ul:first {
  display: block;
}
#side-bar .side-action.side-filter .filter-item ul li:last-child {
  border-bottom: none;
}
#side-bar .side-action.side-filter .filter-item ul li a {
  color: inherit;
}
#side-bar .side-action.side-filter .filter-item ul li label {
  align-items: center;
  justify-content: start !important;
}
#side-bar .side-action.side-filter .filter-item ul li label,
#side-bar .side-action.side-filter .filter-item ul li a {
  padding: 0.6em 0;
}
#side-bar .side-action.side-filter .filter-item ul li label span,
#side-bar .side-action.side-filter .filter-item ul li a span {
  font-size: 0.8em;
}
#side-bar .side-action.side-filter .price-range {
  margin-bottom: 2em;
  padding-bottom: 0;
  padding: 0.7em 1em;
  border-top: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
#side-bar .side-action.side-filter .amounts {
  margin-bottom: 0.2em;
}
#side-bar .side-action.side-filter .ui-slider-horizontal {
  height: 0.4em;
  border-radius: 10px;
}
#side-bar .side-action.side-filter .ui-widget.ui-widget-content {
  border: none;
  background-color: rgba(var(--rgbGeneralTextColor), 0.09);
}
#side-bar .side-action.side-filter .ui-widget-header {
  background-color: var(--generalPrimaryColor);
}
#side-bar .side-action.side-filter .ui-slider-handle {
  width: 20px;
  height: 20px;
  background-color: var(--bodyBackgroundColor);
  border: 1px solid var(--generalPrimaryColor);
  border-radius: 50%;
  top: -0.4em;
  -webkit-margin-start: -9px;
          margin-inline-start: -9px;
  cursor: pointer;
}
#side-bar .side-action.side-categories {
  margin-bottom: 1em;
}
#side-bar .side-action.side-categories .navigation-list {
  padding: 0.5em 0 0.5em 0;
  border-top: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
#side-bar .side-action.side-categories .navigation-list > li {
  padding: 0.5em 0;
  font-size: 0.8em;
}
#side-bar .side-action.side-categories .navigation-list > li:hover > a {
  color: var(--generalPrimaryColor);
}
#side-bar .side-action.side-categories .navigation-list > li:hover > a .shape svg {
  fill: var(--generalPrimaryColor);
}
#side-bar .side-action.side-categories .navigation-list > li a.selected {
  color: var(--generalPrimaryColor);
}
#side-bar .side-action.side-categories .navigation-list > li a.selected .shape svg {
  fill: var(--generalPrimaryColor);
}
#side-bar .side-action.side-categories .navigation-list > li > ul > li:last-child {
  border-bottom: none;
}
#side-bar .side-action.side-categories .navigation-list ul {
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
  display: none;
  padding-bottom: 0;
  margin-top: 0.7em;
}
#side-bar .side-action.side-categories .navigation-list ul a {
  font-size: 95%;
  padding: 0.6em 0;
  opacity: 0.7;
}
#side-bar .side-action.side-categories .navigation-list ul a:hover {
  color: var(--generalPrimaryColor);
}
#side-bar .side-action.side-categories .navigation-list ul a:hover .shape svg {
  fill: var(--generalPrimaryColor);
}
#side-bar .side-action.side-categories .navigation-list ul a .shape {
  width: 10px;
  height: 10px;
}
#side-bar .side-action.side-categories .navigation-list ul ul {
  background-color: transparent;
  padding-bottom: 1em;
}
#side-bar .side-action.side-categories .navigation-list ul ul a {
  font-size: 90%;
}
#side-bar .side-action.side-categories .navigation-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: inherit;
}

.list-order {
  margin: 1em 0 1em 0;
  width: 100%;
  z-index: 9;
}
@media screen and (max-width: 991px) {
  .list-order {
    position: -webkit-sticky !important;
    position: sticky !important;
    z-index: 20;
    background-color: var(--boxBackgroundColor);
    top: -2px;
    width: auto;
    margin: 0 -0.75rem 1em -0.75rem;
    padding: 0.7em 1em !important;
  }
  .list-order label {
    justify-content: center !important;
    font-size: 1.2em;
    justify-content: center !important;
  }
}
@media screen and (max-width: 661px) {
  .list-order {
    border: none !important;
  }
}
.list-order .list-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list-order .list-type > div:first-child {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
.list-order .list-type > div:last-child {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}
.list-order .list-type .combo-box {
  width: auto !important;
  max-width: unset;
  margin: 0 0.5em;
}
.list-order .list-type .combo-box .combo-info {
  width: inherit;
}
.list-order .list-type .combo-box .combo-info .select-info {
  min-height: unset;
  height: 2.7em;
  border: 1px solid var(--boxBorderColor);
  background-color: var(--boxBackgroundColor);
  font-size: 0.9em;
}
.list-order .list-type .combo-box .combo-info .select-info .shape {
  display: inline-flex;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.list-order .list-type .combo-box .combo-info .select-info .slelected {
  padding: 0;
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
}
.list-order .list-type .combo-box ul {
  min-width: 150px;
  left: auto;
  inset-inline-end: 0;
}
.list-order .list-type .combo-box ul li label {
  justify-content: end;
  white-space: nowrap;
  text-align: end;
}
@media screen and (max-width: 670px) {
  .list-order .list-type #breadcrumb {
    display: none !important;
  }
  .list-order .list-type .combo-box {
    width: 100% !important;
    min-width: calc(50% - 0.5em);
    margin: 0;
    -webkit-margin-start: 0.1em !important;
            margin-inline-start: 0.1em !important;
  }
  .list-order .list-type .combo-box .combo-info {
    width: inherit;
  }
  .list-order .list-type .combo-box .combo-info .select-info {
    min-height: unset;
    height: 2.7em;
    justify-content: center;
    opacity: 1;
  }
  .list-order .list-type .combo-box .combo-info .select-info .selected {
    -webkit-padding-end: 0.5em;
            padding-inline-end: 0.5em;
  }
  .list-order .list-type .filter-opener {
    -webkit-margin-end: 0.5em;
            margin-inline-end: 0.5em;
    width: 100%;
    min-width: calc(50% - 0.5em);
    border: 1px solid var(--boxBorderColor);
    background-color: var(--boxBackgroundColor);
    border-radius: var(--inputGeneralBorderRadius);
    height: 2.7em;
    padding: 0px 2em 0px 1em;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
}

.filter-overlay {
  position: absolute;
  background-color: transparent;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.filter-opener {
  display: none;
  font-size: 0.9em;
  height: 2.7em;
  padding: 0 0.8em 0 1em;
  border: 1px solid var(--boxBorderColor);
  background-color: var(--boxBackgroundColor);
  align-items: center;
  border-radius: var(--inputGeneralBorderRadius);
}
@media screen and (max-width: 671px) {
  .filter-opener {
    opacity: 1;
  }
}
.filter-opener.show {
  display: flex;
  align-items: center;
}
.filter-opener .shape {
  width: 16px;
  height: 16px;
  -webkit-margin-end: 0.7em;
          margin-inline-end: 0.7em;
}
@media screen and (max-width: 991px) {
  .filter-opener {
    display: inline-flex;
  }
}

.price-range {
  padding-bottom: 2em;
}
.price-range .amounts {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-range .amounts span {
  font-size: 0.8em;
  font-weight: 500;
  padding: 0.7em 0;
}
.go-to-top {
  bottom: 2em;
  height: 56px;
  width: 56px;
  inset-inline-end: 2em;
  position: absolute;
  border-radius: 50%;
  background-color: var(--buttonBackgroundColor);
  color: var(--buttonTextColor);
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 0;
  cursor: pointer;
}
.go-to-top.show {
  display: inline-flex;
}
.go-to-top.w-whats-app {
  bottom: 7em;
}
.go-to-top .shape {
  width: 20px;
  height: 20px;
}
.go-to-top .shape svg {
  fill: var(--buttonTextColor);
}

@media screen and (max-width: 991px) {
  #product .go-to-top {
    transform: translateY(-60px);
  }
}
.no-result-page {
  padding: 4em 0;
}
.no-result-page .no-result {
  margin-bottom: 2em;
}
.no-result-page .no-result svg,
.no-result-page .no-result img {
  max-height: 370px;
  width: 100%;
  margin: 0 auto;
}
.no-result-page .no-result .light {
  fill: rgba(var(--rgbGeneralTextColor), 15%);
}
.no-result-page .no-result .dark {
  fill: rgba(var(--rgbGeneralTextColor), 21%);
}
.no-result-page .no-result-text {
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.no-result-page .no-result-text .title {
  margin-bottom: 2em;
  line-height: 1.4;
}
.no-result-page .no-result-text .title span {
  display: block;
  font-size: 2em;
  line-height: 1.2;
}

.kbs-pagination nav ul.pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.kbs-pagination nav ul.pagination-list li.page-item a.page-link {
  font-family: var(--fontFamilyBodyLabel);
  border: none !important;
  color: var(--generalTextColor);
  background-color: transparent !important;
}
.kbs-pagination nav ul.pagination-list li.page-item a.page-link .shape {
  width: 18px;
  height: 18px;
  display: flex;
}
.kbs-pagination nav ul.pagination-list li.page-item.active a {
  color: var(--generalPrimaryColor) !important;
}

.popup-modal.active .modal-wrapper {
  background-color: rgba(var(--rgbPopupOverlayBakcgroundColor), var(--popupOverlayBakcgroundColorOpacity)) !important;
  -webkit-backdrop-filter: blur(var(--popupOverlayBakcgroundBlur)) !important;
          backdrop-filter: blur(var(--popupOverlayBakcgroundBlur)) !important;
}
.popup-modal .closer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.4em;
  display: flex;
  justify-content: flex-end;
  color: var(--generalTextColor);
  cursor: pointer;
}
.popup-modal .closer .shape {
  background-color: var(--bodyBackgroundColor);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-self: flex-start !important;
  padding: 8px;
  position: relative;
  z-index: 999999;
}
.popup-modal .closer .shape svg {
  fill: var(--generalTextColor);
}
.popup-modal .modal-content {
  max-width: 800px !important;
  width: auto !important;
  padding: 0 !important;
  background-color: rgba(var(--rgbPopupBakcgroundColor), var(--popupBakcgroundColorOpacity)) !important;
  border: none !important;
  position: relative;
}
@media screen and (max-width: 670px) {
  .popup-modal .modal-content {
    height: unset !important;
    border-radius: var(--generalBorderRadius) !important;
  }
}
.popup-modal .modal-content .popup-inner {
  display: flex;
}
@media screen and (max-width: 670px) {
  .popup-modal .modal-content .popup-inner {
    flex-direction: column;
  }
}
.popup-modal .modal-content .popup-inner .popup-image {
  width: 50%;
  display: flex;
  overflow: hidden;
  max-height: 450px;
  align-items: center;
  justify-content: center;
}
.popup-modal .modal-content .popup-inner .popup-image.f-width {
  width: 100% !important;
}
@media screen and (max-width: 670px) {
  .popup-modal .modal-content .popup-inner .popup-image {
    width: 100%;
    max-height: 360px;
  }
}
.popup-modal .modal-content .popup-inner .popup-image picture img {
  width: 100%;
  min-width: 100%;
  max-height: 100%;
}
.popup-modal .modal-content .popup-inner > * {
  display: inline-flex;
}
.popup-modal .modal-content .popup-inner .popup-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 1.4em;
}
@media screen and (max-width: 670px) {
  .popup-modal .modal-content .popup-inner .popup-info {
    width: 100%;
  }
}
.popup-modal .modal-content .popup-inner .popup-info.top-right {
  justify-content: start;
  align-items: end;
  text-align: right;
}
.popup-modal .modal-content .popup-inner .popup-info.center-right {
  justify-content: center;
  align-items: end;
  text-align: right;
}
.popup-modal .modal-content .popup-inner .popup-info.bottom-right {
  justify-content: end;
  align-items: end;
  text-align: right;
}
.popup-modal .modal-content .popup-inner .popup-info.top-center {
  justify-content: start;
  align-items: center;
  text-align: center;
}
.popup-modal .modal-content .popup-inner .popup-info.center-center {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.popup-modal .modal-content .popup-inner .popup-info.bottom-center {
  justify-content: end;
  align-items: center;
  text-align: center;
}
.popup-modal .modal-content .popup-inner .popup-info.top-left {
  justify-content: start;
  align-items: start;
}
.popup-modal .modal-content .popup-inner .popup-info.center-left {
  justify-content: center;
  align-items: start;
}
.popup-modal .modal-content .popup-inner .popup-info.bottom-left {
  justify-content: end;
  align-items: start;
}
.popup-modal .modal-content .popup-inner .popup-info .popup-title {
  color: var(--popupTitleColor);
  font-family: var(--fontFamilyHeadingLabel);
  line-height: 1;
}
.popup-modal .modal-content .popup-inner .popup-info .popup-text,
.popup-modal .modal-content .popup-inner .popup-info .popup-sub-title {
  color: var(--popupTextColor);
  line-height: 1;
}
.popup-modal .modal-content .popup-inner .popup-info .popup-text {
  margin-top: 1.2em;
}
.popup-modal .modal-content .popup-inner .popup-info .popup-text * {
  line-height: 1.5;
}
.popup-modal .modal-content .popup-inner .popup-info .banner-button {
  margin: 1em 0;
}
.popup-modal .modal-content .popup-inner .popup-info .popup-title + .popup-newsletter-form,
.popup-modal .modal-content .popup-inner .popup-info .popup-text + .popup-newsletter-form {
  margin-top: 2em;
}
.popup-modal .modal-content .popup-inner .popup-info .popup-newsletter-form .f-row input {
  border-start-end-radius: 0 !important;
  border-end-end-radius: 0 !important;
}
.popup-modal .modal-content .popup-inner .popup-info .popup-newsletter-form .f-row .ajax-newsletter-action-button-selector {
  border-start-end-radius: var(--inputGeneralBorderRadius) !important;
  border-end-end-radius: var(--inputGeneralBorderRadius) !important;
  border-end-start-radius: 0 !important;
  border-start-start-radius: 0 !important;
}
.popup-modal .modal-content .popup-inner .popup-info .popup-newsletter-form .attention {
  font-size: 0.8em;
  color: var(--popupTextColor);
  opacity: 0.6;
}
.popup-modal.type2 .popup-image,
.popup-modal.type2 .popup-info {
  width: 100% !important;
  height: 450px !important;
}
.popup-modal.type2 .popup-info {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.popup-modal.type2 .modal-content {
  background-color: transparent !important;
}
.popup-modal.type2 .popup-image {
  position: relative;
  z-index: -1;
  opacity: var(--popupBakcgroundColorOpacity);
}
.popup-modal.type2 .popup-image picture {
  max-width: unset !important;
  max-height: 450px !important;
  max-height: 100%;
}
.popup-modal.type2 .popup-image picture img {
  width: unset !important;
  max-width: unset !important;
  max-height: 450px !important;
  max-height: 100%;
}
@media screen and (max-width: 670px) {
  .popup-modal.type2 .popup-image {
    width: 100%;
    max-height: 450px !important;
  }
}
.popup-modal.type3 .modal-content {
  max-width: 400px !important;
}
.popup-modal.type3 .popup-inner {
  flex-direction: column;
}
.popup-modal.type3 .popup-inner .popup-image,
.popup-modal.type3 .popup-inner .popup-info {
  width: 100% !important;
}
.popup-modal.type3 .popup-inner .popup-image {
  max-height: 360px;
}
.popup-modal.type4 .modal-wrapper {
  -webkit-backdrop-filter: blur(var(--popupOverlayBakcgroundBlur)) !important;
          backdrop-filter: blur(var(--popupOverlayBakcgroundBlur)) !important;
}
.popup-modal.type4 .modal-wrapper .popup-image {
  opacity: var(--popupBakcgroundColorOpacity);
}
.popup-modal.type4 .modal-content {
  background-color: transparent !important;
  box-shadow: none !important;
  width: 100% !important;
  height: 100%;
  min-height: 100%;
  max-width: unset !important;
  border-radius: unset !important;
}
@media screen and (max-width: 670px) {
  .popup-modal.type4 .modal-content {
    width: 100%;
    max-height: unset !important;
    height: 90% !important;
  }
}
.popup-modal.type4 .popup-image,
.popup-modal.type4 .popup-info {
  width: 100% !important;
  height: 100vh !important;
  max-height: 100% !important;
}
.popup-modal.type4 .popup-image {
  position: absolute;
  z-index: -1;
}
.popup-modal.type4 .popup-image picture {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.popup-modal.type4 .popup-image picture img {
  width: unset !important;
  min-width: 100vh !important;
  max-height: unset !important;
}
@media screen and (min-width: 769px) {
  .popup-modal.type4 .popup-image picture img {
    width: unset !important;
    height: 100vh !important;
    min-width: unset !important;
  }
}
@media screen and (max-width: 670px) {
  .popup-modal.type4 .popup-image picture img {
    width: unset !important;
    height: 100% !important;
    min-height: 100% !important;
    min-width: unset !important;
  }
}
@media screen and (max-width: 670px) {
  .popup-modal.type4 .popup-image {
    width: 100%;
    max-height: 100% !important;
  }
}

.image-modal .modal-header .close {
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid var(--boxBorderColor);
  color: var(--generalTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-modal .modal-header .close span {
  font-size: 2em;
}
@media screen and (max-width: 671px) {
  .image-modal .modal-dialog {
    margin: 0;
    height: 100%;
  }
}

html[dir=rtl] .slider .kbs-next .shape,
html[dir=rtl] .slider .kbs-prev .shape {
  transform: rotate(180deg);
}

section.slider {
  position: static;
}

.swiper:not(.big-slider) {
  display: none;
}
.swiper:not(.big-slider).swiper-initialized {
  display: block;
}

.swiper-pagination {
  left: 50% !important;
  transform: translateX(-50%);
  padding: 1em 0;
  bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-pagination span {
  background: none;
  cursor: pointer;
  padding: unset;
  text-indent: -9999em;
  min-height: unset;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  margin: 0;
  outline: none;
}
.swiper-pagination span:before {
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background-color: var(--bodyBackgroundColor);
  transition: all 0.2s;
}
.swiper-pagination span:hover:before {
  width: 40%;
  height: 40%;
}
.swiper-pagination span svg {
  left: 50%;
  outline: none;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.swiper-pagination span .path {
  stroke-dasharray: 50.2654824574;
  fill: transparent;
  stroke: var(--bodyBackgroundColor);
  stroke-width: 10%;
}
@-webkit-keyframes draw {
  from {
    stroke-dashoffset: 50.2654824574;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes draw {
  from {
    stroke-dashoffset: 50.2654824574;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.swiper-pagination span.swiper-pagination-bullet-active:before {
  content: "";
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background-color: var(--bodyBackgroundColor);
  transition: all 0.3s;
}
.swiper-pagination span.swiper-pagination-bullet-active svg {
  opacity: 1;
}
.swiper-pagination span.swiper-pagination-bullet-active .path {
  -webkit-animation-name: draw;
          animation-name: draw;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  stroke: var(--bodyBackgroundColor);
}

.swiper-slide {
  margin-bottom: 0 !important;
}

section:not(.slider) .swiper-button-prev,
section:not(.slider) .swiper-button-next {
  background-color: var(--bodyBackgroundColor);
  width: 40px;
  height: 40px;
  border-radius: var(--buttonBorderRadius);
}
section:not(.slider) .swiper-button-prev:after,
section:not(.slider) .swiper-button-next:after {
  display: none;
}
section:not(.slider) .swiper-button-prev svg,
section:not(.slider) .swiper-button-next svg {
  width: 25px;
  height: 25px;
}
section:not(.slider) .swiper-button-prev.swiper-button-disabled,
section:not(.slider) .swiper-button-next.swiper-button-disabled {
  opacity: 0.3 !important;
}
section:not(.slider) .swiper-button-next {
  right: 0;
}
section:not(.slider) .swiper-button-prev {
  left: 0;
}

.quickwiew-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: rgba(var(--rgbGeneralTextColor), 0.5);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
@-webkit-keyframes kbs-loader-1 {
  0% {
    height: 30px;
  }
  50% {
    height: 20px;
  }
  100% {
    height: 20px;
  }
}
@keyframes kbs-loader-1 {
  0% {
    height: 30px;
  }
  50% {
    height: 20px;
  }
  100% {
    height: 20px;
  }
}
@-webkit-keyframes kbs-loader-2 {
  0% {
    height: 35px;
  }
  50% {
    height: 20px;
  }
  100% {
    height: 20px;
  }
}
@keyframes kbs-loader-2 {
  0% {
    height: 35px;
  }
  50% {
    height: 20px;
  }
  100% {
    height: 20px;
  }
}
@-webkit-keyframes kbs-loader-3 {
  0% {
    height: 25px;
  }
  50% {
    height: 20px;
  }
  100% {
    height: 20px;
  }
}
@keyframes kbs-loader-3 {
  0% {
    height: 25px;
  }
  50% {
    height: 20px;
  }
  100% {
    height: 20px;
  }
}
.quickwiew-loader .product-loader div {
  position: absolute;
  width: 6px;
  background-color: var(--bodyBackgroundColor);
}
.quickwiew-loader .product-loader div:nth-child(1) {
  left: 0px;
  -webkit-animation: kbs-loader-1 0.5s cubic-bezier(0, 0.5, 0.5, 1) infinite;
          animation: kbs-loader-1 0.5s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.quickwiew-loader .product-loader div:nth-child(2) {
  left: 12px;
  -webkit-animation: kbs-loader-2 0.5s cubic-bezier(0, 0.5, 0.5, 1) infinite;
          animation: kbs-loader-2 0.5s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}
.quickwiew-loader .product-loader div:nth-child(3) {
  left: 24px;
  -webkit-animation: kbs-loader-3 0.5s cubic-bezier(0, 0.5, 0.5, 1) infinite;
          animation: kbs-loader-3 0.5s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  -webkit-animation-delay: undefineds;
          animation-delay: undefineds;
}
.quickwiew-loader .product-spinner {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.quickwiew-loader .product-loader {
  width: 40px;
  height: 20px;
  display: flex;
  align-items: center;
  position: relative;
  transform: translateZ(0) scale(1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-origin: 0 0;
  /* see note above */
}
.quickwiew-loader .product-loader div {
  box-sizing: content-box;
}

.quick-view-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-view-modal .closer {
  position: absolute;
  top: -30px;
  inset-inline-end: -30px;
}
.quick-view-modal .closer .shape {
  width: 30px;
  height: 30px;
}
.quick-view-modal .closer .shape svg {
  fill: var(--bodyBackgroundColor);
}
.quick-view-modal .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: rgba(var(--rgbGeneralTextColor), 0.5);
  z-index: -1;
}
.quick-view-modal .quick-view-detail {
  padding: 0 !important;
  max-width: 900px;
  width: 95%;
  position: relative;
}
.quick-view-modal .quick-view-detail .product-zoomer-video {
  z-index: 20;
}
@media screen and (max-width: 671px) {
  .quick-view-modal .quick-view-detail {
    height: 80%;
    max-height: unset;
    max-width: 80%;
  }
}
.quick-view-modal .quick-view-detail .inner-wraper {
  background-color: var(--bodyBackgroundColor);
  border-radius: var(--generalBorderRadius);
  height: 0;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  overflow: hidden;
  overflow-y: auto;
  transition: height 0.3s;
}
@media screen and (max-width: 671px) {
  .quick-view-modal .quick-view-detail .inner-wraper {
    height: 100% !important;
  }
}
.quick-view-modal .quick-view-detail .quick-view-wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
  width: 100%;
}
.quick-view-modal .quick-view-detail .product-zoomer {
  position: -webkit-sticky;
  position: sticky;
  top: 0 !important;
  width: 50%;
}
.quick-view-modal .quick-view-detail .product-zoomer .product-big-zoomer {
  width: 100%;
}
.quick-view-modal .quick-view-detail .product-zoomer .product-thumbnails-photos {
  display: none !important;
}
.quick-view-modal .quick-view-detail .product-detail {
  padding: 2em !important;
  width: 50%;
}
.quick-view-modal .quick-view-detail .product-detail .size-table {
  display: inline-flex;
  align-items: center;
  -webkit-margin-start: 0.5em;
          margin-inline-start: 0.5em;
  color: var(--buttonBackgroundColor);
  padding: 0.2em 0.6em;
  border: 1px solid var(--boxBorderColor);
  border-radius: var(--inputGeneralBorderRadius);
  cursor: pointer;
}
.quick-view-modal .quick-view-detail .product-detail .size-table span {
  font-size: 0.8em;
}
.quick-view-modal .quick-view-detail .product-detail .size-table .shape {
  width: 19px;
  height: 19px;
  -webkit-margin-end: 0.3em;
          margin-inline-end: 0.3em;
}
.quick-view-modal .quick-view-detail .product-detail .size-table .shape svg {
  fill: var(--buttonBackgroundColor);
}
.quick-view-modal .quick-view-detail .product-detail .size-table:hover {
  border-color: var(--generalPrimaryColor);
  color: var(--generalPrimaryColor);
}
.quick-view-modal .quick-view-detail .product-detail .size-table:hover svg {
  fill: var(--generalPrimaryColor);
}
.quick-view-modal .quick-view-detail .product-detail .product-action {
  min-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.6em 0 1em;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  background-color: var(--bodyBackgroundColor);
}
@media screen and (max-width: 767px) {
  .quick-view-modal .quick-view-detail .product-detail .product-action {
    z-index: 999;
    padding: 1em;
    background: var(--bodyBackgroundColor);
  }
}
.quick-view-modal .quick-view-detail .product-detail .variation-content .variation-item .boxed-select {
  display: flex;
  position: relative;
}
.quick-view-modal .quick-view-detail .product-detail .variation-content .variation-item .boxed-select li {
  position: relative;
}
.quick-view-modal .quick-view-detail .product-detail .variation-content .variation-item .boxed-select li label {
  position: relative;
  margin: 0;
  padding: 0;
}
.quick-view-modal .quick-view-detail .product-detail .variation-content label {
  margin-bottom: 0.8em;
  display: flex;
  align-items: center;
}

.whatsapp-button {
  bottom: 2em;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;
  z-index: 200;
  display: inline-flex;
  height: 56px;
  width: 56px;
  position: absolute;
}
.whatsapp-button.left-position {
  inset-inline-start: 2em;
}
.whatsapp-button.right-position {
  inset-inline-end: 2em;
}
.whatsapp-button a {
  height: 56px;
  width: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.whatsapp-button a .shape {
  width: 60%;
  height: 60%;
}
.whatsapp-button a .shape svg {
  fill: #fff;
}

.bottom-actions {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 299;
}
.bottom-actions .top-actions {
  position: relative;
}

@media screen and (max-width: 991px) {
  #product .whatsapp-button {
    transform: translateY(-60px);
  }
}
.divider {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
}
.divider svg {
  min-width: 100%;
  height: 100%;
}
.divider.top-divider {
  margin-bottom: 3em;
  top: -2px !important;
}
.divider.bottom-divider {
  margin-top: 3em;
  transform: rotate(180deg);
  bottom: -2px !important;
}
@media screen and (max-width: 671px) {
  .divider svg {
    min-width: 200%;
  }
}

.pined-product {
  position: unset !important;
}

.pin {
  width: 30px !important;
  height: 30px !important;
  position: absolute;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  z-index: 30;
}
.pin:after {
  content: "+" !important;
  width: 100%;
  height: 100%;
  z-index: 10;
  border-radius: 50%;
  position: absolute;
  color: var(--bodyBackgroundColor);
  font-size: 1.3em;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
  background-color: var(--generalPrimaryColor) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: imagePin 1.5s infinite;
          animation: imagePin 1.5s infinite;
}
@-webkit-keyframes imagePin {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 0.6em rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0.8em rgba(255, 255, 255, 0);
  }
}
@keyframes imagePin {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 0.6em rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0.8em rgba(255, 255, 255, 0);
  }
}

.pinned-product {
  width: auto !important;
  background: var(--bodyBackgroundColor);
  box-shadow: 0 30px 30px -15px rgba(0, 0, 0, 0.3);
  border-radius: calc(var(--generalBorderRadius) * 0.5);
  z-index: 31;
  position: absolute;
  display: none;
  margin: 30px;
}
@media screen and (max-width: 671px) {
  .pinned-product {
    left: 50% !important;
    transform: translate(-50%, -50%);
    margin: 0;
  }
}
.pinned-product .inner-wrapper {
  display: flex;
  align-items: center;
}
.pinned-product .close-pinner-product {
  position: absolute;
  inset-inline-end: 0;
  padding: 0.5em;
  cursor: pointer;
}
.pinned-product .close-pinner-product .shape {
  width: 15px;
  height: 15px;
}
.pinned-product .close-pinner-product .shape svg {
  fill: var(--generalTextColor);
}
.pinned-product .pinned-product-image {
  overflow: hidden;
  display: flex;
  -webkit-border-end: 1px solid var(--boxBorderColor);
          border-inline-end: 1px solid var(--boxBorderColor);
  border-radius: calc(var(--generalBorderRadius) * 0.5) 0 0 calc(var(--generalBorderRadius) * 0.5);
}
.pinned-product .pinned-fist {
  width: 150px;
}
.pinned-product .pinned-second {
  padding: 1em;
  width: 200px;
}
.pinned-product .pinned-second .pinned-product-name {
  font-size: 1em;
  line-height: 1.3;
  color: inherit;
  font-weight: 600;
  margin-bottom: 0.7em;
}
.pinned-product .pinned-second .pinned-product-price-info {
  margin-bottom: 1em;
}
.pinned-product .pinned-second .pinned-product-price-info .pinned-product-old-price {
  opacity: 0.6;
  margin-bottom: 0.3em;
  display: inline-flex;
  position: relative;
  opacity: 0.6;
  margin-bottom: 0.2em;
  font-size: 90%;
}
.pinned-product .pinned-second .pinned-product-price-info .pinned-product-old-price:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 1px;
  background-color: var(--generalTextColor);
  transform: translate(-50%, -50%) rotate(-6deg);
  opacity: 0.8;
}
.pinned-product .pinned-second .pinned-product-price-info .new-current {
  color: var(--generalPrimaryColor);
}
.pinned-product .pinned-second .pinned-product-price-info .pinned-product-old-price,
.pinned-product .pinned-second .pinned-product-price-info .pinned-current-price {
  font-size: 1.1;
}
.pinned-product .pinned-second .product-action {
  width: 100%;
  margin-top: 1em;
  font-size: 0.8em;
  color: var(--generalPrimaryColor);
}
.pinned-product .less-stock {
  font-size: 0.7em;
  margin-bottom: 7px;
}
.pinned-product .less-stock .shape {
  width: 10px;
  height: 10px;
}
.pinned-product .close-it {
  display: none;
}
.pinned-product:before {
  content: "";
  position: absolute;
}
.pinned-product.dummy .pinned-fist {
  height: 180px;
}
.pinned-product.dummy .pinned-second .pinned-product-name {
  height: 0.8em;
}
.pinned-product.dummy .pinned-second .pinned-product-price-info {
  height: 1.3em;
  width: 50%;
}
.pinned-product.dummy .pinned-second .pinned-product-action .bttn {
  width: 150px;
  max-height: 2em;
}

@-webkit-keyframes placeholdAnimation {
  0% {
    background-position: -800px 0;
  }
  100% {
    background-position: 800px 0;
  }
}

@keyframes placeholdAnimation {
  0% {
    background-position: -800px 0;
  }
  100% {
    background-position: 800px 0;
  }
}
.dummy-loading {
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: placeholdAnimation;
          animation-name: placeholdAnimation;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background-color: #f6f7f8;
  background: linear-gradient(to right, #eeeeee 8%, #ddd 18%, #eeeeee 33%);
  background-size: 500px 74px;
  height: 70px;
  position: relative;
}

.left .pinned-product {
  right: 100%;
  margin-right: 1em;
  top: 50%;
  transform: translateY(-50%);
}

.right .pinned-product {
  left: 100%;
  margin-left: 1em;
  top: 50%;
  transform: translateY(-50%);
}

.rightTop .pinned-product {
  left: 100%;
  margin-left: 1em;
  bottom: -20px;
}

.rightBottom .pinned-product {
  left: 100%;
  margin-left: 1em;
  top: -20px;
}

.leftTop .pinned-product {
  right: 100%;
  margin-right: 1em;
  bottom: -20px;
}

.leftBottom .pinned-product {
  right: 100%;
  margin-right: 1em;
  top: -20px;
}

.top .pinned-product {
  left: 50%;
  margin-bottom: 1em;
  bottom: 100%;
  transform: translateX(-50%);
}

.bottom .pinned-product {
  left: 50%;
  margin-top: 1em;
  top: 100%;
  transform: translateX(-50%);
}

.content-pin {
  width: 10px !important;
  height: 10px !important;
}
.content-pin:after {
  content: "" !important;
  border-radius: 50%;
  color: var(--bodyBackgroundColor);
  font-size: 1.3em;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
  background-color: var(--bodyBackgroundColor) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: imageContentPin 1.5s infinite;
          animation: imageContentPin 1.5s infinite;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
}
@-webkit-keyframes imageContentPin {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 0.3em rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0.5em rgba(255, 255, 255, 0);
  }
}
@keyframes imageContentPin {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 0.3em rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0.5em rgba(255, 255, 255, 0);
  }
}
.content-pin .pinned-product {
  border-radius: var(--generalBorderRadius);
}
.content-pin .pinned-product .product-image {
  border-radius: var(--generalBorderRadius)/2;
  overflow: hidden;
}

.pinned-content {
  width: 150px;
  color: var(--bodyBackgroundColor);
  position: relative;
}
.pinned-content a {
  font-size: 0.9em;
}
.pinned-content a .pinned-content-img {
  display: inline-block;
  margin-bottom: 0.5em;
}
.pinned-content a .pinned-content-img img {
  max-width: 100px;
}
.pinned-content a .pinned-content-title {
  font-size: 1.2em;
  margin: 0 0 0.1em;
}
.pinned-content a .pinned-content-any {
  font-size: 1em;
}

.left .pinned-content:before {
  content: "";
  position: absolute;
  width: 2.5em;
  height: 1px;
  background-color: var(--bodyBackgroundColor);
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  margin-left: 1em;
}

.right .pinned-content:before {
  content: "";
  position: absolute;
  width: 2.5em;
  height: 1px;
  background-color: var(--bodyBackgroundColor);
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
  margin-right: 1em;
}

.top .pinned-content:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 2.5em;
  background-color: var(--bodyBackgroundColor);
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 10px);
  margin-right: 1em;
}

.bottom .pinned-content:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 2.5em;
  background-color: var(--bodyBackgroundColor);
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 10px);
  margin-right: 1em;
}

#breadcrumb ul,
.inner-breadcrumb ul {
  padding: 1em 0;
  display: inline-flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
#breadcrumb ul li,
.inner-breadcrumb ul li {
  -webkit-padding-end: 0 0.6em;
          padding-inline-end: 0 0.6em;
  display: inline-flex;
  color: inherit;
  font-size: 0.8em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  letter-spacing: 1px;
  opacity: 0.7;
  min-width: 30px;
}
#breadcrumb ul li:first-child,
.inner-breadcrumb ul li:first-child {
  text-overflow: unset;
  width: unset;
  max-width: unset;
  overflow: visible;
  white-space: normal;
  min-width: unset;
}
#breadcrumb ul li:first-child a,
.inner-breadcrumb ul li:first-child a {
  text-overflow: unset;
  width: unset;
  max-width: unset;
  overflow: visible;
  white-space: normal;
}
#breadcrumb ul li a,
.inner-breadcrumb ul li a {
  font-size: inherit;
  display: block;
  color: inherit;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}
#breadcrumb ul li:after,
.inner-breadcrumb ul li:after {
  content: "\f104";
  font-family: arrowset;
  font-size: 10px;
  align-self: center;
  color: inherit;
  margin: 0 0.2em;
}
#breadcrumb ul li:last-child,
.inner-breadcrumb ul li:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  display: block;
}
#breadcrumb ul li:last-child:after,
.inner-breadcrumb ul li:last-child:after {
  content: "";
  display: none;
}

#product #breadcrumb {
  background-color: var(--bodyBackgroundColor);
}
@media screen and (max-width: 991px) {
  #product #breadcrumb {
    position: -webkit-sticky;
    position: sticky;
    z-index: 10;
  }
}

.quickwiew-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: rgba(var(--rgbGeneralTextColor), 0.5);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes kbs-loader-1 {
  0% {
    height: 30px;
  }
  50% {
    height: 20px;
  }
  100% {
    height: 20px;
  }
}
@keyframes kbs-loader-2 {
  0% {
    height: 35px;
  }
  50% {
    height: 20px;
  }
  100% {
    height: 20px;
  }
}
@keyframes kbs-loader-3 {
  0% {
    height: 25px;
  }
  50% {
    height: 20px;
  }
  100% {
    height: 20px;
  }
}
.quickwiew-loader .product-loader div {
  position: absolute;
  width: 6px;
  background-color: var(--bodyBackgroundColor);
}
.quickwiew-loader .product-loader div:nth-child(1) {
  left: 0px;
  -webkit-animation: kbs-loader-1 0.5s cubic-bezier(0, 0.5, 0.5, 1) infinite;
          animation: kbs-loader-1 0.5s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.quickwiew-loader .product-loader div:nth-child(2) {
  left: 12px;
  -webkit-animation: kbs-loader-2 0.5s cubic-bezier(0, 0.5, 0.5, 1) infinite;
          animation: kbs-loader-2 0.5s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}
.quickwiew-loader .product-loader div:nth-child(3) {
  left: 24px;
  -webkit-animation: kbs-loader-3 0.5s cubic-bezier(0, 0.5, 0.5, 1) infinite;
          animation: kbs-loader-3 0.5s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  -webkit-animation-delay: undefineds;
          animation-delay: undefineds;
}
.quickwiew-loader .product-spinner {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.quickwiew-loader .product-loader {
  width: 40px;
  height: 20px;
  display: flex;
  align-items: center;
  position: relative;
  transform: translateZ(0) scale(1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-origin: 0 0;
  /* see note above */
}
.quickwiew-loader .product-loader div {
  box-sizing: content-box;
}

.size-chart-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.size-chart-modal .closer {
  position: absolute;
  top: -30px;
  inset-inline-end: -10px;
}
.size-chart-modal .closer .shape {
  width: 30px;
  height: 30px;
}
.size-chart-modal .closer .shape svg {
  fill: var(--bodyBackgroundColor);
}
.size-chart-modal .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: rgba(var(--rgbGeneralTextColor), 0.5);
  z-index: -1;
}
.size-chart-modal .chart-content {
  padding: 0 !important;
  max-width: 1000px;
  max-height: 80%;
  position: relative;
}
@media screen and (max-width: 671px) {
  .size-chart-modal .chart-content {
    max-width: 90%;
  }
}
.size-chart-modal .chart-content .inner-wraper {
  background-color: var(--bodyBackgroundColor);
  border-radius: var(--generalBorderRadius);
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  overflow: hidden;
  overflow-y: auto;
  transition: height 0.3s;
}
.size-chart-modal .chart-content .inner-wraper img {
  height: auto;
  max-height: 80vh;
}
.size-chart-modal .chart-content .quick-view-wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
  width: 100%;
}

.header-top .current-lang .um-info {
  color: var(--toolBarTextColor) !important;
}
.header-top .current-lang .shape {
  width: 1.3em !important;
  height: 1.3em !important;
}
@media screen and (max-width: 671px) {
  .header-top .current-lang .shape {
    width: 1.8em !important;
    height: 1.8em !important;
  }
}
.header-top .current-lang .shape:not(.flag) svg {
  fill: var(--toolBarTextColor) !important;
}

@media screen and (max-width: 991px) {
  header .header-action .language-select {
    display: none;
  }
}
.language-select {
  position: relative;
  align-self: center;
  padding: 0.5em;
  z-index: 10;
}
.language-select .language-list .current-lang {
  display: flex;
  align-items: center;
}
.language-select .language-list .current-lang .um-info {
  -webkit-margin-start: 0.2em;
          margin-inline-start: 0.2em;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
  text-transform: uppercase;
  max-height: 12px;
  color: var(--iconTextColor);
}
.language-select .language-list ul {
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  padding: 1em;
  background-color: var(--bodyBackgroundColor);
  border-radius: var(--generalBorderRadius);
  border: 1px solid var(--boxBorderColor);
  transition: all 0.2s ease-in-out;
}
.language-select .language-list ul li a {
  display: flex;
  align-items: center;
  color: var(--generalTextColor) !important;
  padding: 0.5em;
  text-transform: uppercase;
  flex-direction: row !important;
}
.language-select .language-list ul li a .shape {
  -webkit-margin-end: 0.4em;
          margin-inline-end: 0.4em;
  width: 1em !important;
  height: 1em !important;
}
.language-select .language-list:hover ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.language-select .shape.down {
  width: 0.6em !important;
  height: 0.6em !important;
}

.user-menu-item .languge-list .language-item {
  outline: none !important;
  position: relative;
}
.user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.user-menu-item .languge-list .language-item.current .shape.down {
  width: 10px;
  height: 10px;
  transform: translateY(2px);
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.user-menu-item .languge-list .language-item.current a {
  text-transform: uppercase;
}
.user-menu-item .languge-list .language-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  width: 60px;
  padding: 0.4em 0;
  z-index: 30;
}
.user-menu-item .languge-list .language-item ul a {
  justify-content: end;
  padding: 0.7em 1em !important;
  text-transform: uppercase;
}
.user-menu-item .languge-list .language-item:hover > ul, .user-menu-item .languge-list .language-item:focus > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.header-navigation {
  height: 100%;
  background-color: var(--mainMenuBackgroundColor);
}
@media screen and (min-width: 671px) and (max-width: 991px) {
  .header-navigation {
    left: -50% !important;
  }
}
.header-navigation .menu-title {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-navigation .menu-title {
    flex-direction: row !important;
    width: 100%;
    display: inline-flex;
  }
}
@media screen and (max-width: 991px) {
  .header-navigation {
    position: fixed;
    height: 100%;
    top: 0;
    background-color: var(--mainMenuBackgroundColor) !important;
    transition: left 0.4s;
    z-index: 1;
    overflow: hidden;
  }
  .header-navigation .container {
    position: unset !important;
    padding: 0 !important;
  }
  .header-navigation.opened {
    left: 0 !important;
  }
  .header-navigation nav ul.navigation-list {
    display: block;
  }
  .header-navigation nav ul.navigation-list > li {
    display: list-item;
    height: auto;
    position: unset;
  }
  .header-navigation nav ul.navigation-list > li.with-image > a {
    padding: 0;
    display: flex;
    align-items: center;
  }
  .header-navigation nav ul.navigation-list > li.with-image > a .nav-main-item-banner {
    -webkit-margin-start: 1em;
            margin-inline-start: 1em;
    display: inline-flex;
  }
  .header-navigation nav ul.navigation-list > li > .dropmenu {
    height: 100%;
    width: 100%;
    top: 0 !important;
    margin-top: 0 !important;
    position: absolute !important;
    display: block;
    visibility: visible;
    opacity: 1;
    padding: 0;
    left: auto !important;
    right: -600px;
    transform: translateX(0);
    transition: all 0.4s ease;
    transition-delay: 0s !important;
    background-color: var(--mainMenuBackgroundColor);
    border-radius: 0 !important;
  }
  .header-navigation nav ul.navigation-list > li > .dropmenu .menu-title {
    align-items: center;
  }
  .header-navigation nav ul.navigation-list > li > .dropmenu.medium .nav-banner-item {
    display: none !important;
  }
  .header-navigation nav ul.navigation-list > li > .dropmenu > .container {
    display: block;
    height: 100%;
  }
  .header-navigation nav ul.navigation-list > li > .dropmenu ul {
    transition: all 0.3s;
    background-color: var(--mainMenuBackgroundColor);
    padding: 0 1em;
  }
  .header-navigation nav ul.navigation-list > li > .dropmenu ul.first-child {
    display: block !important;
    -moz-column-count: unset !important;
         column-count: unset !important;
  }
  .header-navigation nav ul.navigation-list > li > .dropmenu ul li {
    margin: 0 !important;
    width: 100%;
    min-width: 100%;
  }
  .header-navigation nav ul.navigation-list > li > .dropmenu ul li a {
    display: block;
    font-size: 1em;
    margin: 0 !important;
    padding: 0.7em 0 !important;
    font-weight: normal !important;
  }
  .header-navigation nav ul.navigation-list > li > .dropmenu ul .sub-child {
    visibility: visible;
    opacity: 1;
    left: auto;
    right: -600px;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    margin-top: 0;
    z-index: 1;
  }
  .header-navigation nav ul.navigation-list > li > .dropmenu > ul {
    -moz-columns: unset;
         columns: unset;
    width: 100%;
    background-color: inherit;
  }
  .header-navigation nav ul.navigation-list .current .dropmenu, .header-navigation nav ul.navigation-list .current > .sub-child {
    right: 0 !important;
    z-index: 1;
  }
}
.header-navigation nav {
  max-height: 100%;
}
.header-navigation nav .container {
  position: relative;
}
.header-navigation nav .hidden-link-wrapper {
  position: absolute;
  right: 0;
}
.header-navigation nav .navigation-list {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.header-navigation nav .navigation-list > li {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
}
.header-navigation nav .navigation-list > li .nav-main-item-banner {
  display: none !important;
}
.header-navigation nav .navigation-list > li.has-large, .header-navigation nav .navigation-list > li.has-medium {
  position: unset;
}
.header-navigation nav .navigation-list > li > a {
  display: block;
  padding: 1em;
  color: var(--mainMenuTextColor);
  font-size: 1em;
}
.header-navigation nav .navigation-list > li .dropmenu {
  opacity: 0;
  visibility: hidden;
  margin-top: -10px;
  position: absolute;
  top: 100%;
  background-color: var(--bodyBackgroundColor);
  padding: 1.6em 0.6em;
  z-index: 1;
  min-width: 200px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  transition-delay: 0.3s;
  border-bottom-left-radius: var(--generalBorderRadius);
  border-bottom-right-radius: var(--generalBorderRadius);
}
.header-navigation nav .navigation-list > li .dropmenu ul li a {
  font-size: 1em;
  color: var(--generalTextColor);
}
.header-navigation nav .navigation-list > li .dropmenu > .container {
  display: flex;
  justify-content: space-between;
}
.header-navigation nav .navigation-list > li .dropmenu .nav-banner {
  padding-left: 1em;
}
.header-navigation nav .navigation-list > li .dropmenu .nav-banner .nav-banner-item {
  width: 100%;
  margin-top: 1em;
}
.header-navigation nav .navigation-list > li .dropmenu .nav-banner .nav-banner-item:first-child {
  margin-top: 0;
}
.header-navigation nav .navigation-list > li .dropmenu.small {
  font-size: unset;
}
@media screen and (min-width: 769px) {
  .header-navigation nav .navigation-list > li .dropmenu.small {
    padding: 0;
    border-radius: 0 0 var(--generalBorderRadius) var(--generalBorderRadius);
  }
  .header-navigation nav .navigation-list > li .dropmenu.small .first-child {
    width: 100%;
  }
  .header-navigation nav .navigation-list > li .dropmenu.small .first-child li {
    position: relative;
  }
  .header-navigation nav .navigation-list > li .dropmenu.small .first-child li a {
    display: block;
    padding: 1em;
    font-size: 1em;
  }
  .header-navigation nav .navigation-list > li .dropmenu.small .first-child ul {
    background-color: var(--bodyBackgroundColor);
    position: absolute;
    opacity: 0;
    left: 80%;
    display: none;
    top: 0;
    visibility: hidden;
    border-radius: var(--generalBorderRadius);
    border: 1px solid var(--boxBorderColor);
  }
  .header-navigation nav .navigation-list > li .dropmenu.small .first-child li:hover {
    background-color: var(--boxBackgroundColor);
  }
  .header-navigation nav .navigation-list > li .dropmenu.small .first-child li:hover > ul {
    width: 100%;
    transition-delay: 1s;
    display: block;
    opacity: 1;
    visibility: visible;
    left: 90%;
    -webkit-animation-name: smallSubMenu;
            animation-name: smallSubMenu;
    -webkit-animation-duration: 0.3s;
            animation-duration: 0.3s;
  }
  @-webkit-keyframes smallSubMenu {
    0% {
      left: 80%;
      opacity: 0;
      visibility: hidden;
    }
    100% {
      left: 90%;
      opacity: 1;
      visibility: visible;
    }
  }
  @keyframes smallSubMenu {
    0% {
      left: 80%;
      opacity: 0;
      visibility: hidden;
    }
    100% {
      left: 90%;
      opacity: 1;
      visibility: visible;
    }
  }
}
.header-navigation nav .navigation-list > li .dropmenu.medium {
  max-width: 100%;
}
.header-navigation nav .navigation-list > li .dropmenu.medium .first-child {
  -moz-columns: var(--mediumMenuColumn);
       columns: var(--mediumMenuColumn);
  -moz-column-gap: 1em;
       column-gap: 1em;
  -moz-column-break-after: avoid-column;
       break-after: avoid-column;
  max-width: 100%;
}
.header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li {
  min-width: 200px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin: 0 0.5em;
}
.header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li .nav-banner-item {
  width: 100%;
  margin-bottom: 1.2em;
}
.header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li .nav-banner-item img {
  width: 100%;
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li .first-cihld-name {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li > li ul {
  height: 50%;
}
.header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li > li ul li a {
  font-size: 0.8em;
}
.header-navigation nav .navigation-list > li .dropmenu.large {
  position: absolute;
  left: 0;
  max-width: 100%;
  top: 100%;
  transform: translateX(0);
}
.header-navigation nav .navigation-list > li .dropmenu.large > .container > ul {
  -moz-column-count: var(--largeMenuColumn);
       column-count: var(--largeMenuColumn);
  -moz-column-gap: 1em;
       column-gap: 1em;
  -moz-column-break-after: avoid-column;
       break-after: avoid-column;
  max-width: 100%;
}
.header-navigation nav .navigation-list > li .dropmenu.large > .container > ul > li {
  margin-bottom: 1em;
  min-width: 200px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.header-navigation nav .navigation-list > li .dropmenu.large > .container > ul > li .first-cihld-name {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.header-navigation nav .navigation-list > li .dropmenu.large > .container > ul > li > a {
  font-weight: 600;
  color: var(--generalTextColor);
  font-size: 1em;
}
.header-navigation nav .navigation-list > li .dropmenu.large .nav-banner {
  -moz-column-count: var(--largeMenuBannerColumn);
       column-count: var(--largeMenuBannerColumn);
  -moz-column-gap: 1em;
       column-gap: 1em;
  max-width: 60%;
}
.header-navigation nav .navigation-list > li .dropmenu.large .nav-banner img {
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--generalBorderRadius);
}
.header-navigation nav .navigation-list > li .dropmenu > .container > ul > li {
  min-width: 200px;
}
.header-navigation nav .navigation-list > li .dropmenu > .container > ul > li a {
  display: block;
  padding: 0.3em 0;
}
.header-navigation nav .navigation-list > li > .dropmenu {
  z-index: -1;
}
.header-navigation nav .navigation-list > li:hover > a {
  color: var(--generalPrimaryColor);
}
.header-navigation nav .navigation-list > li:hover > .dropmenu {
  transition: all 0.2s;
  transition-delay: 0.3s;
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.header-navigation nav .navigation-list > li:hover > .dropmenu li a {
  color: var(--generalTextColor);
}
.header-navigation nav .navigation-list > li:hover > .dropmenu li:hover > a {
  opacity: 0.7;
}
.header-navigation .side-login {
  display: none;
}
.header-navigation .side-social-links {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-navigation .side-social-links {
    display: block;
  }
}
.header-navigation .side-social-links ul li a {
  display: flex;
  align-items: center;
}
.header-navigation .side-social-links ul li a .shape {
  margin-right: 0.5em;
}

.menu-tool {
  display: none;
}

.menu-header {
  display: none !important;
}

@media screen and (max-width: 991px) {
  header #site-nav.header-navigation {
    left: -80% !important;
    transition: all 0.3s ease-in-out !important;
    color: var(--mainMenuTextColor);
  }
  header #site-nav.header-navigation.opened {
    left: 0 !important;
  }
  header #site-nav.header-navigation .menu-title {
    font-weight: 700;
    font-size: 1.2em;
    color: var(--mainMenuTextColor);
  }
  header #site-nav.header-navigation .menu-title i {
    -webkit-margin-end: 0.6em;
            margin-inline-end: 0.6em;
    font-size: 1.4em;
    display: inline-flex;
  }
  header #site-nav.header-navigation .menu-tool {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(var(--rgbGeneralTextColor), 0.05);
    position: static;
    z-index: 10;
  }
  header #site-nav.header-navigation .menu-tool .back-button {
    left: auto;
    position: relative;
    inset-inline-end: 0;
    top: auto;
    display: flex !important;
    align-items: center;
    color: var(--mainMenuTextColor);
  }
  header #site-nav.header-navigation .menu-tool .back-button .shape {
    -webkit-margin-end: 0.3em;
            margin-inline-end: 0.3em;
  }
  header #site-nav.header-navigation .menu-tool .back-button .shape svg {
    fill: var(--mainMenuTextColor);
  }
  header #site-nav.header-navigation .menu-tool .mobile-lang .languge-list .language-item {
    padding: 1em;
    display: flex;
  }
  header #site-nav.header-navigation .menu-tool .mobile-lang .languge-list .language-item a {
    color: inherit;
    display: inline-flex;
  }
  header #site-nav.header-navigation .menu-tool .mobile-lang .languge-list .language-item ul {
    z-index: 30;
  }
  header #site-nav.header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
    border-top: 1px solid var(--boxBorderColor);
    border-bottom: 1px solid var(--boxBorderColor);
  }
  header #site-nav.header-navigation .menu-header .search-input,
header #site-nav.header-navigation .menu-header .site-search {
    background-color: var(--mainMenuBackgroundColor) !important;
    padding: 0;
  }
  header #site-nav.header-navigation .menu-header .search-input .f-row,
header #site-nav.header-navigation .menu-header .site-search .f-row {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  header #site-nav.header-navigation .menu-header .search-input input,
header #site-nav.header-navigation .menu-header .site-search input {
    color: var(--mainMenuTextColor) !important;
  }
  header #site-nav.header-navigation .menu-header .search-input button svg,
header #site-nav.header-navigation .menu-header .site-search button svg {
    fill: var(--mainMenuTextColor) !important;
  }
  header #site-nav.header-navigation .menu-header a {
    color: var(--mainMenuTextColor);
  }
  header #site-nav.header-navigation .menu-header .um-info .bt {
    color: var(--mainMenuTextColor);
  }
  header #site-nav.header-navigation .menu-header .account-menu-opnner .user-profile .avatar {
    border: 1px solid var(--boxBorderColor);
  }
  header #site-nav.header-navigation .menu-header .account-menu-opnner.active {
    color: inherit;
  }
  header #site-nav.header-navigation .search-opener .shape svg {
    fill: var(--mainMenuTextColor);
  }
  header #site-nav.header-navigation .side-social-links .shape svg {
    fill: var(--mainMenuTextColor);
  }
  header #site-nav.header-navigation nav {
    position: unset !important;
    height: calc(100% - 125px);
  }
  header #site-nav.header-navigation nav .dropmenu {
    z-index: 10 !important;
  }
  html[dir=rtl] header #site-nav.header-navigation {
    left: auto !important;
    right: -80% !important;
  }
  html[dir=rtl] header #site-nav.header-navigation.opened {
    left: auto !important;
    right: 0 !important;
  }
}
#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: top 0.2s ease-in-out;
}
@media screen and (max-width: 991px) {
  #kbs-wizard-header-area {
    top: 0px !important;
  }
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-1.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-1.fixed .header-navigation,
#home .header-1.fixed .header-action {
  background-color: transparent;
}
#home .header-1.fixed.show-hide {
  background-color: var(--headerBackgroundColor) !important;
}

.header-1 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-1.nav-hide .header-navigation {
  background-color: var(--mainMenuBackgroundColor) !important;
}
@media screen and (max-width: 991px) {
  .header-1 {
    top: 0px !important;
  }
  .header-1.nav-hide {
    background-color: var(--headerBackgroundColor) !important;
    top: 0px !important;
  }
}
@media screen and (max-width: 991px) {
  .header-1 .container.full-w {
    max-width: 100% !important;
  }
}
@media screen and (max-width: 661px) {
  .header-1 .container.full-w {
    padding: 0 0.4em;
  }
}
.header-1.onSlider {
  background-color: var(--fixedHeaderBackgroundColor);
}
@media screen and (min-width: 769px) {
  .header-1.page-up .header-action {
    display: none;
  }
  .header-1.page-down .header-action {
    display: block;
  }
}
.header-1 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-1 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-1 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-1 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-1 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-1 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-1 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-1 .header-top a {
  color: inherit;
}
.header-1 .header-top a:hover {
  opacity: 0.7;
}
.header-1 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-1 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-1 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-1 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-1 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-1 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-1 .header-top .top-side-menu a :not(.flag).shape {
  width: 18px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-1 .header-top .top-side-menu a :not(.flag).shape svg {
  fill: var(--toolBarTextColor);
}
.header-1 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-1 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-1 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-1 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1em 0;
  position: relative;
}
.header-1 .header-action .mobile-menu,
.header-1 .header-action .menu-opener {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-1 .header-action {
    padding: 0.3em 0;
  }
  .header-1 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-1 .header-action .mobile-menu .menu-opener,
.header-1 .header-action .mobile-menu .search-opener {
    padding: 0.3em;
    display: inline-flex;
  }
}
.header-1 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-1 .header-action .mobile-menu {
    display: flex;
  }
}
@media screen and (max-width: 991px) {
  .header-1 .header-action .site-search {
    display: none;
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    left: 0;
    background-color: var(--headerBackgroundColor);
    padding: 0 16px;
    z-index: 1;
  }
  .header-1 .header-action .site-search input {
    color: var(--iconColor);
  }
  .header-1 .header-action .site-search button svg {
    fill: var(--iconColor);
  }
  .header-1 .header-action .site-search.in-menu {
    display: none !important;
  }
}
.header-1 .header-action .site-search.opened {
  display: flex;
}
.header-1 .header-action .site-search.opened .search-closer {
  display: block;
}
.header-1 .header-action .site-search .search-closer {
  display: none;
}
.header-1 .header-action .site-search .search-input {
  display: inline-flex;
}
@media screen and (max-width: 991px) {
  .header-1 .header-action .site-search .search-input {
    display: block;
    width: 100%;
    align-self: center;
  }
}
.header-1 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-1 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-1 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  min-height: 2.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
  -webkit-margin-end: 0.7em;
          margin-inline-end: 0.7em;
}
.header-1 .header-action .site-search .search-input .f-row button i {
  position: relative;
  font-size: 1.4em;
}
.header-1 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
}
.header-1 .header-action .logo a {
  display: block;
  text-align: center;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-1 .header-action .logo img {
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .header-1 .header-action .logo .row {
    flex-wrap: nowrap;
  }
  .header-1 .header-action .logo .row a {
    display: inline-flex;
    color: inherit;
  }
}
.header-1 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  position: relative;
  align-items: inherit;
}
@media screen and (max-width: 991px) {
  .header-1 .header-action .user-menu {
    padding: 0;
  }
}
.header-1 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-1 .header-action .user-menu a {
    padding: 0.3em;
  }
}
.header-1 .header-action .user-menu a .um-info {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.header-1 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-1 .header-action .user-menu a .um-info span.bt {
  font-size: 0.9em;
  white-space: nowrap;
}
.header-1 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-1 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-1 .header-action .user-menu a:hover {
  color: var(--generalPrimaryColor);
}
.header-1 .header-action .user-menu a:hover :not(.flag) svg {
  fill: var(--generalPrimaryColor);
}
.header-1 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
}
.header-1 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-1 .header-action .user-menu .login {
  position: relative;
}
.header-1 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  right: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: var(--generalBorderRadius);
  border: 1px solid var(--boxBorderColor);
}
.header-1 .header-action .user-menu .login .account-menu ul {
  padding: 0.3em 0;
}
.header-1 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-1 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-1 .header-action .user-menu .cart {
  position: relative;
}
.header-1 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-1 .header-action .user-menu .cart .bt {
  margin-top: 5px;
}
.header-1 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--generalTextColor);
  color: var(--headerBackgroundColor);
  bottom: -6px;
  font-size: 60%;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}
.header-1 .shape {
  width: 26px;
  height: 26px;
}
.header-1 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-1 .shape:hover :not(.flag) svg {
  fill: var(--generalPrimaryColor);
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: top 0.2s ease-in-out;
}
@media screen and (max-width: 991px) {
  #kbs-wizard-header-area {
    top: 0px !important;
  }
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-1-1.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-1-1.fixed .header-navigation,
#home .header-1-1.fixed .header-action {
  background-color: transparent;
}
#home .header-1-1.fixed.show-hide {
  background-color: var(--headerBackgroundColor) !important;
}

.header-1-1 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-1-1.nav-hide .header-navigation {
  background-color: var(--mainMenuBackgroundColor !important);
}
@media screen and (max-width: 991px) {
  .header-1-1 {
    top: 0px !important;
  }
  .header-1-1.nav-hide {
    background-color: var(--mainMenuBackgroundColor !important);
    top: 0px !important;
  }
}
@media screen and (max-width: 991px) {
  .header-1-1 .container.full-w {
    max-width: 100% !important;
  }
}
@media screen and (max-width: 661px) {
  .header-1-1 .container.full-w {
    padding: 0 0.4em;
  }
}
.header-1-1 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-1-1 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-1-1 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-1-1 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-1-1 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-1-1 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-1-1 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-1-1 .header-top a {
  color: inherit;
}
.header-1-1 .header-top a:hover {
  opacity: 0.7;
}
.header-1-1 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-1-1 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-1-1 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-1-1 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-1-1 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-1-1 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-1-1 .header-top .top-side-menu a .shape {
  width: 18px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-1-1 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-1-1 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-1-1 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-1-1 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-1-1 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.7em 0;
  position: relative;
}
.header-1-1 .header-action .mobile-menu,
.header-1-1 .header-action .menu-opener {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-1-1 .header-action {
    padding: 0.3em 0;
  }
  .header-1-1 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-1-1 .header-action .mobile-menu .menu-opener,
.header-1-1 .header-action .mobile-menu .search-opener {
    padding: 0.3em;
    display: inline-flex;
  }
  .header-1-1 .header-action .mobile-menu + .logo {
    display: none !important;
  }
}
.header-1-1 .header-action svg {
  color: var(--iconColor);
  transition: color 0.2s;
}
.header-1-1 .header-action .top-side-menu:last-child {
  border: none;
}
.header-1-1 .header-action .top-side-menu li a {
  display: block;
  font-size: 1em;
  padding: 0.3em 0.7em;
}
.header-1-1 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-1-1 .header-action .mobile-menu {
    display: flex;
  }
}
@media screen and (max-width: 991px) {
  .header-1-1 .header-action .site-search {
    display: none;
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    left: 0;
    background-color: var(--headerBackgroundColor);
    padding: 0 16px;
    z-index: 1;
  }
  .header-1-1 .header-action .site-search input {
    color: var(--iconColor);
  }
  .header-1-1 .header-action .site-search button svg {
    fill: var(--iconColor);
  }
  .header-1-1 .header-action .site-search.in-menu {
    display: none !important;
  }
}
@media screen and (min-width: 992px) {
  .header-1-1 .header-action .site-search button {
    order: 1;
  }
}
.header-1-1 .header-action .site-search.opened {
  display: flex;
}
.header-1-1 .header-action .site-search.opened .search-closer {
  display: block;
}
.header-1-1 .header-action .site-search .search-closer {
  display: none;
}
.header-1-1 .header-action .site-search form {
  width: 100%;
}
.header-1-1 .header-action .site-search .search-input {
  display: inline-flex;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .header-1-1 .header-action .site-search .search-input {
    display: block;
    width: 100%;
    align-self: center;
  }
}
.header-1-1 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-1-1 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-1-1 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
}
@media screen and (max-width: 991px) {
  .header-1-1 .header-action .site-search .search-input .f-row button {
    margin-right: 1em;
  }
}
.header-1-1 .header-action .site-search .search-input .f-row button svg {
  position: relative;
  margin: 0;
}
.header-1-1 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 991px) {
  .header-1-1 .header-action .logo.mobile-logo {
    display: block !important;
    margin: 0 0.5em;
  }
}
.header-1-1 .header-action .logo a {
  display: inline-flex;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-1-1 .header-action .logo img {
  max-width: 100%;
}
.header-1-1 .header-action .logo.mobile-logo {
  display: none;
}
.header-1-1 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header-1-1 .header-action .user-menu {
    padding: 0;
  }
}
.header-1-1 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-1-1 .header-action .user-menu a {
    padding: 0.4em;
  }
}
.header-1-1 .header-action .user-menu a .um-info {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.header-1-1 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-1-1 .header-action .user-menu a .um-info span.bt {
  font-size: 0.9em;
  white-space: nowrap;
}
.header-1-1 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-1-1 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-1-1 .header-action .user-menu a:hover {
  color: var(--generalPrimaryColor);
}
.header-1-1 .header-action .user-menu a:hover svg {
  fill: var(--generalPrimaryColor);
}
.header-1-1 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
}
.header-1-1 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-1-1 .header-action .user-menu .login {
  position: relative;
}
.header-1-1 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  right: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: var(--generalBorderRadius);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-1-1 .header-action .user-menu .login .account-menu ul {
  padding: 0.4em 0;
}
.header-1-1 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-1-1 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-1-1 .header-action .user-menu .cart {
  position: relative;
}
.header-1-1 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-1-1 .header-action .user-menu .cart .bt {
  margin-top: 5px;
}
.header-1-1 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--iconColor);
  color: var(--headerBackgroundColor);
  bottom: -6px;
  font-size: 60%;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}
.header-1-1 .header-action .user-menu .site-search .f-row button {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-1-1 .header-action .user-menu .search-opener {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  display: none;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-1-1 .header-action .user-menu .search-opener svg {
  fill: var(--iconColor);
}
@media screen and (max-width: 991px) {
  .header-1-1 .header-action .user-menu .search-opener {
    display: flex;
  }
}
.header-1-1 .header-navigation .menu-header {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .header-1-1 .header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
  }
  .header-1-1 .header-navigation .menu-header .site-search {
    background-color: var(--mainMenuBackgroundColor);
    padding: 0;
  }
  .header-1-1 .header-navigation .menu-header .site-search .f-row {
    padding-top: 0;
  }
  .header-1-1 .header-navigation .menu-header .site-search input {
    color: var(--mainMenuTextColor) !important;
  }
  .header-1-1 .header-navigation .menu-header .site-search button svg {
    fill: var(--mainMenuTextColor) !important;
  }
}
.header-1-1 .shape {
  width: 26px;
  height: 26px;
}
.header-1-1 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-1-1 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: top 0.2s ease-in-out;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-2.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-2.fixed .header-navigation,
#home .header-2.fixed .header-action {
  background-color: transparent;
}
#home .header-2.fixed.nav-hide, #home .header-2.fixed.show-hide {
  background-color: var(--headerBackgroundColor);
}

.header-2 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-2 .shape {
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 991px) {
  .header-2 .shape {
    width: 23px;
    height: 23px;
  }
}
.header-2 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-2 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}
@media screen and (max-width: 991px) {
  .header-2 .container {
    max-width: 100%;
    padding: 0;
  }
}
.header-2 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-2 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-2 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-2 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-2 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-2 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-2 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-2 .header-top a {
  color: inherit;
}
.header-2 .header-top a:hover {
  opacity: 0.7;
}
.header-2 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-2 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-2 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-2 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-2 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-2 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-2 .header-top .top-side-menu a .shape {
  width: 20px;
  width: 20px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-2 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-2 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-2 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-2 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-2 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.7em 0;
  position: relative;
}
.header-2 .header-action .mobile-menu,
.header-2 .header-action .menu-opener {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-2 .header-action .mobile-menu + .logo {
    display: none !important;
  }
  .header-2 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-2 .header-action .mobile-menu .menu-opener,
.header-2 .header-action .mobile-menu .search-opener {
    font-size: 1.6em;
    padding: 0.4em;
    display: block;
  }
}
.header-2 .header-action svg {
  color: var(--iconColor);
  transition: color 0.2s;
}
.header-2 .header-action .top-side-menu {
  border-right: 1px solid rgba(var(--mainMenuTextColor), 50%);
}
.header-2 .header-action .top-side-menu:last-child {
  border: none;
}
.header-2 .header-action .top-side-menu li a {
  display: block;
  font-size: 1em;
  padding: 0.3em 0.7em;
}
.header-2 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-2 .header-action .mobile-menu {
    display: flex;
  }
}
.header-2 .header-action .site-search {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  left: 0;
  background-color: var(--headerBackgroundColor);
  padding: 0 16px;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .header-2 .header-action .site-search.in-menu {
    display: none !important;
  }
}
.header-2 .header-action .site-search.opened {
  display: flex;
}
.header-2 .header-action .site-search.opened .search-closer {
  display: block;
}
.header-2 .header-action .site-search .search-closer {
  display: none;
}
.header-2 .header-action .site-search form {
  width: 100%;
}
.header-2 .header-action .site-search .search-input {
  display: inline-flex;
  width: 100%;
  display: block;
  width: 100%;
  align-self: center;
}
.header-2 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-2 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-2 .header-action .site-search .search-input .f-row input::-moz-placeholder {
  color: rgba(var(--iconColor), 40%) !important;
}
.header-2 .header-action .site-search .search-input .f-row input::placeholder {
  color: rgba(var(--iconColor), 40%) !important;
}
.header-2 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
}
@media screen and (max-width: 991px) {
  .header-2 .header-action .site-search .search-input .f-row button {
    margin-right: 1em;
  }
}
.header-2 .header-action .site-search .search-input .f-row button svg {
  position: relative;
  margin: 0;
}
.header-2 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
}
.header-2 .header-action .logo a {
  display: inline-block;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-2 .header-action .logo img {
  max-width: 100%;
}
.header-2 .header-action .logo.mobile-logo {
  display: none;
}
.header-2 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header-2 .header-action .user-menu {
    padding: 0;
  }
}
.header-2 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-2 .header-action .user-menu a {
    padding: 0.4em;
  }
}
.header-2 .header-action .user-menu a .um-info {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  display: none;
}
.header-2 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-2 .header-action .user-menu a .um-info span.bt {
  font-size: 0.9em;
  white-space: nowrap;
}
.header-2 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-2 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-2 .header-action .user-menu a:hover {
  color: var(--generalPrimaryColor);
}
.header-2 .header-action .user-menu a:hover svg {
  fill: var(--generalPrimaryColor);
}
.header-2 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
}
.header-2 .header-action .user-menu .user-menu-item .languge-list .language-item {
  outline: none !important;
  position: relative;
}
.header-2 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-2 .header-action .user-menu .user-menu-item .languge-list .language-item.current .shape.down {
  width: 10px;
  height: 10px;
  transform: translateY(2px);
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.header-2 .header-action .user-menu .user-menu-item .languge-list .language-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  width: 60px;
  padding: 0.4em 0;
}
.header-2 .header-action .user-menu .user-menu-item .languge-list .language-item ul a {
  justify-content: end;
  padding: 0.7em 1em !important;
}
.header-2 .header-action .user-menu .user-menu-item .languge-list .language-item:hover > ul, .header-2 .header-action .user-menu .user-menu-item .languge-list .language-item:focus > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.header-2 .header-action .user-menu .login {
  position: relative;
}
.header-2 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-2 .header-action .user-menu .login .account-menu ul {
  padding: 0.4em 0;
}
.header-2 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em !important;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-2 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-2 .header-action .user-menu .cart {
  position: relative;
}
.header-2 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-2 .header-action .user-menu .cart .bt {
  margin-top: 5px;
}
.header-2 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--iconColor);
  color: var(--headerBackgroundColor);
  bottom: -6px;
  font-size: 60%;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}
.header-2 .header-action .user-menu .site-search .f-row button {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-2 .header-action .search-opener {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  align-items: center;
  position: relative;
  transition: color 0.2s;
  display: flex;
}
.header-2 .header-action .search-opener svg {
  fill: var(--iconColor);
}
.header-2 .header-navigation {
  background-color: transparent;
}
.header-2 .header-navigation .menu-header {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .header-2 .header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
  }
  .header-2 .header-navigation .menu-header .site-search {
    background-color: var(--mainMenuBackgroundColor);
    padding: 0;
  }
  .header-2 .header-navigation .menu-header .site-search .f-row {
    padding-top: 0;
  }
  .header-2 .header-navigation .menu-header .site-search input {
    color: var(--mainMenuTextColor) !important;
  }
  .header-2 .header-navigation .menu-header .site-search button svg {
    fill: var(--mainMenuTextColor) !important;
  }
}
.header-2 .header-navigation nav .container {
  position: static;
}
.header-2 .header-navigation nav .navigation-list > li > a {
  display: block;
  padding: 1em;
  color: var(--iconColor);
  font-size: 1em;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 991px) {
  .header-2 .header-navigation nav .navigation-list > li > a {
    color: var(--mainMenuTextColor) !important;
  }
}
.header-2 .header-navigation nav .navigation-list > li .dropmenu {
  transform: translateX(0);
  inset-inline-start: 0;
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: top 0.2s ease-in-out;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-2-1.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-2-1.fixed .header-navigation,
#home .header-2-1.fixed .header-action {
  background-color: transparent;
}
#home .header-2-1.fixed.nav-hide, #home .header-2-1.fixed.show-hide {
  background-color: var(--headerBackgroundColor);
}

.header-2-1 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-2-1 .shape {
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 991px) {
  .header-2-1 .shape {
    width: 23px;
    height: 23px;
  }
}
.header-2-1 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-2-1 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}
@media screen and (max-width: 991px) {
  .header-2-1 .container {
    max-width: 100%;
    padding: 0;
  }
}
.header-2-1 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-2-1 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-2-1 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-2-1 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-2-1 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-2-1 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-2-1 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-2-1 .header-top .container {
  padding: 0 1em;
}
.header-2-1 .header-top a {
  color: inherit;
}
.header-2-1 .header-top a:hover {
  opacity: 0.7;
}
.header-2-1 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-2-1 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-2-1 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-2-1 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-2-1 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-2-1 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-2-1 .header-top .top-side-menu a .shape {
  width: 20px;
  width: 20px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-2-1 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-2-1 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-2-1 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-2-1 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-2-1 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.7em 0;
  position: relative;
}
.header-2-1 .header-action .mobile-menu,
.header-2-1 .header-action .menu-opener {
  display: none;
}
.header-2-1 .header-action .container {
  position: relative;
}
@media screen and (max-width: 991px) {
  .header-2-1 .header-action .container {
    padding: 0;
  }
  .header-2-1 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-2-1 .header-action .mobile-menu .menu-opener,
.header-2-1 .header-action .mobile-menu .search-opener {
    font-size: 1.6em;
    padding: 0.3em;
    display: block;
  }
}
.header-2-1 .header-action svg {
  color: var(--iconColor);
  transition: color 0.2s;
}
.header-2-1 .header-action .top-side-menu {
  border-right: 1px solid rgba(var(--mainMenuTextColor), 50%);
}
.header-2-1 .header-action .top-side-menu:last-child {
  border: none;
}
.header-2-1 .header-action .top-side-menu li a {
  display: block;
  font-size: 1em;
  padding: 0.3em 0.7em;
}
.header-2-1 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-2-1 .header-action .mobile-menu {
    display: flex;
  }
}
.header-2-1 .header-action .site-search {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  left: 0;
  background-color: var(--headerBackgroundColor);
  padding: 0 16px;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .header-2-1 .header-action .site-search.in-menu {
    display: none !important;
  }
}
.header-2-1 .header-action .site-search.opened {
  display: flex;
}
.header-2-1 .header-action .site-search.opened .search-closer {
  display: block;
}
.header-2-1 .header-action .site-search .search-closer {
  display: none;
}
.header-2-1 .header-action .site-search form {
  width: 100%;
}
.header-2-1 .header-action .site-search .search-input {
  display: inline-flex;
  width: 100%;
  display: block;
  width: 100%;
  align-self: center;
}
.header-2-1 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-2-1 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-2-1 .header-action .site-search .search-input .f-row input::-moz-placeholder {
  color: rgba(var(--iconColor), 50%) !important;
}
.header-2-1 .header-action .site-search .search-input .f-row input::placeholder {
  color: rgba(var(--iconColor), 50%) !important;
}
.header-2-1 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
}
@media screen and (max-width: 991px) {
  .header-2-1 .header-action .site-search .search-input .f-row button {
    margin-right: 1em;
  }
}
.header-2-1 .header-action .site-search .search-input .f-row button svg {
  position: relative;
  margin: 0;
}
.header-2-1 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.header-2-1 .header-action .logo a {
  display: inline-block;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-2-1 .header-action .logo img {
  max-width: 100%;
}
.header-2-1 .header-action .logo.mobile-logo {
  display: none;
}
.header-2-1 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header-2-1 .header-action .user-menu .search-opener {
    display: none !important;
  }
}
.header-2-1 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-2-1 .header-action .user-menu a {
    padding: 0.3em;
  }
}
.header-2-1 .header-action .user-menu a .um-info {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  display: none;
}
.header-2-1 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-2-1 .header-action .user-menu a .um-info span.bt {
  font-size: 0.9em;
  white-space: nowrap;
}
.header-2-1 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-2-1 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-2-1 .header-action .user-menu a:hover {
  color: var(--generalPrimaryColor);
}
.header-2-1 .header-action .user-menu a:hover svg {
  fill: var(--generalPrimaryColor);
}
.header-2-1 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
}
.header-2-1 .header-action .user-menu .user-menu-item .languge-list .language-item {
  outline: none !important;
  position: relative;
}
.header-2-1 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-2-1 .header-action .user-menu .user-menu-item .languge-list .language-item.current .shape.down {
  width: 10px;
  height: 10px;
  transform: translateY(2px);
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.header-2-1 .header-action .user-menu .user-menu-item .languge-list .language-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  width: 60px;
  padding: 0.4em 0;
}
.header-2-1 .header-action .user-menu .user-menu-item .languge-list .language-item ul a {
  justify-content: end;
  padding: 0.7em 1em !important;
}
.header-2-1 .header-action .user-menu .user-menu-item .languge-list .language-item:hover > ul, .header-2-1 .header-action .user-menu .user-menu-item .languge-list .language-item:focus > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.header-2-1 .header-action .user-menu .login {
  position: relative;
}
.header-2-1 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-2-1 .header-action .user-menu .login .account-menu ul {
  padding: 0.4em 0;
}
.header-2-1 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em !important;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-2-1 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-2-1 .header-action .user-menu .cart {
  position: relative;
}
.header-2-1 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-2-1 .header-action .user-menu .cart .bt {
  margin-top: 5px;
}
.header-2-1 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--iconColor);
  color: var(--headerBackgroundColor);
  bottom: -6px;
  font-size: 60%;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}
.header-2-1 .header-action .user-menu .site-search .f-row button {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-2-1 .header-action .search-opener {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  align-items: center;
  position: relative;
  transition: color 0.2s;
  display: flex !important;
}
.header-2-1 .header-action .search-opener svg {
  fill: var(--iconColor);
}
.header-2-1 .header-navigation {
  background-color: transparent;
}
.header-2-1 .header-navigation .menu-header {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .header-2-1 .header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
  }
  .header-2-1 .header-navigation .menu-header .site-search {
    background-color: var(--mainMenuBackgroundColor);
    padding: 0;
  }
  .header-2-1 .header-navigation .menu-header .site-search .f-row {
    padding-top: 0;
  }
  .header-2-1 .header-navigation .menu-header .site-search input {
    color: var(--mainMenuTextColor) !important;
  }
  .header-2-1 .header-navigation .menu-header .site-search button svg {
    fill: var(--mainMenuTextColor) !important;
  }
}
.header-2-1 .header-navigation nav .container {
  position: static;
}
.header-2-1 .header-navigation nav .navigation-list {
  justify-content: flex-start;
}
.header-2-1 .header-navigation nav .navigation-list > li > a {
  display: block;
  padding: 1em;
  color: var(--iconColor);
  font-size: 1em;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 991px) {
  .header-2-1 .header-navigation nav .navigation-list > li > a {
    color: var(--mainMenuTextColor) !important;
  }
}
.header-2-1 .header-navigation nav .navigation-list > li .dropmenu {
  transform: translateX(0);
  inset-inline-start: 0;
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: top 0.2s ease-in-out;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-3.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-3.fixed .header-navigation,
#home .header-3.fixed .header-action {
  background-color: transparent;
}
#home .header-3.fixed.nav-hide, #home .header-3.fixed.show-hide {
  background-color: var(--headerBackgroundColor);
}

.header-3 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-3.nav-hide, .header-3.show-hide {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  background-color: var(--headerBackgroundColor);
}
.header-3.nav-hide .header-navigation, .header-3.show-hide .header-navigation {
  background-color: var(--mainMenuBackgroundColor);
}
@media screen and (max-width: 991px) {
  .header-3 {
    top: 0 !important;
  }
  .header-3.nav-hide {
    top: 0 !important;
  }
}
.header-3 .header-attention-bar {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 991px) {
  .header-3 .header-attention-bar {
    display: none;
  }
}
.header-3 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-3 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-3 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-3 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-3 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-3 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-3 .header-top a {
  color: inherit;
}
.header-3 .header-top a:hover {
  opacity: 0.7;
}
.header-3 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-3 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-3 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-3 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-3 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-3 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-3 .header-top .top-side-menu a .shape {
  width: 18px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-3 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-3 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-3 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-3 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-3 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1.1em 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header-3 .header-action {
    padding: 1.1em 0;
  }
}
.header-3 .header-action .mobile-menu,
.header-3 .header-action .menu-opener,
.header-3 .header-action .search-opener {
  display: none;
}
@media screen and (max-width: 767px) {
  .header-3 .header-action .mobile-menu {
    display: flex;
  }
  .header-3 .header-action .mobile-menu .menu-opener,
.header-3 .header-action .mobile-menu .search-opener {
    font-size: 1.6em;
    padding: 0.5em;
    display: inline-flex;
  }
}
.header-3 .header-action .site-search {
  position: relative;
  z-index: 0;
  width: 100%;
}
@media screen and (max-width: 671px) {
  .header-3 .header-action .site-search {
    position: absolute;
    display: none;
    z-index: 0;
    width: 100%;
    top: 0;
    height: 100%;
    left: 0;
    background-color: var(--headerBackgroundColor);
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
  .header-3 .header-action .site-search button {
    min-height: 3em;
  }
  .header-3 .header-action .site-search.opened {
    display: flex;
  }
  .header-3 .header-action .site-search.opened .search-closer {
    display: block;
    -webkit-margin-end: 1em;
            margin-inline-end: 1em;
  }
  .header-3 .header-action .site-search .search-opener {
    display: block;
  }
  .header-3 .header-action .site-search .search-menu {
    display: none;
  }
  .header-3 .header-action .site-search .search-input {
    border: none;
  }
}
.header-3 .header-action .site-search .search-menu {
  padding: 0 0 0.6em 0;
  position: absolute;
  bottom: 100%;
}
.header-3 .header-action .site-search .search-menu li a {
  color: inherit;
  font-size: 0.8em;
  display: block;
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
}
.header-3 .header-action .site-search .search-input {
  display: inline-flex;
  width: 100%;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .header-3 .header-action .site-search .search-input {
    display: block;
    width: 100%;
    align-self: center;
  }
}
.header-3 .header-action .site-search .search-input form {
  width: 100%;
}
.header-3 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
  width: 100%;
}
.header-3 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0 1em;
}
@media screen and (max-width: 767px) {
  .header-3 .header-action .site-search .search-input .f-row input {
    height: 36px !important;
  }
}
.header-3 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
}
.header-3 .header-action .site-search .search-input .f-row button svg {
  fill: var(--generalTextColor);
}
.header-3 .header-action .logo {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .header-3 .header-action .logo {
    padding-right: 0;
  }
  .header-3 .header-action .logo a img {
    max-width: 100%;
  }
}
.header-3 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header-3 .header-action .user-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.4em;
    justify-content: space-around;
    background-color: var(--boxBackgroundColor);
    align-items: center;
    border-top: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  }
  .header-3 .header-action .user-menu .wishlist,
.header-3 .header-action .user-menu .home-page,
.header-3 .header-action .user-menu .menu-opener {
    display: block;
  }
  .header-3 .header-action .user-menu .shape {
    width: 20px;
    height: 20px;
  }
  .header-3 .header-action .user-menu .shape svg {
    fill: var(--generalTextColor);
  }
  .header-3 .header-action .user-menu .user-menu-item.cart .um-info {
    display: block !important;
  }
}
.header-3 .header-action .user-menu .home-page {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-3 .header-action .user-menu .home-page {
    display: block;
  }
}
.header-3 .header-action .user-menu a,
.header-3 .header-action .user-menu .search-opener {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-3 .header-action .user-menu a,
.header-3 .header-action .user-menu .search-opener {
    padding: 0.5em;
  }
}
.header-3 .header-action .user-menu a:hover,
.header-3 .header-action .user-menu .search-opener:hover {
  color: var(--iconHoverColor);
}
.header-3 .header-action .user-menu .um-info {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  color: var(--iconTextColor);
}
@media screen and (max-width: 991px) {
  .header-3 .header-action .user-menu .um-info {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
.header-3 .header-action .user-menu .um-info span {
  color: inherit;
  display: block;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-3 .header-action .user-menu .um-info span.bt {
  font-size: 0.9em;
}
@media screen and (max-width: 1120px) {
  .header-3 .header-action .user-menu .um-info span.bt {
    display: none;
  }
}
.header-3 .header-action .user-menu .um-info span.st {
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 1120px) {
  .header-3 .header-action .user-menu .um-info span.st {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .header-3 .header-action .user-menu .um-info span.mt {
    display: block;
    font-size: 10px;
    color: var(--generalTextColor);
  }
}
@media screen and (min-width: 992px) {
  .header-3 .header-action .user-menu .um-info span.mt {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .header-3 .header-action .user-menu .user-menu-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.header-3 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-3 .header-action .user-menu a {
  color: var(--iconColor);
}
@media screen and (max-width: 991px) {
  .header-3 .header-action .user-menu a {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.header-3 .header-action .user-menu .login {
  position: relative;
}
.header-3 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  right: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: var(--generalBorderRadius);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-3 .header-action .user-menu .login .account-menu ul {
  padding: 0.4em 0;
}
.header-3 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  color: var(--generalTextColor);
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-3 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-3 .header-action .user-menu .cart {
  position: relative;
  z-index: 1;
}
.header-3 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-3 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--generalPrimaryColor);
  color: var(--bodyBackgroundColor);
  top: -4px;
  font-size: 50%;
  right: -3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
}
@media screen and (min-width: 992px) {
  .header-3 .header-action .user-menu .cart .um-info,
.header-3 .header-action .user-menu .cart .um-info .bt,
.header-3 .header-action .user-menu .cart .um-info .st {
    display: block !important;
  }
}
.header-3 .header-navigation {
  height: 100%;
  background-color: var(--mainMenuBackgroundColor);
}
@media screen and (min-width: 671px) and (max-width: 991px) {
  .header-3 .header-navigation {
    left: -50% !important;
  }
}
@media screen and (max-width: 991px) {
  .header-3 .header-navigation {
    position: fixed;
    height: 100%;
    top: 0;
    background-color: var(--mainMenuBackgroundColor) !important;
    transition: left 0.4s;
    z-index: 1;
    overflow: hidden;
  }
  .header-3 .header-navigation .container {
    position: unset !important;
    padding: 0 !important;
  }
  .header-3 .header-navigation.opened {
    left: 0 !important;
  }
  .header-3 .header-navigation .menu-title {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
  }
  .header-3 .header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
  }
  .header-3 .header-navigation nav ul.navigation-list {
    display: block;
  }
  .header-3 .header-navigation nav ul.navigation-list > li {
    display: list-item;
    height: auto;
    position: unset;
  }
  .header-3 .header-navigation nav ul.navigation-list > li.with-image > a {
    padding: 0;
    display: flex;
    align-items: center;
  }
  .header-3 .header-navigation nav ul.navigation-list > li.with-image > a .nav-main-item-banner {
    margin-right: 1em;
    display: block !important;
  }
  .header-3 .header-navigation nav ul.navigation-list > li > .dropmenu {
    height: 100%;
    width: 100%;
    top: 0 !important;
    margin-top: 0 !important;
    position: absolute !important;
    display: block;
    visibility: visible;
    opacity: 1;
    padding: 0;
    left: auto !important;
    right: -600px;
    transform: translateX(0);
    transition: all 0.4s ease;
    transition-delay: 0s !important;
    background-color: var(--mainMenuBackgroundColor);
  }
  .header-3 .header-navigation nav ul.navigation-list > li > .dropmenu .menu-title {
    align-items: center;
  }
  .header-3 .header-navigation nav ul.navigation-list > li > .dropmenu.medium .nav-banner-item {
    display: none !important;
  }
  .header-3 .header-navigation nav ul.navigation-list > li > .dropmenu > .container {
    display: block;
    height: 100%;
  }
  .header-3 .header-navigation nav ul.navigation-list > li > .dropmenu ul {
    transition: all 0.3s;
    background-color: var(--mainMenuBackgroundColor);
    padding: 0 1em;
  }
  .header-3 .header-navigation nav ul.navigation-list > li > .dropmenu ul.first-child {
    display: block !important;
    -moz-column-count: unset !important;
         column-count: unset !important;
  }
  .header-3 .header-navigation nav ul.navigation-list > li > .dropmenu ul li {
    margin: 0 !important;
    width: 100%;
    min-width: 100%;
  }
  .header-3 .header-navigation nav ul.navigation-list > li > .dropmenu ul li a {
    display: block;
    font-size: 1em;
    margin: 0 !important;
    padding: 0.7em 0 !important;
    font-weight: normal !important;
  }
  .header-3 .header-navigation nav ul.navigation-list > li > .dropmenu ul .sub-child {
    visibility: visible;
    opacity: 1;
    left: auto;
    right: -600px;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    margin-top: 0;
    z-index: 1;
  }
  .header-3 .header-navigation nav ul.navigation-list > li > .dropmenu > ul {
    -moz-columns: unset;
         columns: unset;
    width: 100%;
    background-color: inherit;
  }
  .header-3 .header-navigation nav ul.navigation-list .current .dropmenu, .header-3 .header-navigation nav ul.navigation-list .current > .sub-child {
    right: 0 !important;
    z-index: 1;
  }
}
.header-3 .header-navigation .side-login {
  display: none;
}
.header-3 .header-navigation .side-social-links {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-3 .header-navigation .side-social-links {
    display: block;
  }
}
.header-3 .header-navigation .side-social-links ul li a {
  display: flex;
  align-items: center;
}
.header-3 .header-navigation .side-social-links ul li a .shape {
  margin-right: 0.5em;
}
.header-3 .header-navigation .menu-header,
.header-3 .header-navigation .menu-title,
.header-3 .header-navigation .nav-main-item-banner {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .header-3 .header-navigation .menu-header,
.header-3 .header-navigation .menu-title,
.header-3 .header-navigation .nav-main-item-banner {
    display: flex !important;
  }
}
.header-3 .shape {
  width: 29px;
  height: 29px;
  display: inline-flex;
}
.header-3 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-3 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}
.header-3 ~ #single-product-detail .product-action.lite-header-off {
  bottom: 56px !important;
}
.header-3 ~ .bottom-actions .whatsapp-button {
  transform: translateY(-120px) !important;
}
.header-3 ~ .bottom-actions .go-to-top {
  transform: translateY(-120px) !important;
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: top 0.2s ease-in-out;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-3-1.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-3-1.fixed .header-navigation,
#home .header-3-1.fixed .header-action {
  background-color: transparent;
}
#home .header-3-1.fixed.nav-hide, #home .header-3-1.fixed.show-hide {
  background-color: var(--headerBackgroundColor);
}

.header-3-1 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-3-1.nav-hide, .header-3-1.show-hide {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  background-color: var(--headerBackgroundColor);
}
.header-3-1.nav-hide .header-navigation, .header-3-1.show-hide .header-navigation {
  background-color: var(--mainMenuBackgroundColor);
}
@media screen and (max-width: 991px) {
  .header-3-1 {
    top: 0 !important;
  }
  .header-3-1.nav-hide {
    top: 0 !important;
  }
  .header-3-1 .header-action {
    padding-bottom: 0 !important;
  }
}
@media screen and (min-width: 991px) {
  .header-3-1.page-up .header-action {
    display: none;
  }
  .header-3-1.page-down .header-action {
    display: block;
  }
}
.header-3-1 .header-attention-bar {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 991px) {
  .header-3-1 .header-attention-bar {
    /*display: none;*/
  }
}
.header-3-1 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-3-1 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-3-1 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-3-1 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-3-1 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-3-1 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-3-1 .header-top a {
  color: inherit;
}
.header-3-1 .header-top a:hover {
  opacity: 0.7;
}
.header-3-1 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-3-1 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-3-1 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-3-1 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-3-1 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-3-1 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-3-1 .header-top .top-side-menu a .shape {
  width: 18px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-3-1 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-3-1 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-3-1 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-3-1 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-3-1 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.7em 0 0.7em;
  position: relative;
}
@media screen and (max-width: 991px) {
  .header-3-1 .header-action {
    padding: 0.6em 0;
  }
}
.header-3-1 .header-action .mobile-menu,
.header-3-1 .header-action .menu-opener,
.header-3-1 .header-action .search-opener {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-3-1 .header-action .mobile-menu {
    display: flex;
    align-items: center;
    padding: 0 0.6em;
  }
  .header-3-1 .header-action .mobile-menu .menu-opener,
.header-3-1 .header-action .mobile-menu .search-opener {
    padding: 0.5em;
    display: inline-flex;
  }
  .header-3-1 .header-action .mobile-menu .logo {
    display: inline-flex;
  }
  .header-3-1 .header-action .mobile-menu .logo a img {
    max-width: 154px;
    width: unset;
  }
}
.header-3-1 .header-action .site-search {
  position: relative;
  width: 100%;
  -webkit-margin-start: 1.2em;
          margin-inline-start: 1.2em;
}
.header-3-1 .header-action .site-search .search-closer {
  display: none;
}
.header-3-1 .header-action .site-search.mobile-search {
  display: none;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
@media screen and (max-width: 991px) {
  .header-3-1 .header-action .site-search {
    display: block;
    order: 4;
    width: 100%;
    top: 0;
    height: auto;
    left: 0;
    padding: 0 1em;
  }
  .header-3-1 .header-action .site-search .search-menu {
    display: none;
  }
  .header-3-1 .header-action .site-search.mobile-search {
    display: block;
    padding: 0.5em 1em 0.6em 1em;
  }
}
.header-3-1 .header-action .site-search .search-menu {
  padding: 0 0 0.6em 0;
  position: absolute;
  bottom: 100%;
}
.header-3-1 .header-action .site-search .search-menu li a {
  color: inherit;
  font-size: 0.8em;
  display: block;
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
}
.header-3-1 .header-action .site-search .search-input {
  display: inline-flex;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .header-3-1 .header-action .site-search .search-input {
    display: block;
    width: 100%;
    align-self: center;
  }
}
.header-3-1 .header-action .site-search .search-input form {
  width: 100%;
}
.header-3-1 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
  width: 100%;
}
.header-3-1 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 0px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0 1em;
}
.header-3-1 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
}
@media screen and (max-width: 991px) {
  .header-3-1 .header-action .site-search .search-input .f-row button {
    min-height: 2.4em;
  }
}
.header-3-1 .header-action .site-search .search-input .f-row button svg {
  fill: var(--generalTextColor) !important;
}
@media screen and (max-width: 991px) {
  .header-3-1 .header-action .logo {
    display: none;
  }
  .header-3-1 .header-action .logo a {
    display: inline-flex;
  }
  .header-3-1 .header-action .logo + .site-search {
    display: none;
  }
}
.header-3-1 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}
.header-3-1 .header-action .user-menu a,
.header-3-1 .header-action .user-menu .search-opener {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-3-1 .header-action .user-menu a,
.header-3-1 .header-action .user-menu .search-opener {
    padding: 0.5em;
  }
}
.header-3-1 .header-action .user-menu a:hover,
.header-3-1 .header-action .user-menu .search-opener:hover {
  color: var(--generalPrimaryColor);
}
.header-3-1 .header-action .user-menu .um-info {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  color: var(--iconTextColor);
}
@media screen and (max-width: 991px) {
  .header-3-1 .header-action .user-menu .um-info {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
.header-3-1 .header-action .user-menu .um-info span {
  color: inherit;
  display: block;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-3-1 .header-action .user-menu .um-info span.bt {
  font-size: 0.9em;
}
@media screen and (max-width: 1120px) {
  .header-3-1 .header-action .user-menu .um-info span.bt {
    display: none;
  }
}
.header-3-1 .header-action .user-menu .um-info span.st {
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 1120px) {
  .header-3-1 .header-action .user-menu .um-info span.st {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .header-3-1 .header-action .user-menu .user-menu-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.header-3-1 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-3-1 .header-action .user-menu a {
  color: var(--iconColor);
}
@media screen and (max-width: 991px) {
  .header-3-1 .header-action .user-menu a {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.header-3-1 .header-action .user-menu .login {
  position: relative;
}
.header-3-1 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  right: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: var(--generalBorderRadius);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-3-1 .header-action .user-menu .login .account-menu ul {
  padding: 0.4em 0;
}
.header-3-1 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  color: var(--generalTextColor);
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-3-1 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-3-1 .header-action .user-menu .cart {
  position: relative;
  z-index: 1;
}
.header-3-1 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-3-1 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--generalPrimaryColor);
  color: var(--bodyBackgroundColor);
  top: -4px;
  font-size: 50%;
  right: -3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
}
@media screen and (min-width: 992px) {
  .header-3-1 .header-action .user-menu .cart .um-info,
.header-3-1 .header-action .user-menu .cart .um-info .bt,
.header-3-1 .header-action .user-menu .cart .um-info .st {
    display: block !important;
  }
}
.header-3-1 .header-navigation {
  height: 100%;
  background-color: var(--mainMenuBackgroundColor);
}
@media screen and (min-width: 671px) and (max-width: 991px) {
  .header-3-1 .header-navigation {
    left: -50% !important;
  }
}
@media screen and (max-width: 991px) {
  .header-3-1 .header-navigation {
    position: fixed;
    height: 100%;
    top: 0;
    background-color: var(--mainMenuBackgroundColor) !important;
    transition: left 0.4s;
    z-index: 1;
    overflow: hidden;
  }
  .header-3-1 .header-navigation .container {
    position: unset !important;
    padding: 0 !important;
  }
  .header-3-1 .header-navigation.opened {
    left: 0 !important;
  }
  .header-3-1 .header-navigation .menu-title {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
  }
  .header-3-1 .header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
  }
  .header-3-1 .header-navigation nav ul.navigation-list {
    display: block;
  }
  .header-3-1 .header-navigation nav ul.navigation-list > li {
    display: list-item;
    height: auto;
    position: unset;
  }
  .header-3-1 .header-navigation nav ul.navigation-list > li.with-image > a {
    padding: 0;
    display: flex;
    align-items: center;
  }
  .header-3-1 .header-navigation nav ul.navigation-list > li.with-image > a .nav-main-item-banner {
    -webkit-margin-end: 1em;
            margin-inline-end: 1em;
    display: block !important;
  }
  .header-3-1 .header-navigation nav ul.navigation-list > li > .dropmenu {
    height: 100%;
    width: 100%;
    top: 0 !important;
    margin-top: 0 !important;
    position: absolute !important;
    display: block;
    visibility: visible;
    opacity: 1;
    padding: 0;
    left: auto !important;
    right: -600px;
    transform: translateX(0);
    transition: all 0.4s ease;
    transition-delay: 0s !important;
    background-color: var(--mainMenuBackgroundColor);
  }
  .header-3-1 .header-navigation nav ul.navigation-list > li > .dropmenu .menu-title {
    align-items: center;
  }
  .header-3-1 .header-navigation nav ul.navigation-list > li > .dropmenu.medium .nav-banner-item {
    display: none !important;
  }
  .header-3-1 .header-navigation nav ul.navigation-list > li > .dropmenu > .container {
    display: block;
    height: 100%;
  }
  .header-3-1 .header-navigation nav ul.navigation-list > li > .dropmenu ul {
    transition: all 0.3s;
    background-color: var(--mainMenuBackgroundColor);
    padding: 0 1em;
  }
  .header-3-1 .header-navigation nav ul.navigation-list > li > .dropmenu ul.first-child {
    display: block !important;
    -moz-column-count: unset !important;
         column-count: unset !important;
  }
  .header-3-1 .header-navigation nav ul.navigation-list > li > .dropmenu ul li {
    margin: 0 !important;
    width: 100%;
    min-width: 100%;
  }
  .header-3-1 .header-navigation nav ul.navigation-list > li > .dropmenu ul li a {
    display: block;
    font-size: 1em;
    margin: 0 !important;
    padding: 0.7em 0 !important;
    font-weight: normal !important;
  }
  .header-3-1 .header-navigation nav ul.navigation-list > li > .dropmenu ul .sub-child {
    visibility: visible;
    opacity: 1;
    left: auto;
    right: -600px;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    margin-top: 0;
    z-index: 1;
  }
  .header-3-1 .header-navigation nav ul.navigation-list > li > .dropmenu > ul {
    -moz-columns: unset;
         columns: unset;
    width: 100%;
    background-color: inherit;
  }
  .header-3-1 .header-navigation nav ul.navigation-list .current .dropmenu, .header-3-1 .header-navigation nav ul.navigation-list .current > .sub-child {
    right: 0 !important;
    z-index: 1;
  }
}
.header-3-1 .header-navigation nav {
  max-height: 100%;
}
.header-3-1 .header-navigation nav .container {
  position: relative;
}
.header-3-1 .header-navigation nav .hidden-link-wrapper {
  position: absolute;
  right: 0;
}
.header-3-1 .header-navigation nav .navigation-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.header-3-1 .header-navigation nav .navigation-list > li {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
}
.header-3-1 .header-navigation nav .navigation-list > li.has-large, .header-3-1 .header-navigation nav .navigation-list > li.has-medium {
  position: unset;
}
.header-3-1 .header-navigation nav .navigation-list > li > a {
  display: block;
  padding-inline: 1em;
  padding-block: 1em;
  color: var(--mainMenuTextColor);
  font-size: 1em;
}
@media screen and (min-width: 992px) {
  .header-3-1 .header-navigation nav .navigation-list > li:first-child a {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu {
  opacity: 0;
  visibility: hidden;
  margin-top: -10px;
  position: absolute;
  top: 100%;
  background-color: var(--bodyBackgroundColor);
  padding: 1.6em 0.6em;
  z-index: 1;
  min-width: 200px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  display: flex;
  transition-delay: 0.3s;
  border-bottom-left-radius: var(--generalBorderRadius);
  border-bottom-right-radius: var(--generalBorderRadius);
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu ul li a {
  font-size: 1em;
  color: var(--generalTextColor);
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu > .container {
  display: flex;
  justify-content: space-between;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu .nav-banner {
  padding-left: 1em;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu .nav-banner .nav-banner-item {
  width: 100%;
  margin-top: 1em;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu .nav-banner .nav-banner-item:first-child {
  margin-top: 0;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.small {
  font-size: unset;
}
@media screen and (min-width: 769px) {
  .header-3-1 .header-navigation nav .navigation-list > li .dropmenu.small {
    padding: 0;
    border-radius: 0 0 var(--generalBorderRadius) var(--generalBorderRadius);
  }
  .header-3-1 .header-navigation nav .navigation-list > li .dropmenu.small .first-child {
    width: 100%;
  }
  .header-3-1 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li {
    position: relative;
  }
  .header-3-1 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li a {
    display: block;
    padding: 1em;
    font-size: 1em;
  }
  .header-3-1 .header-navigation nav .navigation-list > li .dropmenu.small .first-child ul {
    background-color: var(--bodyBackgroundColor);
    position: absolute;
    opacity: 0;
    left: 80%;
    display: none;
    top: 0;
    visibility: hidden;
    border-radius: var(--generalBorderRadius);
    border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  }
  .header-3-1 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li:hover {
    background-color: rgba(var(--rgbGeneralTextColor), 0.15);
  }
  .header-3-1 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li:hover > ul {
    width: 100%;
    transition-delay: 1s;
    display: block;
    opacity: 1;
    visibility: visible;
    left: 90%;
    -webkit-animation-name: smallSubMenu;
            animation-name: smallSubMenu;
    -webkit-animation-duration: 0.3s;
            animation-duration: 0.3s;
  }
  @-webkit-keyframes smallSubMenu {
    0% {
      left: 80%;
      opacity: 0;
      visibility: hidden;
    }
    100% {
      left: 90%;
      opacity: 1;
      visibility: visible;
    }
  }
  @keyframes smallSubMenu {
    0% {
      left: 80%;
      opacity: 0;
      visibility: hidden;
    }
    100% {
      left: 90%;
      opacity: 1;
      visibility: visible;
    }
  }
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.medium {
  max-width: 100%;
  inset-inline-start: 0;
  transform: unset;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.medium .container {
  margin: 0 !important;
  max-width: 100% !important;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child {
  -moz-column-count: var(--mediumMenuColumn);
       column-count: var(--mediumMenuColumn);
  -moz-column-gap: 1em;
       column-gap: 1em;
  -moz-column-break-after: avoid-column;
       break-after: avoid-column;
  width: 100%;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li {
  min-width: 200px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  display: flex;
  flex-direction: column;
  margin: 0 0.5em;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li .nav-banner-item {
  width: 100%;
  margin-bottom: 1.2em;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li .nav-banner-item img {
  width: 100%;
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li .first-cihld-name {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li > li ul {
  height: 50%;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li > li ul li a {
  font-size: 0.8em;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.large {
  position: absolute;
  inset-inline-start: 0;
  width: 100%;
  top: 100%;
  transform: translateX(0);
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul {
  -moz-column-count: var(--largeMenuColumn);
       column-count: var(--largeMenuColumn);
  -moz-column-gap: 1em;
       column-gap: 1em;
  -moz-column-break-after: avoid-column;
       break-after: avoid-column;
  max-width: 100%;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul > li {
  margin-bottom: 1em;
  min-width: 200px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul > li .first-cihld-name {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul > li > a {
  font-weight: 600;
  color: var(--generalTextColor);
  font-size: 1em;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.large .nav-banner {
  -moz-column-count: var(--largeMenuBannerColumn);
       column-count: var(--largeMenuBannerColumn);
  -moz-column-gap: 1em;
       column-gap: 1em;
  max-width: 60%;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu.large .nav-banner img {
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--generalBorderRadius);
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu > .container > ul > li {
  min-width: 200px;
}
.header-3-1 .header-navigation nav .navigation-list > li .dropmenu > .container > ul > li a {
  display: block;
  padding: 0.3em 0;
}
.header-3-1 .header-navigation nav .navigation-list > li > .dropmenu {
  z-index: -1;
}
.header-3-1 .header-navigation nav .navigation-list > li:hover > a {
  color: var(--generalPrimaryColor);
}
.header-3-1 .header-navigation nav .navigation-list > li:hover > .dropmenu {
  transition: all 0.2s;
  transition-delay: 0.3s;
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.header-3-1 .header-navigation nav .navigation-list > li:hover > .dropmenu li a {
  color: var(--generalTextColor);
}
.header-3-1 .header-navigation nav .navigation-list > li:hover > .dropmenu li:hover > a {
  opacity: 0.7;
}
.header-3-1 .header-navigation .side-login {
  display: none;
}
.header-3-1 .header-navigation .side-social-links {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-3-1 .header-navigation .side-social-links {
    display: block;
  }
}
.header-3-1 .header-navigation .side-social-links ul li a {
  display: flex;
  align-items: center;
}
.header-3-1 .header-navigation .side-social-links ul li a .shape {
  margin-right: 0.5em;
}
.header-3-1 .header-navigation .menu-header,
.header-3-1 .header-navigation .menu-title,
.header-3-1 .header-navigation .nav-main-item-banner {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .header-3-1 .header-navigation .menu-header,
.header-3-1 .header-navigation .menu-title,
.header-3-1 .header-navigation .nav-main-item-banner {
    display: flex !important;
  }
}
.header-3-1 .shape {
  width: 29px;
  height: 29px;
  display: inline-flex;
}
@media screen and (max-width: 991px) {
  .header-3-1 .shape {
    width: 24px;
    height: 24px;
  }
}
.header-3-1 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 991px) {
  .header-3-1 .shape svg {
    fill: var(--iconTextColor);
  }
}
.header-3-1 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}

.header-navigation .site-search button {
  padding-left: 0;
}
.header-navigation .site-search .shape svg {
  fill: var(--iconColor) !important;
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: top 0.2s ease-in-out;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-4.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-4.fixed .header-navigation,
#home .header-4.fixed .header-action {
  background-color: transparent;
}
#home .header-4.fixed.nav-hide, #home .header-4.fixed.show-hide {
  background-color: var(--headerBackgroundColor) !important;
}

.header-4 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-4 .shape {
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 991px) {
  .header-4 .shape {
    width: 23px;
    height: 23px;
  }
}
.header-4 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-4 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}
@media screen and (max-width: 991px) {
  .header-4 .container {
    max-width: 100%;
  }
}
.header-4 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-4 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-4 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-4 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-4 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-4 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-4 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-4 .header-top .container {
  padding: 0 1em;
}
.header-4 .header-top a {
  color: inherit;
}
.header-4 .header-top a:hover {
  opacity: 0.7;
}
.header-4 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-4 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-4 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-4 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-4 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-4 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-4 .header-top .top-side-menu a .shape {
  width: 20px;
  width: 20px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-4 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-4 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-4 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-4 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-4 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.7em 0;
  position: relative;
}
.header-4 .header-action .shape {
  min-width: 28px;
  min-height: 28px;
}
.header-4 .header-action .mobile-menu,
.header-4 .header-action .menu-opener {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-4 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-4 .header-action .mobile-menu .menu-opener,
.header-4 .header-action .mobile-menu .search-opener {
    font-size: 1.6em;
    padding: 0.3em;
    display: block;
  }
}
.header-4 .header-action svg {
  color: var(--iconColor);
  transition: color 0.2s;
}
.header-4 .header-action .top-side-menu {
  border-right: 1px solid rgba(var(--mainMenuTextColor), 50%);
}
.header-4 .header-action .top-side-menu:last-child {
  border: none;
}
.header-4 .header-action .top-side-menu li a {
  display: block;
  font-size: 1em;
  padding: 0.3em 0.7em;
}
.header-4 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-4 .header-action .mobile-menu {
    display: flex;
  }
}
.header-4 .header-action .site-search {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  left: 0;
  background-color: var(--headerBackgroundColor);
  padding: 0 16px;
  z-index: 15;
}
.header-4 .header-action .site-search input {
  color: var(--iconColor);
}
.header-4 .header-action .site-search button svg {
  fill: var(--iconColor);
}
@media screen and (max-width: 991px) {
  .header-4 .header-action .site-search.in-menu {
    display: none !important;
  }
}
.header-4 .header-action .site-search.opened {
  display: flex;
}
.header-4 .header-action .site-search.opened .search-closer {
  display: block;
}
.header-4 .header-action .site-search .search-closer {
  display: none;
}
.header-4 .header-action .site-search form {
  width: 100%;
}
.header-4 .header-action .site-search .search-input {
  display: inline-flex;
  width: 100%;
  display: block;
  width: 100%;
  align-self: center;
}
.header-4 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-4 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-4 .header-action .site-search .search-input .f-row input::-moz-placeholder {
  color: rgba(var(--iconColor), 50%) !important;
}
.header-4 .header-action .site-search .search-input .f-row input::placeholder {
  color: rgba(var(--iconColor), 50%) !important;
}
.header-4 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
}
@media screen and (max-width: 991px) {
  .header-4 .header-action .site-search .search-input .f-row button {
    margin-right: 1em;
  }
}
.header-4 .header-action .site-search .search-input .f-row button svg {
  position: relative;
  margin: 0;
}
.header-4 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.header-4 .header-action .logo a {
  display: inline-block;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-4 .header-action .logo img {
  max-width: 100%;
}
.header-4 .header-action .logo.mobile-logo {
  display: none;
}
.header-4 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header-4 .header-action .user-menu .search-opener {
    display: none !important;
  }
}
.header-4 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em;
  font-size: 0.9em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-4 .header-action .user-menu a {
    padding: 0.3em;
  }
}
.header-4 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-4 .header-action .user-menu a .um-info span.bt {
  font-size: 0.9em;
  white-space: nowrap;
}
.header-4 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-4 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-4 .header-action .user-menu a:hover {
  color: var(--generalPrimaryColor);
}
.header-4 .header-action .user-menu a:hover svg {
  fill: var(--generalPrimaryColor);
}
.header-4 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
}
.header-4 .header-action .user-menu .user-menu-item .languge-list .language-item {
  outline: none !important;
  position: relative;
}
.header-4 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-4 .header-action .user-menu .user-menu-item .languge-list .language-item.current .shape.down {
  width: 10px;
  height: 10px;
  transform: translateY(2px);
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.header-4 .header-action .user-menu .user-menu-item .languge-list .language-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  width: 60px;
  padding: 0.4em 0;
}
.header-4 .header-action .user-menu .user-menu-item .languge-list .language-item ul a {
  justify-content: end;
  padding: 0.7em 1em !important;
}
.header-4 .header-action .user-menu .user-menu-item .languge-list .language-item:hover > ul, .header-4 .header-action .user-menu .user-menu-item .languge-list .language-item:focus > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.header-4 .header-action .user-menu .login {
  position: relative;
}
.header-4 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-4 .header-action .user-menu .login .account-menu ul {
  padding: 0.4em 0;
}
.header-4 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em !important;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-4 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-4 .header-action .user-menu .cart {
  position: relative;
}
.header-4 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-4 .header-action .user-menu .cart .bt {
  margin-top: 5px;
}
.header-4 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--iconColor);
  color: var(--headerBackgroundColor);
  bottom: -6px;
  font-size: 60%;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}
.header-4 .header-action .user-menu .site-search .f-row button {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-4 .header-action .search-opener {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  align-items: center;
  position: relative;
  transition: color 0.2s;
  display: flex;
}
.header-4 .header-action .search-opener .search-text {
  font-size: 0.8em;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--iconColor);
  padding-bottom: 0.2em;
  width: 170px;
}
.header-4 .header-action .search-opener .shape {
  -webkit-margin-end: 0.4em;
          margin-inline-end: 0.4em;
}
.header-4 .header-action .search-opener svg {
  fill: var(--iconColor);
}
.header-4 .header-navigation {
  height: 100%;
  background-color: transparent;
}
@media screen and (min-width: 671px) and (max-width: 991px) {
  .header-4 .header-navigation {
    left: -50% !important;
  }
}
.header-4 .header-navigation .desktop-menu {
  display: none;
}
@media screen and (min-width: 992px) {
  .header-4 .header-navigation .desktop-menu {
    display: block;
    position: relative;
    z-index: 10;
  }
  .header-4 .header-navigation nav {
    position: fixed;
    height: 100%;
    inset-inline-start: -100%;
    top: 0;
    background-color: var(--headerBackgroundColor) !important;
    transition: left 0.4s;
    z-index: 1;
    overflow: hidden;
    padding-top: 8em;
    width: 400px;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header-4 .header-navigation nav.opened {
    inset-inline-start: 0;
  }
}
@media screen and (min-width: 992px) and (max-height: 650px) {
  .header-4 .header-navigation nav > .container {
    max-height: 50%;
    overflow-y: auto;
  }
}
@media screen and (min-width: 992px) {
  .header-4 .header-navigation nav .navigation-list {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .header-4 .header-navigation nav .navigation-list > li {
    position: unset;
    width: 100%;
    transition: padding 0.2s ease-in-out;
  }
  .header-4 .header-navigation nav .navigation-list > li > a {
    font-size: 1.4em !important;
    padding: 0.4em 1em !important;
    width: 100%;
    color: var(--iconColor) !important;
    transition: padding 0.2s ease-in-out;
  }
  .header-4 .header-navigation nav .navigation-list > li > a span {
    background-color: var(--headerBackgroundColor) !important;
    position: relative;
    z-index: 1;
  }
  .header-4 .header-navigation nav .navigation-list > li:hover > a {
    -webkit-padding-start: 1.4em !important;
            padding-inline-start: 1.4em !important;
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu {
    width: 300px !important;
    left: 100% !important;
    z-index: 999 !important;
    transform: none !important;
    -webkit-padding-start: 1em !important;
            padding-inline-start: 1em !important;
    height: 100%;
    top: 0 !important;
    padding: 8em 0 2em 1.7em !important;
    position: relative;
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background-color: var(--headerBackgroundColor);
    z-index: -1;
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu ul {
    -moz-column-count: 1 !important;
         column-count: 1 !important;
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu ul li {
    margin-bottom: 0 !important;
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu ul li ul {
    -webkit-padding-start: 1em;
            padding-inline-start: 1em;
    -webkit-padding-before: 0.5em;
            padding-block-start: 0.5em;
    -webkit-padding-after: 0.8em;
            padding-block-end: 0.8em;
    font-size: 90%;
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu ul li ul li {
    opacity: 0.8 !important;
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu ul a {
    font-weight: normal !important;
    opacity: 1 !important;
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu .container {
    flex-direction: column;
    overflow: auto;
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu .nav-banner {
    margin-top: 1em;
    padding: 0 !important;
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu.large .nav-banner, .header-4 .header-navigation nav .navigation-list > li .dropmenu.medium .nav-banner {
    position: absolute;
    left: 120%;
    /* width: 100%; */
    overflow: hidden;
    width: 40vw;
    max-width: unset !important;
  }
  .header-4 .header-navigation nav .navigation-list > li.has-sub {
    width: 100%;
  }
  .header-4 .header-navigation nav .navigation-list > li.has-sub > a {
    position: relative !important;
    display: block;
    background-color: var(--headerBackgroundColor);
    z-index: 1;
  }
  .header-4 .header-navigation nav .navigation-list > li.has-sub > a span {
    position: relative;
    -webkit-padding-end: 2em;
            padding-inline-end: 2em;
    z-index: 2;
  }
  .header-4 .header-navigation nav .navigation-list > li.has-sub > a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--iconColor);
    position: absolute;
    top: 55%;
    left: 20%;
    transform: translateY(-50%);
    z-index: -1;
    transition: width 0.2s ease-in-out;
  }
  .header-4 .header-navigation nav .navigation-list > li.has-sub:focus {
    padding: 1em 0;
  }
  .header-4 .header-navigation nav .navigation-list > li.has-sub:focus > a {
    -webkit-padding-start: 1.4em !important;
            padding-inline-start: 1.4em !important;
    color: var(--generalSecondaryColor) !important;
  }
  .header-4 .header-navigation nav .navigation-list > li.has-sub:focus > a:after {
    width: 80%;
    opacity: 0.3;
  }
}
@media screen and (min-width: 992px) {
  .header-4 .header-navigation nav .side-social-links {
    display: block !important;
    padding: 1em 1.2em;
  }
  .header-4 .header-navigation nav .side-social-links ul li a {
    padding: 0.5em 0;
    color: var(--mainMenuTextColor);
  }
  .header-4 .header-navigation nav .side-social-links ul li svg {
    fill: var(--mainMenuTextColor);
  }
}
@media screen and (max-width: 991px) {
  .header-4 .header-navigation {
    position: fixed;
    height: 100%;
    top: 0;
    transition: left 0.4s;
    z-index: 1;
    overflow: hidden;
  }
  .header-4 .header-navigation .container {
    position: unset !important;
    padding: 0 !important;
  }
  .header-4 .header-navigation.opened {
    left: 0 !important;
  }
  .header-4 .header-navigation .menu-title {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
  }
  .header-4 .header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
  }
  .header-4 .header-navigation nav ul.navigation-list {
    display: block;
  }
  .header-4 .header-navigation nav ul.navigation-list > li {
    display: list-item;
    height: auto;
    position: unset;
  }
  .header-4 .header-navigation nav ul.navigation-list > li a {
    font-size: 1.2em !important;
  }
  .header-4 .header-navigation nav ul.navigation-list > li.with-image > a {
    padding: 0;
    display: flex;
    align-items: center;
  }
  .header-4 .header-navigation nav ul.navigation-list > li.with-image > a .nav-main-item-banner {
    -webkit-margin-start: 1em;
            margin-inline-start: 1em;
    display: block !important;
  }
  .header-4 .header-navigation nav ul.navigation-list > li > .dropmenu {
    height: 100%;
    width: 100%;
    top: 0 !important;
    margin-top: 0 !important;
    position: absolute !important;
    display: block;
    visibility: visible;
    opacity: 1;
    padding: 0;
    left: auto !important;
    right: -600px;
    transform: translateX(0);
    transition: all 0.4s ease;
    transition-delay: 0s !important;
    border-radius: 0 !important;
  }
  .header-4 .header-navigation nav ul.navigation-list > li > .dropmenu .menu-title {
    align-items: center;
  }
  .header-4 .header-navigation nav ul.navigation-list > li > .dropmenu.medium .nav-banner-item {
    display: none !important;
  }
  .header-4 .header-navigation nav ul.navigation-list > li > .dropmenu > .container {
    display: block;
    height: 100%;
  }
  .header-4 .header-navigation nav ul.navigation-list > li > .dropmenu ul {
    transition: all 0.3s;
    padding: 0 1em;
  }
  .header-4 .header-navigation nav ul.navigation-list > li > .dropmenu ul.first-child {
    display: block !important;
    -moz-column-count: unset !important;
         column-count: unset !important;
  }
  .header-4 .header-navigation nav ul.navigation-list > li > .dropmenu ul li {
    margin: 0 !important;
    width: 100%;
    min-width: 100%;
  }
  .header-4 .header-navigation nav ul.navigation-list > li > .dropmenu ul li a {
    display: block;
    font-size: 1.2em !important;
    margin: 0 !important;
    padding: 0.7em 0 !important;
    font-weight: normal !important;
    font-weight: normal;
  }
  .header-4 .header-navigation nav ul.navigation-list > li > .dropmenu ul .sub-child {
    visibility: visible;
    opacity: 1;
    left: auto;
    right: -600px;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    margin-top: 0;
    z-index: 1;
  }
  .header-4 .header-navigation nav ul.navigation-list > li > .dropmenu > ul {
    -moz-columns: unset;
         columns: unset;
    width: 100%;
    background-color: inherit;
  }
  .header-4 .header-navigation nav ul.navigation-list .current .dropmenu, .header-4 .header-navigation nav ul.navigation-list .current > .sub-child {
    right: 0 !important;
    z-index: 1;
    transform: unset !important;
  }
}
.header-4 .header-navigation nav {
  max-height: 100%;
}
.header-4 .header-navigation nav .container {
  position: unset;
  padding: 0;
}
.header-4 .header-navigation nav .hidden-link-wrapper {
  position: absolute;
  right: 0;
}
.header-4 .header-navigation nav .navigation-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.header-4 .header-navigation nav .navigation-list > li {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
}
.header-4 .header-navigation nav .navigation-list > li.has-large, .header-4 .header-navigation nav .navigation-list > li.has-medium {
  position: unset;
}
.header-4 .header-navigation nav .navigation-list > li > a {
  display: block;
  padding: 1em;
  color: var(--mainMenuTextColor);
  font-size: 1em;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu {
  opacity: 0;
  visibility: hidden;
  margin-top: -10px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bodyBackgroundColor);
  padding: 1.6em 0.6em;
  z-index: 1;
  min-width: 200px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  transition-delay: 0.3s;
  border-bottom-left-radius: var(--generalBorderRadius);
  border-bottom-right-radius: var(--generalBorderRadius);
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu ul li a {
  font-size: 1em;
  color: var(--generalTextColor);
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu > .container {
  display: flex;
  justify-content: space-between;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu .nav-banner {
  padding-left: 1em;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu .nav-banner .nav-banner-item {
  width: 100%;
  margin-top: 1em;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu .nav-banner .nav-banner-item:first-child {
  margin-top: 0;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.small {
  font-size: unset;
}
@media screen and (min-width: 769px) {
  .header-4 .header-navigation nav .navigation-list > li .dropmenu.small {
    padding: 0;
    border-radius: 0 0 var(--generalBorderRadius) var(--generalBorderRadius);
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu.small .first-child {
    width: 100%;
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li {
    position: relative;
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li a {
    display: block;
    padding: 1em;
    font-size: 1em;
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu.small .first-child ul {
    background-color: var(--bodyBackgroundColor);
    position: absolute;
    opacity: 0;
    left: 80%;
    display: none;
    top: 0;
    visibility: hidden;
    border-radius: var(--generalBorderRadius);
    border: 1px solid var(--boxBorderColor);
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li:hover {
    background-color: var(--boxBackgroundColor);
  }
  .header-4 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li:hover > ul {
    width: 100%;
    transition-delay: 1s;
    display: block;
    opacity: 1;
    visibility: visible;
    left: 90%;
    -webkit-animation-name: smallSubMenu;
            animation-name: smallSubMenu;
    -webkit-animation-duration: 0.3s;
            animation-duration: 0.3s;
  }
  @-webkit-keyframes smallSubMenu {
    0% {
      left: 80%;
      opacity: 0;
      visibility: hidden;
    }
    100% {
      left: 90%;
      opacity: 1;
      visibility: visible;
    }
  }
  @keyframes smallSubMenu {
    0% {
      left: 80%;
      opacity: 0;
      visibility: hidden;
    }
    100% {
      left: 90%;
      opacity: 1;
      visibility: visible;
    }
  }
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.medium {
  width: 100%;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child {
  -moz-column-count: var(--mediumMenuColumn);
       column-count: var(--mediumMenuColumn);
  -moz-column-gap: 1em;
       column-gap: 1em;
  -moz-column-break-after: avoid-column;
       break-after: avoid-column;
  max-width: 100%;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li {
  min-width: 200px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  display: flex;
  flex-direction: column;
  margin: 0 0.5em;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li .nav-banner-item {
  width: 100%;
  margin-bottom: 1.2em;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li .nav-banner-item img {
  width: 100%;
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li .first-cihld-name {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li > li ul {
  height: 50%;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li > li ul li a {
  font-size: 0.8em;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.large {
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  transform: translateX(0);
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul {
  -moz-column-count: var(--largeMenuColumn);
       column-count: var(--largeMenuColumn);
  -moz-column-gap: 1em;
       column-gap: 1em;
  -moz-column-break-after: avoid-column;
       break-after: avoid-column;
  max-width: 100%;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul > li {
  margin-bottom: 1em;
  min-width: 200px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul > li .first-cihld-name {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul > li > a {
  font-weight: 600;
  color: var(--generalTextColor);
  font-size: 1em;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.large .nav-banner {
  -moz-column-count: var(--largeMenuBannerColumn);
       column-count: var(--largeMenuBannerColumn);
  -moz-column-gap: 1em;
       column-gap: 1em;
  max-width: 60%;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu.large .nav-banner img {
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--generalBorderRadius);
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu > .container > ul > li {
  min-width: 200px;
}
.header-4 .header-navigation nav .navigation-list > li .dropmenu > .container > ul > li a {
  display: block;
  padding: 0.3em 0;
}
.header-4 .header-navigation nav .navigation-list > li > .dropmenu {
  z-index: -1;
}
.header-4 .header-navigation nav .navigation-list > li .view-all {
  display: block !important;
}
@media screen and (min-width: 992px) {
  .header-4 .header-navigation nav .navigation-list > li.has-sub > a {
    pointer-events: none;
  }
  .header-4 .header-navigation nav .navigation-list > li.has-sub:focus > a {
    color: var(--generalPrimaryColor);
  }
  .header-4 .header-navigation nav .navigation-list > li.has-sub:focus > .dropmenu {
    transition: all 0.2s;
    transition-delay: 0.3s;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
  }
  .header-4 .header-navigation nav .navigation-list > li.has-sub:focus > .dropmenu li a {
    color: var(--generalTextColor);
  }
  .header-4 .header-navigation nav .navigation-list > li.has-sub:focus > .dropmenu li:hover > a {
    opacity: 0.7;
  }
}
.header-4 .header-navigation .side-login {
  display: none;
}
.header-4 .header-navigation .side-social-links {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-4 .header-navigation .side-social-links {
    display: block;
  }
}
.header-4 .header-navigation .side-social-links ul li a {
  display: flex;
  align-items: center;
}
.header-4 .header-navigation .side-social-links ul li a .shape {
  margin-right: 0.5em;
}
.header-4 .header-navigation .menu-header,
.header-4 .header-navigation .menu-title,
.header-4 .header-navigation .nav-main-item-banner {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .header-4 .header-navigation .menu-header,
.header-4 .header-navigation .menu-title,
.header-4 .header-navigation .nav-main-item-banner {
    display: flex !important;
  }
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: top 0.2s ease-in-out;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-4-1.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-4-1.fixed .header-navigation,
#home .header-4-1.fixed .header-action {
  background-color: transparent;
}
#home .header-4-1.fixed.nav-hide, #home .header-4-1.fixed.show-hide {
  background-color: var(--headerBackgroundColor) !important;
}

.header-4-1 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
  padding: 0.5em 0;
}
.header-4-1 .shape {
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 991px) {
  .header-4-1 .shape {
    width: 23px;
    height: 23px;
  }
}
.header-4-1 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-4-1 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}
@media screen and (max-width: 991px) {
  .header-4-1 .container {
    max-width: 100%;
  }
}
.header-4-1 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-4-1 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-4-1 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-4-1 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-4-1 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-4-1 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-4-1 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-4-1 .header-top .container {
  padding: 0 1em;
}
.header-4-1 .header-top a {
  color: inherit;
}
.header-4-1 .header-top a:hover {
  opacity: 0.7;
}
.header-4-1 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-4-1 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-4-1 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-4-1 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-4-1 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-4-1 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-4-1 .header-top .top-side-menu a .shape {
  width: 20px;
  width: 20px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-4-1 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-4-1 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-4-1 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-4-1 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-4-1 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.7em 0;
  position: relative;
}
.header-4-1 .header-action .shape {
  min-width: 28px;
  min-height: 28px;
}
.header-4-1 .header-action .mobile-menu,
.header-4-1 .header-action .menu-opener {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-4-1 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-4-1 .header-action .mobile-menu .menu-opener,
.header-4-1 .header-action .mobile-menu .search-opener {
    font-size: 1.6em;
    padding: 0.3em;
    display: block;
  }
  .header-4-1 .header-action .mobile-menu .logo {
    -webkit-margin-start: 1em;
            margin-inline-start: 1em;
  }
}
.header-4-1 .header-action svg {
  color: var(--iconColor);
  transition: color 0.2s;
}
.header-4-1 .header-action .top-side-menu {
  border-right: 1px solid rgba(var(--mainMenuTextColor), 50%);
}
.header-4-1 .header-action .top-side-menu:last-child {
  border: none;
}
.header-4-1 .header-action .top-side-menu li a {
  display: block;
  font-size: 1em;
  padding: 0.3em 0.7em;
}
.header-4-1 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-4-1 .header-action .mobile-menu {
    display: flex;
  }
}
.header-4-1 .header-action .site-search {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  left: 0;
  background-color: var(--headerBackgroundColor);
  padding: 0 16px;
  z-index: 15;
}
.header-4-1 .header-action .site-search input {
  color: var(--iconColor);
}
.header-4-1 .header-action .site-search button svg {
  fill: var(--iconColor);
}
@media screen and (max-width: 991px) {
  .header-4-1 .header-action .site-search.in-menu {
    display: none !important;
  }
}
.header-4-1 .header-action .site-search.opened {
  display: flex;
}
.header-4-1 .header-action .site-search.opened .search-closer {
  display: block;
}
.header-4-1 .header-action .site-search .search-closer {
  display: none;
}
.header-4-1 .header-action .site-search form {
  width: 100%;
}
.header-4-1 .header-action .site-search .search-input {
  display: inline-flex;
  width: 100%;
  display: block;
  width: 100%;
  align-self: center;
}
.header-4-1 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-4-1 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-4-1 .header-action .site-search .search-input .f-row input::-moz-placeholder {
  color: rgba(var(--iconColor), 50%) !important;
}
.header-4-1 .header-action .site-search .search-input .f-row input::placeholder {
  color: rgba(var(--iconColor), 50%) !important;
}
.header-4-1 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
}
@media screen and (max-width: 991px) {
  .header-4-1 .header-action .site-search .search-input .f-row button {
    margin-right: 1em;
  }
}
.header-4-1 .header-action .site-search .search-input .f-row button svg {
  position: relative;
  margin: 0;
}
.header-4-1 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.header-4-1 .header-action .logo a {
  display: inline-block;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-4-1 .header-action .logo img {
  max-width: 100%;
}
.header-4-1 .header-action .logo.mobile-logo {
  display: none;
}
.header-4-1 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header-4-1 .header-action .user-menu .search-opener .search-text {
    display: none !important;
  }
}
.header-4-1 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em;
  font-size: 0.9em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-4-1 .header-action .user-menu a {
    padding: 0.3em;
  }
}
.header-4-1 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-4-1 .header-action .user-menu a .um-info span.bt {
  font-size: 0.9em;
  white-space: nowrap;
}
.header-4-1 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-4-1 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-4-1 .header-action .user-menu a:hover {
  color: var(--generalPrimaryColor);
}
.header-4-1 .header-action .user-menu a:hover svg {
  fill: var(--generalPrimaryColor);
}
.header-4-1 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
}
.header-4-1 .header-action .user-menu .user-menu-item .languge-list .language-item {
  outline: none !important;
  position: relative;
}
.header-4-1 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-4-1 .header-action .user-menu .user-menu-item .languge-list .language-item.current .shape.down {
  width: 10px;
  height: 10px;
  transform: translateY(2px);
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.header-4-1 .header-action .user-menu .user-menu-item .languge-list .language-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  width: 60px;
  padding: 0.4em 0;
}
.header-4-1 .header-action .user-menu .user-menu-item .languge-list .language-item ul a {
  justify-content: end;
  padding: 0.7em 1em !important;
}
.header-4-1 .header-action .user-menu .user-menu-item .languge-list .language-item:hover > ul, .header-4-1 .header-action .user-menu .user-menu-item .languge-list .language-item:focus > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.header-4-1 .header-action .user-menu .login {
  position: relative;
}
.header-4-1 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-4-1 .header-action .user-menu .login .account-menu ul {
  padding: 0.4em 0;
}
.header-4-1 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em !important;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-4-1 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-4-1 .header-action .user-menu .cart {
  position: relative;
}
.header-4-1 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-4-1 .header-action .user-menu .cart .bt {
  margin-top: 5px;
}
.header-4-1 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--iconColor);
  color: var(--headerBackgroundColor);
  bottom: -6px;
  font-size: 60%;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}
.header-4-1 .header-action .user-menu .site-search .f-row button {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-4-1 .header-action .search-opener {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  align-items: center;
  position: relative;
  transition: color 0.2s;
  display: flex;
}
.header-4-1 .header-action .search-opener .search-text {
  font-size: 0.8em;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--iconColor);
  padding-bottom: 0.2em;
  width: 170px;
}
.header-4-1 .header-action .search-opener .shape {
  -webkit-margin-end: 0.4em;
          margin-inline-end: 0.4em;
}
.header-4-1 .header-action .search-opener svg {
  fill: var(--iconColor);
}
.header-4-1 .header-navigation {
  height: 100%;
  background-color: transparent;
}
@media screen and (min-width: 671px) and (max-width: 991px) {
  .header-4-1 .header-navigation {
    left: -50% !important;
  }
}
.header-4-1 .header-navigation .desktop-menu {
  display: none;
}
@media screen and (min-width: 992px) {
  .header-4-1 .header-navigation .desktop-menu {
    display: flex;
    position: relative;
    z-index: 10;
    overflow: hidden;
    align-items: center;
  }
  .header-4-1 .header-navigation .desktop-menu .desktop-menu-opener {
    position: relative;
    -webkit-padding-end: 2em;
            padding-inline-end: 2em;
  }
  .header-4-1 .header-navigation .desktop-menu .desktop-menu-opener:after {
    content: "";
    width: 1px;
    height: 90px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-color: var(--iconColor);
  }
  .header-4-1 .header-navigation .desktop-menu .logo {
    -webkit-margin-start: 2em;
            margin-inline-start: 2em;
  }
  .header-4-1 .header-navigation nav {
    position: fixed;
    height: 100%;
    inset-inline-start: -100%;
    top: 0;
    background-color: var(--headerBackgroundColor) !important;
    transition: left 0.4s;
    z-index: 1;
    overflow: hidden;
    padding-top: 8em;
    width: 400px;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header-4-1 .header-navigation nav.opened {
    inset-inline-start: 0;
  }
}
@media screen and (min-width: 992px) and (max-height: 650px) {
  .header-4-1 .header-navigation nav > .container {
    max-height: 50%;
    overflow-y: auto;
  }
}
@media screen and (min-width: 992px) {
  .header-4-1 .header-navigation nav .navigation-list {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .header-4-1 .header-navigation nav .navigation-list > li {
    position: unset;
    width: 100%;
    transition: padding 0.2s ease-in-out;
  }
  .header-4-1 .header-navigation nav .navigation-list > li > a {
    font-size: 1.4em !important;
    padding: 0.4em 1em !important;
    width: 100%;
    color: var(--iconColor) !important;
    transition: padding 0.2s ease-in-out;
  }
  .header-4-1 .header-navigation nav .navigation-list > li > a span {
    background-color: var(--headerBackgroundColor) !important;
    position: relative;
    z-index: 1;
  }
  .header-4-1 .header-navigation nav .navigation-list > li:hover > a {
    -webkit-padding-start: 1.4em !important;
            padding-inline-start: 1.4em !important;
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu {
    width: 300px !important;
    left: 100% !important;
    z-index: 999 !important;
    transform: none !important;
    -webkit-padding-start: 1em !important;
            padding-inline-start: 1em !important;
    height: 100%;
    top: 0 !important;
    padding: 8em 0 2em 1.7em !important;
    position: relative;
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background-color: var(--headerBackgroundColor);
    z-index: -1;
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu ul {
    -moz-column-count: 1 !important;
         column-count: 1 !important;
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu ul li {
    margin-bottom: 0 !important;
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu ul li ul {
    -webkit-padding-start: 1em;
            padding-inline-start: 1em;
    -webkit-padding-before: 0.5em;
            padding-block-start: 0.5em;
    -webkit-padding-after: 0.8em;
            padding-block-end: 0.8em;
    font-size: 90%;
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu ul li ul li {
    opacity: 0.8 !important;
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu ul a {
    font-weight: normal !important;
    opacity: 1 !important;
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu .container {
    flex-direction: column;
    overflow: auto;
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu .nav-banner {
    margin-top: 1em;
    padding: 0 !important;
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu.large .nav-banner, .header-4-1 .header-navigation nav .navigation-list > li .dropmenu.medium .nav-banner {
    position: absolute;
    left: 120%;
    /* width: 100%; */
    overflow: hidden;
    width: 40vw;
    max-width: unset !important;
  }
  .header-4-1 .header-navigation nav .navigation-list > li.has-sub {
    width: 100%;
  }
  .header-4-1 .header-navigation nav .navigation-list > li.has-sub > a {
    position: relative !important;
    display: block;
    background-color: var(--headerBackgroundColor);
    z-index: 1;
  }
  .header-4-1 .header-navigation nav .navigation-list > li.has-sub > a span {
    position: relative;
    -webkit-padding-end: 2em;
            padding-inline-end: 2em;
    z-index: 2;
  }
  .header-4-1 .header-navigation nav .navigation-list > li.has-sub > a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--iconColor);
    position: absolute;
    top: 55%;
    left: 20%;
    transform: translateY(-50%);
    z-index: -1;
    transition: width 0.2s ease-in-out;
  }
  .header-4-1 .header-navigation nav .navigation-list > li.has-sub:focus {
    padding: 1em 0;
  }
  .header-4-1 .header-navigation nav .navigation-list > li.has-sub:focus > a {
    -webkit-padding-start: 1.4em !important;
            padding-inline-start: 1.4em !important;
    color: var(--generalSecondaryColor) !important;
  }
  .header-4-1 .header-navigation nav .navigation-list > li.has-sub:focus > a:after {
    width: 80%;
    opacity: 0.3;
  }
}
@media screen and (min-width: 992px) {
  .header-4-1 .header-navigation nav .side-social-links {
    display: block !important;
    padding: 1em 1.2em;
  }
  .header-4-1 .header-navigation nav .side-social-links ul li a {
    padding: 0.5em 0;
    color: var(--mainMenuTextColor);
  }
  .header-4-1 .header-navigation nav .side-social-links ul li svg {
    fill: var(--mainMenuTextColor);
  }
}
@media screen and (max-width: 991px) {
  .header-4-1 .header-navigation {
    position: fixed;
    height: 100%;
    top: 0;
    transition: left 0.4s;
    z-index: 1;
    overflow: hidden;
  }
  .header-4-1 .header-navigation .container {
    position: unset !important;
    padding: 0 !important;
  }
  .header-4-1 .header-navigation.opened {
    left: 0 !important;
  }
  .header-4-1 .header-navigation .menu-title {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
  }
  .header-4-1 .header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
  }
  .header-4-1 .header-navigation nav ul.navigation-list {
    display: block;
  }
  .header-4-1 .header-navigation nav ul.navigation-list > li {
    display: list-item;
    height: auto;
    position: unset;
  }
  .header-4-1 .header-navigation nav ul.navigation-list > li a {
    font-size: 1.2em !important;
  }
  .header-4-1 .header-navigation nav ul.navigation-list > li.with-image > a {
    padding: 0;
    display: flex;
    align-items: center;
  }
  .header-4-1 .header-navigation nav ul.navigation-list > li.with-image > a .nav-main-item-banner {
    -webkit-margin-start: 1em;
            margin-inline-start: 1em;
    display: block !important;
  }
  .header-4-1 .header-navigation nav ul.navigation-list > li > .dropmenu {
    height: 100%;
    width: 100%;
    top: 0 !important;
    margin-top: 0 !important;
    position: absolute !important;
    display: block;
    visibility: visible;
    opacity: 1;
    padding: 0;
    left: auto !important;
    right: -600px;
    transform: translateX(0);
    transition: all 0.4s ease;
    transition-delay: 0s !important;
    border-radius: 0 !important;
  }
  .header-4-1 .header-navigation nav ul.navigation-list > li > .dropmenu .menu-title {
    align-items: center;
  }
  .header-4-1 .header-navigation nav ul.navigation-list > li > .dropmenu.medium .nav-banner-item {
    display: none !important;
  }
  .header-4-1 .header-navigation nav ul.navigation-list > li > .dropmenu > .container {
    display: block;
    height: 100%;
  }
  .header-4-1 .header-navigation nav ul.navigation-list > li > .dropmenu ul {
    transition: all 0.3s;
    padding: 0 1em;
  }
  .header-4-1 .header-navigation nav ul.navigation-list > li > .dropmenu ul.first-child {
    display: block !important;
    -moz-column-count: unset !important;
         column-count: unset !important;
  }
  .header-4-1 .header-navigation nav ul.navigation-list > li > .dropmenu ul li {
    margin: 0 !important;
    width: 100%;
    min-width: 100%;
  }
  .header-4-1 .header-navigation nav ul.navigation-list > li > .dropmenu ul li a {
    display: block;
    font-size: 1.2em !important;
    margin: 0 !important;
    padding: 0.7em 0 !important;
    font-weight: normal !important;
    font-weight: normal;
  }
  .header-4-1 .header-navigation nav ul.navigation-list > li > .dropmenu ul .sub-child {
    visibility: visible;
    opacity: 1;
    left: auto;
    right: -600px;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    margin-top: 0;
    z-index: 1;
  }
  .header-4-1 .header-navigation nav ul.navigation-list > li > .dropmenu > ul {
    -moz-columns: unset;
         columns: unset;
    width: 100%;
    background-color: inherit;
  }
  .header-4-1 .header-navigation nav ul.navigation-list .current .dropmenu, .header-4-1 .header-navigation nav ul.navigation-list .current > .sub-child {
    right: 0 !important;
    z-index: 1;
    transform: unset !important;
  }
}
.header-4-1 .header-navigation nav {
  max-height: 100%;
}
.header-4-1 .header-navigation nav .container {
  position: unset;
  padding: 0;
}
.header-4-1 .header-navigation nav .hidden-link-wrapper {
  position: absolute;
  right: 0;
}
.header-4-1 .header-navigation nav .navigation-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.header-4-1 .header-navigation nav .navigation-list > li {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
}
.header-4-1 .header-navigation nav .navigation-list > li.has-large, .header-4-1 .header-navigation nav .navigation-list > li.has-medium {
  position: unset;
}
.header-4-1 .header-navigation nav .navigation-list > li > a {
  display: block;
  padding: 1em;
  color: var(--mainMenuTextColor);
  font-size: 1em;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu {
  opacity: 0;
  visibility: hidden;
  margin-top: -10px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bodyBackgroundColor);
  padding: 1.6em 0.6em;
  z-index: 1;
  min-width: 200px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  transition-delay: 0.3s;
  border-bottom-left-radius: var(--generalBorderRadius);
  border-bottom-right-radius: var(--generalBorderRadius);
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu ul li a {
  font-size: 1em;
  color: var(--generalTextColor);
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu > .container {
  display: flex;
  justify-content: space-between;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu .nav-banner {
  padding-left: 1em;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu .nav-banner .nav-banner-item {
  width: 100%;
  margin-top: 1em;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu .nav-banner .nav-banner-item:first-child {
  margin-top: 0;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.small {
  font-size: unset;
}
@media screen and (min-width: 769px) {
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu.small {
    padding: 0;
    border-radius: 0 0 var(--generalBorderRadius) var(--generalBorderRadius);
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu.small .first-child {
    width: 100%;
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li {
    position: relative;
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li a {
    display: block;
    padding: 1em;
    font-size: 1em;
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu.small .first-child ul {
    background-color: var(--bodyBackgroundColor);
    position: absolute;
    opacity: 0;
    left: 80%;
    display: none;
    top: 0;
    visibility: hidden;
    border-radius: var(--generalBorderRadius);
    border: 1px solid var(--boxBorderColor);
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li:hover {
    background-color: var(--boxBackgroundColor);
  }
  .header-4-1 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li:hover > ul {
    width: 100%;
    transition-delay: 1s;
    display: block;
    opacity: 1;
    visibility: visible;
    left: 90%;
    -webkit-animation-name: smallSubMenu;
            animation-name: smallSubMenu;
    -webkit-animation-duration: 0.3s;
            animation-duration: 0.3s;
  }
  @-webkit-keyframes smallSubMenu {
    0% {
      left: 80%;
      opacity: 0;
      visibility: hidden;
    }
    100% {
      left: 90%;
      opacity: 1;
      visibility: visible;
    }
  }
  @keyframes smallSubMenu {
    0% {
      left: 80%;
      opacity: 0;
      visibility: hidden;
    }
    100% {
      left: 90%;
      opacity: 1;
      visibility: visible;
    }
  }
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.medium {
  width: 100%;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child {
  -moz-column-count: var(--mediumMenuColumn);
       column-count: var(--mediumMenuColumn);
  -moz-column-gap: 1em;
       column-gap: 1em;
  -moz-column-break-after: avoid-column;
       break-after: avoid-column;
  max-width: 100%;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li {
  min-width: 200px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  display: flex;
  flex-direction: column;
  margin: 0 0.5em;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li .nav-banner-item {
  width: 100%;
  margin-bottom: 1.2em;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li .nav-banner-item img {
  width: 100%;
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li .first-cihld-name {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li > li ul {
  height: 50%;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li > li ul li a {
  font-size: 0.8em;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.large {
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  transform: translateX(0);
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul {
  -moz-column-count: var(--largeMenuColumn);
       column-count: var(--largeMenuColumn);
  -moz-column-gap: 1em;
       column-gap: 1em;
  -moz-column-break-after: avoid-column;
       break-after: avoid-column;
  max-width: 100%;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul > li {
  margin-bottom: 1em;
  min-width: 200px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul > li .first-cihld-name {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul > li > a {
  font-weight: 600;
  color: var(--generalTextColor);
  font-size: 1em;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.large .nav-banner {
  -moz-column-count: var(--largeMenuBannerColumn);
       column-count: var(--largeMenuBannerColumn);
  -moz-column-gap: 1em;
       column-gap: 1em;
  max-width: 60%;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu.large .nav-banner img {
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--generalBorderRadius);
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu > .container > ul > li {
  min-width: 200px;
}
.header-4-1 .header-navigation nav .navigation-list > li .dropmenu > .container > ul > li a {
  display: block;
  padding: 0.3em 0;
}
.header-4-1 .header-navigation nav .navigation-list > li > .dropmenu {
  z-index: -1;
}
.header-4-1 .header-navigation nav .navigation-list > li .view-all {
  display: block !important;
}
@media screen and (min-width: 992px) {
  .header-4-1 .header-navigation nav .navigation-list > li.has-sub > a {
    pointer-events: none;
  }
  .header-4-1 .header-navigation nav .navigation-list > li.has-sub:focus > a {
    color: var(--generalPrimaryColor);
  }
  .header-4-1 .header-navigation nav .navigation-list > li.has-sub:focus > .dropmenu {
    transition: all 0.2s;
    transition-delay: 0.3s;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
  }
  .header-4-1 .header-navigation nav .navigation-list > li.has-sub:focus > .dropmenu li a {
    color: var(--generalTextColor);
  }
  .header-4-1 .header-navigation nav .navigation-list > li.has-sub:focus > .dropmenu li:hover > a {
    opacity: 0.7;
  }
}
.header-4-1 .header-navigation .side-login {
  display: none;
}
.header-4-1 .header-navigation .side-social-links {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-4-1 .header-navigation .side-social-links {
    display: block;
  }
}
.header-4-1 .header-navigation .side-social-links ul li a {
  display: flex;
  align-items: center;
}
.header-4-1 .header-navigation .side-social-links ul li a .shape {
  margin-right: 0.5em;
}
.header-4-1 .header-navigation .menu-header,
.header-4-1 .header-navigation .menu-title,
.header-4-1 .header-navigation .nav-main-item-banner {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .header-4-1 .header-navigation .menu-header,
.header-4-1 .header-navigation .menu-title,
.header-4-1 .header-navigation .nav-main-item-banner {
    display: flex !important;
  }
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: top 0.2s ease-in-out;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-5.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-5.fixed .header-navigation,
#home .header-5.fixed .header-action {
  background-color: transparent;
}
#home .header-5.fixed.show-hide {
  background-color: var(--headerBackgroundColor) !important;
}

.header-5 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-5.nav-hide .header-navigation {
  background-color: var(--mainMenuBackgroundColor) !important;
}
@media screen and (max-width: 991px) {
  .header-5 {
    top: 0px !important;
  }
  .header-5.nav-hide {
    background-color: var(--headerBackgroundColor) !important;
    top: 0px !important;
  }
}
@media screen and (min-width: 769px) {
  .header-5.page-up .header-action {
    display: none;
  }
  .header-5.page-down .header-action {
    display: block;
  }
}
.header-5 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-5 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-5 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-5 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-5 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-5 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-5 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-5 .header-top a {
  color: inherit;
}
.header-5 .header-top a:hover {
  opacity: 0.7;
}
.header-5 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-5 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-5 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-5 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-5 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-5 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-5 .header-top .top-side-menu a .shape {
  width: 18px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-5 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-5 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-5 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-5 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-5 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.header-5 .header-action .mobile-menu,
.header-5 .header-action .menu-opener {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-5 .header-action {
    padding: 0.3em 0;
  }
  .header-5 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-5 .header-action .mobile-menu .menu-opener {
    padding: 0.4em;
    display: block;
  }
  .header-5 .header-action .mobile-menu .menu-opener svg {
    fill: var(--iconTextColor);
  }
}
.header-5 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-5 .header-action .mobile-menu {
    display: flex;
  }
}
.header-5 .header-action .site-search.mobile-search {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-5 .header-action .site-search {
    display: none;
    position: relative;
    width: 100%;
    top: 0;
    height: 100%;
    left: 0;
    background-color: var(--headerBackgroundColor);
    padding: 0 16px;
  }
  .header-5 .header-action .site-search.in-menu {
    display: none !important;
  }
  .header-5 .header-action .site-search.mobile-search {
    display: block;
    -webkit-margin-end: 0 !important;
            margin-inline-end: 0 !important;
    margin-top: 0.6em;
    background-color: transparent !important;
  }
  .header-5 .header-action .site-search.mobile-search .search-input {
    border: 1px solid var(--iconTextColor);
    padding: 0 1em;
    border-radius: var(--inputGeneralBorderRadius);
  }
  .header-5 .header-action .site-search.mobile-search .search-input input {
    color: var(--iconTextColor) !important;
  }
  .header-5 .header-action .site-search.mobile-search button {
    -webkit-margin-end: 0 !important;
            margin-inline-end: 0 !important;
    -webkit-margin-start: 0.7em !important;
            margin-inline-start: 0.7em !important;
    padding: 0 !important;
  }
  .header-5 .header-action .site-search.mobile-search button svg {
    fill: var(--iconTextColor);
  }
}
.header-5 .header-action .site-search .search-closer {
  display: none;
}
.header-5 .header-action .site-search .search-input {
  display: inline-flex;
}
@media screen and (max-width: 991px) {
  .header-5 .header-action .site-search .search-input {
    display: block;
    width: 100%;
    align-self: center;
  }
}
.header-5 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-5 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-5 .header-action .site-search .search-input .f-row input::-moz-placeholder {
  color: rgba(var(--iconColor), 40%) !important;
}
.header-5 .header-action .site-search .search-input .f-row input::placeholder {
  color: rgba(var(--iconColor), 40%) !important;
}
.header-5 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  min-height: 2.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
  -webkit-margin-end: 0.7em;
          margin-inline-end: 0.7em;
}
.header-5 .header-action .site-search .search-input .f-row button i {
  position: relative;
  font-size: 1.4em;
}
.header-5 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
}
.header-5 .header-action .logo a {
  display: block;
  text-align: center;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-5 .header-action .logo img {
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .header-5 .header-action .logo .row {
    flex-wrap: nowrap;
  }
  .header-5 .header-action .logo .row a {
    display: inline-flex;
    color: inherit;
  }
}
.header-5 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  position: relative;
  align-items: inherit;
}
@media screen and (max-width: 991px) {
  .header-5 .header-action .user-menu {
    padding: 0;
  }
}
.header-5 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  display: flex !important;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-5 .header-action .user-menu a {
    padding: 0.3em;
  }
  .header-5 .header-action .user-menu a svg {
    fill: var(--iconTextColor);
  }
}
.header-5 .header-action .user-menu a .um-info {
  margin-top: 3px;
}
.header-5 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
  color: var(--iconTextColor);
  font-size: 11px;
  font-weight: bold;
}
.header-5 .header-action .user-menu a .um-info span.bt {
  white-space: nowrap;
}
.header-5 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-5 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-5 .header-action .user-menu a:hover svg {
  fill: var(--generalPrimaryColor);
}
.header-5 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
  color: var(--generalPrimaryColor);
}
.header-5 .header-action .user-menu a:hover .um-info span {
  color: var(--generalPrimaryColor);
}
.header-5 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-5 .header-action .user-menu .login {
  position: relative;
}
.header-5 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: var(--generalBorderRadius);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-5 .header-action .user-menu .login .account-menu ul {
  padding: 0.3em 0;
  min-width: 150px;
}
.header-5 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  white-space: nowrap;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-5 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-5 .header-action .user-menu .cart {
  position: relative;
}
.header-5 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-5 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  color: var(--iconColor);
  top: 62%;
  font-size: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  background-color: transparent !important;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .header-5 .header-action .user-menu .cart .cart-qty {
    color: var(--iconTextColor);
  }
}
.header-5 .shape {
  width: 30px;
  height: 30px;
}
.header-5 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
  margin: 0;
}
.header-5 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: top 0.2s ease-in-out;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-5-1.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-5-1.fixed .header-navigation,
#home .header-5-1.fixed .header-action {
  background-color: transparent;
}
#home .header-5-1.fixed.show-hide {
  background-color: var(--headerBackgroundColor) !important;
}

.header-5-1 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-5-1.nav-hide .header-navigation {
  background-color: var(--mainMenuBackgroundColor) !important;
}
@media screen and (max-width: 991px) {
  .header-5-1 {
    top: 0px !important;
  }
  .header-5-1.nav-hide {
    background-color: var(--headerBackgroundColor) !important;
    top: 0px !important;
  }
}
.header-5-1 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-5-1 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-5-1 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-5-1 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-5-1 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-5-1 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-5-1 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-5-1 .header-top a {
  color: inherit;
}
.header-5-1 .header-top a:hover {
  opacity: 0.7;
}
.header-5-1 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-5-1 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-5-1 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-5-1 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-5-1 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-5-1 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-5-1 .header-top .top-side-menu a .shape {
  width: 18px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-5-1 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-5-1 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-5-1 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-5-1 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-5-1 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.header-5-1 .header-action .mobile-menu,
.header-5-1 .header-action .menu-opener {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-5-1 .header-action {
    padding: 0.3em 0;
  }
  .header-5-1 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-5-1 .header-action .mobile-menu .menu-opener {
    padding: 0.4em;
    display: block;
  }
  .header-5-1 .header-action .mobile-menu + .logo {
    display: none !important;
  }
}
.header-5-1 .header-action svg {
  color: var(--iconColor);
  transition: color 0.2s;
}
.header-5-1 .header-action .top-side-menu {
  border-right: 1px solid rgba(var(--mainMenuTextColor), 50%);
}
.header-5-1 .header-action .top-side-menu:last-child {
  border: none;
}
.header-5-1 .header-action .top-side-menu li a {
  display: block;
  font-size: 1em;
  padding: 0.3em 0.7em;
}
.header-5-1 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-5-1 .header-action .mobile-menu {
    display: flex;
  }
}
.header-5-1 .header-action .site-search.mobile-search {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-5-1 .header-action .site-search {
    display: none;
    position: relative;
    width: 100%;
    top: 0;
    height: 100%;
    left: 0;
    background-color: var(--headerBackgroundColor);
    padding: 0 16px;
  }
  .header-5-1 .header-action .site-search.in-menu {
    display: none !important;
  }
  .header-5-1 .header-action .site-search.mobile-search {
    display: block;
    -webkit-margin-end: 0 !important;
            margin-inline-end: 0 !important;
    margin-top: 0.6em;
    background-color: transparent !important;
  }
  .header-5-1 .header-action .site-search.mobile-search .search-input {
    border: 1px solid var(--iconTextColor);
    padding: 0 1em;
    border-radius: var(--inputGeneralBorderRadius);
  }
  .header-5-1 .header-action .site-search.mobile-search .search-input input {
    color: var(--iconTextColor) !important;
  }
  .header-5-1 .header-action .site-search.mobile-search button {
    -webkit-margin-end: 0 !important;
            margin-inline-end: 0 !important;
    -webkit-margin-start: 0.7em !important;
            margin-inline-start: 0.7em !important;
    padding: 0 !important;
  }
  .header-5-1 .header-action .site-search.mobile-search button svg {
    fill: var(--iconTextColor);
  }
}
.header-5-1 .header-action .site-search .search-closer {
  display: none;
}
.header-5-1 .header-action .site-search .search-input {
  display: inline-flex;
}
@media screen and (max-width: 991px) {
  .header-5-1 .header-action .site-search .search-input {
    display: block;
    width: 100%;
    align-self: center;
  }
}
.header-5-1 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-5-1 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-5-1 .header-action .site-search .search-input .f-row input::-moz-placeholder {
  color: rgba(var(--iconColor), 40%) !important;
}
.header-5-1 .header-action .site-search .search-input .f-row input::placeholder {
  color: rgba(var(--iconColor), 40%) !important;
}
.header-5-1 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  min-height: 2.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
  -webkit-margin-end: 0.7em;
          margin-inline-end: 0.7em;
}
.header-5-1 .header-action .site-search .search-input .f-row button i {
  position: relative;
  font-size: 1.4em;
}
.header-5-1 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 991px) {
  .header-5-1 .header-action .logo.mobile-logo {
    display: block !important;
    margin: 0 0.5em;
  }
}
.header-5-1 .header-action .logo a {
  display: block;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-5-1 .header-action .logo img {
  max-width: 100%;
}
.header-5-1 .header-action .logo.mobile-logo {
  display: none;
}
.header-5-1 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  align-items: inherit;
}
@media screen and (max-width: 991px) {
  .header-5-1 .header-action .user-menu {
    padding: 0;
  }
}
.header-5-1 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  display: flex !important;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-5-1 .header-action .user-menu a {
    padding: 0.3em;
  }
  .header-5-1 .header-action .user-menu a svg {
    fill: var(--iconTextColor);
  }
}
.header-5-1 .header-action .user-menu a .um-info {
  margin-top: 3px;
}
.header-5-1 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
  color: var(--iconTextColor);
  font-size: 11px;
  font-weight: bold;
}
.header-5-1 .header-action .user-menu a .um-info span.bt {
  white-space: nowrap;
}
.header-5-1 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-5-1 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-5-1 .header-action .user-menu a:hover svg {
  fill: var(--generalPrimaryColor);
}
.header-5-1 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
  color: var(--generalPrimaryColor);
}
.header-5-1 .header-action .user-menu a:hover .um-info span {
  color: var(--generalPrimaryColor);
}
.header-5-1 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-5-1 .header-action .user-menu .login {
  position: relative;
}
.header-5-1 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: var(--generalBorderRadius);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-5-1 .header-action .user-menu .login .account-menu ul {
  padding: 0.3em 0;
  min-width: 150px;
}
.header-5-1 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  white-space: nowrap;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-5-1 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-5-1 .header-action .user-menu .cart {
  position: relative;
}
.header-5-1 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-5-1 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  color: var(--iconColor);
  top: 62%;
  font-size: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  background-color: transparent !important;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .header-5-1 .header-action .user-menu .cart .cart-qty {
    color: var(--iconTextColor);
  }
}
.header-5-1 .header-action .user-menu .site-search .f-row button {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-5-1 .header-action .user-menu .search-opener {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  display: none !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-5-1 .header-action .user-menu .search-opener {
    display: flex !important;
  }
}
.header-5-1 .header-action .user-menu .search-opener svg {
  fill: var(--iconColor);
}
.header-5-1 .shape {
  width: 30px;
  height: 30px;
}
.header-5-1 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-5-1 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: top 0.2s ease-in-out;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-6.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-6.fixed .header-navigation,
#home .header-6.fixed .header-action {
  background-color: transparent;
}
#home .header-6.fixed.nav-hide, #home .header-6.fixed.show-hide {
  background-color: var(--headerBackgroundColor);
}

.header-6 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-6 .shape {
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 991px) {
  .header-6 .shape {
    width: 23px;
    height: 23px;
  }
}
.header-6 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-6 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}
@media screen and (max-width: 991px) {
  .header-6 .container {
    max-width: 100%;
    padding: 0;
  }
}
.header-6 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-6 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-6 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-6 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-6 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-6 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-6 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-6 .header-top a {
  color: inherit;
}
.header-6 .header-top a:hover {
  opacity: 0.7;
}
.header-6 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-6 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-6 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-6 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-6 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-6 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-6 .header-top .top-side-menu a .shape {
  width: 20px;
  width: 20px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-6 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-6 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-6 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-6 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-6 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.7em 0;
  position: relative;
}
.header-6 .header-action .mobile-menu,
.header-6 .header-action .menu-opener {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-6 .header-action .mobile-menu + .logo {
    display: none !important;
  }
  .header-6 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-6 .header-action .mobile-menu .menu-opener,
.header-6 .header-action .mobile-menu .search-opener {
    font-size: 1.6em;
    padding: 0.4em;
    display: block;
  }
}
.header-6 .header-action svg {
  color: var(--iconColor);
  transition: color 0.2s;
}
.header-6 .header-action .top-side-menu {
  border-right: 1px solid rgba(var(--mainMenuTextColor), 50%);
}
.header-6 .header-action .top-side-menu:last-child {
  border: none;
}
.header-6 .header-action .top-side-menu li a {
  display: block;
  font-size: 1em;
  padding: 0.3em 0.7em;
}
.header-6 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-6 .header-action .mobile-menu {
    display: flex;
  }
}
.header-6 .header-action .site-search {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  left: 0;
  background-color: var(--headerBackgroundColor);
  padding: 0 16px;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .header-6 .header-action .site-search.in-menu {
    display: none !important;
  }
}
.header-6 .header-action .site-search.opened {
  display: flex;
}
.header-6 .header-action .site-search.opened .search-closer {
  display: block;
}
.header-6 .header-action .site-search .search-closer {
  display: none;
}
.header-6 .header-action .site-search form {
  width: 100%;
}
.header-6 .header-action .site-search .search-input {
  display: inline-flex;
  width: 100%;
  display: block;
  width: 100%;
  align-self: center;
}
.header-6 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-6 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-6 .header-action .site-search .search-input .f-row input::-moz-placeholder {
  color: rgba(var(--iconColor), 40%) !important;
}
.header-6 .header-action .site-search .search-input .f-row input::placeholder {
  color: rgba(var(--iconColor), 40%) !important;
}
.header-6 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
}
@media screen and (max-width: 991px) {
  .header-6 .header-action .site-search .search-input .f-row button {
    margin-right: 1em;
  }
}
.header-6 .header-action .site-search .search-input .f-row button svg {
  position: relative;
  margin: 0;
}
.header-6 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
}
.header-6 .header-action .logo a {
  display: inline-block;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-6 .header-action .logo img {
  max-width: 100%;
}
.header-6 .header-action .logo.mobile-logo {
  display: none;
}
.header-6 .header-action .user-menu {
  justify-content: flex-end;
  display: inline-flex;
}
.header-6 .header-action .user-menu .user-menu-wrap {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  justify-self: end;
}
@media screen and (max-width: 991px) {
  .header-6 .header-action .user-menu {
    padding: 0;
  }
}
.header-6 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em 0.7em;
  font-size: 1em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-6 .header-action .user-menu a {
    padding: 0.4em;
  }
}
.header-6 .header-action .user-menu a .um-info {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  display: none;
}
.header-6 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-6 .header-action .user-menu a .um-info span.bt {
  font-size: 0.9em;
  white-space: nowrap;
}
.header-6 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-6 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-6 .header-action .user-menu a:hover {
  color: var(--generalPrimaryColor);
}
.header-6 .header-action .user-menu a:hover svg {
  fill: var(--generalPrimaryColor);
}
.header-6 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
}
.header-6 .header-action .user-menu .user-menu-item .languge-list .language-item {
  outline: none !important;
  position: relative;
}
.header-6 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-6 .header-action .user-menu .user-menu-item .languge-list .language-item.current .shape.down {
  width: 10px;
  height: 10px;
  transform: translateY(2px);
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.header-6 .header-action .user-menu .user-menu-item .languge-list .language-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  width: 60px;
  padding: 0.4em 0;
}
.header-6 .header-action .user-menu .user-menu-item .languge-list .language-item ul a {
  justify-content: end;
  padding: 0.7em 1em !important;
}
.header-6 .header-action .user-menu .user-menu-item .languge-list .language-item:hover > ul, .header-6 .header-action .user-menu .user-menu-item .languge-list .language-item:focus > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.header-6 .header-action .user-menu .login {
  position: relative;
}
.header-6 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-6 .header-action .user-menu .login .account-menu ul {
  padding: 0.4em 0;
}
.header-6 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em !important;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-6 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-6 .header-action .user-menu .cart {
  position: relative;
}
.header-6 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-6 .header-action .user-menu .cart .bt {
  margin-top: 5px;
}
.header-6 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--iconColor);
  color: var(--headerBackgroundColor);
  bottom: -6px;
  font-size: 60%;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}
.header-6 .header-action .user-menu .site-search .f-row button {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-6 .header-action .search-opener {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  align-items: center;
  position: relative;
  transition: color 0.2s;
  display: flex;
}
.header-6 .header-action .search-opener svg {
  fill: var(--iconColor);
}
.header-6 .header-navigation {
  background-color: transparent;
}
@media screen and (min-width: 992px) {
  .header-6 .header-navigation {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 991px) {
  .header-6 .header-navigation .logo {
    display: none;
  }
}
.header-6 .header-navigation .menu-header {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .header-6 .header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
  }
  .header-6 .header-navigation .menu-header .site-search {
    background-color: var(--mainMenuBackgroundColor);
    padding: 0;
  }
  .header-6 .header-navigation .menu-header .site-search .f-row {
    padding-top: 0;
  }
  .header-6 .header-navigation .menu-header .site-search input {
    color: var(--mainMenuTextColor) !important;
  }
  .header-6 .header-navigation .menu-header .site-search button svg {
    fill: var(--mainMenuTextColor) !important;
  }
}
.header-6 .header-navigation nav .container {
  position: static;
}
.header-6 .header-navigation nav .navigation-list > li > a {
  display: block;
  padding: 1em;
  color: var(--iconColor);
  font-size: 1em;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 991px) {
  .header-6 .header-navigation nav .navigation-list > li > a {
    color: var(--mainMenuTextColor) !important;
  }
}
.header-6 .header-navigation nav .navigation-list > li .dropmenu {
  transform: translateX(0);
  inset-inline-start: 0;
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: top 0.2s ease-in-out;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-6-1.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-6-1.fixed .header-navigation,
#home .header-6-1.fixed .header-action {
  background-color: transparent;
}
#home .header-6-1.fixed.nav-hide, #home .header-6-1.fixed.show-hide {
  background-color: var(--headerBackgroundColor);
}

.header-6-1 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-6-1 .shape {
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 991px) {
  .header-6-1 .shape {
    width: 23px;
    height: 23px;
  }
}
.header-6-1 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-6-1 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}
@media screen and (max-width: 991px) {
  .header-6-1 .container {
    max-width: 100%;
    padding: 0;
  }
}
.header-6-1 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-6-1 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-6-1 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-6-1 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-6-1 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-6-1 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-6-1 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-6-1 .header-top .container {
  padding: 0 1em;
}
.header-6-1 .header-top a {
  color: inherit;
}
.header-6-1 .header-top a:hover {
  opacity: 0.7;
}
.header-6-1 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-6-1 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-6-1 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-6-1 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-6-1 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-6-1 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-6-1 .header-top .top-side-menu a .shape {
  width: 20px;
  width: 20px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-6-1 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-6-1 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-6-1 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-6-1 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-6-1 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.7em 0;
  position: relative;
}
.header-6-1 .header-action .mobile-menu,
.header-6-1 .header-action .menu-opener {
  display: none;
}
.header-6-1 .header-action .container {
  position: relative;
}
@media screen and (max-width: 991px) {
  .header-6-1 .header-action .container {
    padding: 0;
  }
  .header-6-1 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-6-1 .header-action .mobile-menu .menu-opener,
.header-6-1 .header-action .mobile-menu .search-opener {
    font-size: 1.6em;
    padding: 0.3em;
    display: block;
  }
}
.header-6-1 .header-action svg {
  color: var(--iconColor);
  transition: color 0.2s;
}
.header-6-1 .header-action .top-side-menu {
  border-right: 1px solid rgba(var(--mainMenuTextColor), 50%);
}
.header-6-1 .header-action .top-side-menu:last-child {
  border: none;
}
.header-6-1 .header-action .top-side-menu li a {
  display: block;
  font-size: 1em;
  padding: 0.3em 0.7em;
}
.header-6-1 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-6-1 .header-action .mobile-menu {
    display: flex;
  }
}
.header-6-1 .header-action .site-search {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  left: 0;
  background-color: var(--headerBackgroundColor);
  padding: 0 16px;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .header-6-1 .header-action .site-search.in-menu {
    display: none !important;
  }
}
.header-6-1 .header-action .site-search.opened {
  display: flex;
}
.header-6-1 .header-action .site-search.opened .search-closer {
  display: block;
}
.header-6-1 .header-action .site-search .search-closer {
  display: none;
}
.header-6-1 .header-action .site-search form {
  width: 100%;
}
.header-6-1 .header-action .site-search .search-input {
  display: inline-flex;
  width: 100%;
  display: block;
  width: 100%;
  align-self: center;
}
.header-6-1 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-6-1 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-6-1 .header-action .site-search .search-input .f-row input::-moz-placeholder {
  color: rgba(var(--iconColor), 50%) !important;
}
.header-6-1 .header-action .site-search .search-input .f-row input::placeholder {
  color: rgba(var(--iconColor), 50%) !important;
}
.header-6-1 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
}
@media screen and (max-width: 991px) {
  .header-6-1 .header-action .site-search .search-input .f-row button {
    margin-right: 1em;
  }
}
.header-6-1 .header-action .site-search .search-input .f-row button svg {
  position: relative;
  margin: 0;
}
.header-6-1 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.header-6-1 .header-action .logo a {
  display: inline-block;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-6-1 .header-action .logo img {
  max-width: 100%;
}
.header-6-1 .header-action .logo.mobile-logo {
  display: none;
}
.header-6-1 .header-action .user-menu {
  justify-content: flex-end;
  display: inline-flex;
}
.header-6-1 .header-action .user-menu .user-menu-wrap {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  justify-self: end;
}
@media screen and (max-width: 991px) {
  .header-6-1 .header-action .user-menu .search-opener {
    display: none !important;
  }
}
.header-6-1 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-6-1 .header-action .user-menu a {
    padding: 0.3em;
  }
}
.header-6-1 .header-action .user-menu a .um-info {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  display: none;
}
.header-6-1 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-6-1 .header-action .user-menu a .um-info span.bt {
  font-size: 0.9em;
  white-space: nowrap;
}
.header-6-1 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-6-1 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-6-1 .header-action .user-menu a:hover {
  color: var(--generalPrimaryColor);
}
.header-6-1 .header-action .user-menu a:hover svg {
  fill: var(--generalPrimaryColor);
}
.header-6-1 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
}
.header-6-1 .header-action .user-menu .user-menu-item .languge-list .language-item {
  outline: none !important;
  position: relative;
}
.header-6-1 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-6-1 .header-action .user-menu .user-menu-item .languge-list .language-item.current .shape.down {
  width: 10px;
  height: 10px;
  transform: translateY(2px);
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.header-6-1 .header-action .user-menu .user-menu-item .languge-list .language-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  width: 60px;
  padding: 0.4em 0;
}
.header-6-1 .header-action .user-menu .user-menu-item .languge-list .language-item ul a {
  justify-content: end;
  padding: 0.7em 1em !important;
}
.header-6-1 .header-action .user-menu .user-menu-item .languge-list .language-item:hover > ul, .header-6-1 .header-action .user-menu .user-menu-item .languge-list .language-item:focus > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.header-6-1 .header-action .user-menu .login {
  position: relative;
}
.header-6-1 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-6-1 .header-action .user-menu .login .account-menu ul {
  padding: 0.4em 0;
}
.header-6-1 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em !important;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-6-1 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-6-1 .header-action .user-menu .cart {
  position: relative;
}
.header-6-1 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-6-1 .header-action .user-menu .cart .bt {
  margin-top: 5px;
}
.header-6-1 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--iconColor);
  color: var(--headerBackgroundColor);
  bottom: -6px;
  font-size: 60%;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}
.header-6-1 .header-action .user-menu .site-search .f-row button {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-6-1 .header-action .search-opener {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  align-items: center;
  position: relative;
  transition: color 0.2s;
  display: flex !important;
}
.header-6-1 .header-action .search-opener svg {
  fill: var(--iconColor);
}
.header-6-1 .header-navigation {
  background-color: transparent;
}
.header-6-1 .header-navigation .menu-header {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .header-6-1 .header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
  }
  .header-6-1 .header-navigation .menu-header .site-search {
    background-color: var(--mainMenuBackgroundColor);
    padding: 0;
  }
  .header-6-1 .header-navigation .menu-header .site-search .f-row {
    padding-top: 0;
  }
  .header-6-1 .header-navigation .menu-header .site-search input {
    color: var(--mainMenuTextColor) !important;
  }
  .header-6-1 .header-navigation .menu-header .site-search button svg {
    fill: var(--mainMenuTextColor) !important;
  }
}
.header-6-1 .header-navigation nav .container {
  position: static;
  padding: 0 !important;
  inset-inline-start: 0 !important;
}
.header-6-1 .header-navigation nav .navigation-list {
  justify-content: flex-start;
}
.header-6-1 .header-navigation nav .navigation-list > li > a {
  display: block;
  padding: 1em;
  color: var(--iconColor);
  font-size: 1em;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 991px) {
  .header-6-1 .header-navigation nav .navigation-list > li > a {
    color: var(--mainMenuTextColor) !important;
  }
}
.header-6-1 .header-navigation nav .navigation-list > li .dropmenu {
  transform: translateX(0);
  inset-inline-start: 0;
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: top 0.2s ease-in-out;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-7.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-7.fixed .header-navigation,
#home .header-7.fixed .header-action {
  background-color: transparent;
}
#home .header-7.fixed.nav-hide, #home .header-7.fixed.show-hide {
  background-color: var(--headerBackgroundColor);
}

.header-7 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-7 .shape {
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 991px) {
  .header-7 .shape {
    width: 23px;
    height: 23px;
  }
}
.header-7 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-7 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}
@media screen and (max-width: 991px) {
  .header-7 .container {
    max-width: 100%;
    padding: 0;
  }
}
.header-7 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-7 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-7 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-7 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-7 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-7 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-7 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-7 .header-top a {
  color: inherit;
}
.header-7 .header-top a:hover {
  opacity: 0.7;
}
.header-7 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-7 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-7 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-7 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-7 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-7 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-7 .header-top .top-side-menu a .shape {
  width: 20px;
  width: 20px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-7 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-7 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-7 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-7 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-7 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.7em 0;
  position: relative;
}
.header-7 .header-action .mobile-menu,
.header-7 .header-action .menu-opener {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-7 .header-action .mobile-menu + .logo {
    display: none !important;
  }
  .header-7 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-7 .header-action .mobile-menu .menu-opener,
.header-7 .header-action .mobile-menu .search-opener {
    font-size: 1.6em;
    padding: 0.4em;
    display: block;
  }
}
.header-7 .header-action svg {
  color: var(--iconColor);
  transition: color 0.2s;
}
.header-7 .header-action .top-side-menu {
  border-right: 1px solid rgba(var(--mainMenuTextColor), 50%);
}
.header-7 .header-action .top-side-menu:last-child {
  border: none;
}
.header-7 .header-action .top-side-menu li a {
  display: block;
  font-size: 1em;
  padding: 0.3em 0.7em;
}
.header-7 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-7 .header-action .mobile-menu {
    display: flex;
  }
}
.header-7 .header-action .site-search {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  left: 0;
  background-color: var(--headerBackgroundColor);
  padding: 0 16px;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .header-7 .header-action .site-search.in-menu {
    display: none !important;
  }
}
.header-7 .header-action .site-search.opened {
  display: flex;
}
.header-7 .header-action .site-search.opened .search-closer {
  display: block;
}
.header-7 .header-action .site-search .search-closer {
  display: none;
}
.header-7 .header-action .site-search form {
  width: 100%;
}
.header-7 .header-action .site-search .search-input {
  display: inline-flex;
  width: 100%;
  display: block;
  width: 100%;
  align-self: center;
}
.header-7 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-7 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-7 .header-action .site-search .search-input .f-row input::-moz-placeholder {
  color: rgba(var(--iconColor), 40%) !important;
}
.header-7 .header-action .site-search .search-input .f-row input::placeholder {
  color: rgba(var(--iconColor), 40%) !important;
}
.header-7 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
}
@media screen and (max-width: 991px) {
  .header-7 .header-action .site-search .search-input .f-row button {
    margin-right: 1em;
  }
}
.header-7 .header-action .site-search .search-input .f-row button svg {
  position: relative;
  margin: 0;
}
.header-7 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
}
.header-7 .header-action .logo a {
  display: inline-block;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-7 .header-action .logo img {
  max-width: 100%;
}
.header-7 .header-action .logo.mobile-logo {
  display: none;
}
.header-7 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header-7 .header-action .user-menu {
    padding: 0;
  }
}
.header-7 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-7 .header-action .user-menu a {
    padding: 0.4em;
  }
}
.header-7 .header-action .user-menu a .um-info {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  display: none;
}
.header-7 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-7 .header-action .user-menu a .um-info span.bt {
  font-size: 0.9em;
  white-space: nowrap;
}
.header-7 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-7 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-7 .header-action .user-menu a:hover {
  color: var(--generalPrimaryColor);
}
.header-7 .header-action .user-menu a:hover svg {
  fill: var(--generalPrimaryColor);
}
.header-7 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
}
.header-7 .header-action .user-menu .user-menu-item .languge-list .language-item {
  outline: none !important;
  position: relative;
}
.header-7 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-7 .header-action .user-menu .user-menu-item .languge-list .language-item.current .shape.down {
  width: 10px;
  height: 10px;
  transform: translateY(2px);
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.header-7 .header-action .user-menu .user-menu-item .languge-list .language-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  width: 60px;
  padding: 0.4em 0;
}
.header-7 .header-action .user-menu .user-menu-item .languge-list .language-item ul a {
  justify-content: end;
  padding: 0.7em 1em !important;
}
.header-7 .header-action .user-menu .user-menu-item .languge-list .language-item:hover > ul, .header-7 .header-action .user-menu .user-menu-item .languge-list .language-item:focus > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.header-7 .header-action .user-menu .login {
  position: relative;
}
.header-7 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-7 .header-action .user-menu .login .account-menu ul {
  padding: 0.4em 0;
}
.header-7 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em !important;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-7 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-7 .header-action .user-menu .cart {
  position: relative;
}
.header-7 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-7 .header-action .user-menu .cart .bt {
  margin-top: 5px;
}
.header-7 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--iconColor);
  color: var(--headerBackgroundColor);
  bottom: -6px;
  font-size: 60%;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}
.header-7 .header-action .user-menu .site-search .f-row button {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-7 .header-action .search-opener {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  align-items: center;
  position: relative;
  transition: color 0.2s;
  display: flex;
}
.header-7 .header-action .search-opener svg {
  fill: var(--iconColor);
}
.header-7 .header-navigation {
  background-color: transparent;
}
.header-7 .header-navigation .menu-header {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .header-7 .header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
  }
  .header-7 .header-navigation .menu-header .site-search {
    background-color: var(--mainMenuBackgroundColor);
    padding: 0;
  }
  .header-7 .header-navigation .menu-header .site-search .f-row {
    padding-top: 0;
  }
  .header-7 .header-navigation .menu-header .site-search input {
    color: var(--mainMenuTextColor) !important;
  }
  .header-7 .header-navigation .menu-header .site-search button svg {
    fill: var(--mainMenuTextColor) !important;
  }
}
.header-7 .header-navigation nav .container {
  position: static;
}
.header-7 .header-navigation nav .navigation-list > li > a {
  display: block;
  padding: 1em;
  color: var(--iconColor);
  font-size: 1em;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 991px) {
  .header-7 .header-navigation nav .navigation-list > li > a {
    color: var(--mainMenuTextColor) !important;
  }
}
.header-7 .header-navigation nav .navigation-list > li .dropmenu {
  transform: translateX(0);
  inset-inline-start: 0;
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: top 0.2s ease-in-out;
}

:root {
  --sideWidth: 300px;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  left: 0;
  z-index: 200;
}
#home .header-7-1.fixed {
  top: 0;
  width: 100%;
  left: 0;
  z-index: 200;
}
#home .header-7-1.fixed.nav-hide, #home .header-7-1.fixed.show-hide {
  background-color: var(--headerBackgroundColor);
}

.header-7-1 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-7-1 .shape {
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 991px) {
  .header-7-1 .shape {
    width: 23px;
    height: 23px;
  }
}
.header-7-1 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-7-1 .shape:hover svg {
  fill: var(--iconTextColor);
}
@media screen and (max-width: 991px) {
  .header-7-1 .container {
    max-width: 100%;
    padding: 0 1em !important;
  }
}
.header-7-1 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-7-1 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-7-1 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-7-1 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-7-1 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-7-1 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-7-1 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-7-1 .header-top .container {
  padding: 0 1em;
}
.header-7-1 .header-top a {
  color: inherit;
}
.header-7-1 .header-top a:hover {
  opacity: 0.7;
}
.header-7-1 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-7-1 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-7-1 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-7-1 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-7-1 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-7-1 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-7-1 .header-top .top-side-menu a .shape {
  width: 20px;
  width: 20px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-7-1 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-7-1 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-7-1 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-7-1 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-7-1 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.7em 0;
  position: relative;
}
@media screen and (min-width: 991px) {
  .header-7-1 .header-action {
    position: fixed;
    left: 0;
    width: var(--sideWidth);
    height: 100vh;
    top: 0;
    background-color: var(--headerBackgroundColor);
  }
  .header-7-1 .header-action .header-navigation,
.header-7-1 .header-action .user-menu {
    width: 100%;
  }
  .header-7-1 .header-action .site-search.opened {
    position: fixed;
    height: auto;
    padding: 2em;
    left: auto;
    inset-inline-end: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    width: calc(100% - var(--sideWidth));
  }
  .header-7-1 .header-action .site-search .search-input {
    align-items: flex-start;
  }
  .header-7-1 .header-action .user-menu {
    justify-content: center !important;
    order: -1;
    border-top: 1px solid rgba(var(--rgbIconTextColor), 0.3);
    border-bottom: 1px solid rgba(var(--rgbIconTextColor), 0.3);
    margin-bottom: 2em;
    padding: 1em 0;
    -moz-column-gap: 1em;
         column-gap: 1em;
  }
  .header-7-1 .header-action .user-menu .account-menu {
    display: none !important;
  }
  .header-7-1 .header-action .user-menu .kobisi-cart.popup-cart {
    position: fixed;
    right: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
  }
  .header-7-1 .header-action .user-menu .kobisi-cart.popup-cart:before {
    display: none;
  }
  .header-7-1 .header-action nav {
    width: 100%;
  }
  .header-7-1 .header-action .container {
    width: 100%;
  }
  .header-7-1 .header-action .container > .d-flex,
.header-7-1 .header-action .container .navigation-list {
    flex-direction: column;
  }
  .header-7-1 .header-action .container > .d-flex .logo,
.header-7-1 .header-action .container .navigation-list .logo {
    min-width: 100%;
    text-align: center;
    margin-bottom: 2em;
    order: -1;
  }
  .header-7-1 .header-action .container .navigation-list {
    width: 100%;
  }
  .header-7-1 .header-action .container .navigation-list > li {
    width: 100%;
    position: relative;
  }
  .header-7-1 .header-action .container .navigation-list > li > a {
    width: 100%;
    text-align: center;
  }
  .header-7-1 .header-action .container .navigation-list > li.with-image .nav-main-item-banner {
    display: block !important;
    max-width: 30px;
    -webkit-margin-end: 0.6em;
            margin-inline-end: 0.6em;
    order: -1;
  }
  .header-7-1 .header-action .container .navigation-list > li.with-image a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .header-7-1 .header-action .container .navigation-list > li .dropmenu {
    top: 0;
    inset-inline-start: 100% !important;
    border-radius: calc(var(--generalBorderRadius) * 0.5);
    max-width: 70vw;
  }
}
.header-7-1 .header-action .mobile-menu,
.header-7-1 .header-action .menu-opener {
  display: none;
}
.header-7-1 .header-action .container {
  position: relative;
}
@media screen and (max-width: 991px) {
  .header-7-1 .header-action .container {
    padding: 0;
  }
  .header-7-1 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-7-1 .header-action .mobile-menu .menu-opener,
.header-7-1 .header-action .mobile-menu .search-opener {
    font-size: 1.6em;
    padding: 0.3em;
    display: block;
  }
}
.header-7-1 .header-action svg {
  color: var(--iconColor);
  transition: color 0.2s;
}
.header-7-1 .header-action .top-side-menu {
  border-right: 1px solid rgba(var(--mainMenuTextColor), 50%);
}
.header-7-1 .header-action .top-side-menu:last-child {
  border: none;
}
.header-7-1 .header-action .top-side-menu li a {
  display: block;
  font-size: 1em;
  padding: 0.3em 0.7em;
}
.header-7-1 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-7-1 .header-action .mobile-menu {
    display: flex;
  }
}
.header-7-1 .header-action .site-search {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  left: 0;
  background-color: var(--headerBackgroundColor);
  padding: 0 16px;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .header-7-1 .header-action .site-search.in-menu {
    display: none !important;
  }
}
.header-7-1 .header-action .site-search.opened {
  display: flex;
}
.header-7-1 .header-action .site-search.opened .search-closer {
  display: block;
}
.header-7-1 .header-action .site-search .search-closer {
  display: none;
}
.header-7-1 .header-action .site-search form {
  width: 100%;
}
.header-7-1 .header-action .site-search .search-input {
  display: inline-flex;
  width: 100%;
  display: block;
  width: 100%;
  align-self: center;
}
.header-7-1 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-7-1 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-7-1 .header-action .site-search .search-input .f-row input::-moz-placeholder {
  color: rgba(var(--iconColor), 50%) !important;
}
.header-7-1 .header-action .site-search .search-input .f-row input::placeholder {
  color: rgba(var(--iconColor), 50%) !important;
}
.header-7-1 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
}
@media screen and (max-width: 991px) {
  .header-7-1 .header-action .site-search .search-input .f-row button {
    margin-right: 1em;
  }
}
.header-7-1 .header-action .site-search .search-input .f-row button svg {
  position: relative;
  margin: 0;
}
.header-7-1 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.header-7-1 .header-action .logo a {
  display: inline-block;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-7-1 .header-action .logo img {
  max-width: 100%;
}
.header-7-1 .header-action .logo.mobile-logo {
  display: none;
}
.header-7-1 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header-7-1 .header-action .user-menu .search-opener {
    display: none !important;
  }
}
.header-7-1 .header-action .user-menu .user-menu-item a {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-7-1 .header-action .user-menu .user-menu-item a {
    padding: 0.3em;
  }
}
.header-7-1 .header-action .user-menu .user-menu-item a .um-info {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  display: none;
}
.header-7-1 .header-action .user-menu .user-menu-item a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-7-1 .header-action .user-menu .user-menu-item a .um-info span.bt {
  font-size: 0.9em;
  white-space: nowrap;
}
.header-7-1 .header-action .user-menu .user-menu-item a .um-info span.st {
  white-space: nowrap;
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-7-1 .header-action .user-menu .user-menu-item a .um-info {
    display: none;
  }
}
.header-7-1 .header-action .user-menu .user-menu-item:hover {
  cursor: pointer;
  color: var(--iconTextColor) !important;
}
.header-7-1 .header-action .user-menu .user-menu-item:hover svg {
  fill: var(--iconTextColor) !important;
}
.header-7-1 .header-action .user-menu .user-menu-item:hover .cart-qty {
  background-color: var(--iconColor) !important;
}
.header-7-1 .header-action .user-menu .user-menu-item .languge-list .language-item {
  outline: none !important;
  position: relative;
}
.header-7-1 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-7-1 .header-action .user-menu .user-menu-item .languge-list .language-item.current .shape.down {
  width: 10px;
  height: 10px;
  transform: translateY(2px);
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.header-7-1 .header-action .user-menu .user-menu-item .languge-list .language-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  width: 60px;
  padding: 0.4em 0;
}
.header-7-1 .header-action .user-menu .user-menu-item .languge-list .language-item ul a {
  justify-content: end;
  padding: 0.7em 1em !important;
}
.header-7-1 .header-action .user-menu .user-menu-item .languge-list .language-item:hover > ul, .header-7-1 .header-action .user-menu .user-menu-item .languge-list .language-item:focus > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.header-7-1 .header-action .user-menu .login {
  position: relative;
}
.header-7-1 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-7-1 .header-action .user-menu .login .account-menu ul {
  padding: 0.4em 0;
}
.header-7-1 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em !important;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-7-1 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-7-1 .header-action .user-menu .cart {
  position: relative;
}
.header-7-1 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-7-1 .header-action .user-menu .cart .bt {
  margin-top: 5px;
}
.header-7-1 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--iconColor);
  color: var(--headerBackgroundColor);
  bottom: -6px;
  font-size: 60%;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}
.header-7-1 .header-action .user-menu .site-search .f-row button {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-7-1 .header-action .search-opener {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  align-items: center;
  position: relative;
  transition: color 0.2s;
  display: flex !important;
}
.header-7-1 .header-action .search-opener svg {
  fill: var(--iconColor);
}
.header-7-1 .header-navigation {
  background-color: transparent;
}
.header-7-1 .header-navigation .menu-header {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .header-7-1 .header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
  }
  .header-7-1 .header-navigation .menu-header .site-search {
    background-color: var(--mainMenuBackgroundColor);
    padding: 0;
  }
  .header-7-1 .header-navigation .menu-header .site-search .f-row {
    padding-top: 0;
  }
  .header-7-1 .header-navigation .menu-header .site-search input {
    color: var(--mainMenuTextColor) !important;
  }
  .header-7-1 .header-navigation .menu-header .site-search button svg {
    fill: var(--mainMenuTextColor) !important;
  }
}
.header-7-1 .header-navigation nav .container {
  position: static;
}
.header-7-1 .header-navigation nav .navigation-list {
  justify-content: flex-start;
}
.header-7-1 .header-navigation nav .navigation-list > li > a {
  display: block;
  padding: 1em;
  color: var(--iconTextColor);
  font-size: 1em;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 991px) {
  .header-7-1 .header-navigation nav .navigation-list > li > a {
    color: var(--mainMenuTextColor) !important;
  }
}
.header-7-1 .header-navigation nav .navigation-list > li .dropmenu {
  transform: translateX(0);
  inset-inline-start: 0;
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: top 0.2s ease-in-out;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-8.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-8.fixed .header-navigation,
#home .header-8.fixed .header-action {
  background-color: transparent;
}
#home .header-8.fixed.nav-hide, #home .header-8.fixed.show-hide {
  background-color: var(--headerBackgroundColor);
}

.header-8 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-8 .shape {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 991px) {
  .header-8 .shape {
    width: 19px;
    height: 19px;
  }
}
.header-8 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-8 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}
@media screen and (max-width: 991px) {
  .header-8 .container {
    max-width: 100%;
    padding: 0;
  }
}
.header-8 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-8 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-8 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-8 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-8 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-8 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-8 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-8 .header-top a {
  color: inherit;
}
.header-8 .header-top a:hover {
  opacity: 0.7;
}
.header-8 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-8 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-8 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-8 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-8 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-8 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-8 .header-top .top-side-menu a .shape {
  width: 20px;
  width: 20px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-8 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-8 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-8 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-8 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-8 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.7em 0;
  position: relative;
}
.header-8 .header-action .mobile-menu,
.header-8 .header-action .menu-opener {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-8 .header-action .mobile-menu + .logo {
    display: none !important;
  }
  .header-8 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-8 .header-action .mobile-menu .menu-opener,
.header-8 .header-action .mobile-menu .search-opener {
    font-size: 1.6em;
    padding: 0.4em;
    display: block;
  }
}
.header-8 .header-action svg {
  color: var(--iconColor);
  transition: color 0.2s;
}
.header-8 .header-action .top-side-menu {
  border-right: 1px solid rgba(var(--mainMenuTextColor), 50%);
}
.header-8 .header-action .top-side-menu:last-child {
  border: none;
}
.header-8 .header-action .top-side-menu li a {
  display: block;
  font-size: 1em;
  padding: 0.3em 0.7em;
}
.header-8 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-8 .header-action .mobile-menu {
    display: flex;
  }
}
.header-8 .header-action .site-search {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  left: 0;
  background-color: var(--headerBackgroundColor);
  padding: 0 16px;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .header-8 .header-action .site-search.in-menu {
    display: none !important;
  }
}
.header-8 .header-action .site-search.opened {
  display: flex;
}
.header-8 .header-action .site-search.opened .search-closer {
  display: block;
}
.header-8 .header-action .site-search .search-closer {
  display: none;
}
.header-8 .header-action .site-search form {
  width: 100%;
}
.header-8 .header-action .site-search .search-input {
  display: inline-flex;
  width: 100%;
  display: block;
  width: 100%;
  align-self: center;
}
.header-8 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-8 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-8 .header-action .site-search .search-input .f-row input::-moz-placeholder {
  color: rgba(var(--iconColor), 40%) !important;
}
.header-8 .header-action .site-search .search-input .f-row input::placeholder {
  color: rgba(var(--iconColor), 40%) !important;
}
.header-8 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
}
@media screen and (max-width: 991px) {
  .header-8 .header-action .site-search .search-input .f-row button {
    margin-right: 1em;
  }
}
.header-8 .header-action .site-search .search-input .f-row button svg {
  position: relative;
  margin: 0;
}
.header-8 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
}
.header-8 .header-action .logo a {
  display: inline-block;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-8 .header-action .logo img {
  max-width: 100%;
}
.header-8 .header-action .logo.mobile-logo {
  display: none;
}
.header-8 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 0.6em;
       column-gap: 0.6em;
}
@media screen and (max-width: 991px) {
  .header-8 .header-action .user-menu {
    padding: 0;
  }
}
.header-8 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-8 .header-action .user-menu a {
    padding: 0.4em;
  }
}
.header-8 .header-action .user-menu a .um-info {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  display: none;
}
.header-8 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-8 .header-action .user-menu a .um-info span.bt {
  font-size: 0.9em;
  white-space: nowrap;
}
.header-8 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-8 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-8 .header-action .user-menu a:hover {
  color: var(--generalPrimaryColor);
}
.header-8 .header-action .user-menu a:hover svg {
  fill: var(--generalPrimaryColor);
}
.header-8 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
}
.header-8 .header-action .user-menu .user-menu-item .languge-list .language-item {
  outline: none !important;
  position: relative;
}
.header-8 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-8 .header-action .user-menu .user-menu-item .languge-list .language-item.current .shape.down {
  width: 10px;
  height: 10px;
  transform: translateY(2px);
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.header-8 .header-action .user-menu .user-menu-item .languge-list .language-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  width: 60px;
  padding: 0.4em 0;
}
.header-8 .header-action .user-menu .user-menu-item .languge-list .language-item ul a {
  justify-content: end;
  padding: 0.7em 1em !important;
}
.header-8 .header-action .user-menu .user-menu-item .languge-list .language-item:hover > ul, .header-8 .header-action .user-menu .user-menu-item .languge-list .language-item:focus > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.header-8 .header-action .user-menu .login {
  position: relative;
}
.header-8 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-8 .header-action .user-menu .login .account-menu ul {
  padding: 0.4em 0;
}
.header-8 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em !important;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-8 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-8 .header-action .user-menu .cart {
  position: relative;
}
.header-8 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-8 .header-action .user-menu .cart .bt {
  margin-top: 5px;
}
.header-8 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--iconColor);
  color: var(--headerBackgroundColor);
  bottom: -6px;
  font-size: 60%;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}
.header-8 .header-action .user-menu .site-search .f-row button {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-8 .header-action .search-opener {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  align-items: center;
  position: relative;
  transition: color 0.2s;
  display: flex;
}
.header-8 .header-action .search-opener svg {
  fill: var(--iconColor);
}
.header-8 .header-navigation {
  background-color: transparent;
}
.header-8 .header-navigation .menu-header {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .header-8 .header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
  }
  .header-8 .header-navigation .menu-header .site-search {
    background-color: var(--mainMenuBackgroundColor);
    padding: 0;
  }
  .header-8 .header-navigation .menu-header .site-search .f-row {
    padding-top: 0;
  }
  .header-8 .header-navigation .menu-header .site-search input {
    color: var(--mainMenuTextColor) !important;
  }
  .header-8 .header-navigation .menu-header .site-search button svg {
    fill: var(--mainMenuTextColor) !important;
  }
}
.header-8 .header-navigation nav .container {
  position: static;
}
.header-8 .header-navigation nav .navigation-list > li > a {
  display: block;
  padding: 1em;
  color: var(--iconColor);
  font-size: 0.9em;
  letter-spacing: 1px;
}
@media screen and (max-width: 991px) {
  .header-8 .header-navigation nav .navigation-list > li > a {
    color: var(--mainMenuTextColor) !important;
  }
}
.header-8 .header-navigation nav .navigation-list > li .dropmenu {
  transform: translateX(0);
  inset-inline-start: 0;
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: top 0.2s ease-in-out;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-8-1.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-8-1.fixed .header-navigation,
#home .header-8-1.fixed .header-action {
  background-color: transparent;
}
#home .header-8-1.fixed .header-toolbar,
#home .header-8-1.fixed .header-action {
  background-color: transparent;
}
#home .header-8-1.fixed .header-toolbar {
  color: var(--iconColor);
  background-color: transparent;
}
#home .header-8-1.fixed.nav-hide, #home .header-8-1.fixed.show-hide {
  background-color: var(--headerBackgroundColor);
}
#home .header-8-1.fixed.nav-hide svg,
#home .header-8-1.fixed.nav-hide .shape,
#home .header-8-1.fixed.nav-hide .header-toolbar .shape,
#home .header-8-1.fixed.nav-hide .header-toolbar svg, #home .header-8-1.fixed.show-hide svg,
#home .header-8-1.fixed.show-hide .shape,
#home .header-8-1.fixed.show-hide .header-toolbar .shape,
#home .header-8-1.fixed.show-hide .header-toolbar svg {
  fill: currentColor;
}
#home .header-8-1.fixed.nav-hide .navigation-list > li > a > span,
#home .header-8-1.fixed.nav-hide .header-toolbar *, #home .header-8-1.fixed.show-hide .navigation-list > li > a > span,
#home .header-8-1.fixed.show-hide .header-toolbar * {
  color: currentColor;
}
#home .header-8-1.fixed.nav-hide .header-toolbar, #home .header-8-1.fixed.show-hide .header-toolbar {
  color: var(--toolBarTextColor);
  background-color: var(--toolBarBackgroundColor);
  border-bottom: 1px solid rgba(var(--rgbHeaderBackgroundColor), 0.4);
}

.header-8-1 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-8-1 .shape {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 991px) {
  .header-8-1 .shape {
    width: 19px;
    height: 19px;
  }
}
.header-8-1 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-8-1 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}
@media screen and (max-width: 991px) {
  .header-8-1 .container {
    max-width: 100%;
    padding: 0;
  }
}
.header-8-1 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-8-1 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-8-1 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-8-1 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-8-1 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-8-1 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-8-1 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-8-1 .header-top .container {
  padding: 0 1em;
}
.header-8-1 .header-top a {
  color: inherit;
}
.header-8-1 .header-top a:hover {
  opacity: 0.7;
}
.header-8-1 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-8-1 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-8-1 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-8-1 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-8-1 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-8-1 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-8-1 .header-top .top-side-menu a .shape {
  width: 20px;
  width: 20px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-8-1 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-8-1 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-8-1 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-8-1 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-8-1 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1.3em 0 !important;
  position: relative;
}
.header-8-1 .header-action .mobile-menu,
.header-8-1 .header-action .menu-opener {
  display: none;
}
.header-8-1 .header-action .container {
  position: relative;
}
@media screen and (max-width: 991px) {
  .header-8-1 .header-action .container {
    padding: 0 1em;
  }
  .header-8-1 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-8-1 .header-action .mobile-menu .menu-opener,
.header-8-1 .header-action .mobile-menu .search-opener {
    font-size: 1.6em;
    padding: 0.3em;
    display: inline-flex;
  }
}
.header-8-1 .header-action svg {
  color: var(--iconColor);
  transition: color 0.2s;
}
.header-8-1 .header-action .top-side-menu {
  border-right: 1px solid rgba(var(--mainMenuTextColor), 50%);
}
.header-8-1 .header-action .top-side-menu:last-child {
  border: none;
}
.header-8-1 .header-action .top-side-menu li a {
  display: block;
  font-size: 1em;
  padding: 0.3em 0.7em;
}
.header-8-1 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-8-1 .header-action .mobile-menu {
    display: flex;
  }
}
.header-8-1 .header-action .site-search {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  left: 0;
  background-color: var(--headerBackgroundColor);
  padding: 0 16px;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .header-8-1 .header-action .site-search.in-menu {
    display: none !important;
  }
}
.header-8-1 .header-action .site-search.opened {
  display: flex;
}
.header-8-1 .header-action .site-search.opened .search-closer {
  display: block;
}
.header-8-1 .header-action .site-search .search-closer {
  display: none;
}
.header-8-1 .header-action .site-search form {
  width: 100%;
}
.header-8-1 .header-action .site-search .search-input {
  display: inline-flex;
  width: 100%;
  display: block;
  width: 100%;
  align-self: center;
}
.header-8-1 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-8-1 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-8-1 .header-action .site-search .search-input .f-row input::-moz-placeholder {
  color: rgba(var(--iconColor), 50%) !important;
}
.header-8-1 .header-action .site-search .search-input .f-row input::placeholder {
  color: rgba(var(--iconColor), 50%) !important;
}
.header-8-1 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
}
@media screen and (max-width: 991px) {
  .header-8-1 .header-action .site-search .search-input .f-row button {
    margin-right: 1em;
  }
}
.header-8-1 .header-action .site-search .search-input .f-row button svg {
  position: relative;
  margin: 0;
}
.header-8-1 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.header-8-1 .header-action .logo a {
  display: inline-block;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-8-1 .header-action .logo img {
  max-width: 100%;
}
.header-8-1 .header-action .logo.mobile-logo {
  display: none;
}
.header-8-1 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 0.6em;
       column-gap: 0.6em;
}
@media screen and (max-width: 991px) {
  .header-8-1 .header-action .user-menu .search-opener {
    display: none !important;
  }
}
.header-8-1 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-8-1 .header-action .user-menu a {
    padding: 0.3em;
  }
}
.header-8-1 .header-action .user-menu a .um-info {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  display: none;
}
.header-8-1 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-8-1 .header-action .user-menu a .um-info span.bt {
  font-size: 0.9em;
  white-space: nowrap;
}
.header-8-1 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-8-1 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-8-1 .header-action .user-menu a:hover {
  color: var(--generalPrimaryColor);
}
.header-8-1 .header-action .user-menu a:hover svg {
  fill: var(--generalPrimaryColor);
}
.header-8-1 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
}
.header-8-1 .header-action .user-menu .user-menu-item .languge-list .language-item {
  outline: none !important;
  position: relative;
}
.header-8-1 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-8-1 .header-action .user-menu .user-menu-item .languge-list .language-item.current .shape.down {
  width: 10px;
  height: 10px;
  transform: translateY(2px);
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.header-8-1 .header-action .user-menu .user-menu-item .languge-list .language-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  width: 60px;
  padding: 0.4em 0;
}
.header-8-1 .header-action .user-menu .user-menu-item .languge-list .language-item ul a {
  justify-content: end;
  padding: 0.7em 1em !important;
}
.header-8-1 .header-action .user-menu .user-menu-item .languge-list .language-item:hover > ul, .header-8-1 .header-action .user-menu .user-menu-item .languge-list .language-item:focus > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.header-8-1 .header-action .user-menu .login {
  position: relative;
}
.header-8-1 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-8-1 .header-action .user-menu .login .account-menu ul {
  padding: 0.4em 0;
}
.header-8-1 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em !important;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-8-1 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-8-1 .header-action .user-menu .cart {
  position: relative;
}
.header-8-1 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-8-1 .header-action .user-menu .cart .bt {
  margin-top: 5px;
}
.header-8-1 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--iconColor);
  color: var(--headerBackgroundColor);
  bottom: -6px;
  font-size: 60%;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}
.header-8-1 .header-action .user-menu .site-search .f-row button {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-8-1 .header-action .search-opener {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  align-items: center;
  position: relative;
  transition: color 0.2s;
  display: flex !important;
}
.header-8-1 .header-action .search-opener svg {
  fill: var(--iconColor);
}
.header-8-1 .header-navigation {
  background-color: transparent;
}
.header-8-1 .header-navigation .menu-header {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .header-8-1 .header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
  }
  .header-8-1 .header-navigation .menu-header .site-search {
    background-color: var(--mainMenuBackgroundColor);
    padding: 0;
  }
  .header-8-1 .header-navigation .menu-header .site-search .f-row {
    padding-top: 0;
  }
  .header-8-1 .header-navigation .menu-header .site-search input {
    color: var(--mainMenuTextColor) !important;
  }
  .header-8-1 .header-navigation .menu-header .site-search button svg {
    fill: var(--mainMenuTextColor) !important;
  }
}
.header-8-1 .header-navigation nav > .container {
  padding: 0;
  max-width: 100%;
}
.header-8-1 .header-navigation nav .container {
  position: static;
}
.header-8-1 .header-navigation nav .navigation-list {
  justify-content: flex-start;
}
.header-8-1 .header-navigation nav .navigation-list > li > a {
  display: block;
  padding: 1em;
  color: var(--iconColor);
  font-size: 0.9em;
  letter-spacing: 1px;
}
@media screen and (max-width: 991px) {
  .header-8-1 .header-navigation nav .navigation-list > li > a {
    color: var(--mainMenuTextColor) !important;
  }
}
.header-8-1 .header-navigation nav .navigation-list > li .dropmenu {
  transform: translateX(0);
  inset-inline-start: 0;
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: top 0.2s ease-in-out;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-9.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-9.fixed .header-navigation,
#home .header-9.fixed .header-action {
  background-color: transparent;
}
#home .header-9.fixed.nav-hide, #home .header-9.fixed.show-hide {
  background-color: var(--headerBackgroundColor) !important;
}

.header-9 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-9 .shape {
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 991px) {
  .header-9 .shape {
    width: 23px;
    height: 23px;
  }
}
.header-9 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-9 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}
@media screen and (max-width: 991px) {
  .header-9 .container {
    max-width: 100%;
  }
}
.header-9 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-9 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-9 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-9 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-9 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-9 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-9 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-9 .header-top .container {
  padding: 0 1em;
}
.header-9 .header-top a {
  color: inherit;
}
.header-9 .header-top a:hover {
  opacity: 0.7;
}
.header-9 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-9 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-9 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-9 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-9 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-9 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-9 .header-top .top-side-menu a .shape {
  width: 20px;
  width: 20px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-9 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-9 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-9 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-9 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-9 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.7em 0;
  position: relative;
}
.header-9 .header-action > .container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.header-9 .header-action .shape {
  min-width: 28px;
  min-height: 28px;
}
.header-9 .header-action .mobile-menu {
  display: flex;
  align-items: center;
}
.header-9 .header-action .mobile-menu .menu-opener,
.header-9 .header-action .mobile-menu .search-opener {
  font-size: 1.6em;
  padding: 0.3em;
  display: block;
}
.header-9 .header-action svg {
  color: var(--iconColor);
  transition: color 0.2s;
}
.header-9 .header-action .top-side-menu {
  border-right: 1px solid rgba(var(--mainMenuTextColor), 50%);
}
.header-9 .header-action .top-side-menu:last-child {
  border: none;
}
.header-9 .header-action .top-side-menu li a {
  display: block;
  font-size: 1em;
  padding: 0.3em 0.7em;
}
.header-9 .header-action .mobile-menu {
  display: flex;
}
.header-9 .header-action .site-search {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  left: 0;
  background-color: var(--headerBackgroundColor);
  padding: 0 16px;
  z-index: 15;
}
.header-9 .header-action .site-search input {
  color: var(--iconColor);
}
.header-9 .header-action .site-search button svg {
  fill: var(--iconColor);
}
@media screen and (max-width: 991px) {
  .header-9 .header-action .site-search.in-menu {
    display: none !important;
  }
}
.header-9 .header-action .site-search.opened {
  display: flex;
}
.header-9 .header-action .site-search.opened .search-closer {
  display: block;
}
.header-9 .header-action .site-search .search-closer {
  display: none;
}
.header-9 .header-action .site-search form {
  width: 100%;
}
.header-9 .header-action .site-search .search-input {
  display: inline-flex;
  width: 100%;
  display: block;
  width: 100%;
  align-self: center;
}
.header-9 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-9 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-9 .header-action .site-search .search-input .f-row input::-moz-placeholder {
  color: rgba(var(--iconColor), 50%) !important;
}
.header-9 .header-action .site-search .search-input .f-row input::placeholder {
  color: rgba(var(--iconColor), 50%) !important;
}
.header-9 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
}
@media screen and (max-width: 991px) {
  .header-9 .header-action .site-search .search-input .f-row button {
    margin-right: 1em;
  }
}
.header-9 .header-action .site-search .search-input .f-row button svg {
  position: relative;
  margin: 0;
}
.header-9 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.header-9 .header-action .logo a {
  display: inline-block;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-9 .header-action .logo img {
  max-width: 100%;
}
.header-9 .header-action .logo.mobile-logo {
  display: none;
}
.header-9 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header-9 .header-action .user-menu .search-opener {
    display: none !important;
  }
}
.header-9 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em;
  font-size: 0.9em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-9 .header-action .user-menu a {
    padding: 0.3em;
  }
}
.header-9 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-9 .header-action .user-menu a .um-info span.bt {
  font-size: 0.9em;
  white-space: nowrap;
}
.header-9 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-9 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-9 .header-action .user-menu a:hover {
  color: var(--generalPrimaryColor);
}
.header-9 .header-action .user-menu a:hover svg {
  fill: var(--generalPrimaryColor);
}
.header-9 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
}
.header-9 .header-action .user-menu .user-menu-item .languge-list .language-item {
  outline: none !important;
  position: relative;
}
.header-9 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-9 .header-action .user-menu .user-menu-item .languge-list .language-item.current .shape.down {
  width: 10px;
  height: 10px;
  transform: translateY(2px);
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.header-9 .header-action .user-menu .user-menu-item .languge-list .language-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  width: 60px;
  padding: 0.4em 0;
}
.header-9 .header-action .user-menu .user-menu-item .languge-list .language-item ul a {
  justify-content: end;
  padding: 0.7em 1em !important;
}
.header-9 .header-action .user-menu .user-menu-item .languge-list .language-item:hover > ul, .header-9 .header-action .user-menu .user-menu-item .languge-list .language-item:focus > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.header-9 .header-action .user-menu .login {
  position: relative;
}
.header-9 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-9 .header-action .user-menu .login .account-menu ul {
  padding: 0.4em 0;
}
.header-9 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em !important;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-9 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-9 .header-action .user-menu .cart {
  position: relative;
}
.header-9 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-9 .header-action .user-menu .cart .bt {
  margin-top: 5px;
}
.header-9 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--iconColor);
  color: var(--headerBackgroundColor);
  bottom: -6px;
  font-size: 60%;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}
.header-9 .header-action .user-menu .site-search .f-row button {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-9 .header-action .search-opener {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  align-items: center;
  position: relative;
  transition: color 0.2s;
  display: flex;
}
.header-9 .header-action .search-opener .search-text {
  font-size: 0.8em;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--iconColor);
  padding-bottom: 0.2em;
  width: 170px;
}
.header-9 .header-action .search-opener .shape {
  -webkit-margin-end: 0.4em;
          margin-inline-end: 0.4em;
}
.header-9 .header-action .search-opener svg {
  fill: var(--iconColor);
}
.header-9 .header-navigation {
  height: 100%;
  background-color: transparent;
}
@media screen and (min-width: 671px) and (max-width: 991px) {
  .header-9 .header-navigation {
    left: -50% !important;
  }
}
.header-9 .header-navigation .desktop-menu {
  display: none;
}
@media screen and (min-width: 992px) {
  .header-9 .header-navigation .desktop-menu {
    display: block;
    position: relative;
    z-index: 10;
  }
  .header-9 .header-navigation nav {
    position: fixed;
    height: 100%;
    inset-inline-start: -100%;
    top: 0;
    background-color: var(--headerBackgroundColor) !important;
    transition: left 0.4s;
    z-index: 1;
    overflow: hidden;
    padding-top: 8em;
    width: 400px;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header-9 .header-navigation nav.opened {
    inset-inline-start: 0;
  }
}
@media screen and (min-width: 992px) and (max-height: 650px) {
  .header-9 .header-navigation nav > .container {
    max-height: 50%;
    overflow-y: auto;
  }
}
@media screen and (min-width: 992px) {
  .header-9 .header-navigation nav .navigation-list {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .header-9 .header-navigation nav .navigation-list > li {
    position: unset;
    width: 100%;
    transition: padding 0.2s ease-in-out;
  }
  .header-9 .header-navigation nav .navigation-list > li > a {
    font-size: 1.4em !important;
    padding: 0.4em 1em !important;
    width: 100%;
    color: var(--iconColor) !important;
    transition: padding 0.2s ease-in-out;
  }
  .header-9 .header-navigation nav .navigation-list > li > a span {
    background-color: var(--headerBackgroundColor) !important;
    position: relative;
    z-index: 1;
  }
  .header-9 .header-navigation nav .navigation-list > li:hover > a {
    -webkit-padding-start: 1.4em !important;
            padding-inline-start: 1.4em !important;
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu {
    width: 300px !important;
    left: 100% !important;
    z-index: 999 !important;
    transform: none !important;
    -webkit-padding-start: 1em !important;
            padding-inline-start: 1em !important;
    height: 100%;
    top: 0 !important;
    padding: 8em 0 2em 1.7em !important;
    position: relative;
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background-color: var(--headerBackgroundColor);
    z-index: -1;
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu ul {
    -moz-column-count: 1 !important;
         column-count: 1 !important;
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu ul li {
    margin-bottom: 0 !important;
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu ul li ul {
    -webkit-padding-start: 1em;
            padding-inline-start: 1em;
    -webkit-padding-before: 0.5em;
            padding-block-start: 0.5em;
    -webkit-padding-after: 0.8em;
            padding-block-end: 0.8em;
    font-size: 90%;
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu ul li ul li {
    opacity: 0.8 !important;
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu ul a {
    font-weight: normal !important;
    opacity: 1 !important;
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu .container {
    flex-direction: column;
    overflow: auto;
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu .nav-banner {
    margin-top: 1em;
    padding: 0 !important;
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu.large .nav-banner, .header-9 .header-navigation nav .navigation-list > li .dropmenu.medium .nav-banner {
    position: absolute;
    left: 120%;
    /* width: 100%; */
    overflow: hidden;
    width: 40vw;
    max-width: unset !important;
  }
  .header-9 .header-navigation nav .navigation-list > li.has-sub {
    width: 100%;
  }
  .header-9 .header-navigation nav .navigation-list > li.has-sub > a {
    position: relative !important;
    display: block;
    background-color: var(--headerBackgroundColor);
    z-index: 1;
  }
  .header-9 .header-navigation nav .navigation-list > li.has-sub > a span {
    position: relative;
    -webkit-padding-end: 2em;
            padding-inline-end: 2em;
    z-index: 2;
  }
  .header-9 .header-navigation nav .navigation-list > li.has-sub > a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--iconColor);
    position: absolute;
    top: 55%;
    left: 20%;
    transform: translateY(-50%);
    z-index: -1;
    transition: width 0.2s ease-in-out;
  }
  .header-9 .header-navigation nav .navigation-list > li.has-sub:focus {
    padding: 1em 0;
  }
  .header-9 .header-navigation nav .navigation-list > li.has-sub:focus > a {
    -webkit-padding-start: 1.4em !important;
            padding-inline-start: 1.4em !important;
    color: var(--generalSecondaryColor) !important;
  }
  .header-9 .header-navigation nav .navigation-list > li.has-sub:focus > a:after {
    width: 80%;
    opacity: 0.3;
  }
}
@media screen and (min-width: 992px) {
  .header-9 .header-navigation nav .side-social-links {
    display: block !important;
    padding: 1em 1.2em;
  }
  .header-9 .header-navigation nav .side-social-links ul li a {
    padding: 0.5em 0;
    color: var(--mainMenuTextColor);
  }
  .header-9 .header-navigation nav .side-social-links ul li svg {
    fill: var(--mainMenuTextColor);
  }
}
@media screen and (max-width: 991px) {
  .header-9 .header-navigation {
    position: fixed;
    height: 100%;
    top: 0;
    transition: left 0.4s;
    z-index: 1;
    overflow: hidden;
  }
  .header-9 .header-navigation .container {
    position: unset !important;
    padding: 0 !important;
  }
  .header-9 .header-navigation.opened {
    left: 0 !important;
  }
  .header-9 .header-navigation .menu-title {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
  }
  .header-9 .header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
  }
  .header-9 .header-navigation nav ul.navigation-list {
    display: block;
  }
  .header-9 .header-navigation nav ul.navigation-list > li {
    display: list-item;
    height: auto;
    position: unset;
  }
  .header-9 .header-navigation nav ul.navigation-list > li a {
    font-size: 1.2em !important;
  }
  .header-9 .header-navigation nav ul.navigation-list > li.with-image > a {
    padding: 0;
    display: flex;
    align-items: center;
  }
  .header-9 .header-navigation nav ul.navigation-list > li.with-image > a .nav-main-item-banner {
    -webkit-margin-start: 1em;
            margin-inline-start: 1em;
    display: block !important;
  }
  .header-9 .header-navigation nav ul.navigation-list > li > .dropmenu {
    height: 100%;
    width: 100%;
    top: 0 !important;
    margin-top: 0 !important;
    position: absolute !important;
    display: block;
    visibility: visible;
    opacity: 1;
    padding: 0;
    left: auto !important;
    right: -600px;
    transform: translateX(0);
    transition: all 0.4s ease;
    transition-delay: 0s !important;
    border-radius: 0 !important;
  }
  .header-9 .header-navigation nav ul.navigation-list > li > .dropmenu .menu-title {
    align-items: center;
  }
  .header-9 .header-navigation nav ul.navigation-list > li > .dropmenu.medium .nav-banner-item {
    display: none !important;
  }
  .header-9 .header-navigation nav ul.navigation-list > li > .dropmenu > .container {
    display: block;
    height: 100%;
  }
  .header-9 .header-navigation nav ul.navigation-list > li > .dropmenu ul {
    transition: all 0.3s;
    padding: 0 1em;
  }
  .header-9 .header-navigation nav ul.navigation-list > li > .dropmenu ul.first-child {
    display: block !important;
    -moz-column-count: unset !important;
         column-count: unset !important;
  }
  .header-9 .header-navigation nav ul.navigation-list > li > .dropmenu ul li {
    margin: 0 !important;
    width: 100%;
    min-width: 100%;
  }
  .header-9 .header-navigation nav ul.navigation-list > li > .dropmenu ul li a {
    display: block;
    font-size: 1.2em !important;
    margin: 0 !important;
    padding: 0.7em 0 !important;
    font-weight: normal !important;
    font-weight: normal;
  }
  .header-9 .header-navigation nav ul.navigation-list > li > .dropmenu ul .sub-child {
    visibility: visible;
    opacity: 1;
    left: auto;
    right: -600px;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    margin-top: 0;
    z-index: 1;
  }
  .header-9 .header-navigation nav ul.navigation-list > li > .dropmenu > ul {
    -moz-columns: unset;
         columns: unset;
    width: 100%;
    background-color: inherit;
  }
  .header-9 .header-navigation nav ul.navigation-list .current .dropmenu, .header-9 .header-navigation nav ul.navigation-list .current > .sub-child {
    right: 0 !important;
    z-index: 1;
    transform: unset !important;
  }
}
.header-9 .header-navigation nav {
  max-height: 100%;
}
.header-9 .header-navigation nav .container {
  position: unset;
  padding: 0;
}
.header-9 .header-navigation nav .hidden-link-wrapper {
  position: absolute;
  right: 0;
}
.header-9 .header-navigation nav .navigation-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.header-9 .header-navigation nav .navigation-list > li {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
}
.header-9 .header-navigation nav .navigation-list > li.has-large, .header-9 .header-navigation nav .navigation-list > li.has-medium {
  position: unset;
}
.header-9 .header-navigation nav .navigation-list > li > a {
  display: block;
  padding: 1em;
  color: var(--mainMenuTextColor);
  font-size: 1em;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu {
  opacity: 0;
  visibility: hidden;
  margin-top: -10px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bodyBackgroundColor);
  padding: 1.6em 0.6em;
  z-index: 1;
  min-width: 200px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  transition-delay: 0.3s;
  border-bottom-left-radius: var(--generalBorderRadius);
  border-bottom-right-radius: var(--generalBorderRadius);
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu ul li a {
  font-size: 1em;
  color: var(--generalTextColor);
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu > .container {
  display: flex;
  justify-content: space-between;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu .nav-banner {
  padding-left: 1em;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu .nav-banner .nav-banner-item {
  width: 100%;
  margin-top: 1em;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu .nav-banner .nav-banner-item:first-child {
  margin-top: 0;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.small {
  font-size: unset;
}
@media screen and (min-width: 769px) {
  .header-9 .header-navigation nav .navigation-list > li .dropmenu.small {
    padding: 0;
    border-radius: 0 0 var(--generalBorderRadius) var(--generalBorderRadius);
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu.small .first-child {
    width: 100%;
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li {
    position: relative;
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li a {
    display: block;
    padding: 1em;
    font-size: 1em;
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu.small .first-child ul {
    background-color: var(--bodyBackgroundColor);
    position: absolute;
    opacity: 0;
    left: 80%;
    display: none;
    top: 0;
    visibility: hidden;
    border-radius: var(--generalBorderRadius);
    border: 1px solid var(--boxBorderColor);
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li:hover {
    background-color: var(--boxBackgroundColor);
  }
  .header-9 .header-navigation nav .navigation-list > li .dropmenu.small .first-child li:hover > ul {
    width: 100%;
    transition-delay: 1s;
    display: block;
    opacity: 1;
    visibility: visible;
    left: 90%;
    -webkit-animation-name: smallSubMenu;
            animation-name: smallSubMenu;
    -webkit-animation-duration: 0.3s;
            animation-duration: 0.3s;
  }
  @-webkit-keyframes smallSubMenu {
    0% {
      left: 80%;
      opacity: 0;
      visibility: hidden;
    }
    100% {
      left: 90%;
      opacity: 1;
      visibility: visible;
    }
  }
  @keyframes smallSubMenu {
    0% {
      left: 80%;
      opacity: 0;
      visibility: hidden;
    }
    100% {
      left: 90%;
      opacity: 1;
      visibility: visible;
    }
  }
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.medium {
  width: 100%;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child {
  -moz-column-count: var(--mediumMenuColumn);
       column-count: var(--mediumMenuColumn);
  -moz-column-gap: 1em;
       column-gap: 1em;
  -moz-column-break-after: avoid-column;
       break-after: avoid-column;
  max-width: 100%;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li {
  min-width: 200px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  display: flex;
  flex-direction: column;
  margin: 0 0.5em;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li .nav-banner-item {
  width: 100%;
  margin-bottom: 1.2em;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li .nav-banner-item img {
  width: 100%;
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li .first-cihld-name {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li > li ul {
  height: 50%;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.medium .first-child > li > li ul li a {
  font-size: 0.8em;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.large {
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  transform: translateX(0);
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul {
  -moz-column-count: var(--largeMenuColumn);
       column-count: var(--largeMenuColumn);
  -moz-column-gap: 1em;
       column-gap: 1em;
  -moz-column-break-after: avoid-column;
       break-after: avoid-column;
  max-width: 100%;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul > li {
  margin-bottom: 1em;
  min-width: 200px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul > li .first-cihld-name {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.large > .container > ul > li > a {
  font-weight: 600;
  color: var(--generalTextColor);
  font-size: 1em;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.large .nav-banner {
  -moz-column-count: var(--largeMenuBannerColumn);
       column-count: var(--largeMenuBannerColumn);
  -moz-column-gap: 1em;
       column-gap: 1em;
  max-width: 60%;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu.large .nav-banner img {
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--generalBorderRadius);
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu > .container > ul > li {
  min-width: 200px;
}
.header-9 .header-navigation nav .navigation-list > li .dropmenu > .container > ul > li a {
  display: block;
  padding: 0.3em 0;
}
.header-9 .header-navigation nav .navigation-list > li > .dropmenu {
  z-index: -1;
}
.header-9 .header-navigation nav .navigation-list > li .view-all {
  display: block !important;
}
@media screen and (min-width: 992px) {
  .header-9 .header-navigation nav .navigation-list > li.has-sub > a {
    pointer-events: none;
  }
  .header-9 .header-navigation nav .navigation-list > li.has-sub:focus > a {
    color: var(--generalPrimaryColor);
  }
  .header-9 .header-navigation nav .navigation-list > li.has-sub:focus > .dropmenu {
    transition: all 0.2s;
    transition-delay: 0.3s;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
  }
  .header-9 .header-navigation nav .navigation-list > li.has-sub:focus > .dropmenu li a {
    color: var(--generalTextColor);
  }
  .header-9 .header-navigation nav .navigation-list > li.has-sub:focus > .dropmenu li:hover > a {
    opacity: 0.7;
  }
}
.header-9 .header-navigation .side-login {
  display: none;
}
.header-9 .header-navigation .side-social-links {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-9 .header-navigation .side-social-links {
    display: block;
  }
}
.header-9 .header-navigation .side-social-links ul li a {
  display: flex;
  align-items: center;
}
.header-9 .header-navigation .side-social-links ul li a .shape {
  margin-right: 0.5em;
}
.header-9 .header-navigation .menu-header,
.header-9 .header-navigation .menu-title,
.header-9 .header-navigation .nav-main-item-banner {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .header-9 .header-navigation .menu-header,
.header-9 .header-navigation .menu-title,
.header-9 .header-navigation .nav-main-item-banner {
    display: flex !important;
  }
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: top 0.2s ease-in-out;
}
@media screen and (max-width: 991px) {
  #kbs-wizard-header-area {
    top: 0px !important;
  }
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-9-1.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-9-1.fixed .header-navigation,
#home .header-9-1.fixed .header-action {
  background-color: transparent;
}
#home .header-9-1.fixed.show-hide {
  background-color: var(--headerBackgroundColor) !important;
}

.header-9-1 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-9-1.nav-hide .header-navigation {
  background-color: var(--mainMenuBackgroundColor) !important;
}
@media screen and (max-width: 991px) {
  .header-9-1 {
    top: 0px !important;
  }
  .header-9-1.nav-hide {
    background-color: var(--headerBackgroundColor) !important;
    top: 0px !important;
  }
}
@media screen and (max-width: 991px) {
  .header-9-1 .container.full-w {
    max-width: 100% !important;
  }
}
.header-9-1.onSlider {
  background-color: var(--fixedHeaderBackgroundColor);
}
@media screen and (min-width: 769px) {
  .header-9-1.page-up .header-action {
    display: none;
  }
  .header-9-1.page-down .header-action {
    display: block;
  }
}
.header-9-1 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-9-1 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-9-1 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-9-1 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-9-1 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-9-1 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-9-1 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-9-1 .header-top a {
  color: inherit;
}
.header-9-1 .header-top a:hover {
  opacity: 0.7;
}
.header-9-1 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-9-1 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-9-1 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-9-1 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-9-1 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-9-1 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-9-1 .header-top .top-side-menu a :not(.flag).shape {
  width: 18px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-9-1 .header-top .top-side-menu a :not(.flag).shape svg {
  fill: var(--toolBarTextColor);
}
.header-9-1 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-9-1 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-9-1 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-9-1 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1em 0;
  position: relative;
}
.header-9-1 .header-action .mobile-menu,
.header-9-1 .header-action .menu-opener {
  display: none;
}
.header-9-1 .header-action > .container {
  position: relative;
}
@media screen and (min-width: 992px) {
  .header-9-1 .header-action > .container .language-select {
    position: absolute;
    inset-inline-end: 0;
  }
}
@media screen and (max-width: 991px) {
  .header-9-1 .header-action {
    padding: 0.3em 0;
  }
  .header-9-1 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-9-1 .header-action .mobile-menu .menu-opener,
.header-9-1 .header-action .mobile-menu .search-opener {
    padding: 0.3em;
    display: inline-flex;
  }
}
.header-9-1 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-9-1 .header-action .mobile-menu {
    display: flex;
  }
}
@media screen and (max-width: 991px) {
  .header-9-1 .header-action .site-search {
    display: none;
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    left: 0;
    background-color: var(--headerBackgroundColor);
    padding: 0 16px;
    z-index: 1;
  }
  .header-9-1 .header-action .site-search input {
    color: var(--iconColor);
  }
  .header-9-1 .header-action .site-search button svg {
    fill: var(--iconColor);
  }
  .header-9-1 .header-action .site-search.in-menu {
    display: none !important;
  }
}
.header-9-1 .header-action .site-search.opened {
  display: flex;
}
.header-9-1 .header-action .site-search.opened .search-closer {
  display: block;
}
.header-9-1 .header-action .site-search .search-closer {
  display: none;
}
.header-9-1 .header-action .site-search .search-input {
  display: inline-flex;
}
@media screen and (max-width: 991px) {
  .header-9-1 .header-action .site-search .search-input {
    display: block;
    width: 100%;
    align-self: center;
  }
}
.header-9-1 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-9-1 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-9-1 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  min-height: 2.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
  -webkit-margin-end: 0.7em;
          margin-inline-end: 0.7em;
}
.header-9-1 .header-action .site-search .search-input .f-row button i {
  position: relative;
  font-size: 1.4em;
}
.header-9-1 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
}
.header-9-1 .header-action .logo a {
  display: block;
  text-align: center;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-9-1 .header-action .logo img {
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .header-9-1 .header-action .logo .row {
    flex-wrap: nowrap;
  }
  .header-9-1 .header-action .logo .row a {
    display: inline-flex;
    color: inherit;
  }
}
.header-9-1 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  position: relative;
  align-items: inherit;
}
@media screen and (max-width: 991px) {
  .header-9-1 .header-action .user-menu {
    padding: 0;
  }
}
.header-9-1 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-9-1 .header-action .user-menu a {
    padding: 0.3em;
  }
}
.header-9-1 .header-action .user-menu a .um-info {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.header-9-1 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-9-1 .header-action .user-menu a .um-info span.bt {
  font-size: 0.9em;
  white-space: nowrap;
}
.header-9-1 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-9-1 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-9-1 .header-action .user-menu a:hover {
  color: var(--generalPrimaryColor);
}
.header-9-1 .header-action .user-menu a:hover :not(.flag) svg {
  fill: var(--generalPrimaryColor);
}
.header-9-1 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
}
.header-9-1 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-9-1 .header-action .user-menu .login {
  position: relative;
}
.header-9-1 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  right: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: var(--generalBorderRadius);
  border: 1px solid var(--boxBorderColor);
}
.header-9-1 .header-action .user-menu .login .account-menu ul {
  padding: 0.3em 0;
}
.header-9-1 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-9-1 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-9-1 .header-action .user-menu .cart {
  position: relative;
}
.header-9-1 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-9-1 .header-action .user-menu .cart .bt {
  margin-top: 5px;
}
.header-9-1 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--generalTextColor);
  color: var(--headerBackgroundColor);
  bottom: -6px;
  font-size: 60%;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}
.header-9-1 .header-navigation {
  z-index: 20;
}
.header-9-1 .shape {
  width: 26px;
  height: 26px;
}
.header-9-1 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-9-1 .shape:hover :not(.flag) svg {
  fill: var(--generalPrimaryColor);
}

#kbs-wizard-header-area {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: top 0.2s ease-in-out;
}

#home #kbs-wizard-header-area.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
}
#home .header-9-2.fixed {
  top: 0;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 200;
  background-color: transparent;
}
#home .header-9-2.fixed .header-navigation,
#home .header-9-2.fixed .header-action {
  background-color: transparent;
}
#home .header-9-2.fixed.nav-hide, #home .header-9-2.fixed.show-hide {
  background-color: var(--headerBackgroundColor);
}

.header-9-2 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--headerBackgroundColor);
  transition: top 0.2s ease-in-out;
}
.header-9-2 .shape {
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 991px) {
  .header-9-2 .shape {
    width: 23px;
    height: 23px;
  }
}
.header-9-2 .shape svg {
  fill: var(--iconColor);
  width: 100%;
  max-height: 100%;
}
.header-9-2 .shape:hover svg {
  fill: var(--generalPrimaryColor);
}
@media screen and (max-width: 991px) {
  .header-9-2 .container {
    max-width: 100%;
    -webkit-padding-end: 0;
            padding-inline-end: 0;
  }
}
.header-9-2 .header-attention-bar {
  position: relative;
  z-index: 0;
}
.header-9-2 .header-attention-bar .banner {
  background-color: var(--attentionBarBackgroundColor);
  color: var(--attentionBarTextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 40px;
}
.header-9-2 .header-attention-bar .banner a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40px;
}
.header-9-2 .header-attention-bar .banner .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 671px;
  width: 100%;
  padding: 0 1em;
  text-align: center;
  z-index: 1;
}
.header-9-2 .header-attention-bar .banner .text * {
  font-size: 0.9em;
}
.header-9-2 .header-attention-bar .banner img {
  max-height: 90px;
  width: unset;
  max-width: 100%;
}
.header-9-2 .header-top {
  background-color: var(--toolBarBackgroundColor);
  color: var(--toolBarTextColor);
}
.header-9-2 .header-top a {
  color: inherit;
}
.header-9-2 .header-top a:hover {
  opacity: 0.7;
}
.header-9-2 .header-top .toolbar-item {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-9-2 .header-top .toolbar-item.toolbar-text {
  justify-content: center;
}
.header-9-2 .header-top .top-side-menu {
  -webkit-padding-end: 1em;
          padding-inline-end: 1em;
  -webkit-border-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
          border-inline-start: 1px solid rgba(var(--toolBarBorderColor), 0.35);
}
.header-9-2 .header-top .top-side-menu:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.header-9-2 .header-top .top-side-menu:first-child {
  -webkit-border-start: none;
          border-inline-start: none;
}
.header-9-2 .header-top .top-side-menu a {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
}
.header-9-2 .header-top .top-side-menu a .shape {
  width: 20px;
  width: 20px;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
}
.header-9-2 .header-top .top-side-menu a .shape svg {
  fill: var(--toolBarTextColor);
}
.header-9-2 .header-top .social-links {
  display: flex;
  align-items: center;
}
.header-9-2 .header-top .social-links li .shape {
  width: 22px;
  height: 22px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
.header-9-2 .header-top .social-links li .shape svg {
  fill: var(--toolBarTextColor);
}
.header-9-2 .header-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.7em 0;
  position: relative;
}
.header-9-2 .header-action .mobile-menu,
.header-9-2 .header-action .menu-opener {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-9-2 .header-action .mobile-menu {
    display: flex;
    align-items: center;
  }
  .header-9-2 .header-action .mobile-menu .menu-opener,
.header-9-2 .header-action .mobile-menu .search-opener {
    font-size: 1.6em;
    padding: 0.4em;
    display: inline-flex;
  }
}
.header-9-2 .header-action svg {
  color: var(--iconColor);
  transition: color 0.2s;
}
.header-9-2 .header-action .top-side-menu {
  border-right: 1px solid rgba(var(--mainMenuTextColor), 50%);
}
.header-9-2 .header-action .top-side-menu:last-child {
  border: none;
}
.header-9-2 .header-action .top-side-menu li a {
  display: block;
  font-size: 1em;
  padding: 0.3em 0.7em;
}
.header-9-2 .header-action .mobile-menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .header-9-2 .header-action .mobile-menu {
    display: flex;
  }
}
.header-9-2 .header-action .site-search {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  left: 0;
  background-color: var(--headerBackgroundColor);
  padding: 0 16px;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .header-9-2 .header-action .site-search.in-menu {
    display: none !important;
  }
}
.header-9-2 .header-action .site-search.opened {
  display: flex;
}
.header-9-2 .header-action .site-search.opened .search-closer {
  display: block;
}
.header-9-2 .header-action .site-search .search-closer {
  display: none;
}
.header-9-2 .header-action .site-search form {
  width: 100%;
}
.header-9-2 .header-action .site-search .search-input {
  display: inline-flex;
  width: 100%;
  display: block;
  width: 100%;
  align-self: center;
}
.header-9-2 .header-action .site-search .search-input .f-row {
  margin-bottom: 0;
  background-color: transparent;
}
.header-9-2 .header-action .site-search .search-input .f-row input {
  width: 100%;
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--iconColor);
}
.header-9-2 .header-action .site-search .search-input .f-row input::-moz-placeholder {
  color: rgba(var(--iconColor), 40%) !important;
}
.header-9-2 .header-action .site-search .search-input .f-row input::placeholder {
  color: rgba(var(--iconColor), 40%) !important;
}
.header-9-2 .header-action .site-search .search-input .f-row button {
  min-width: auto;
  padding: 0 0.5em;
  background-color: transparent !important;
  color: var(--iconColor) !important;
}
@media screen and (max-width: 991px) {
  .header-9-2 .header-action .site-search .search-input .f-row button {
    margin-right: 1em;
  }
}
.header-9-2 .header-action .site-search .search-input .f-row button svg {
  position: relative;
  margin: 0;
}
.header-9-2 .header-action .logo {
  padding-left: 0;
  padding-right: 0;
}
.header-9-2 .header-action .logo a {
  display: inline-block;
  color: inherit;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
.header-9-2 .header-action .logo img {
  max-width: 100%;
}
.header-9-2 .header-action .logo.mobile-logo {
  display: none;
}
.header-9-2 .header-action .user-menu {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header-9-2 .header-action .user-menu {
    padding: 0;
  }
}
.header-9-2 .header-action .user-menu a {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
@media screen and (max-width: 991px) {
  .header-9-2 .header-action .user-menu a {
    padding: 0.4em;
  }
}
.header-9-2 .header-action .user-menu a .um-info {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  display: none;
}
.header-9-2 .header-action .user-menu a .um-info span {
  color: inherit;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
.header-9-2 .header-action .user-menu a .um-info span.bt {
  font-size: 0.9em;
  white-space: nowrap;
}
.header-9-2 .header-action .user-menu a .um-info span.st {
  white-space: nowrap;
  font-size: 0.7em;
  margin-top: 3px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header-9-2 .header-action .user-menu a .um-info {
    display: none;
  }
}
.header-9-2 .header-action .user-menu a:hover {
  color: var(--generalPrimaryColor);
}
.header-9-2 .header-action .user-menu a:hover svg {
  fill: var(--generalPrimaryColor);
}
.header-9-2 .header-action .user-menu a:hover .cart-qty {
  background-color: var(--generalPrimaryColor);
}
.header-9-2 .header-action .user-menu .user-menu-item .languge-list .language-item {
  outline: none !important;
  position: relative;
}
.header-9-2 .header-action .user-menu .user-menu-item .languge-list .language-item a {
  display: inline-flex;
  align-items: center;
}
.header-9-2 .header-action .user-menu .user-menu-item .languge-list .language-item.current .shape.down {
  width: 10px;
  height: 10px;
  transform: translateY(2px);
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.header-9-2 .header-action .user-menu .user-menu-item .languge-list .language-item ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
  width: 60px;
  padding: 0.4em 0;
}
.header-9-2 .header-action .user-menu .user-menu-item .languge-list .language-item ul a {
  justify-content: end;
  padding: 0.7em 1em !important;
}
.header-9-2 .header-action .user-menu .user-menu-item .languge-list .language-item:hover > ul, .header-9-2 .header-action .user-menu .user-menu-item .languge-list .language-item:focus > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.header-9-2 .header-action .user-menu .login {
  position: relative;
}
.header-9-2 .header-action .user-menu .login .account-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 110%;
  inset-inline-end: 0;
  z-index: 2;
  transition: all 0.3s;
  background-color: var(--bodyBackgroundColor);
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  border: 1px solid rgba(var(--rgbGeneralTextColor), 0.15);
}
.header-9-2 .header-action .user-menu .login .account-menu ul {
  padding: 0.4em 0;
}
.header-9-2 .header-action .user-menu .login .account-menu ul li a {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 85%;
  padding: 0.7em 1em !important;
  color: var(--generalTextColor);
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header-9-2 .header-action .user-menu .login:hover .account-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.header-9-2 .header-action .user-menu .cart {
  position: relative;
}
.header-9-2 .header-action .user-menu .cart .shape {
  position: relative;
}
.header-9-2 .header-action .user-menu .cart .bt {
  margin-top: 5px;
}
.header-9-2 .header-action .user-menu .cart .cart-qty {
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: var(--iconColor);
  color: var(--headerBackgroundColor);
  bottom: -6px;
  font-size: 60%;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  border: 2px solid transparent;
}
.header-9-2 .header-action .user-menu .site-search .f-row button {
  color: inherit;
  padding: 0.5em;
  color: var(--iconColor);
  display: flex !important;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.header-9-2 .header-action .search-opener {
  color: inherit;
  padding: 0.5em;
  font-size: 1em;
  color: var(--iconColor);
  align-items: center;
  position: relative;
  transition: color 0.2s;
  display: flex;
}
.header-9-2 .header-action .search-opener svg {
  fill: var(--iconColor);
}
.header-9-2 .header-navigation {
  background-color: transparent;
}
@media screen and (max-width: 991px) {
  .header-9-2 .header-navigation {
    z-index: 20;
  }
}
.header-9-2 .header-navigation .menu-header {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .header-9-2 .header-navigation .menu-header {
    padding: 1.6em 0;
    display: flex !important;
  }
  .header-9-2 .header-navigation .menu-header .site-search {
    background-color: var(--mainMenuBackgroundColor);
    padding: 0;
  }
  .header-9-2 .header-navigation .menu-header .site-search .f-row {
    padding-top: 0;
  }
  .header-9-2 .header-navigation .menu-header .site-search input {
    color: var(--mainMenuTextColor) !important;
  }
  .header-9-2 .header-navigation .menu-header .site-search button svg {
    fill: var(--mainMenuTextColor) !important;
  }
}
.header-9-2 .header-navigation nav .container {
  position: static;
}
.header-9-2 .header-navigation nav .navigation-list > li > a {
  display: block;
  padding: 1em;
  color: var(--iconColor);
  white-space: nowrap;
  font-size: 1em;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 991px) {
  .header-9-2 .header-navigation nav .navigation-list > li > a {
    color: var(--mainMenuTextColor) !important;
  }
}
.header-9-2 .header-navigation nav .navigation-list > li .dropmenu {
  transform: translateX(0);
  inset-inline-start: 0;
}

.footer-1 {
  background-color: rgba(var(--rgbFooterBackgroundColor), var(--footerBackgroundOpacity));
  position: relative;
  font-size: 1em;
  padding: 0;
}
.footer-1 * {
  color: var(--footerTextFontColor);
}
.footer-1:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: var(--footerBackgroundImage);
  background-repeat: none;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.footer-1 .footer-logo {
  padding: 0 1em;
  margin-bottom: 2em;
  display: block !important;
}
.footer-1 .footer-logo img {
  max-width: var(--footerLogoWidth);
  max-height: 30em;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-logo img {
    margin: 0 auto;
  }
}
.footer-1 .footer-top {
  padding: 3em 0 1.6em;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-top {
    text-align: center;
  }
}
.footer-1 .footer-top .footer-optional {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 672px) and (max-width: 1200px) {
  .footer-1 .footer-top .footer-optional {
    justify-content: end;
  }
  .footer-1 .footer-top .footer-optional.wide-set {
    justify-content: space-between;
  }
}
@media screen and (min-width: 1201px) {
  .footer-1 .footer-top .footer-optional {
    justify-content: space-between;
  }
  .footer-1 .footer-top .footer-optional.wide-set {
    justify-content: space-between;
  }
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-top .footer-optional .inner-wrapper {
    width: 100%;
  }
}
.footer-1 .footer-top .footer-col {
  padding: 0 1em;
  margin-bottom: 1.4em;
}
.footer-1 .footer-top .footer-col p {
  line-height: 1.5;
  font-size: 90%;
  opacity: 0.7;
}
.footer-1 .footer-top .footer-col .footer-title {
  font-weight: 600;
  font-size: inherit;
  display: block;
  margin-bottom: 0.5em;
  color: var(--footerTitleFontColor);
}
.footer-1 .footer-top .footer-col ul.column-2 {
  -moz-column-count: 2;
       column-count: 2;
}
.footer-1 .footer-top .footer-col ul.column-3 {
  -moz-column-count: 3;
       column-count: 3;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-top .footer-col ul.column-3 {
    -moz-column-count: 2;
         column-count: 2;
  }
}
.footer-1 .footer-top .footer-col ul.column-4 {
  -moz-column-count: 4;
       column-count: 4;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-top .footer-col ul.column-4 {
    -moz-column-count: 2;
         column-count: 2;
  }
}
.footer-1 .footer-top .footer-col ul li a {
  display: block;
  white-space: nowrap;
  opacity: 0.6;
  transition: opacity 0.3s;
  padding: 0.5em 0;
  font-size: 90%;
}
.footer-1 .footer-top .footer-col ul li a:hover {
  color: var(--footerTextHoverColor);
  opacity: 1;
}
.footer-1 .footer-top .footer-col.footer-menu {
  max-width: 240px;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-top .footer-col.footer-menu {
    max-width: 330px;
  }
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-top .footer-col.footer-menu {
    min-width: 100%;
    max-width: unset;
  }
  .footer-1 .footer-top .footer-col.footer-menu * {
    text-align: center;
  }
}
.footer-1 .footer-top .footer-col.contact-col {
  color: var(--footerTextFontColor);
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-top .footer-col.contact-col {
    min-width: 100%;
    max-width: unset;
    text-align: inherit;
  }
}
.footer-1 .footer-top .footer-col.mobile-apps-col ul li:last-child {
  margin-bottom: 0;
}
.footer-1 .footer-top .footer-col.mobile-apps-col ul li a {
  cursor: pointer;
}
.footer-1 .footer-top .footer-col.mobile-apps-col ul li a .shape {
  height: 38px;
  width: 123px;
}
.footer-1 .footer-top .footer-col.mobile-apps-col ul li a .shape svg {
  fill: var(--footerTextFontColor);
}
.footer-1 .footer-top .footer-col.company-col {
  -webkit-padding-end: 2em;
          padding-inline-end: 2em;
  display: flex;
  flex-wrap: wrap;
  max-width: 500px;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-top .footer-col.company-col {
    width: 100%;
    -webkit-padding-end: 0;
            padding-inline-end: 0;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    max-width: unset;
  }
}
.footer-1 .footer-top .footer-col.company-col p {
  margin-top: 10px;
}
.footer-1 .footer-top .footer-col.company-col .special-col {
  width: 100%;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-top .footer-col.company-col .special-col {
    width: 330px;
    margin: 0 auto;
  }
}
.footer-1 .footer-top .footer-col.company-col .contact-row {
  display: flex;
  align-items: flex-start;
  padding: 0.4em 0;
  opacity: 0.6;
  font-size: 90%;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-top .footer-col.company-col .contact-row {
    justify-content: center;
  }
}
.footer-1 .footer-top .footer-col.company-col .contact-row:first-child {
  padding-top: 0;
}
.footer-1 .footer-top .footer-col.company-col .contact-row.additioanl {
  -webkit-padding-start: calc(0.6em + 18px);
          padding-inline-start: calc(0.6em + 18px);
  display: block;
}
.footer-1 .footer-top .footer-col.company-col .contact-row.additioanl * {
  opacity: 1;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-top .footer-col.company-col .contact-row.additioanl {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}
.footer-1 .footer-top .footer-col.company-col .contact-row .contact-label {
  -webkit-margin-end: 0.6em;
          margin-inline-end: 0.6em;
}
.footer-1 .footer-top .footer-col.company-col .contact-row .contact-label .shape {
  width: 18px;
  height: 18px;
  transform: translateY(-1px);
}
.footer-1 .footer-top .footer-col.company-col .contact-row .contact-label .shape svg {
  fill: var(--footerTextFontColor);
}
.footer-1 .footer-top .footer-col.company-col .contact-row .contact-text a {
  color: inherit;
}
.footer-1 .footer-top .footer-col.static-menu {
  max-width: 500px;
  width: 100%;
}
.footer-1 .footer-top .footer-col.static-menu ul {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 2em;
       column-gap: 2em;
}
.footer-1 .footer-top .footer-col.footer-newsletter {
  max-width: 350px;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-top .footer-col.footer-newsletter {
    max-width: unset;
  }
}
.footer-1 .footer-top .footer-col.footer-newsletter .footer-title {
  margin-bottom: 1.3em;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-top .footer-col.footer-newsletter .footer-title {
    text-align: center;
  }
}
.footer-1 .footer-top .footer-col.footer-newsletter .f-row input {
  background-color: var(--footerInputBackgroundColor);
  color: var(--footerInputColor);
  font-size: 14px;
}
.footer-1 .footer-top .footer-col.footer-newsletter .f-row button {
  background-color: var(--footerButtonBackgroundColor);
  color: var(--footerButtonTextColor);
  font-size: 14px;
}
.footer-1 .footer-top .footer-col.footer-newsletter .f-row.boxed {
  padding: 0 0.3em;
  border: none;
  overflow-y: hidden;
  background-color: var(--footerInputBackgroundColor);
  color: var(--footerInputColor);
}
.footer-1 .footer-top .footer-col.footer-newsletter .f-row.boxed input {
  background-color: transparent;
}
.footer-1 .footer-top .footer-col.footer-newsletter p {
  margin-bottom: 1em;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-top .footer-col.footer-newsletter p {
    text-align: center;
  }
}
.footer-1 .footer-top .footer-col.footer-newsletter p.attention {
  margin-bottom: 0;
  font-size: 75%;
}
.footer-1 .footer-top .footer-col .social-row {
  margin: 1.5em 0 0;
  font-size: 90%;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-top .footer-col .social-row {
    width: 100%;
    text-align: center;
  }
}
.footer-1 .footer-top .footer-col .social-row .footer-title {
  margin: 0 0 0.8em;
}
.footer-1 .footer-top .footer-col .social-row ul.social-links {
  display: inline-flex;
  margin: 0 -0.8em 0;
}
.footer-1 .footer-top .footer-col .social-row ul.social-links li a {
  padding: 0 0.4em;
}
.footer-1 .footer-top .footer-col .social-row ul.social-links li a .shape {
  width: 26px;
  height: 26px;
}
.footer-1 .footer-top .footer-col .social-row ul.social-links li a .shape svg {
  width: 100%;
  height: 100%;
  margin: 0;
  fill: var(--footerTextFontColor);
}
.footer-1 .footer-bottom {
  padding: 1em 0;
  border-top: 1px solid rgba(var(--footerTextFontColor), 20%);
}
.footer-1 .footer-bottom .inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-bottom .inner-wrap {
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.footer-1 .footer-bottom .legal-text {
  font-size: 70%;
  color: inherit;
  align-items: center !important;
  opacity: 0.7;
  padding: 0 1.6em;
  width: 50%;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-bottom .legal-text {
    justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-bottom .legal-text {
    width: 100%;
  }
}
.footer-1 .footer-bottom .legal-text .owner {
  padding-right: 0.3em;
}
.footer-1 .footer-bottom .legal-text a {
  color: inherit;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.footer-1 .footer-bottom .legal-text a svg {
  min-width: 50px;
  max-width: 50px;
  margin: 0 0.5em;
  fill: var(--footerTextFontColor);
}
.footer-1 .footer-bottom .payment-provider {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-bottom .payment-provider {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-bottom .payment-provider {
    justify-content: center;
    margin-top: 0.4em;
  }
}
.footer-1 .footer-bottom .payment-provider .shape {
  height: 26px;
  width: 400px;
  opacity: 0.5;
}
@media screen and (max-width: 576px) {
  .footer-1 .footer-bottom .payment-provider .shape {
    width: 300px;
  }
}
.footer-1 .footer-bottom .payment-provider .shape svg {
  fill: var(--footerTextFontColor);
}

.footer-2 {
  background-color: rgba(var(--rgbFooterBackgroundColor), var(--footerBackgroundOpacity));
  position: relative;
  font-size: 1em;
  padding: 0;
}
.footer-2 * {
  color: var(--footerTextFontColor);
}
.footer-2:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: var(--footerBackgroundImage);
  background-repeat: none;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.footer-2 .footer-top {
  padding: 3em 0 2em;
}
.footer-2 .footer-top .footer-logo {
  margin-bottom: 3em;
  display: flex !important;
  justify-content: center;
  width: 100%;
}
.footer-2 .footer-top .footer-logo img {
  max-width: var(--footerLogoWidth);
  max-height: 30em;
}
.footer-2 .footer-top .inner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-2 .footer-top .footer-col {
  padding: 0 1em;
  margin-bottom: 2em;
}
.footer-2 .footer-top .footer-col p {
  line-height: 1.5;
  font-size: 90%;
  opacity: 0.7;
  margin-top: 0.8em;
}
.footer-2 .footer-top .footer-col .footer-title {
  font-weight: 600;
  font-size: inherit;
  display: block;
  margin-bottom: 0.5em;
  color: var(--footerTitleFontColor);
  text-align: center;
}
.footer-2 .footer-top .footer-col .footer-text {
  text-align: center;
  max-width: 500px;
  width: 100%;
}
.footer-2 .footer-top .footer-col ul {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: inherit;
}
@media screen and (max-width: 671px) {
  .footer-2 .footer-top .footer-col ul {
    display: block;
  }
}
.footer-2 .footer-top .footer-col ul li a {
  display: block;
  padding: 0 0.6em;
  white-space: nowrap;
  opacity: 0.6;
  transition: opacity 0.3s;
  padding: 0 0.7em;
  font-size: 90%;
  text-align: center;
  line-height: 2.5;
}
.footer-2 .footer-top .footer-col ul li a:hover {
  color: var(--footerTextHoverColor);
  opacity: 1;
}
.footer-2 .footer-top .footer-col.footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding: 0;
}
.footer-2 .footer-top .footer-col .special-col {
  width: 300px;
  color: var(--footerTextFontColor);
  margin: 0 auto;
}
.footer-2 .footer-top .footer-col .special-col .contact-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.4em 0;
  opacity: 0.6;
  font-size: 90%;
  line-height: 1.5;
  text-align: center;
}
.footer-2 .footer-top .footer-col .special-col .contact-row .contact-label {
  -webkit-margin-end: 0.6em;
          margin-inline-end: 0.6em;
}
.footer-2 .footer-top .footer-col .special-col .contact-row .contact-label .shape {
  width: 18px;
  height: 18px;
  transform: translateY(-1px);
}
.footer-2 .footer-top .footer-col .special-col .contact-row .contact-label .shape svg {
  fill: var(--footerTextFontColor);
}
.footer-2 .footer-top .footer-col .special-col .contact-row .contact-text a {
  color: inherit;
}
.footer-2 .footer-top .footer-col.mobile-apps-col ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 671px) {
  .footer-2 .footer-top .footer-col.mobile-apps-col ul {
    flex-direction: column;
  }
}
.footer-2 .footer-top .footer-col.mobile-apps-col ul li {
  display: inline-flex;
  margin: 0 0.6em;
}
@media screen and (max-width: 671px) {
  .footer-2 .footer-top .footer-col.mobile-apps-col ul li {
    margin: 0 0 0.6em;
  }
}
.footer-2 .footer-top .footer-col.mobile-apps-col ul li a {
  display: inline-flex;
  cursor: pointer;
  padding: 0;
}
.footer-2 .footer-top .footer-col.mobile-apps-col ul li a .shape {
  height: 38px;
  width: 123px;
}
.footer-2 .footer-top .footer-col.mobile-apps-col ul li a .shape svg {
  fill: var(--footerTextFontColor);
}
.footer-2 .footer-top .footer-col.footer-newsletter {
  display: inline-flex;
  flex-direction: column;
  width: 600px;
}
@media screen and (max-width: 671px) {
  .footer-2 .footer-top .footer-col.footer-newsletter {
    width: 85%;
  }
}
.footer-2 .footer-top .footer-col.footer-newsletter .footer-title {
  text-align: center;
}
.footer-2 .footer-top .footer-col.footer-newsletter p {
  margin-bottom: 1em;
  text-align: center;
}
.footer-2 .footer-top .footer-col.footer-newsletter p.attention {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 75%;
  text-align: center;
}
.footer-2 .footer-top .footer-col.footer-newsletter .f-row input {
  background-color: var(--footerInputBackgroundColor);
  color: var(--footerInputColor);
  font-size: 14px;
}
.footer-2 .footer-top .footer-col.footer-newsletter .f-row button {
  background-color: var(--footerButtonBackgroundColor);
  color: var(--footerButtonTextColor);
  font-size: 14px;
}
.footer-2 .footer-top .footer-col.footer-newsletter .f-row.boxed {
  padding: 0 0.3em;
  border: none;
  overflow-y: hidden;
  background-color: var(--footerInputBackgroundColor);
  color: var(--footerInputColor);
}
.footer-2 .footer-top .footer-col.footer-newsletter .f-row.boxed input {
  background-color: transparent;
}
.footer-2 .footer-top .social-row {
  font-size: 90%;
}
.footer-2 .footer-top .social-row .footer-title {
  margin: 0;
}
.footer-2 .footer-top .social-row ul.social-links {
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin: 0;
}
.footer-2 .footer-top .social-row ul.social-links li a {
  padding: 0 0.4em;
  display: flex;
}
.footer-2 .footer-top .social-row ul.social-links li a .shape {
  width: 26px;
  height: 26px;
  display: inline-flex;
}
.footer-2 .footer-top .social-row ul.social-links li a .shape svg {
  width: 100%;
  height: 100%;
  margin: 0;
  fill: var(--footerTextFontColor);
}
.footer-2 .footer-bottom {
  padding: 1em 0;
  border-top: 1px solid rgba(var(--footerTextFontColor), 20%);
}
.footer-2 .footer-bottom .inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 671px) {
  .footer-2 .footer-bottom .inner-wrap {
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.footer-2 .footer-bottom .legal-text {
  font-size: 70%;
  color: inherit;
  align-items: center !important;
  opacity: 0.7;
  padding: 0 1.6em;
  width: 50%;
}
@media screen and (max-width: 671px) {
  .footer-2 .footer-bottom .legal-text {
    justify-content: center;
  }
}
@media screen and (max-width: 671px) {
  .footer-2 .footer-bottom .legal-text {
    width: 100%;
  }
}
.footer-2 .footer-bottom .legal-text .owner {
  padding-right: 0.3em;
}
.footer-2 .footer-bottom .legal-text a {
  color: inherit;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.footer-2 .footer-bottom .legal-text a svg {
  min-width: 50px;
  max-width: 50px;
  margin: 0 0.5em;
  fill: var(--footerTextFontColor);
}
.footer-2 .footer-bottom .payment-provider {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 671px) {
  .footer-2 .footer-bottom .payment-provider {
    width: 100%;
  }
}
@media screen and (max-width: 671px) {
  .footer-2 .footer-bottom .payment-provider {
    justify-content: center;
    margin-top: 0.4em;
  }
}
.footer-2 .footer-bottom .payment-provider .shape {
  height: 26px;
  width: 400px;
  opacity: 0.5;
}
@media screen and (max-width: 671px) {
  .footer-2 .footer-bottom .payment-provider .shape {
    width: 300px;
  }
}
.footer-2 .footer-bottom .payment-provider .shape svg {
  fill: var(--footerTextFontColor);
}

.ordered-banner {
  position: relative;
}
.ordered-banner .container {
  position: relative;
}
.ordered-banner .container .swiper {
  width: 100%;
  height: 100%;
}
.ordered-banner .reverse .ob-inner-first {
  order: -1;
}
.ordered-banner .banner-item {
  position: relative;
  display: flex;
  overflow: hidden;
  justify-content: center;
  margin-top: 1em;
}
.ordered-banner .banner-item.no-gutter {
  padding: 0 !important;
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .ordered-banner .banner-item {
    margin-bottom: 24px !important;
  }
}
@media screen and (max-width: 575px) {
  .ordered-banner .banner-item {
    margin-bottom: 12px !important;
  }
}
.ordered-banner .banner-item .banner-image {
  width: 100%;
  position: relative;
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.ordered-banner .banner-item .banner-image.circle-image {
  border-radius: 50% !important;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ordered-banner .banner-item .banner-image.circle-image:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.ordered-banner .banner-item .banner-image.circle-image picture,
.ordered-banner .banner-item .banner-image.circle-image svg {
  display: block;
  position: absolute;
  width: auto;
  height: 100%;
  max-width: 150%;
}
.ordered-banner .banner-item picture,
.ordered-banner .banner-item svg {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .ordered-banner .banner-item picture,
.ordered-banner .banner-item svg {
    position: relative;
  }
}
.ordered-banner .banner-item a {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.ordered-banner .banner-item picture,
.ordered-banner .banner-item svg {
  display: block;
  height: auto;
  width: 100%;
}
.ordered-banner .banner-item .banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ordered-banner .banner-item .banner-overlay i {
  position: absolute;
  display: inline-flex;
}
.ordered-banner .banner-item .banner-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 22;
  padding: 1.5em;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.ordered-banner .banner-item .banner-container.center-left {
  align-items: center;
  justify-content: flex-start;
}
.ordered-banner .banner-item .banner-container.center-left .banner-info {
  text-align: left;
}
.ordered-banner .banner-item .banner-container.center-right {
  align-items: center;
  justify-content: flex-end;
}
.ordered-banner .banner-item .banner-container.center-right .banner-info {
  text-align: right;
}
.ordered-banner .banner-item .banner-container.center-center {
  align-items: center;
  justify-content: center;
}
.ordered-banner .banner-item .banner-container.center-center .banner-info {
  text-align: center;
}
.ordered-banner .banner-item .banner-container.top-left {
  align-items: flex-start;
  justify-content: flex-start;
}
.ordered-banner .banner-item .banner-container.top-left .banner-info {
  text-align: left;
}
.ordered-banner .banner-item .banner-container.top-right {
  align-items: flex-start;
  justify-content: flex-end;
}
.ordered-banner .banner-item .banner-container.top-right .banner-info {
  text-align: right;
}
.ordered-banner .banner-item .banner-container.top-center {
  align-items: flex-start;
  justify-content: center;
}
.ordered-banner .banner-item .banner-container.top-center .banner-info {
  text-align: center;
}
.ordered-banner .banner-item .banner-container.bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}
.ordered-banner .banner-item .banner-container.bottom-left .banner-info {
  text-align: left;
}
.ordered-banner .banner-item .banner-container.bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}
.ordered-banner .banner-item .banner-container.bottom-right .banner-info {
  text-align: right;
}
.ordered-banner .banner-item .banner-container.bottom-center {
  align-items: flex-end;
  justify-content: center;
}
.ordered-banner .banner-item .banner-container.bottom-center .banner-info {
  text-align: center;
}
.ordered-banner .banner-item .banner-container .banner-info {
  width: 100%;
}
.ordered-banner .banner-item .banner-container .banner-info h2 {
  font-size: 1.1em;
  font-weight: 600;
}
.ordered-banner .banner-item .banner-container .banner-info h3 {
  margin-top: 0.4em;
  font-size: 0.9em;
}
.ordered-banner .banner-item .banner-container .banner-info .simple-text {
  font-size: 0.7em;
  margin-top: 1em;
}
.ordered-banner .banner-item .banner-container .banner-info .simple-text ul {
  list-style-type: disc;
  list-style-position: inside;
}
.ordered-banner .banner-item .banner-container .banner-info .simple-text ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.ordered-banner .banner-item .banner-container .banner-info button {
  margin-top: 1em;
  padding: 0;
}
.ordered-banner .banner-item .banner-container.position-out {
  position: relative;
  height: unset;
  padding: 1.5em 0 0;
}
.ordered-banner .banner-item .banner-container.position-out .banner-info {
  text-align: center !important;
}
.ordered-banner .thumb-slider-grid-banner .banner-item {
  padding: 0 0.7em;
}
.ordered-banner .thumb-slider-grid-banner.swiper-coverflow .banner-item {
  background-color: var(--bodyBackgroundColor);
}
.ordered-banner .thumb-slider-grid-banner.swiper-coverflow .banner-item .banner-image {
  position: relative;
  opacity: 0.8;
}
.ordered-banner .thumb-slider-grid-banner.swiper-coverflow .banner-item .banner-image:before {
  content: "";
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  opacity: 0.5;
}
.ordered-banner .thumb-slider-grid-banner.swiper-coverflow .banner-item.swiper-slide-active .banner-image {
  opacity: 1;
}
.ordered-banner .thumb-slider-grid-banner.swiper-coverflow .banner-item.swiper-slide-active .banner-image:after, .ordered-banner .thumb-slider-grid-banner.swiper-coverflow .banner-item.swiper-slide-active .banner-image:before {
  display: none;
  transition: all 0.2s;
}
.ordered-banner .thumb-slider-grid-banner.swiper-coverflow .banner-item.swiper-slide-active ~ * .banner-image:before {
  content: "";
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)) !important;
}
.ordered-banner.adjoining .ob-inner-other,
.ordered-banner.adjoining .ob-inner-first {
  padding: 0;
}
.ordered-banner.adjoining .banner-item {
  margin-bottom: 0 !important;
}
.ordered-banner .swiper-coverflow {
  padding: 2em 0;
}

.thumb-slider-grid-banner .swiper-button-prev:after,
.thumb-slider-grid-banner .swiper-button-next:after {
  display: none;
}
.thumb-slider-grid-banner .swiper-button-prev svg,
.thumb-slider-grid-banner .swiper-button-next svg {
  width: 25px;
  height: 25px;
}

.thumb-slider-grid-banner .banner-item-item {
  display: none;
}

@media screen and (max-width: 767px) {
  .thumb-slider-grid-banner .swiper-button-prev,
.thumb-slider-grid-banner .swiper-button-next {
    opacity: 0 !important;
  }
}
.image-map-banner {
  position: relative;
}
.image-map-banner .container.full-w {
  max-width: 100% !important;
  padding: 0;
}
.image-map-banner .container.full-w #grid-wrapper {
  padding: 0 !important;
}
.image-map-banner #grid-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  padding: 0 10px;
}
.image-map-banner #grid-wrapper.no-gap {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.image-map-banner #grid-wrapper.no-gap .grid-item img {
  border-radius: 0 !important;
}
.image-map-banner #grid-wrapper.no-gap .grid-item .banner-overlay {
  border-radius: 0 !important;
}
.image-map-banner #grid-wrapper .grid-item {
  padding: 0;
  position: relative;
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.image-map-banner #grid-wrapper .grid-item.no-image .banner-container {
  position: relative !important;
  left: 0 !important;
  transform: none !important;
}
.image-map-banner #grid-wrapper .grid-item.no-image .banner-overlay {
  display: none !important;
}
.image-map-banner #grid-wrapper .grid-item > a {
  align-items: center;
  display: flex;
  height: 100%;
}
.image-map-banner #grid-wrapper .grid-item .content-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  z-index: 20;
}
.image-map-banner #grid-wrapper .grid-item .content-pin .pinned-content-title {
  font-size: 1.3em;
  margin-bottom: 0.5em;
  font-weight: 700;
}
.image-map-banner #grid-wrapper .grid-item .content-pin .pinned-content {
  position: absolute;
  display: block;
  width: 200px;
}
.image-map-banner #grid-wrapper .grid-item .content-pin .pinned-content a {
  display: block;
  color: inherit;
}
.image-map-banner #grid-wrapper .grid-item .content-pin .pinned-content .bttn {
  margin-top: 1em;
  min-width: 150px;
}
.image-map-banner #grid-wrapper .grid-item .content-pin.left .pinned-content {
  right: 100%;
  margin-right: 3em;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}
.image-map-banner #grid-wrapper .grid-item .content-pin.right .pinned-content {
  left: 100%;
  margin-left: 3em;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
}
.image-map-banner #grid-wrapper .grid-item .content-pin.top .pinned-content {
  left: 50%;
  bottom: 100%;
  text-align: center;
  margin-bottom: 3em;
  transform: translateX(-50%);
}
.image-map-banner #grid-wrapper .grid-item .content-pin.bottom .pinned-content {
  left: 50%;
  top: 100%;
  margin-top: 3em;
  text-align: center;
  transform: translateX(-50%);
}
.image-map-banner #grid-wrapper .grid-item .pin:after {
  content: "";
  position: absolute;
  background-color: red;
  z-index: 10;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.image-map-banner #grid-wrapper .grid-item .banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}
.image-map-banner #grid-wrapper .grid-item .banner-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 11;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.no-image {
  position: relative;
  left: 0;
  transform: none;
}
.image-map-banner #grid-wrapper .grid-item .banner-container a {
  overflow: hidden;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.center-left {
  align-items: center;
  justify-content: flex-start;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.center-left .banner-info > * {
  align-self: start;
  text-align: left;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.center-right {
  align-items: center;
  justify-content: flex-end;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.center-right .banner-info > * {
  align-self: end;
  text-align: right;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.center-center {
  align-items: center;
  justify-content: center;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.center-center .banner-info > * {
  align-self: center;
  text-align: center;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.top-left {
  align-items: flex-start;
  justify-content: flex-start;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.top-left .banner-info > * {
  align-self: start;
  text-align: left;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.top-right {
  align-items: flex-start;
  justify-content: flex-end;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.top-right .banner-info > * {
  align-self: end;
  text-align: right;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.top-center {
  align-items: flex-start;
  justify-content: center;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.top-center .banner-info > * {
  align-self: center;
  text-align: center;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.bottom-left .banner-info > * {
  align-self: start;
  text-align: left;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.bottom-right .banner-info > * {
  align-self: end;
  text-align: right;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.bottom-center {
  align-items: flex-end;
  justify-content: center;
}
.image-map-banner #grid-wrapper .grid-item .banner-container.bottom-center .banner-info > * {
  align-self: center;
  text-align: center;
}
.image-map-banner #grid-wrapper .grid-item .banner-container .banner-info {
  max-width: 650px;
  padding: 2em 1em;
  display: flex;
  flex-direction: column;
}
.image-map-banner #grid-wrapper .grid-item .banner-container .banner-info > * {
  display: inline-flex;
}
.image-map-banner #grid-wrapper .grid-item .banner-container .banner-info h2 {
  line-height: 1.7;
}
.image-map-banner #grid-wrapper .grid-item .banner-container .banner-info h3 {
  line-height: 1.7;
}
.image-map-banner #grid-wrapper .grid-item .banner-container .banner-info .simple-text * {
  line-height: 1.5;
}
.image-map-banner #grid-wrapper .grid-item .banner-container .banner-info button {
  margin-top: 1.5em;
}
@media screen and (max-width: 670px) {
  .image-map-banner #grid-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
}

.instagram-feed {
  position: relative;
}
.instagram-feed .container .swiper {
  width: 100%;
  height: 100%;
}
.instagram-feed .no-result {
  text-align: center;
}
.instagram-feed .no-result h2 {
  font-size: 1.4em;
}
.instagram-feed .no-result p {
  margin-top: 1em;
  font-size: 1em;
}
.instagram-feed .slick-list {
  height: auto !important;
}
.instagram-feed .section-title h2 {
  display: inline-flex;
  align-items: center;
}
.instagram-feed .section-title h2 .shape {
  width: 40px;
  height: 40px;
  -webkit-margin-end: 0.3em;
          margin-inline-end: 0.3em;
}
.instagram-feed .thumb-slider-instagram .banner-item {
  padding: 0 0.7em;
}
.instagram-feed .no-gutter-list {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.instagram-feed .banner-item {
  position: relative;
  display: flex;
  overflow: hidden;
  justify-content: center;
  margin-top: 1em;
  overflow: hidden;
}
.instagram-feed .banner-item.r-p {
  margin: 0;
}
.instagram-feed .banner-item.r-p .banner-image {
  border-radius: 0 !important;
}
@media screen and (max-width: 767px) {
  .instagram-feed .banner-item {
    margin-bottom: 24px !important;
  }
}
@media screen and (max-width: 662px) {
  .instagram-feed .banner-item {
    margin-bottom: 12px !important;
  }
}
.instagram-feed .banner-item a {
  display: block;
  position: relative;
}
.instagram-feed .banner-item .banner-image {
  width: 100%;
  position: relative;
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.instagram-feed .banner-item .banner-image.circle-image {
  border-radius: 50% !important;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.instagram-feed .banner-item .banner-image.circle-image:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.instagram-feed .banner-item .banner-image.circle-image img,
.instagram-feed .banner-item .banner-image.circle-image svg {
  display: block;
  position: absolute;
  width: auto;
  height: 110%;
  max-width: 150%;
}
.instagram-feed .banner-item img,
.instagram-feed .banner-item svg {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .instagram-feed .banner-item img,
.instagram-feed .banner-item svg {
    position: relative;
  }
}
.instagram-feed .banner-item a {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.instagram-feed .banner-item img,
.instagram-feed .banner-item svg {
  display: block;
  height: auto;
  width: 100%;
}
.instagram-feed .banner-item .banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 21;
}

.thumb-slider-instagram .swiper-button-prev:after,
.thumb-slider-instagram .swiper-button-next:after {
  display: none;
}
.thumb-slider-instagram .swiper-button-prev svg,
.thumb-slider-instagram .swiper-button-next svg {
  width: 25px;
  height: 25px;
}
.thumb-slider-instagram .swiper-button-prev .shape svg,
.thumb-slider-instagram .swiper-button-next .shape svg {
  fill: var(--generalTextColor);
  width: 100%;
  height: 100%;
}
.thumb-slider-instagram .swiper-button-prev.kbs-prev,
.thumb-slider-instagram .swiper-button-next.kbs-prev {
  left: 0%;
  margin-left: -60px;
}
.thumb-slider-instagram .swiper-button-prev.kbs-next,
.thumb-slider-instagram .swiper-button-next.kbs-next {
  right: 0;
  margin-right: -60px;
}
.thumb-slider-instagram.swiper-coverflow .banner-item {
  background-color: var(--bodyBackgroundColor);
}
.thumb-slider-instagram.swiper-coverflow .banner-item .banner-image {
  position: relative;
}
.thumb-slider-instagram.swiper-coverflow .banner-item .banner-image:before {
  content: "";
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  opacity: 1;
}
.thumb-slider-instagram.swiper-coverflow .banner-item.swiper-slide-active .banner-image {
  opacity: 1;
}
.thumb-slider-instagram.swiper-coverflow .banner-item.swiper-slide-active .banner-image:after, .thumb-slider-instagram.swiper-coverflow .banner-item.swiper-slide-active .banner-image:before {
  display: none;
  transition: all 0.2s;
}
.thumb-slider-instagram.swiper-coverflow .banner-item.swiper-slide-active ~ * .banner-image:before {
  content: "";
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)) !important;
}

.thumb-slider-instagram .banner-item-item {
  display: none;
}

.instagram-product-modal .instagram-product-big-image {
  position: relative;
}
.instagram-product-modal .instagram-product-big-image .instagram-product-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2.5em 1.4em 1.4em;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, transparent, rgba(var(--rgbGeneralTextColor), 65%));
  color: var(--bodyBackgroundColor);
  width: 100%;
}
.instagram-product-modal .instagram-product-detail {
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 662px) {
  .instagram-product-modal .instagram-product-detail {
    height: auto;
  }
}
.instagram-product-modal .instagram-product-detail .inner-wrap {
  width: 240px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .instagram-product-modal .instagram-product-detail .inner-wrap .instagram-product-slider {
    padding: 0 3.3em;
  }
}
.instagram-product-modal .instagram-product-detail .instagram-product-caption {
  text-align: center;
  font-size: 1.3em;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.instagram-product-modal .instagram-product-detail .instagram-product {
  margin-bottom: 0 !important;
  background-color: var(--bodyBackgroundColor);
}
.instagram-product-modal .instagram-product-detail .instagram-product .instagram-product-images {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .thumb-slider-instagram .swiper-button-prev,
.thumb-slider-instagram .swiper-button-next {
    opacity: 0 !important;
  }
}
@media screen and (min-width: 767px) {
  .thumb-slider-instagram .swiper-pagination {
    opacity: 0 !important;
  }
}
.instagram-posts {
  position: relative;
}
.instagram-posts .container .swiper {
  width: 100%;
  height: 100%;
}
.instagram-posts .no-result {
  text-align: center;
}
.instagram-posts .no-result h2 {
  font-size: 1.4em;
}
.instagram-posts .no-result p {
  margin-top: 1em;
  font-size: 1em;
}
.instagram-posts .slick-list {
  height: auto !important;
}
.instagram-posts .section-title h2 {
  display: inline-flex;
  align-items: center;
}
.instagram-posts .section-title h2 .shape {
  width: 40px;
  height: 40px;
  -webkit-margin-end: 0.3em;
          margin-inline-end: 0.3em;
}
.instagram-posts .thumb-slider-instagram-posts .banner-item {
  padding: 0 0.7em;
}
.instagram-posts .no-gutter-list {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.instagram-posts .banner-item {
  position: relative;
  display: flex;
  overflow: hidden;
  justify-content: center;
  margin-top: 1em;
  overflow: hidden;
}
.instagram-posts .banner-item.r-p {
  margin: 0;
}
.instagram-posts .banner-item.r-p .banner-image {
  border-radius: 0 !important;
}
@media screen and (max-width: 767px) {
  .instagram-posts .banner-item {
    margin-bottom: 24px !important;
  }
}
@media screen and (max-width: 575px) {
  .instagram-posts .banner-item {
    margin-bottom: 12px !important;
  }
}
.instagram-posts .banner-item a {
  display: block;
  position: relative;
}
.instagram-posts .banner-item .banner-image {
  width: 100%;
  position: relative;
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.instagram-posts .banner-item .banner-image.circle-image {
  border-radius: 50% !important;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.instagram-posts .banner-item .banner-image.circle-image:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.instagram-posts .banner-item .banner-image.circle-image img,
.instagram-posts .banner-item .banner-image.circle-image svg {
  display: block;
  position: absolute;
  width: auto;
  height: 110%;
  max-width: 150%;
}
.instagram-posts .banner-item img,
.instagram-posts .banner-item svg {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .instagram-posts .banner-item img,
.instagram-posts .banner-item svg {
    position: relative;
  }
}
.instagram-posts .banner-item a {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.instagram-posts .banner-item img,
.instagram-posts .banner-item svg {
  display: block;
  height: auto;
  width: 100%;
}
.instagram-posts .banner-item .banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 21;
}

.thumb-slider-instagram-posts .banner-item-item {
  display: none;
}

@media screen and (max-width: 767px) {
  .thumb-slider-instagram-posts .swiper-button-prev,
.thumb-slider-instagram-posts .swiper-button-next {
    opacity: 0 !important;
  }
}
@media screen and (min-width: 767px) {
  .thumb-slider-instagram-posts .swiper-pagination {
    opacity: 0 !important;
  }
}
.thumb-slider-instagram-posts .swiper-button-prev:after,
.thumb-slider-instagram-posts .swiper-button-next:after {
  display: none;
}
.thumb-slider-instagram-posts .swiper-button-prev svg,
.thumb-slider-instagram-posts .swiper-button-next svg {
  width: 25px;
  height: 25px;
}
.thumb-slider-instagram-posts .swiper-button-prev .shape svg,
.thumb-slider-instagram-posts .swiper-button-next .shape svg {
  fill: var(--generalTextColor);
  width: 100%;
  height: 100%;
}
.thumb-slider-instagram-posts .swiper-button-prev.kbs-prev,
.thumb-slider-instagram-posts .swiper-button-next.kbs-prev {
  left: 0%;
  margin-left: -60px;
}
.thumb-slider-instagram-posts .swiper-button-prev.kbs-next,
.thumb-slider-instagram-posts .swiper-button-next.kbs-next {
  right: 0;
  margin-right: -60px;
}

.mosaic-banner-horizontal .container.full-w {
  max-width: 95% !important;
}
.mosaic-banner-horizontal #grid-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
}
.mosaic-banner-horizontal #grid-wrapper.no-gap {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.mosaic-banner-horizontal #grid-wrapper.no-gap .grid-item picture, .mosaic-banner-horizontal #grid-wrapper.no-gap .grid-item img {
  border-radius: 0 !important;
}
.mosaic-banner-horizontal #grid-wrapper.no-gap .grid-item .banner-overlay {
  border-radius: 0 !important;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item {
  padding: 0;
  position: relative;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item.no-image .banner-container {
  position: relative !important;
  left: 0 !important;
  transform: none !important;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item.no-image .banner-overlay {
  display: none !important;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item picture, .mosaic-banner-horizontal #grid-wrapper .grid-item img,
.mosaic-banner-horizontal #grid-wrapper .grid-item svg {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item > a {
  display: block;
  height: 100%;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  border-radius: var(--generalBorderRadius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-overlay i {
  position: absolute;
  display: inline-flex;
  font-size: 5em;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 11;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container a {
  overflow: hidden;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.center-left {
  align-items: center;
  justify-content: flex-start;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.center-left .banner-info {
  text-align: left;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.center-right {
  align-items: center;
  justify-content: flex-end;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.center-right .banner-info {
  text-align: right;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.center-center {
  align-items: center;
  justify-content: center;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.center-center .banner-info {
  text-align: center;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.top-left {
  align-items: flex-start;
  justify-content: flex-start;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.top-left .banner-info {
  text-align: left;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.top-right {
  align-items: flex-start;
  justify-content: flex-end;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.top-right .banner-info {
  text-align: right;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.top-center {
  align-items: flex-start;
  justify-content: center;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.top-center .banner-info {
  text-align: center;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.bottom-left .banner-info {
  text-align: left;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.bottom-right .banner-info {
  text-align: right;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.bottom-center {
  align-items: flex-end;
  justify-content: center;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container.bottom-center .banner-info {
  text-align: center;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container .banner-info {
  padding: 2em 1em;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container .banner-info .simple-text * {
  line-height: 1.5;
}
.mosaic-banner-horizontal #grid-wrapper .grid-item .banner-container .banner-info button {
  margin-top: 1.5em;
}
@media screen and (max-width: 670px) {
  .mosaic-banner-horizontal #grid-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
}

.mosaic-banner-vertical .container.full-w {
  max-width: 95% !important;
}
.mosaic-banner-vertical #grid-wrapper.no-gap {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.mosaic-banner-vertical #grid-wrapper.no-gap .grid-item picture, .mosaic-banner-vertical #grid-wrapper.no-gap .grid-item img {
  border-radius: 0 !important;
}
.mosaic-banner-vertical #grid-wrapper.no-gap .grid-item .banner-overlay {
  border-radius: 0 !important;
}
.mosaic-banner-vertical #grid-wrapper .grid-item {
  padding: 0;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  position: relative;
}
.mosaic-banner-vertical #grid-wrapper .grid-item picture, .mosaic-banner-vertical #grid-wrapper .grid-item img {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.mosaic-banner-vertical #grid-wrapper .grid-item.no-image .banner-container {
  position: relative !important;
  left: 0 !important;
  transform: none !important;
}
.mosaic-banner-vertical #grid-wrapper .grid-item.no-image .banner-overlay {
  display: none !important;
}
.mosaic-banner-vertical #grid-wrapper .grid-item:first-child {
  margin-top: 0;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  border-radius: var(--generalBorderRadius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-overlay i {
  position: absolute;
  display: inline-flex;
  font-size: 5em;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 22;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container a {
  overflow: hidden;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.center-left {
  align-items: center;
  justify-content: flex-start;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.center-left .banner-info {
  text-align: left;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.center-right {
  align-items: center;
  justify-content: flex-end;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.center-right .banner-info {
  text-align: right;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.center-center {
  align-items: center;
  justify-content: center;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.center-center .banner-info {
  text-align: center;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.top-left {
  align-items: flex-start;
  justify-content: flex-start;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.top-left .banner-info {
  text-align: left;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.top-right {
  align-items: flex-start;
  justify-content: flex-end;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.top-right .banner-info {
  text-align: right;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.top-center {
  align-items: flex-start;
  justify-content: center;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.top-center .banner-info {
  text-align: center;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.bottom-left .banner-info {
  text-align: left;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.bottom-right .banner-info {
  text-align: right;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.bottom-center {
  align-items: flex-end;
  justify-content: center;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container.bottom-center .banner-info {
  text-align: center;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container .banner-info {
  padding: 2em 1em;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container .banner-info .simple-text * {
  line-height: 1.5;
}
.mosaic-banner-vertical #grid-wrapper .grid-item .banner-container .banner-info button {
  margin-top: 1.5em;
}
@media screen and (max-width: 670px) {
  .mosaic-banner-vertical #grid-wrapper {
    -moz-column-count: 1 !important;
         column-count: 1 !important;
  }
}

.newsletter-block {
  position: relative;
  overflow: hidden;
}
.newsletter-block .inner-wrap {
  width: 100%;
}
.newsletter-block .section-title,
.newsletter-block .section-newsletter-form {
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
}
.newsletter-block .newsletter-title {
  flex-direction: column;
  padding-bottom: 2em;
}
.newsletter-block .newsletter-title h2 {
  font-size: 1.5em;
  font-weight: 500;
}
.newsletter-block .newsletter-title .simple-text {
  font-size: 0.9em;
  margin-top: 1em;
  line-height: 1.5;
  opacity: 0.7;
  font-weight: normal;
}
.newsletter-block .section-newsletter-form .attention {
  font-size: 0.8em;
  line-height: 1.5;
  opacity: 0.7;
}
.newsletter-block .social-media {
  margin: 1.5em 0 0;
  font-size: 90%;
}
.newsletter-block .social-media .social-title {
  display: inline-flex;
  align-self: center;
  font-weight: 600;
  -webkit-margin-end: 1em;
          margin-inline-end: 1em;
}
.newsletter-block .social-media ul.social-links {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.newsletter-block .social-media ul.social-links li {
  display: inline-block;
  vertical-align: middle;
}
.newsletter-block .social-media ul.social-links li a {
  padding: 0 0.4em;
  display: block;
}
.newsletter-block .social-media ul.social-links li a .shape {
  width: 24px;
  height: 24px;
  display: inline-flex;
}
@media screen and (min-width: 672px) {
  .newsletter-block.newsletter-2 .section-title,
.newsletter-block.newsletter-2 .section-newsletter-form {
    margin: 0;
  }
}
.newsletter-block.newsletter-2 .inner-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 671px) {
  .newsletter-block.newsletter-2 .inner-wrap {
    flex-wrap: wrap;
  }
  .newsletter-block.newsletter-2 .inner-wrap .newsletter-title {
    align-items: center;
  }
  .newsletter-block.newsletter-2 .inner-wrap .newsletter-title .simple-text {
    text-align: center;
  }
  .newsletter-block.newsletter-2 .inner-wrap .social-media {
    margin: 0.6em 0 1em;
    flex-wrap: wrap;
    justify-content: center;
  }
  .newsletter-block.newsletter-2 .inner-wrap .social-media .social-title {
    margin-bottom: 0.7em;
  }
  .newsletter-block.newsletter-2 .inner-wrap .section-newsletter-form {
    text-align: start;
  }
  .newsletter-block.newsletter-2 .inner-wrap .attention {
    text-align: center;
  }
}
.newsletter-block.newsletter-2 .newsletter-title {
  padding-bottom: 0;
  align-items: flex-start;
}
.newsletter-block.newsletter-2 .newsletter-title h2 {
  align-self: unset;
}
.newsletter-block.newsletter-2 .newsletter-title .simple-text {
  text-align: start;
}
.newsletter-block.newsletter-2 .section-newsletter-form,
.newsletter-block.newsletter-2 .attention {
  -moz-text-align-last: end;
       text-align-last: end;
}
.newsletter-block.newsletter-2 .social-media {
  margin: 1em 0 0;
  display: flex;
  align-items: center;
}

.paralax-banner {
  padding: 0;
  position: relative;
}
.paralax-banner .container.full-w {
  max-width: 95% !important;
}
.paralax-banner .divider {
  position: absolute;
  z-index: 1;
  width: 100%;
  margin: 0 !important;
}
.paralax-banner .top-divider {
  top: 0;
  left: 0;
}
.paralax-banner .bottom-divider {
  bottom: 0;
  left: 0;
}
.paralax-banner .video-button {
  padding: 1rem 1rem 0;
  display: inline-flex;
}
.paralax-banner .video-button i {
  font-size: 4em;
  opacity: 0.7;
  cursor: pointer;
}
.paralax-banner .banner-item {
  position: relative;
  overflow: hidden;
}
.paralax-banner .banner-item img {
  display: block;
  width: 100%;
}
.paralax-banner .banner-item .banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 21;
}
.paralax-banner .banner-item .banner-overlay a {
  display: block;
  width: 100%;
  height: 100%;
}
.paralax-banner .banner-item .paralax-banner-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 22;
}
.paralax-banner .banner-item .paralax-banner-container.center-left {
  align-items: center;
  justify-content: flex-start;
}
.paralax-banner .banner-item .paralax-banner-container.center-left .paralax-banner-info {
  text-align: left;
}
.paralax-banner .banner-item .paralax-banner-container.center-left .paralax-banner-info > * {
  align-self: start;
}
.paralax-banner .banner-item .paralax-banner-container.center-right {
  align-items: center;
  justify-content: flex-end;
}
.paralax-banner .banner-item .paralax-banner-container.center-right .paralax-banner-info {
  text-align: right;
}
.paralax-banner .banner-item .paralax-banner-container.center-right .paralax-banner-info > * {
  align-self: end;
}
.paralax-banner .banner-item .paralax-banner-container.center-center {
  align-items: center;
  justify-content: center;
}
.paralax-banner .banner-item .paralax-banner-container.center-center .paralax-banner-info {
  text-align: center;
}
.paralax-banner .banner-item .paralax-banner-container.center-center .paralax-banner-info > * {
  align-self: center;
}
.paralax-banner .banner-item .paralax-banner-container.top-left {
  align-items: flex-start;
  justify-content: flex-start;
}
.paralax-banner .banner-item .paralax-banner-container.top-left .paralax-banner-info {
  text-align: left;
}
.paralax-banner .banner-item .paralax-banner-container.top-left .paralax-banner-info > * {
  align-self: start;
}
.paralax-banner .banner-item .paralax-banner-container.top-right {
  align-items: flex-start;
  justify-content: flex-end;
}
.paralax-banner .banner-item .paralax-banner-container.top-right .paralax-banner-info {
  text-align: right;
}
.paralax-banner .banner-item .paralax-banner-container.top-right .paralax-banner-info > * {
  align-self: end;
}
.paralax-banner .banner-item .paralax-banner-container.top-center {
  align-items: flex-start;
  justify-content: center;
}
.paralax-banner .banner-item .paralax-banner-container.top-center .paralax-banner-info {
  text-align: center;
}
.paralax-banner .banner-item .paralax-banner-container.top-center .paralax-banner-info > * {
  align-self: center;
}
.paralax-banner .banner-item .paralax-banner-container.bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}
.paralax-banner .banner-item .paralax-banner-container.bottom-left .paralax-banner-info {
  text-align: left;
}
.paralax-banner .banner-item .paralax-banner-container.bottom-left .paralax-banner-info > * {
  align-self: start;
}
.paralax-banner .banner-item .paralax-banner-container.bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}
.paralax-banner .banner-item .paralax-banner-container.bottom-right .paralax-banner-info {
  text-align: right;
}
.paralax-banner .banner-item .paralax-banner-container.bottom-right .paralax-banner-info > * {
  align-self: end;
}
.paralax-banner .banner-item .paralax-banner-container.bottom-center {
  align-items: flex-end;
  justify-content: center;
}
.paralax-banner .banner-item .paralax-banner-container.bottom-center .paralax-banner-info {
  text-align: center;
}
.paralax-banner .banner-item .paralax-banner-container.bottom-center .paralax-banner-info > * {
  align-self: center;
}
.paralax-banner .banner-item .paralax-banner-container .paralax-banner-info {
  padding: 2em 0;
  max-width: 650px;
  width: 100%;
}
.paralax-banner .banner-item .paralax-banner-container .paralax-banner-info .simple-text {
  width: 100%;
}

.jarallax {
  position: relative;
  z-index: 0;
}

.jarallax > .jarallax-img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  /* support for plugin https://github.com/bfred-it/object-fit-images */
  font-family: "object-fit: cover;";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.rich-text {
  position: relative;
}
.rich-text .rich-text-content * {
  line-height: 1.5;
}

.slider {
  padding: 0;
  position: relative;
  max-width: 100% !important;
}
.slider .swiper {
  width: 100%;
  height: 100%;
}
.slider .swiper.swiper-cards {
  max-width: 85%;
}
@media screen and (max-width: 671px) {
  .slider .pinned-product {
    transform: translateX(-50%);
  }
}
.slider.full-w {
  padding: 0;
  max-width: 100% !important;
}
.slider > .container {
  position: relative;
}
@media screen and (max-width: 671px) {
  .slider > .container {
    padding: 0;
  }
}
.slider .video-button {
  padding: 1rem 1rem 0;
  display: inline-flex;
}
.slider .video-button i {
  font-size: 6em;
  cursor: pointer;
}
.slider .full-w {
  max-width: 100% !important;
  padding: 0 !important;
}
.slider .full-w .container {
  width: 1200px;
}
.slider .full-w .slider-item {
  border-radius: 0 !important;
}
.slider .divider {
  position: absolute;
  z-index: 1;
  width: 100%;
  margin: 0 !important;
}
.slider .top-divider {
  top: 0;
  left: 0;
}
.slider .slider-overlay a {
  display: block;
  width: 100%;
  height: 100%;
}
.slider .swiper-button-prev:after,
.slider .swiper-button-next:after {
  display: none;
}
.slider .bottom-divider {
  bottom: 0;
  left: 0;
}
.slider .big-slider.swiper-initialized .slider-item {
  border-radius: calc(var(--generalBorderRadius) * 1.6);
  overflow: hidden;
  position: relative;
}
.slider .big-slider.swiper-initialized .slider-item:first-child {
  position: relative;
}
.slider .big-slider.swiper-initialized .slider-item .container {
  max-width: 80%;
}
.slider .big-slider.swiper-initialized .slider-item .dummy-slider-image {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 650px) {
  .slider .big-slider.swiper-initialized .slider-item .dummy-slider-image {
    height: 330px;
  }
}
.slider .big-slider.swiper-initialized .slider-item .dummy-slider-image svg {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 650px) {
  .slider .big-slider.swiper-initialized .slider-item .dummy-slider-image svg {
    height: 330px;
  }
}
.slider .big-slider.swiper-initialized .slider-item a img {
  display: block;
  width: 100%;
}
.slider .big-slider.swiper-initialized .slider-item a .jarallax {
  position: relative;
  z-index: 0;
  min-height: 600px;
}
.slider .big-slider.swiper-initialized .slider-item a .jarallax > .jarallax-img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  /* support for plugin https://github.com/bfred-it/object-fit-images */
  font-family: "object-fit: cover;";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 20;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container a {
  overflow: hidden;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.center-left {
  align-items: center;
  justify-content: flex-start;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.center-left .slider-info > * {
  align-self: start;
  text-align: left;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.center-right {
  align-items: center;
  justify-content: flex-end;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.center-right .slider-info > * {
  align-self: end;
  text-align: right;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.center-center {
  align-items: center;
  justify-content: center;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.center-center .slider-info > * {
  align-self: center;
  text-align: center;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.top-left {
  align-items: flex-start;
  justify-content: flex-start;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.top-left .slider-info > * {
  align-self: start;
  text-align: left;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.top-right {
  align-items: flex-start;
  justify-content: flex-end;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.top-right .slider-info > * {
  align-self: end;
  text-align: right;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.top-center {
  align-items: flex-start;
  justify-content: center;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.top-center .slider-info > * {
  align-self: center;
  text-align: center;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.bottom-left .slider-info > * {
  align-self: start;
  text-align: left;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.bottom-right .slider-info > * {
  align-self: end;
  text-align: right;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.bottom-center {
  align-items: flex-end;
  justify-content: center;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container.bottom-center .slider-info > * {
  align-self: center;
  text-align: center;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container .slider-info {
  padding: 4em 0em;
  max-width: 600px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  .slider .big-slider.swiper-initialized .slider-item .slider-container .slider-info {
    padding: 4em 2em;
    max-width: 450px;
    font-size: 80%;
  }
}
@media screen and (max-width: 671px) {
  .slider .big-slider.swiper-initialized .slider-item .slider-container .slider-info {
    max-width: 100%;
  }
}
.slider .big-slider.swiper-initialized .slider-item .slider-container .slider-info h2 {
  position: relative;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  opacity: 0;
  display: inline-flex;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container .slider-info h3 {
  position: relative;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  opacity: 0;
  order: -1;
  display: inline-flex;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container .slider-info .simple-text {
  position: relative;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  opacity: 0;
  display: inline-flex;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container .slider-info .simple-text ul {
  list-style-type: disc;
  list-style-position: inside;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container .slider-info .simple-text ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container .slider-info button {
  top: auto;
  position: relative;
  margin-top: 2em;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  opacity: 0;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container .slider-info.bottom-to-top > * {
  bottom: -2em;
  opacity: 0;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container .slider-info.top-to-bottom > * {
  top: -2em;
  opacity: 0;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container .slider-info.right-to-left > * {
  right: -2em;
  opacity: 0;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container .slider-info.left-to-right > * {
  left: -2em;
  opacity: 0;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container .slider-info.bigger > * {
  transform: scale(0.5);
  opacity: 0;
}
.slider .big-slider.swiper-initialized .slider-item .slider-container .slider-info.no-animation > * {
  opacity: 1;
}
.slider .big-slider.swiper-initialized .slider-item.swiper-slide-active .slider-container .slider-info h2 {
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.slider .big-slider.swiper-initialized .slider-item.swiper-slide-active .slider-container .slider-info h3 {
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.slider .big-slider.swiper-initialized .slider-item.swiper-slide-active .slider-container .slider-info .simple-text {
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.slider .big-slider.swiper-initialized .slider-item.swiper-slide-active .slider-container .slider-info button {
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.slider .big-slider.swiper-initialized .slider-item.swiper-slide-active .slider-container .slider-info.bottom-to-top > * {
  -webkit-animation-name: bottomToBottom;
          animation-name: bottomToBottom;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  opacity: 1;
}
.slider .big-slider.swiper-initialized .slider-item.swiper-slide-active .slider-container .slider-info.top-to-bottom > * {
  -webkit-animation-name: topToBottom;
          animation-name: topToBottom;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  opacity: 1;
}
.slider .big-slider.swiper-initialized .slider-item.swiper-slide-active .slider-container .slider-info.right-to-left > * {
  -webkit-animation-name: rightToLeft;
          animation-name: rightToLeft;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  opacity: 1;
}
.slider .big-slider.swiper-initialized .slider-item.swiper-slide-active .slider-container .slider-info.left-to-right > * {
  -webkit-animation-name: leftToRight;
          animation-name: leftToRight;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  opacity: 1;
}
.slider .big-slider.swiper-initialized .slider-item.swiper-slide-active .slider-container .slider-info.bigger > * {
  -webkit-animation-name: bigger;
          animation-name: bigger;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  opacity: 1;
}
@-webkit-keyframes bottomToBottom {
  0% {
    bottom: -2em;
    opacity: 0;
  }
  100% {
    bottom: 0;
    opacity: 1;
  }
}
@keyframes bottomToBottom {
  0% {
    bottom: -2em;
    opacity: 0;
  }
  100% {
    bottom: 0;
    opacity: 1;
  }
}
@-webkit-keyframes topToBottom {
  0% {
    top: -2em;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes topToBottom {
  0% {
    top: -2em;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@-webkit-keyframes rightToLeft {
  0% {
    right: -2em;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@keyframes rightToLeft {
  0% {
    right: -2em;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@-webkit-keyframes leftToRight {
  0% {
    left: -2em;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes leftToRight {
  0% {
    left: -2em;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@-webkit-keyframes bigger {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bigger {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.story-banner {
  position: relative;
}
.story-banner .container.full-w {
  max-width: 95% !important;
}
.story-banner .section-title h2 {
  font-size: 2.2em;
}
.story-banner .section-title h3 {
  font-size: 1.4em;
}
.story-banner .section-title div {
  color: 1em;
}
.story-banner .section-title div ul {
  list-style-type: disc;
  list-style-position: inside;
}
.story-banner .section-title div ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.story-banner .story-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  overflow-x: auto;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
@media screen and (min-width: 1120px) {
  .story-banner .story-list {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
}
.story-banner .story-list .story-item {
  padding: 0.7em 0;
}
.story-banner .story-list .story-item:first-child {
  padding-left: 0;
}
.story-banner .story-list .story-item:last-child {
  padding-right: 0;
}
.story-banner .story-list .story-item .s-image {
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  max-width: 100px;
  max-height: 100px;
  min-width: 100px;
  min-height: 100px;
}
@media screen and (max-width: 768px) {
  .story-banner .story-list .story-item .s-image {
    max-width: 70px;
    max-height: 70px;
    min-width: 70px;
    min-height: 70px;
  }
}
.story-banner .story-list .story-item .s-image img,
.story-banner .story-list .story-item .s-image .dummy-square-small-banner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border-radius: 50%;
}
.story-banner .story-list .story-item .s-image .svg-border {
  fill: none;
  stroke: var(--generalPrimaryColor);
  stroke-linecap: round;
  stroke-width: 2px;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}
.story-banner .story-list .story-item .s-text {
  text-align: center;
  font-size: 0.8em;
  max-width: 100px;
}
@media screen and (max-width: 768px) {
  .story-banner .story-list .story-item .s-text {
    width: 70px;
  }
}
@media screen and (max-width: 671px) {
  .story-banner .story-list .story-item .s-text {
    width: 100%;
  }
}
.story-banner .story-list .story-item .s-text h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.story-banner .story-list .story-item a {
  color: var(--generalTextColor);
}
.story-banner .story-list.animated-border .s-image {
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  width: 7em;
  height: 7em;
}
@media screen and (max-width: 768px) {
  .story-banner .story-list.animated-border .s-image {
    width: 5em;
    height: 5em;
  }
}
.story-banner .story-list.animated-border .s-image .svg-border {
  fill: none;
  stroke: var(--generalPrimaryColor);
  stroke-linecap: round;
  stroke-width: 1px;
  stroke-dasharray: 2;
  stroke-dashoffset: 0;
  -webkit-animation: stroke-draw 6s ease-out infinite alternate;
          animation: stroke-draw 6s ease-out infinite alternate;
}
@-webkit-keyframes stroke-draw {
  from {
    stroke: var(--generalPrimaryColor);
    stroke-dasharray: 1;
  }
  to {
    stroke: var(--generalSecondaryColor);
    transform: rotate(180deg);
    stroke-dasharray: 8;
  }
}
@keyframes stroke-draw {
  from {
    stroke: var(--generalPrimaryColor);
    stroke-dasharray: 1;
  }
  to {
    stroke: var(--generalSecondaryColor);
    transform: rotate(180deg);
    stroke-dasharray: 8;
  }
}

.text-image {
  position: relative;
}
.text-image .container.full-w {
  max-width: 95% !important;
}
.text-image .section-wrapper {
  padding-left: 1em;
  padding-right: 1em;
}
.text-image .section-photo {
  position: relative;
  padding: 0;
}
.text-image .section-photo .banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.text-image .section-photo .banner-overlay i {
  position: absolute;
  display: inline-flex;
}
.text-image .section-photo img {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.text-image .image-text {
  padding: 0 1em;
}
.text-image .position-first-text {
  align-items: center;
}
.text-image .position-first-text .section-photo {
  order: 1;
}
.text-image .position-first-text .image-text {
  order: 0;
}
@media screen and (max-width: 671px) {
  .text-image .position-first-text .image-text {
    margin-top: 2em;
    order: 2;
    margin-bottom: 1.5em;
  }
}
.text-image .position-first-image {
  align-items: center;
}
.text-image .position-first-image .section-photo {
  order: 0;
}
@media screen and (max-width: 671px) {
  .text-image .position-first-image .section-photo {
    margin-top: 1.5em;
    margin-bottom: 2em;
  }
}
.text-image .position-first-image .image-text {
  order: 1;
}

.trust-icons {
  position: relative;
}
.trust-icons .container.full-w {
  max-width: 95% !important;
}
.trust-icons .section-title {
  display: flex;
}
.trust-icons .section-title .title-wrapper {
  max-width: 650px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.trust-icons .section-title .title-wrapper h2 {
  font-size: 2.2em;
  line-height: 1;
}
.trust-icons .section-title .title-wrapper h3 {
  order: -1;
  font-size: 1.4em;
  margin-bottom: 0.3em;
  line-height: 1;
  font-weight: 600;
}
.trust-icons .section-title .title-wrapper div {
  margin-top: 0.7em;
}
.trust-icons .section-title .title-wrapper div > * {
  font-size: 1em;
  line-height: 1.5;
}
.trust-icons .section-title .title-wrapper div ul {
  list-style-type: disc;
  list-style-position: inside;
}
.trust-icons .section-title .title-wrapper div ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.trust-icons .reverse .ob-inner-first {
  order: -1;
}
.trust-icons .trust-icons-item {
  position: relative;
  display: flex;
  overflow: hidden;
  justify-content: center;
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .trust-icons .trust-icons-item {
    margin-bottom: 24px !important;
  }
}
@media screen and (max-width: 575px) {
  .trust-icons .trust-icons-item {
    margin-bottom: 12px !important;
  }
}
.trust-icons .trust-icons-item a {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.trust-icons .trust-icons-item.inline-image .trust-icons-container {
  width: 100%;
}
.trust-icons .trust-icons-item.inline-image a {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
}
.trust-icons .trust-icons-item.inline-image a .trust-icons-info {
  padding-top: 0;
  padding-bottom: 0;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
.trust-icons .trust-icons-item.inline-image a .trust-icons-image {
  max-width: 18%;
  justify-content: center !important;
}
.trust-icons .trust-icons-item.inline-image a .trust-icons-image svg {
  margin: 0;
  padding: 0;
}
.trust-icons .trust-icons-item.inline-image a .trust-icons-image img {
  margin: 0;
  padding: 0;
}
.trust-icons .trust-icons-item .trust-icons-image {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icons .trust-icons-item .trust-icons-image svg {
  position: relative;
  z-index: 3;
  max-width: 80px;
  padding: 0 0 0.5em 0;
  width: 100%;
}
.trust-icons .trust-icons-item .trust-icons-image img {
  position: relative;
  z-index: 3;
  display: block;
  height: auto;
  padding: 0 0 0.5em 0;
  max-width: 80px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .trust-icons .trust-icons-item .trust-icons-image img {
    position: relative;
  }
}
.trust-icons .trust-icons-item .trust-icons-info {
  padding: 1em 0;
  width: 100%;
  position: relative;
  z-index: 2;
}
.trust-icons .trust-icons-item .trust-icons-info h2 {
  font-size: 1.1em;
}
.trust-icons .trust-icons-item .trust-icons-info h2 + div {
  margin-top: 0.3em;
}
.trust-icons .trust-icons-item .trust-icons-info div {
  font-size: 0.85em;
  line-height: 1.2;
}
.trust-icons .trust-icons-item .trust-icons-info div ul {
  list-style-type: disc;
  list-style-position: inside;
}
.trust-icons .trust-icons-item .trust-icons-info div ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.trust-icons .no-gutter {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.trust-icons .no-gutter .trust-icons-item {
  padding: 0 !important;
  margin: 0 !important;
}
.trust-icons .no-gutter .trust-icons-item a {
  border-radius: 0;
}

.cn-wrapper {
  width: 100% !important;
  padding: 1em 0;
}
.cn-wrapper a {
  text-decoration: none;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
}
.cn-wrapper .cn-slider {
  width: 100%;
}
.cn-wrapper .cn-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.cn-wrapper .cn-list .cn-item {
  display: inline-flex;
  align-items: center;
  padding: 0 1em;
}
.cn-wrapper .cn-list .cn-item a {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  -moz-column-gap: 2em;
       column-gap: 2em;
}
.cn-wrapper .cn-list .cn-item a img {
  max-height: 60px;
  min-height: auto;
}
.cn-wrapper .cn-list .cn-item a .ticker-text {
  white-space: nowrap;
}
.cn-wrapper .cn-list .cn-item a .ticker-text * {
  white-space: nowrap;
}
.cn-wrapper .cn-marquee {
  overflow: hidden;
}

.js-marquee {
  margin: 0 !important;
}

.js-marquee-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.about-us-page .page-content {
  padding: 2em 0;
  line-height: 1.5;
}
.about-us-page .page-content h2 {
  font-size: 1.7em;
  margin-bottom: 0.3em;
}
.about-us-page .page-content h3 {
  font-size: 1.4em;
  margin-bottom: 0.3em;
}
.about-us-page .page-content h4 {
  font-size: 1.3em;
  margin-bottom: 0.3em;
}
.about-us-page .page-content h5 {
  font-size: 1.2em;
  margin-bottom: 0.3em;
}
.about-us-page .page-content h6 {
  font-size: 1.1em;
  margin-bottom: 0.3em;
}
.about-us-page .page-content p {
  margin-bottom: 1.6em;
}
.about-us-page .page-content ul {
  padding: 0 0 0 1em;
}
.about-us-page .page-content ul li {
  list-style: disc;
}

.blog-block {
  position: relative;
}
.blog-block .container.full-w {
  max-width: 95% !important;
}
.blog-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: none;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.blog-block .blog-list .blog-list-item {
  margin-bottom: 2em;
}
@media screen and (max-width: 671px) {
  .blog-block .blog-list .blog-list-item {
    margin-bottom: 1.4em;
  }
}
.blog-block .blog-list .blog-list-item a {
  color: var(--generelTextColor);
  display: block;
}
.blog-block .blog-list .blog-list-item .blog-list-item-image {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
}
.blog-block .blog-list .blog-list-item .blog-list-item-image img {
  border-radius: var(--generalBorderRadius);
  transition: transform 0.3s;
  transform: scale(1.5);
}
.blog-block .blog-list .blog-list-item .blog-list-item-info {
  margin-top: 1em;
}
.blog-block .blog-list .blog-list-item .blog-list-item-info h2 {
  font-family: var(--fontFamilyBody);
  font-size: 1.3em;
  line-height: 1.4;
}
.blog-block .blog-list .blog-list-item .blog-list-item-info h3 {
  line-height: 1.4;
  font-size: 1em;
  font-weight: 400;
  opacity: 0.7;
}
.blog-block .blog-list .blog-list-item .blog-list-item-info .date {
  margin-bottom: 1.2em;
  font-size: 0.8em;
  opacity: 0.4;
  margin-top: 0.5em;
}
.blog-block .blog-list .blog-list-item .blog-list-item-info .go-to-detail {
  display: flex;
  justify-content: flex-start;
  margin-top: 1em;
  font-size: 1em;
}
.blog-block .blog-list .blog-list-item:hover .blog-list-item-image img {
  transform: scale(1.54);
}
.blog-block .blog-list .blog-list-item:hover .go-to-detail {
  color: var(--generalPrimaryColor);
}

.blog-list-page .blog-list {
  padding: 3em 0;
}
.blog-list-page .blog-list .blog-list-item {
  margin-bottom: 2em;
}
@media screen and (max-width: 671px) {
  .blog-list-page .blog-list .blog-list-item {
    margin-bottom: 1.4em;
  }
}
.blog-list-page .blog-list .blog-list-item a {
  color: var(--generelTextColor);
}
.blog-list-page .blog-list .blog-list-item .blog-list-item-image {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
  margin-bottom: 1em;
}
.blog-list-page .blog-list .blog-list-item .blog-list-item-image img {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
  transition: transform 0.3s;
  transform: scale(1);
}
.blog-list-page .blog-list .blog-list-item .blog-list-item-info h2 {
  font-family: var(--fontFamilyBody);
  font-size: 1.3em;
}
.blog-list-page .blog-list .blog-list-item .blog-list-item-info h3 {
  line-height: 1.4;
  font-size: 1em;
  font-weight: 400;
  opacity: 0.7;
}
.blog-list-page .blog-list .blog-list-item .blog-list-item-info .date {
  margin-bottom: 1.2em;
  font-size: 0.8em;
  opacity: 0.4;
  margin-top: 0.5em;
}
.blog-list-page .blog-list .blog-list-item .blog-list-item-info .go-to-detail {
  display: flex;
  justify-content: flex-start;
  margin-top: 1em;
  font-size: 1em;
}
.blog-list-page .blog-list .blog-list-item:hover .blog-list-item-image img {
  transform: scale(1.02);
}
.blog-list-page .blog-list .blog-list-item:hover .go-to-detail {
  color: var(--generalPrimaryColor);
}
.blog-list-page .blog-list.brick {
  display: block !important;
}
.blog-list-page .blog-list.brick .blog-list-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
  width: 100%;
}

.blog-detail-page .container.standart {
  max-width: 850px;
}
.blog-detail-page .page-top {
  padding: 3em 0 1em;
}
.blog-detail-page .page-top h1 {
  font-size: 2.4em;
  line-height: 1.5em;
}
.blog-detail-page .page-top .date {
  margin-bottom: 1em;
  font-size: 0.8em;
  opacity: 0.4;
  margin-top: 0.5em;
  margin-top: 1em;
  margin-bottom: 3em;
}
.blog-detail-page .page-top h2 {
  max-width: 850px;
  line-height: 1.4;
  width: 100%;
  margin: 0 auto 2em;
  font-family: var(--fontFamilyBody);
  font-size: 1.4em;
  font-weight: 400;
  opacity: 0.6;
}
.blog-detail-page .page-top .blog-detail-image {
  overflow: hidden;
  border-radius: var(--generalBorderRadius);
}
.blog-detail-page .magazine .page-top {
  padding: 3em 0 1em;
}
.blog-detail-page .magazine .page-top h2 {
  margin: 0 auto !important;
  line-height: 1.5em;
}
.blog-detail-page .magazine .blog-detail-image {
  max-width: 40%;
  float: left;
  margin: 1.2em 2em 2em 0;
  overflow: hidden;
  border-radius: var(--generalBorderRadius);
}
@media screen and (max-width: 671px) {
  .blog-detail-page .magazine .blog-detail-image {
    width: 100%;
    max-width: unset;
  }
}
.blog-detail-page .blog-content {
  padding: 1em 0;
}
.blog-detail-page .blog-content h2 {
  font-size: 1.7em;
  padding: 0.7em 0 0.4em;
  font-family: var(--fontFamilyBody);
}
.blog-detail-page .blog-content h3 {
  font-size: 1.2em;
  padding: 1em 0 0.6em;
}
.blog-detail-page .blog-content h4 {
  font-size: 1.1em;
  padding: 1em 0 0.6em;
}
.blog-detail-page .blog-content p {
  line-height: 1.5;
  margin-bottom: 1em;
  opacity: 0.6;
}

.brand-list-page .page-content {
  padding: 3em 0;
}
.brand-list-page .page-content .brand-info {
  padding: 0 1.27em;
  position: relative;
  overflow: hidden;
}
.brand-list-page .page-content .brand-info .container {
  padding: 0;
}
.brand-list-page .page-content .brand-info .brand-name {
  position: relative;
  z-index: 2;
}
.brand-list-page .page-content .brand-info .brand-name h1 {
  font-family: var(--fontFamilyHeading);
  font-size: 2.3em;
  margin-bottom: 0;
  line-height: 1.5em;
}
.brand-list-page .page-content .brand-info .brand-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-size: cover;
  z-index: 1;
}
.brand-list-page .page-content .brand-info .brand-image img {
  overflow: hidden;
  border-radius: calc(var(--generalBorderRadius) * 0.6);
}
.brand-list-page .page-content .brand-info .brand-description {
  position: relative;
  z-index: 2;
  line-height: 1.4;
  margin: 1em 0 0;
  display: inline-flex;
  max-width: 600px;
  width: auto;
}
.brand-list-page .page-content .brand-info #breadcrumb {
  position: relative;
  z-index: 2;
}
.brand-list-page .page-content .brand-info .container {
  height: 100%;
}
.brand-list-page .page-content .brand-info .inner-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.brand-list-page .page-content .brand-list {
  row-gap: 1em;
}
.brand-list-page .page-content .brand-list .brand-list-item {
  margin-bottom: 2em;
}
.brand-list-page .page-content .brand-list .brand-list-item a {
  color: var(--generalTextColor);
}
.brand-list-page .page-content .brand-list .brand-list-item .brand-logo {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4em;
  border-radius: var(--generalBorderRadius);
  border: 1px solid var(--boxBorderColor);
  overflow: hidden;
}
.brand-list-page .page-content .brand-list .brand-list-item .brand-logo img {
  max-height: 100px;
  width: auto;
  max-width: 100%;
  transition: transform 0.7s;
  transform: scale(1);
}
.brand-list-page .page-content .brand-list .brand-list-item .brand-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1em 0;
}
.brand-list-page .page-content .brand-list .brand-list-item .brand-info .products {
  font-size: 90%;
  opacity: 0.5;
}
.brand-list-page .page-content .brand-list .brand-list-item:hover .brand-name {
  color: var(--generalPrimaryColor);
}
.brand-list-page .page-content .brand-list .brand-list-item:hover .brand-logo {
  border-color: var(--generalPrimaryColor);
}
.brand-list-page .page-content .brand-list .brand-list-item:hover .brand-logo img {
  transform: scale(1.1);
}

#brand .page-content .full-w {
  width: 95% !important;
  margin: 0 auto;
}
#brand .brand-info {
  padding: 0 0 1.27em;
  position: relative;
  overflow: hidden;
}
#brand .brand-info .container {
  padding: 0;
}
#brand .brand-info .brand-name {
  position: relative;
  z-index: 2;
}
#brand .brand-info .brand-name h1 {
  font-family: var(--fontFamilyHeading);
  font-size: 2.3em;
  margin-bottom: 0;
  line-height: 1.5em;
}
#brand .brand-info .brand-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-size: cover;
  z-index: 1;
}
#brand .brand-info .brand-image img {
  overflow: hidden;
  border-radius: calc(var(--generalBorderRadius) * 0.6);
}
#brand .brand-info .brand-description {
  position: relative;
  z-index: 2;
  line-height: 1.4;
  margin: 1em 0 0;
  display: inline-flex;
  max-width: 600px;
  width: auto;
}
#brand .brand-info #breadcrumb {
  position: relative;
  z-index: 2;
}
#brand .brand-info .container {
  height: 100%;
}
#brand .brand-info .inner-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#brand #list-brand .brand-info {
  margin: 0 0 2em;
  padding: 0;
}
#brand #list-brand .brand-info .brand-image {
  position: relative;
  margin: 2em 0 1em 0;
}
#brand #list-brand .brand-info .brand-image img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
#brand .brand-seo-text {
  padding: 1em;
  border-radius: var(--generalBorderRadius);
  border: 1px solid var(--boxBorderColor);
  margin: 2em 0;
  font-size: 0.8em;
}
#brand .brand-seo-text * {
  line-height: 1.4;
}

#category .page-content .full-w {
  width: 95% !important;
  margin: 0 auto;
}
#category .category-info {
  padding: 0 1.27em;
  position: relative;
  overflow: hidden;
}
#category .category-info .container {
  padding: 0;
}
#category .category-info .category-name {
  position: relative;
  z-index: 2;
}
#category .category-info .category-name h1 {
  font-family: var(--fontFamilyHeading);
  font-size: 2.3em;
  margin-bottom: 0;
  line-height: 1.5em;
}
#category .category-info .category-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-size: cover;
  z-index: 1;
}
#category .category-info .category-image img {
  overflow: hidden;
  border-radius: calc(var(--generalBorderRadius) * 0.6);
}
#category .category-info .category-description {
  position: relative;
  z-index: 2;
  line-height: 1.4;
  margin: 1em 0 0;
  display: inline-flex;
  max-width: 600px;
  width: auto;
}
#category .category-info #breadcrumb {
  position: relative;
  z-index: 2;
}
#category .category-info .container {
  height: 100%;
}
#category .category-info .inner-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#category #list-category {
  width: 100%;
}
#category #list-category .category-info {
  margin: 0 0 2em;
  padding: 0;
}
#category #list-category .category-info .category-image {
  position: relative;
}
#category #list-category .category-info .category-image img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
#category .category-seo-text {
  padding: 1em;
  border-radius: var(--generalBorderRadius);
  border: 1px solid var(--boxBorderColor);
  margin: 2em 0;
  font-size: 0.8em;
}
#category .category-seo-text * {
  line-height: 1.4;
}

.collection-list {
  position: relative;
}
.collection-list .collection-wrap {
  position: relative;
  z-index: 1;
}
.collection-list .viewall {
  white-space: nowrap;
}
.collection-list .section-title {
  align-items: center;
}
.collection-list .section-title .title-wrapper {
  max-width: unset;
}
.collection-list .section-title .viewall {
  display: inline-flex;
  margin-top: 0 !important;
  position: absolute;
}
.collection-list .section-title.text-center .viewall {
  inset-inline-end: 0;
}
.collection-list .section-title.text-end {
  flex-direction: row-reverse;
}
.collection-list .section-title.text-end .viewall, .collection-list .section-title.text-start .viewall {
  position: relative;
}
.collection-list .colleciton-title {
  text-align: center;
  font-size: 2em;
  padding-bottom: 0.7em;
}
.collection-list .product-slider-collection {
  transition: opacity 0.3s;
}
.collection-list .product-slider-collection.swiper-coverflow .product-list-item {
  margin-bottom: 0 !important;
  background-color: var(--bodyBackgroundColor);
}
.collection-list .product-slider-collection.swiper-coverflow .product-list-item .product-image {
  opacity: 0.8;
  max-height: unset;
  position: relative;
}
.collection-list .product-slider-collection.swiper-coverflow .product-list-item .product-image:before {
  content: "";
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  opacity: 0.5;
}
.collection-list .product-slider-collection.swiper-coverflow .product-list-item.swiper-slide-active .product-image {
  opacity: 1;
}
.collection-list .product-slider-collection.swiper-coverflow .product-list-item.swiper-slide-active .product-image:after, .collection-list .product-slider-collection.swiper-coverflow .product-list-item.swiper-slide-active .product-image:before {
  opacity: 0 !important;
}
.collection-list .product-slider-collection.swiper-coverflow .product-list-item.swiper-slide-active ~ * .product-image:before {
  content: "";
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)) !important;
}
.collection-list .product-slider-collection .product-list-item:first-child {
  display: block;
}
.collection-list .product-slider.slick-initialized .product-list-item {
  display: block;
  visibility: visible !important;
}
.collection-list .product-slider.slick-initialized .product-list-item .product-image {
  max-height: unset;
}
.collection-list .tab-navigation {
  display: flex;
}
.collection-list .tab-navigation ul {
  display: inline-flex;
}
.collection-list .tab-navigation ul li {
  cursor: pointer;
  color: inherit;
}
.collection-list .tab-content .tab-section {
  display: none;
  opacity: 0;
  position: relative;
  left: 2em;
  visibility: hidden;
  width: 100%;
}
.collection-list .tab-content .tab-section.active {
  transition-delay: 1s;
  display: block;
  -webkit-animation: activeTab;
          animation: activeTab;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  opacity: 1;
  visibility: visible;
  left: 0;
}
.collection-list .tab-content .swiper {
  width: 100%;
  height: 100%;
}
.collection-list .tab-content .viewall.bottom-side {
  display: inline-flex;
}
@-webkit-keyframes activeTab {
  from {
    left: 2em;
    opacity: 0;
    visibility: hidden;
  }
  to {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes activeTab {
  from {
    left: 2em;
    opacity: 0;
    visibility: hidden;
  }
  to {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 672px) {
  .collection-list .collection-wrap.collection-with-image .tab-wrapper {
    width: 100% !important;
  }
}

.product-slider-collection .swiper-button-prev:after,
.product-slider-collection .swiper-button-next:after {
  display: none;
}
.product-slider-collection .swiper-button-prev svg,
.product-slider-collection .swiper-button-next svg {
  width: 25px;
  height: 25px;
}

#collection-page .product-list {
  margin-top: 2em;
}
#collection-page .product-list .product-list-item {
  margin-bottom: 3em;
}
#collection-page .product-list .product-list-item .product-image a {
  display: block;
}
#collection-page .product-list .product-list-item .product-info .product-price {
  margin-top: 0.6em;
}
#collection-page .product-list .product-list-item .product-info .product-price .current,
#collection-page .product-list .product-list-item .product-info .product-price .old {
  padding: 0 0.5em;
}

.collection-list-page .page-content {
  padding: 3em 0;
}
.collection-list-page .collections-look-list .collections-look-item {
  margin-bottom: 1.1em;
  position: relative;
}
@media screen and (max-width: 671px) {
  .collection-list-page .collections-look-list .collections-look-item {
    margin-bottom: 0.5em;
  }
}
.collection-list-page .collections-look-list .collections-look-item a {
  color: var(--generelTextColor);
  min-height: 100px;
  position: relative;
  display: block;
}
.collection-list-page .collections-look-list .collections-look-item .collections-look-image {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.collection-list-page .collections-look-list .collections-look-item .collections-look-image img {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
  transition: transform 0.3s;
  transform: scale(1);
}
.collection-list-page .collections-look-list .collections-look-item .collections-look-info {
  position: absolute;
  width: 100%;
  padding: 1.4em;
  display: inline-flex;
  justify-content: flex-start;
  flex-direction: column;
  bottom: 0;
}
.collection-list-page .collections-look-list .collections-look-item .collections-look-info h2 {
  font-family: var(--fontFamilyBody);
  font-size: 1.3em;
}
.collection-list-page .collections-look-list .collections-look-item .collections-look-info h3 {
  line-height: 1.4;
  font-size: 1em;
  font-weight: 400;
  opacity: 0.7;
}
.collection-list-page .collections-look-list .collections-look-item .collections-look-info .go-to-detail {
  display: inline-flex;
  justify-content: flex-start;
  margin-top: 1em;
  font-size: 1em;
}
.collection-list-page .collections-look-list .collections-look-item:hover .collections-look-image img {
  transform: scale(1.02);
}
.collection-list-page .collections-look-list .collections-look-item:hover .go-to-detail {
  color: var(--generalPrimaryColor);
}
.collection-list-page .collections-look-list.no-gap .collections-look-item {
  padding: 0 !important;
  margin: 0 !important;
}
.collection-list-page .collections-look-list.brick {
  display: block !important;
  -moz-column-gap: 0;
       column-gap: 0;
}
.collection-list-page .collections-look-list.brick .collections-look-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
  width: 100%;
}
.collection-list-page .collections-look-list.brick.no-gap {
  -moz-column-gap: 0;
       column-gap: 0;
}
.collection-list-page .collections-look-list.brick.no-gap .collections-look-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
  width: 100%;
}

#contact-page .page-content {
  padding: 3em 0;
}
#contact-page .contact-side {
  padding-bottom: 2em;
  -webkit-padding-end: 2em;
          padding-inline-end: 2em;
}
#contact-page .contact-side .side-title {
  font-size: 1.7em;
  font-weight: 600;
  margin-bottom: 0.5em;
}
#contact-page .contact-side nav {
  margin-bottom: 2em;
}
#contact-page .contact-side nav .labeled-list li {
  display: flex;
  align-items: baseline;
  color: inherit;
  padding: 0.5em 0;
}
#contact-page .contact-side nav .labeled-list li a {
  color: inherit;
}
#contact-page .contact-side nav .labeled-list li .label {
  -webkit-margin-end: 2em;
          margin-inline-end: 2em;
}
#contact-page .contact-side nav .labeled-list li .label .shape {
  width: 18px;
  height: 18px;
  display: block;
}
#contact-page .contact-side nav .labeled-list li .label .shape svg {
  fill: var(--generalTextColor);
}
#contact-page .contact-side nav .labeled-list li .labeled {
  line-height: 1.5;
}

#faqs-page .page-content {
  padding: 2em 0;
}
#faqs-page .page-content .faq-list-accoridon {
  margin: 0 auto;
  max-width: 700px;
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
#faqs-page .page-content .faq-list-accoridon .faq-question-item {
  cursor: pointer;
  margin-top: -1px;
  border-top: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
  padding: 1em;
  font-size: 1.2em;
  font-family: var(--fontFamilyBody);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#faqs-page .page-content .faq-list-accoridon .faq-question-item .shape {
  width: 20px;
  height: 20px;
  transition: all 0.2s;
}
#faqs-page .page-content .faq-list-accoridon .faq-question-item .shape svg {
  fill: var(--generalTextColor);
}
#faqs-page .page-content .faq-list-accoridon .faq-question-item:before {
  content: "";
  position: absolute;
  transition: all 0.3s;
}
#faqs-page .page-content .faq-list-accoridon .faq-question-item:before {
  border-left: 0 solid transparent;
  border-right: 0 solid transparent;
  border-top: 0 solid var(--bodyBackgroundColor);
  left: 21px;
  top: calc(100% - 1px);
  z-index: 1;
}
#faqs-page .page-content .faq-list-accoridon .faq-question-item.active {
  color: var(--generalPrimaryColor);
}
#faqs-page .page-content .faq-list-accoridon .faq-question-item.active:before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--bodyBackgroundColor);
  filter: drop-shadow(0 2px 0 rgba(var(--rgbGeneralTextColor), 0.15));
}
#faqs-page .page-content .faq-list-accoridon .faq-question-item.active .shape {
  transform: rotate(180deg);
}
#faqs-page .page-content .faq-list-accoridon .faq-question-item.active .shape svg {
  fill: var(--generalPrimaryColor);
}
#faqs-page .page-content .faq-list-accoridon .faq-question-item.active + .faq-answer-item {
  border-radius: 0 0 var(--generalBorderRadius) var(--generalBorderRadius);
}
#faqs-page .page-content .faq-list-accoridon .faq-question-item.active + .faq-answer-item + .faq-question-item {
  border: none;
}
#faqs-page .page-content .faq-list-accoridon .faq-answer-item {
  font-family: var(--fontFamilyBody);
  padding: 2em;
  border-width: 1px;
  border-style: solid;
  border-color: var(--boxBorderColor);
  font-size: 1em;
  display: none;
  background-color: var(--boxBackgroundColor);
  line-height: 1.5;
  font-weight: 400;
}

.gallery-list-page .gallery-list {
  padding: 3em 0;
}
.gallery-list-page .gallery-list .gallery-list-item {
  margin-bottom: 1em;
  position: relative;
}
@media screen and (max-width: 671px) {
  .gallery-list-page .gallery-list .gallery-list-item {
    margin-bottom: 0.7em;
  }
}
.gallery-list-page .gallery-list .gallery-list-item a {
  color: var(--generelTextColor);
}
.gallery-list-page .gallery-list .gallery-list-item .gallery-list-item-image {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
.gallery-list-page .gallery-list .gallery-list-item .gallery-list-item-image img {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
  transition: transform 0.3s;
  transform: scale(1);
}
.gallery-list-page .gallery-list .gallery-list-item .gallery-list-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0;
  padding: 1em 1.7em;
}
.gallery-list-page .gallery-list .gallery-list-item .gallery-list-item-info .gallery-item-date {
  margin-bottom: 0.5em;
  opacity: 0.7;
}
.gallery-list-page .gallery-list .gallery-list-item:hover .gallery-list-item-image img {
  transform: scale(1.02);
}
.gallery-list-page .gallery-list .gallery-list-item:hover .gallery-item-title {
  color: var(--generalPrimaryColor);
}
.gallery-list-page .gallery-list.brick {
  display: block !important;
  -moz-column-gap: 0;
       column-gap: 0;
}
.gallery-list-page .gallery-list.brick .gallery-list-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
  width: 100%;
}

.contract-page .page-content {
  padding: 3em 0;
}
@media screen and (max-width: 575px) {
  .contract-page .page-content {
    padding-top: 0;
  }
}
.contract-page .page-content .cms-container * {
  line-height: 1.4;
}
.contract-page .page-content .cms-container h1,
.contract-page .page-content .cms-container h2,
.contract-page .page-content .cms-container h3,
.contract-page .page-content .cms-container h4,
.contract-page .page-content .cms-container h5,
.contract-page .page-content .cms-container h6 {
  margin-bottom: 0.6em;
}
.contract-page .page-content .cms-container h1 {
  font-size: 1.7em;
  font-weight: 600;
  font-family: var(--fontFamilyHeading);
}
.contract-page .page-content .cms-container h2 {
  font-size: 1.5em;
  font-weight: 600;
  font-family: var(--fontFamilyHeading);
}
.contract-page .page-content .cms-container h3 {
  font-size: 1.3em;
  font-weight: 600;
}
.contract-page .page-content .cms-container h4 {
  font-size: 1.2em;
  font-weight: 600;
}
.contract-page .page-content .cms-container h5 {
  font-size: 1.1em;
  font-weight: 600;
}
.contract-page .page-content .cms-container h6 {
  font-size: 10em;
  font-weight: 600;
}
.contract-page .page-content .cms-container ul {
  padding: 0 1.5em;
}
.contract-page .page-content .cms-container ul li {
  list-style: circle;
}
.contract-page .page-content .cms-container ol {
  padding: 0 1.5em;
}
.contract-page .page-content .cms-container ol li {
  list-style: decimal;
}

@media screen and (max-width: 575px) {
  .side-bar {
    padding: 0;
  }
}
.side-bar nav {
  margin-bottom: 2em;
  max-width: 80%;
}
@media screen and (max-width: 575px) {
  .side-bar nav {
    max-width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .side-bar nav ul {
    display: flex;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll !important;
    background-color: rgba(var(--rgbGeneralTextColor), 0.09);
    /* Hide scrollbar for Chrome, Safari and Opera */
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .side-bar nav ul::-webkit-scrollbar {
    display: none;
  }
}
.side-bar nav ul li {
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
}
.side-bar nav ul li:last-child {
  border: none;
}
@media screen and (max-width: 575px) {
  .side-bar nav ul li {
    scroll-snap-align: end;
    border: none;
  }
  .side-bar nav ul li:first-child {
    padding-left: 0;
  }
  .side-bar nav ul li:last-child {
    padding-right: 0;
  }
}
.side-bar nav ul li a {
  display: block;
  font-size: 1em;
  padding: 1em 1em !important;
  color: inherit;
}
@media screen and (max-width: 575px) {
  .side-bar nav ul li a {
    white-space: nowrap;
    padding: 1.5em 1em;
  }
}
.side-bar nav ul li a i {
  margin-right: 0.4em;
}
.side-bar nav ul li a:hover {
  color: var(--generalSecondaryColor);
}

.press-list-page .press-list {
  padding: 3em 0;
}
.press-list-page .press-list .press-list-item {
  margin-bottom: 2em;
}
@media screen and (max-width: 671px) {
  .press-list-page .press-list .press-list-item {
    margin-bottom: 1.4em;
  }
}
.press-list-page .press-list .press-list-item a {
  color: var(--generelTextColor);
}
.press-list-page .press-list .press-list-item .press-list-item-image {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
  margin-bottom: 1em;
}
.press-list-page .press-list .press-list-item .press-list-item-image img {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
  transition: transform 0.3s;
  transform: scale(1);
}
.press-list-page .press-list .press-list-item .press-list-item-info {
  padding: 0;
}
.press-list-page .press-list .press-list-item .press-list-item-info .press-item-date {
  margin-bottom: 0.5em;
  opacity: 0.7;
}
.press-list-page .press-list .press-list-item:hover .press-list-item-image img {
  transform: scale(1.02);
}
.press-list-page .press-list .press-list-item:hover .press-item-title {
  color: var(--generalPrimaryColor);
}
.press-list-page .press-list.brick {
  display: block !important;
  -moz-column-gap: 0;
       column-gap: 0;
}
.press-list-page .press-list.brick .press-list-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
  width: 100%;
}

#single-product-detail .product-container {
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 991px) {
  #single-product-detail .product-container {
    padding: 0;
  }
}
#single-product-detail .product-zoomer-video {
  z-index: 20;
  bottom: 5em !important;
  inset-inline-end: 0.5em !important;
}
#single-product-detail .owl-item {
  overflow: hidden;
}
#single-product-detail .comment-read-more {
  border-bottom: 1px solid rgb(204, 204, 204);
  border-top: 1px solid rgb(255, 255, 255);
  background: rgb(242, 242, 242);
  padding: 3px;
  font-size: 14px;
  cursor: pointer;
}
#single-product-detail .thumb-navigation-wrapper {
  visibility: hidden;
}
#single-product-detail .thumb-navigation-wrapper .swiper-button-next,
#single-product-detail .thumb-navigation-wrapper .swiper-button-prev {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: auto;
  bottom: 1em;
  z-index: 20;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  background-color: rgba(var(--rgbBodyBackgroundColor), 0.7);
  border-radius: calc(var(--buttonBorderRadius) * 0.2);
  cursor: pointer;
}
#single-product-detail .thumb-navigation-wrapper .swiper-button-next.swiper-button-disabled,
#single-product-detail .thumb-navigation-wrapper .swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
}
#single-product-detail .thumb-navigation-wrapper .swiper-button-next {
  inset-inline-end: 0.6em;
}
#single-product-detail .thumb-navigation-wrapper .swiper-button-prev {
  inset-inline-start: 0.6em;
}
#single-product-detail .product-thumbnails-photos {
  position: relative;
  width: 90px;
}
@media screen and (max-width: 991px) {
  #single-product-detail .product-thumbnails-photos {
    display: none !important;
  }
}
#single-product-detail .product-thumbnails-photos .product-thumbnails-photos-slider {
  width: 100%;
  height: 100%;
}
#single-product-detail .product-thumbnails-photos .product-thumbnails-photos-item {
  border: 0;
  margin-left: 2px;
  margin-right: 2px;
  width: auto;
  max-width: 100%;
  opacity: 0.5;
  cursor: pointer;
  overflow: hidden;
  border-radius: calc(var(--generalBorderRadius) * 0.3);
  box-shadow: 0 0 0 0 transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
#single-product-detail .product-thumbnails-photos .product-thumbnails-photos-item.swiper-slide-thumb-active {
  opacity: 1;
  outline: 1px solid var(--generalPrimaryColor);
  outline-offset: -1px;
  overflow: hidden;
}
#single-product-detail .product-thumbnails-photos .product-thumbnails-photos-item.video-detail {
  position: relative;
}
#single-product-detail .product-thumbnails-photos .product-thumbnails-photos-item.video-detail .shape {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
}
#single-product-detail .product-thumbnails-photos .product-thumbnails-photos-item img {
  max-width: unset !important;
  height: 100%;
  width: auto;
  transition: all 0.2s;
  overflow: visible !important;
  max-width: unset !important;
}
@media screen and (max-width: 767px) {
  #single-product-detail .product-thumbnails-photos {
    margin-top: 1em;
    margin-bottom: 2em;
  }
  #single-product-detail .product-thumbnails-photos a {
    width: auto;
    width: 100%;
  }
}
#single-product-detail .product-thumbnails-photos .slick-arrow {
  position: absolute;
  background-color: transparent;
  color: var(--generalTextColor);
  top: 100%;
  transform: unset;
  width: 50%;
  text-align: center;
  padding: 0;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#single-product-detail .product-thumbnails-photos .slick-arrow.swiper-button-next {
  inset-inline-end: 0;
}
#single-product-detail .product-thumbnails-photos .slick-arrow.swiper-button-prev {
  inset-inline-start: 0;
}
#single-product-detail .product-thumbnails-photos a {
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  width: 100%;
  padding: 0.6em;
}
#single-product-detail .product-thumbnails-photos a.active {
  border: 1px solid #333333;
}
#single-product-detail .product-zoomer {
  width: 41%;
}
#single-product-detail .product-zoomer:hover .thumb-navigation-wrapper {
  visibility: visible;
}
#single-product-detail .product-zoomer:hover .thumb-navigation-wrapper .swiper-button-next,
#single-product-detail .product-zoomer:hover .thumb-navigation-wrapper .swiper-button-prev {
  opacity: inherit;
}
#single-product-detail .product-zoomer:hover .thumb-navigation-wrapper .swiper-button-next.swiper-button-disabled,
#single-product-detail .product-zoomer:hover .thumb-navigation-wrapper .swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
}
@media screen and (max-width: 991px) {
  #single-product-detail .product-zoomer {
    position: relative;
    padding: 0;
    overflow: hidden;
    width: 100%;
  }
  #single-product-detail .product-zoomer .product-big-zoomer {
    position: relative;
  }
  #single-product-detail .product-zoomer .product-big-zoomer img {
    position: relative;
  }
  #single-product-detail .product-zoomer .thumb-navigation-wrapper {
    display: none;
  }
}
#single-product-detail .product-zoomer .product-big-zoomer {
  width: 100%;
  position: relative;
}
#single-product-detail .product-zoomer .product-big-zoomer .video-product-item {
  position: relative;
  overflow: hidden;
}
#single-product-detail .product-zoomer .product-big-zoomer .video-product-item img {
  opacity: 0 !important;
}
#single-product-detail .product-zoomer .product-big-zoomer .video-product-item iframe {
  top: -113px !important;
  position: absolute;
  width: 100% !important;
  height: calc(100% + 226px) !important;
  left: 0 !important;
}
@media screen and (max-width: 991px) {
  #single-product-detail .product-zoomer .product-big-zoomer {
    max-width: 50%;
    margin: 0 auto;
    border-radius: 0 !important;
  }
  #single-product-detail .product-zoomer .product-big-zoomer .thumb-navigation-wrapper {
    display: none !important;
  }
}
@media screen and (max-width: 671px) {
  #single-product-detail .product-zoomer .product-big-zoomer {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0 !important;
  }
}
@media screen and (min-width: 992px) {
  #single-product-detail .product-zoomer .product-big-zoomer {
    transform: translate3d(0, 0, 0) !important;
  }
}
#single-product-detail .product-zoomer .swiper-pagination {
  left: 50% !important;
  transform: translateX(-50%);
  padding: 1em 0;
  bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#single-product-detail .product-zoomer .swiper-pagination span {
  background: none;
  cursor: pointer;
  padding: unset;
  text-indent: -9999em;
  min-height: unset;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  margin: 0;
  outline: none;
}
#single-product-detail .product-zoomer .swiper-pagination span:before {
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background-color: var(--generalTextColor);
  transition: all 0.2s;
}
#single-product-detail .product-zoomer .swiper-pagination span:hover:before {
  width: 40%;
  height: 40%;
}
#single-product-detail .product-zoomer .swiper-pagination span.swiper-pagination-bullet-active:before {
  content: "";
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background-color: var(--generalTextColor);
  transition: all 0.3s;
}
#single-product-detail .product-zoomer .swiper-pagination span.swiper-pagination-bullet-active svg {
  opacity: 1;
}
#single-product-detail .product-zoomer .swiper-pagination span.swiper-pagination-bullet-active .path {
  -webkit-animation-name: draw;
          animation-name: draw;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  stroke: var(--bodyBackgroundColor);
}
#single-product-detail .product-detail {
  width: 59%;
}
@media screen and (max-width: 991px) {
  #single-product-detail .product-detail {
    width: 100%;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
#single-product-detail .product-detail .product-detail-name {
  margin-bottom: 1.6em;
}
#single-product-detail .product-detail .product-detail-name h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}
#single-product-detail .product-detail .product-detail-name h2 {
  font-size: 1em;
  opacity: 0.7;
  font-weight: normal;
}
#single-product-detail .product-detail .size-table {
  display: inline-flex;
  align-items: center;
  -webkit-margin-start: 0.5em;
          margin-inline-start: 0.5em;
  color: var(--buttonBackgroundColor);
  padding: 0.2em 0.6em;
  border: 1px solid var(--boxBorderColor);
  border-radius: var(--inputGeneralBorderRadius);
  cursor: pointer;
}
#single-product-detail .product-detail .size-table span {
  font-size: 0.8em;
}
#single-product-detail .product-detail .size-table .shape {
  width: 19px;
  height: 19px;
  -webkit-margin-end: 0.3em;
          margin-inline-end: 0.3em;
}
#single-product-detail .product-detail .size-table .shape svg {
  fill: var(--buttonBackgroundColor);
}
#single-product-detail .product-detail .size-table:hover {
  border-color: var(--generalPrimaryColor);
  color: var(--generalPrimaryColor);
}
#single-product-detail .product-detail .size-table:hover svg {
  fill: var(--generalPrimaryColor);
}
#single-product-detail .product-detail .product-detail-price-info .product-stock-alarm {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#single-product-detail .product-detail .product-detail-price-info .product-stock-alarm .no-stock {
  opacity: 0.8;
  -webkit-margin-end: 1em;
          margin-inline-end: 1em;
  font-weight: bold;
}
#single-product-detail .product-detail .product-detail-price-info .product-stock-alarm .stock-alarm {
  font-size: 90%;
  color: var(--generalPrimaryColor);
  display: flex;
  align-items: center;
  border-radius: var(--buttonBorderRadius);
  border: 1px solid var(--generalPrimaryColor);
  padding: 0.7em;
}
#single-product-detail .product-detail .product-detail-price-info .product-stock-alarm .stock-alarm .shape {
  width: 24px;
  height: 24px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
#single-product-detail .product-detail .product-detail-price-info .product-stock-alarm .stock-alarm .shape svg {
  fill: var(--generalPrimaryColor);
}
#single-product-detail .product-detail .product-detail-price-info .product-stock-alarm .stock-alarm:hover {
  color: var(--bodyBackgroundColor);
  background-color: var(--generalPrimaryColor);
}
#single-product-detail .product-detail .product-detail-price-info .product-stock-alarm .stock-alarm:hover svg {
  fill: var(--bodyBackgroundColor);
}
#single-product-detail .product-detail .product-detail-price-info .promotions-labels {
  margin-right: 1em;
}
#single-product-detail .product-detail .product-detail-price-info .promotions-labels ul li {
  border-radius: 0.6em;
  background-color: #fff;
  font-size: 1.3em;
  text-align: center;
  font-weight: 300;
  color: green;
  padding: 0.6em;
  display: inline-flex;
  align-items: center;
}
#single-product-detail .product-detail .product-detail-price-info .current {
  line-height: 1;
}
#single-product-detail .product-detail .product-detail-price-info .hire-purchase-info {
  padding: 1em 0;
  font-weight: 300;
}
#single-product-detail .product-detail .product-detail-price-info .hire-purchase-info a {
  font-weight: 600;
}
#single-product-detail .product-detail .variation-content .f-wor {
  margin-bottom: 0.8em;
}
#single-product-detail .product-detail .variation-content .variation-item .boxed-select {
  display: flex;
  position: relative;
}
#single-product-detail .product-detail .variation-content .variation-item .boxed-select li {
  position: relative;
}
#single-product-detail .product-detail .variation-content .variation-item .boxed-select li label {
  position: relative;
  margin: 0;
  padding: 0;
}
#single-product-detail .product-detail .variation-content label {
  margin-bottom: 0.8em;
  display: flex;
  align-items: center;
}
#single-product-detail .product-detail .product-action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6em 0 1em;
}
@media screen and (max-width: 991px) {
  #single-product-detail .product-detail .product-action {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 1em;
    background: var(--bodyBackgroundColor);
  }
}
#single-product-detail .product-detail .product-action .counter {
  height: 3.4em;
  padding: 0.7em;
  display: flex;
  align-items: center;
  margin-right: 1em;
}
#single-product-detail .product-detail .product-action .counter input {
  min-height: unset;
  border: none;
  text-align: center;
  width: 60%;
}
#single-product-detail .product-detail .product-action .counter div {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#single-product-detail .product-detail .product-action .add-product {
  width: 100%;
}
#single-product-detail .product-detail .product-action .add-product button {
  min-height: 4em;
  border-radius: 0.6em;
  width: 100%;
}
#single-product-detail .product-detail .product-detail-delivery-info {
  margin-top: 2em;
}
#single-product-detail .product-detail .product-detail-delivery-info ul {
  padding: 1em 0;
}
#single-product-detail .product-detail .product-detail-delivery-info ul li {
  list-style: disc;
  list-style-position: inside;
  padding: 0.4em 0;
  font-weight: 300;
}
#single-product-detail .product-detail .product-detail-delivery-info ol {
  display: flex;
  justify-content: flex-start;
}
#single-product-detail .product-detail .product-detail-delivery-info ol li div {
  height: 100%;
  border-radius: 0.6em;
  background-color: #eee;
  padding: 1em 7em 1em 1em;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  #single-product-detail .product-detail .product-detail-delivery-info ol li div {
    padding: 1em 4em 1em 1em;
  }
}
#single-product-detail .product-detail .product-detail-delivery-info ol li div span {
  display: block;
  font-weight: 300;
}
#single-product-detail .product-detail .product-detail-delivery-info ol li div .color {
  color: #000;
  font-weight: 600;
  margin-top: 0.2em;
}
#single-product-detail .product-detail .product-detail-attributes {
  padding: 1.4em 0;
}
#single-product-detail .product-detail .product-detail-attributes ~ :not(.comments-wraper) span {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 0.6em;
  display: block;
  padding-left: 1.27em;
}
#single-product-detail .product-detail .product-detail-attributes ~ :not(.comments-wraper) ul li {
  list-style: disc;
  padding: 0.4em 0;
  font-weight: 300;
}
#single-product-detail .product-detail .product-detail-related-products {
  margin-bottom: 4em;
}
#single-product-detail .product-detail .product-detail-related-products ul {
  display: flex;
  flex-wrap: wrap;
}
#single-product-detail .product-detail .product-detail-related-products ul li:last-child {
  margin-right: 0;
}
#single-product-detail .product-detail .product-accordion {
  margin-top: 1em;
}
#single-product-detail .bundle-products {
  margin: 1.3em 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
#single-product-detail .bundle-products .bundle-title {
  font-weight: 500;
  margin-bottom: 0.6em;
  color: #aaa;
}
#single-product-detail .bundle-products .bundle-item {
  padding: 0.6em;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 0.6em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6em;
}
#single-product-detail .bundle-products .bundle-item:last-child {
  margin-bottom: 0;
}
#single-product-detail .bundle-products .bundle-item .bi-photo {
  max-width: 4em;
  margin-right: 1em;
  border: 1px solid #e6e6e6;
  overflow: hidden;
}
#single-product-detail .bundle-products .bundle-item .bi-rate {
  padding: 0.4em;
  color: #fff;
  background-color: #000;
  font-weight: 700;
  display: inline-block;
  margin-top: 0.3em;
  border-radius: 0.4em;
}
#single-product-detail .bundle-products .bundle-item .bi-action .combo-box {
  margin-bottom: 0;
}

.product-accordion {
  margin-top: 3em;
  overflow: hidden;
  border-bottom: none;
  border-radius: 0.6em;
}
.product-accordion .product-accordion-item {
  font-size: 1.1em;
  cursor: pointer;
  padding: 1em 0;
  border-bottom: 1px solid var(--boxBorderColor);
  position: relative;
  font-family: var(--fontFamilyBodyLabel);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-accordion .product-accordion-item.active {
  color: #000;
}
.product-accordion .product-accordion-item .shape {
  width: 16px;
  height: 16px;
}
.product-accordion .product-accordion-item .shape svg {
  fill: var(--generalTextColor);
}
.product-accordion .product-accordion-item.active:after {
  transform: translateY(-50%) rotate(180deg);
  transition: all 0.3s;
}
.product-accordion .product-accordion-content {
  padding: 1em;
}
.product-accordion .product-accordion-content .tab-inner-title {
  display: none;
  font-size: 1.4em;
  padding: 0 0 0.4em;
  font-family: var(--fontFamilyHeading);
}
@media screen and (max-width: 671px) {
  .product-accordion .product-accordion-content {
    padding: 2em 1em 1em !important;
    display: block;
    visibility: visible;
    opacity: 1;
    left: 0;
  }
  .product-accordion .product-accordion-content .tab-inner-title {
    display: block;
  }
}
.product-accordion .product-accordion-content p {
  line-height: 1.3;
}

.tab-inner *,
.accordion-content * {
  line-height: 1.4;
}
.tab-inner h1,
.tab-inner h2,
.tab-inner h3,
.tab-inner h4,
.tab-inner h5,
.tab-inner h6,
.accordion-content h1,
.accordion-content h2,
.accordion-content h3,
.accordion-content h4,
.accordion-content h5,
.accordion-content h6 {
  margin-bottom: 0.6em;
}
.tab-inner h1,
.accordion-content h1 {
  font-size: 1.1em;
  font-weight: 600;
  font-family: var(--fontFamilyBodyLabel);
}
.tab-inner h2,
.accordion-content h2 {
  font-size: 1.1em;
  font-weight: 600;
  font-family: var(--fontFamilyBodyLabel);
}
.tab-inner h3,
.accordion-content h3 {
  font-size: 1.1em;
  font-weight: 600;
}
.tab-inner h4,
.accordion-content h4 {
  font-size: 1em;
  font-weight: 600;
}
.tab-inner h5,
.accordion-content h5 {
  font-size: 1em;
  font-weight: 600;
}
.tab-inner h6,
.accordion-content h6 {
  font-size: 1em;
  font-weight: 600;
}
.tab-inner ul li,
.accordion-content ul li {
  list-style: circle;
}
.tab-inner ol li,
.accordion-content ol li {
  list-style: decimal;
}

.standard-tab {
  margin-top: 2em;
}
.standard-tab .tab-navigation {
  display: flex;
  justify-content: center;
}
.standard-tab .tab-navigation .tab-item {
  padding: 0.7em 1em;
  color: inherit;
}
.standard-tab .tab-navigation .tab-item.active-tab {
  color: inherit;
}
@media screen and (max-width: 671px) {
  .standard-tab .tab-navigation {
    display: none !important;
  }
}
.standard-tab .tab-content .tab-inner {
  padding: 2em 0;
  display: none;
  opacity: 0;
  position: relative;
  left: 2em;
  visibility: hidden;
}
.standard-tab .tab-content .tab-inner .tab-inner-title {
  display: none;
  font-size: 1.4em;
  padding: 0 0 0.4em;
  font-family: var(--fontFamilyHeading);
}
@media screen and (max-width: 671px) {
  .standard-tab .tab-content .tab-inner {
    padding: 2em 1em 1em !important;
    display: block;
    visibility: visible;
    opacity: 1;
    left: 0;
  }
  .standard-tab .tab-content .tab-inner .tab-inner-title {
    display: block;
  }
}
.standard-tab .tab-content .tab-inner.active-tab {
  transition-delay: 1s;
  display: block !important;
  opacity: 1;
  visibility: visible;
  -webkit-animation: activeTab;
          animation: activeTab;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  left: 0;
}
@keyframes activeTab {
  from {
    left: 2em;
    opacity: 0;
    visibility: hidden;
  }
  to {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
}

.product-detail-tab {
  margin-bottom: 3em;
}

.rated-star {
  fill: var(--generalPrimaryColor);
}

.product-comments {
  line-height: 1;
}
.product-comments .bttn {
  line-height: 1;
}
.product-comments .comments-wraper {
  display: flex;
}
@media screen and (max-width: 670px) {
  .product-comments .comments-wraper {
    display: block;
    flex-wrap: wrap;
  }
}
.product-comments .comment-title {
  font-size: 1.1em;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
.product-comments .comment-title .product-photo {
  max-width: 3em;
  max-height: 3em;
  overflow: hidden;
  align-items: start;
  justify-content: center;
  border-radius: 50%;
}
.product-comments .comment-title span {
  margin: 0 1em !important;
  padding: 0 !important;
}
.product-comments .comments-top {
  position: -webkit-sticky;
  position: sticky;
  align-self: flex-start;
  top: 60px;
}
.product-comments .comments-statistic {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 300px;
  margin-right: 2em;
}
@media screen and (max-width: 670px) {
  .product-comments .comments-statistic {
    width: 100%;
    margin: 0 0 1em;
  }
}
@media screen and (max-width: 670px) {
  .product-comments .comments-statistic .info {
    width: 100%;
  }
}
.product-comments .comments-statistic .info .average {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}
.product-comments .comments-statistic .info .average .rate {
  font-weight: 700;
  font-size: 3em;
}
@media screen and (max-width: 670px) {
  .product-comments .comments-statistic .info .average .rate {
    font-size: 2em;
  }
}
.product-comments .comments-statistic .info .average .stars {
  width: 150px;
  height: 40px;
  position: relative;
  margin: 0 1em;
}
@media screen and (max-width: 670px) {
  .product-comments .comments-statistic .info .average .stars {
    width: 100px;
  }
}
.product-comments .comments-statistic .info .average .stars .rated,
.product-comments .comments-statistic .info .average .stars .unrated {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 670px) {
  .product-comments .comments-statistic .info .average .stars .rated,
.product-comments .comments-statistic .info .average .stars .unrated {
    background-size: 100px auto;
  }
}
.product-comments .comments-statistic .info .average .stars svg {
  min-width: 150px;
  max-width: 150px;
}
@media screen and (max-width: 670px) {
  .product-comments .comments-statistic .info .average .stars svg {
    min-width: 100px;
    max-width: 100px;
  }
}
.product-comments .comments-statistic .info .average .stars .rated {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.product-comments .comments-statistic .info .rate-sharing .rate-item {
  display: flex;
  align-items: center;
  padding: 1px 0;
}
.product-comments .comments-statistic .info .rate-sharing .rate-item .length {
  font-size: 80%;
  padding: 0 0.5em;
  opacity: 0.6;
}
.product-comments .comments-statistic .info .rate-sharing .rate-item .star {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-comments .comments-statistic .info .rate-sharing .rate-item .star .size {
  width: 10px;
  text-align: center;
}
.product-comments .comments-statistic .info .rate-sharing .rate-item .star svg {
  width: 20px;
  height: 20px;
  margin: 0 0.5em;
}
.product-comments .comments-statistic .info .rate-sharing .rate-item .value {
  height: 4px;
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
  width: 200px;
  background-color: rgba(var(--rgbGeneralTextColor), 15%);
}
.product-comments .comments-statistic .info .rate-sharing .rate-item .value span {
  margin-bottom: 0;
  display: block;
  height: 100%;
  border-radius: var(--generalBorderRadius);
  background-color: var(--generalPrimaryColor);
}
.product-comments .comments-statistic .info .comment-actions {
  align-items: center;
  margin-bottom: 1em;
}
.product-comments .comments-statistic .info .comment-actions .attention-text {
  width: 100%;
  opacity: 0.5;
  font-size: 85%;
  margin: 0.7em 0 0;
}
.product-comments .comments-statistic .info .comment-actions .bttn {
  width: 100%;
  max-width: unset;
}
@media screen and (max-width: 670px) {
  .product-comments .comments-statistic .info .comment-actions {
    flex-direction: column;
    align-items: unset;
  }
  .product-comments .comments-statistic .info .comment-actions .attention-text {
    max-width: 100%;
  }
}
.product-comments .new-content {
  display: none;
  width: 100%;
  display: none;
  margin-bottom: 2em;
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
}
@media screen and (max-width: 670px) {
  .product-comments .new-content {
    position: fixed;
    background-color: var(--bodyBackgroundColor);
    z-index: 9999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100;
    padding: 2em;
  }
  .product-comments .new-content .f-row {
    margin-bottom: 2em;
  }
}
.product-comments .new-content .new-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-comments .new-content .new-rate svg {
  max-width: 30px;
  max-height: 30px;
  min-width: 30px;
  min-height: 30px;
}
.product-comments .new-content .new-rate .rate-action .selected label svg {
  fill: var(--generalPrimaryColor);
}
.product-comments .new-content .new-rate .rate-action .unselected label > svg {
  fill: var(--rgbGeneralTextColor), 15%;
}
.product-comments .new-content .new-rate .rate-action:hover label > svg {
  fill: var(--generalPrimaryColor) !important;
  opacity: 1;
}
.product-comments .new-content .new-rate .rate-action ul {
  display: flex;
  padding: 0;
}
.product-comments .new-content .new-rate .rate-action ul li {
  list-style: none;
}
.product-comments .new-content .new-rate .rate-action ul li label > svg {
  fill: var(--rgbGeneralTextColor), 15%;
  cursor: pointer;
  transition: all 0.3s;
}
.product-comments .new-content .new-rate .rate-action ul li label input {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  height: 0;
  width: 0;
}
.product-comments .new-content .new-rate .rate-action ul li:hover ~ li > label svg {
  fill: var(--rgbGeneralTextColor), 15% !important;
}
@media screen and (max-width: 670px) {
  .product-comments .new-content .new-rate {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: start;
  }
  .product-comments .new-content .new-rate .cancel {
    margin-bottom: 2em;
    padding: 0 !important;
  }
}
.product-comments .new-content .attention-text {
  font-size: 0.8em;
}
.product-comments .new-content .show-name input + .checkbox + span .showed-name {
  display: none;
}
.product-comments .new-content .show-name input + .checkbox + span .no-name {
  display: block;
}
.product-comments .new-content .show-name input:checked + .checkbox + span .showed-name {
  display: block;
}
.product-comments .new-content .show-name input:checked + .checkbox + span .no-name {
  display: none;
}
.product-comments .new-content .commentphoto label {
  border: 2px solid var(--buttonBackgroundColor);
  border-radius: var(--generalBorderRadius);
  color: var(--buttonBackgroundColor);
  padding: 1em;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  max-width: 150px;
}
.product-comments .new-content .commentphoto label span {
  display: inline-flex;
  font-size: 80%;
}
.product-comments .new-content .commentphoto label input {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  height: 0;
  width: 0;
}
.product-comments .new-content .commentphoto .attention-text {
  margin: 0 1em;
}
.product-comments .comment-filter {
  display: flex;
  padding: 0 0 1.4em 0;
  margin: 0 0 1em 0;
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
}
@media screen and (max-width: 670px) {
  .product-comments .comment-filter {
    margin: 1em 0;
  }
}
.product-comments .comment-filter > div {
  margin: 0 0.5em;
  font-size: 0.8em;
}
.product-comments .comment-filter > div:last-child {
  margin-right: 0;
}
.product-comments .comment-filter > div:first-child {
  margin-left: 0;
}
.product-comments .comment-filter .imaged-comments,
.product-comments .comment-filter .all-comments,
.product-comments .comment-filter .member-comments {
  display: flex;
  align-items: center;
  border-radius: var(--generalBorderRadius);
  border: 1px solid var(--boxBorderColor);
  height: 50px;
  padding: 0 1em;
  cursor: pointer;
}
.product-comments .comment-filter .imaged-comments:hover,
.product-comments .comment-filter .all-comments:hover,
.product-comments .comment-filter .member-comments:hover {
  border-color: var(--generalPrimaryColor);
}
.product-comments .comment-filter .imaged-comments ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5em 0 0;
}
.product-comments .comment-filter .imaged-comments ul li {
  width: 25px;
  max-width: 25px;
  border: 2px solid var(--bodyBackgroundColor);
  height: 25px;
  max-height: 25px;
  overflow: hidden;
  width: 120%;
  border-radius: 50%;
  margin: 0 -5px;
}
.product-comments .comments-content {
  width: 100%;
}
.product-comments .comments-content .comment-item {
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
  margin-bottom: 1em;
}
.product-comments .comments-content .comment-item .comment-images {
  padding: 1em 0;
}
.product-comments .comments-content .comment-item .comment-images ul {
  display: flex;
  align-items: center;
  padding: 0 0.5em 0 0;
}
.product-comments .comments-content .comment-item .comment-images ul li {
  overflow: hidden;
  margin-right: 1em;
  width: 20%;
  max-width: 70px;
}
.product-comments .comments-content .comment-item:last-child {
  border: none;
}
.product-comments .comments-content .comment-item .comment-item-info {
  display: flex;
  align-items: center;
  padding: 1em 0;
  font-size: 0.8em;
}
.product-comments .comments-content .comment-item .comment-item-info .rated-stars {
  display: flex;
  align-items: center;
}
.product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars {
  width: 60px;
  height: 20px;
  position: relative;
  margin: 0 0.5em;
}
.product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars .rated,
.product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars .unrated {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars svg {
  min-width: 60px;
  max-width: 60px;
}
.product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars .rated {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.product-comments .comments-content .comment-item .comment-item-info .comment-date {
  margin: 0 0.5em;
  opacity: 0.6;
}
.product-comments .comments-content .comment-item .comment-item-info .customer-name {
  opacity: 0.6;
}
.product-comments .comments-content .comment-item .comment-item-text {
  line-height: 1.4;
}
.product-comments .comments-content .comment-item .comment-item-action {
  padding: 1em 0;
}
.product-comments .comments-content .comment-item .comment-item-action span {
  opacity: 0.6;
  font-size: 0.8em;
}

.product-detail .product-comments {
  line-height: 1;
}
.product-detail .product-comments .bttn {
  line-height: 1;
}
.product-detail .product-comments .comments-wraper {
  display: flex;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-wraper {
    display: block;
    flex-wrap: wrap;
  }
}
.product-detail .product-comments .comment-title {
  font-size: 1.1em;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
.product-detail .product-comments .comment-title .product-photo {
  max-width: 3em;
  max-height: 3em;
  overflow: hidden;
  align-items: start;
  justify-content: center;
  border-radius: 50%;
}
.product-detail .product-comments .comment-title span {
  margin: 0 1em !important;
  padding: 0 !important;
}
.product-detail .product-comments .comments-top {
  position: -webkit-sticky;
  position: sticky;
  align-self: flex-start;
  top: 60px;
}
.product-detail .product-comments .comments-statistic {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 220px;
  margin-right: 2em;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-statistic {
    width: 100%;
    margin: 0 0 1em;
  }
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-statistic .info {
    width: 100%;
  }
}
.product-detail .product-comments .comments-statistic .info .average {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}
.product-detail .product-comments .comments-statistic .info .average .rate {
  font-weight: 700;
  font-size: 1.4em;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-statistic .info .average .rate {
    font-size: 1.4em;
  }
}
.product-detail .product-comments .comments-statistic .info .average .stars {
  width: 120px;
  height: 40px;
  position: relative;
  margin: 0 1em;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-statistic .info .average .stars {
    width: 100px;
  }
}
.product-detail .product-comments .comments-statistic .info .average .stars .rated,
.product-detail .product-comments .comments-statistic .info .average .stars .unrated {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-statistic .info .average .stars .rated,
.product-detail .product-comments .comments-statistic .info .average .stars .unrated {
    background-size: 100px auto;
  }
}
.product-detail .product-comments .comments-statistic .info .average .stars svg {
  min-width: 120px;
  max-width: 120px;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-statistic .info .average .stars svg {
    min-width: 100px;
    max-width: 100px;
  }
}
.product-detail .product-comments .comments-statistic .info .average .stars .rated {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.product-detail .product-comments .comments-statistic .info .rate-sharing .rate-item {
  display: flex;
  align-items: center;
  padding: 1px 0;
}
.product-detail .product-comments .comments-statistic .info .rate-sharing .rate-item .length {
  font-size: 80%;
  padding: 0 0.5em;
  opacity: 0.6;
}
.product-detail .product-comments .comments-statistic .info .rate-sharing .rate-item .star {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-detail .product-comments .comments-statistic .info .rate-sharing .rate-item .star .size {
  width: 10px;
  text-align: center;
}
.product-detail .product-comments .comments-statistic .info .rate-sharing .rate-item .star svg {
  width: 20px;
  height: 20px;
  margin: 0 0.5em;
}
.product-detail .product-comments .comments-statistic .info .rate-sharing .rate-item .value {
  height: 4px;
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
  width: 120px;
  background-color: rgba(var(--rgbGeneralTextColor), 15%);
}
.product-detail .product-comments .comments-statistic .info .rate-sharing .rate-item .value span {
  margin-bottom: 0;
  display: block;
  height: 100%;
  border-radius: var(--generalBorderRadius);
  background-color: var(--generalPrimaryColor);
}
.product-detail .product-comments .comments-statistic .info .comment-actions {
  align-items: center;
  margin-bottom: 1em;
}
.product-detail .product-comments .comments-statistic .info .comment-actions .attention-text {
  width: 100%;
  opacity: 0.5;
  font-size: 85%;
  margin: 0.7em 0 0;
}
.product-detail .product-comments .comments-statistic .info .comment-actions .bttn {
  width: 100%;
  max-width: unset;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-statistic .info .comment-actions {
    flex-direction: column;
    align-items: unset;
  }
  .product-detail .product-comments .comments-statistic .info .comment-actions .attention-text {
    max-width: 100%;
  }
}
.product-detail .product-comments .new-content {
  display: none;
  width: 100%;
  display: none;
  margin-bottom: 2em;
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .new-content {
    position: fixed;
    background-color: var(--bodyBackgroundColor);
    z-index: 9999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100;
    padding: 2em;
  }
  .product-detail .product-comments .new-content .f-row {
    margin-bottom: 2em;
  }
}
.product-detail .product-comments .new-content .new-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-detail .product-comments .new-content .new-rate svg {
  max-width: 30px;
  max-height: 30px;
  min-width: 30px;
  min-height: 30px;
}
.product-detail .product-comments .new-content .new-rate .rate-action .selected label svg {
  fill: var(--generalPrimaryColor);
}
.product-detail .product-comments .new-content .new-rate .rate-action .unselected label > svg {
  fill: var(--rgbGeneralTextColor), 15%;
}
.product-detail .product-comments .new-content .new-rate .rate-action:hover label > svg {
  fill: var(--generalPrimaryColor) !important;
  opacity: 1;
}
.product-detail .product-comments .new-content .new-rate .rate-action ul {
  display: flex;
  padding: 0;
}
.product-detail .product-comments .new-content .new-rate .rate-action ul li {
  list-style: none;
}
.product-detail .product-comments .new-content .new-rate .rate-action ul li label > svg {
  fill: var(--rgbGeneralTextColor), 15%;
  cursor: pointer;
  transition: all 0.3s;
}
.product-detail .product-comments .new-content .new-rate .rate-action ul li label input {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  height: 0;
  width: 0;
}
.product-detail .product-comments .new-content .new-rate .rate-action ul li:hover ~ li > label svg {
  fill: var(--rgbGeneralTextColor), 15% !important;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .new-content .new-rate {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: start;
  }
  .product-detail .product-comments .new-content .new-rate .cancel {
    margin-bottom: 2em;
    padding: 0 !important;
  }
}
.product-detail .product-comments .new-content .attention-text {
  font-size: 0.8em;
}
.product-detail .product-comments .new-content .show-name input + .checkbox + span .showed-name {
  display: none;
}
.product-detail .product-comments .new-content .show-name input + .checkbox + span .no-name {
  display: block;
}
.product-detail .product-comments .new-content .show-name input:checked + .checkbox + span .showed-name {
  display: block;
}
.product-detail .product-comments .new-content .show-name input:checked + .checkbox + span .no-name {
  display: none;
}
.product-detail .product-comments .new-content .commentphoto label {
  border: 2px solid var(--buttonBackgroundColor);
  border-radius: var(--generalBorderRadius);
  color: var(--buttonBackgroundColor);
  padding: 1em;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  max-width: 150px;
}
.product-detail .product-comments .new-content .commentphoto label span {
  display: inline-flex;
  font-size: 80%;
}
.product-detail .product-comments .new-content .commentphoto label input {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  height: 0;
  width: 0;
}
.product-detail .product-comments .new-content .commentphoto .attention-text {
  margin: 0 1em;
}
.product-detail .product-comments .comment-filter {
  display: flex;
  padding: 0 0 1.4em 0;
  margin: 0 0 1em 0;
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comment-filter {
    margin: 1em 0;
  }
}
.product-detail .product-comments .comment-filter > div {
  margin: 0 0.5em;
  font-size: 0.8em;
}
.product-detail .product-comments .comment-filter > div:last-child {
  margin-right: 0;
}
.product-detail .product-comments .comment-filter > div:first-child {
  margin-left: 0;
}
.product-detail .product-comments .comment-filter .imaged-comments,
.product-detail .product-comments .comment-filter .all-comments,
.product-detail .product-comments .comment-filter .member-comments {
  display: flex;
  align-items: center;
  border-radius: var(--generalBorderRadius);
  border: 1px solid var(--boxBorderColor);
  height: 50px;
  padding: 0 1em;
  cursor: pointer;
}
.product-detail .product-comments .comment-filter .imaged-comments:hover,
.product-detail .product-comments .comment-filter .all-comments:hover,
.product-detail .product-comments .comment-filter .member-comments:hover {
  border-color: var(--generalPrimaryColor);
}
.product-detail .product-comments .comment-filter .imaged-comments ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5em 0 0;
}
.product-detail .product-comments .comment-filter .imaged-comments ul li {
  width: 25px;
  max-width: 25px;
  border: 2px solid var(--bodyBackgroundColor);
  height: 25px;
  max-height: 25px;
  overflow: hidden;
  width: 120%;
  border-radius: 50%;
  margin: 0 -5px;
}
.product-detail .product-comments .comments-content {
  width: 100%;
}
.product-detail .product-comments .comments-content .comment-item {
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
  margin-bottom: 1em;
}
.product-detail .product-comments .comments-content .comment-item .comment-images {
  padding: 1em 0;
}
.product-detail .product-comments .comments-content .comment-item .comment-images ul {
  display: flex;
  align-items: center;
  padding: 0 0.5em 0 0;
}
.product-detail .product-comments .comments-content .comment-item .comment-images ul li {
  overflow: hidden;
  margin-right: 1em;
  width: 20%;
  max-width: 70px;
}
.product-detail .product-comments .comments-content .comment-item:last-child {
  border: none;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info {
  display: flex;
  align-items: center;
  padding: 1em 0;
  font-size: 0.8em;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info .rated-stars {
  display: flex;
  align-items: center;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars {
  width: 60px;
  height: 20px;
  position: relative;
  margin: 0 0.5em;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars .rated,
.product-detail .product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars .unrated {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars svg {
  min-width: 60px;
  max-width: 60px;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars .rated {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info .comment-date {
  margin: 0 0.5em;
  opacity: 0.6;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info .customer-name {
  opacity: 0.6;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-text {
  line-height: 1.4;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-action {
  padding: 1em 0;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-action span {
  opacity: 0.6;
  font-size: 0.8em;
}

.product-slider .product-list-item {
  display: none;
}

.product-slider .product-list-item:first-child {
  display: block;
}

.product-slider.slick-initialized .product-list-item {
  display: block;
  visibility: visible !important;
}
.product-slider.slick-initialized .product-list-item .product-image {
  max-height: unset;
}

.liteheader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.3em 1em;
  z-index: 300;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.liteheader .shape {
  width: 26px;
  height: 26px;
}
.liteheader .shape svg {
  fill: #fff;
}
.liteheader .go-back {
  background-color: transparent !important;
  min-height: 2.4em;
  padding: 0 0.6em;
}
.liteheader .add-to-favourites {
  margin: 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-color: #fff;
  border-width: 0px;
  margin-bottom: 0.6em;
}
.liteheader .inner-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.liteheader .cart {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.liteheader .cart .shape {
  position: relative;
}
.liteheader .cart .cart-qty {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--generalPrimaryColor);
  color: var(--bodyBackgroundColor);
  top: -4px;
  font-size: 50%;
  right: -3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
}

.viewer-zoom-in::before,
.viewer-zoom-out::before,
.viewer-one-to-one::before,
.viewer-reset::before,
.viewer-prev::before,
.viewer-play::before,
.viewer-next::before,
.viewer-rotate-left::before,
.viewer-rotate-right::before,
.viewer-flip-horizontal::before,
.viewer-flip-vertical::before,
.viewer-fullscreen::before,
.viewer-fullscreen-exit::before,
.viewer-close::before {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAAAUCAYAAABWOyJDAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAQPSURBVHic7Zs/iFxVFMa/0U2UaJGksUgnIVhYxVhpjDbZCBmLdAYECxsRFBTUamcXUiSNncgKQbSxsxH8gzAP3FU2jY0kKKJNiiiIghFlccnP4p3nPCdv3p9778vsLOcHB2bfveeb7955c3jvvNkBIMdxnD64a94GHMfZu3iBcRynN7zAOI7TG15gHCeeNUkr8zaxG2lbYDYsdgMbktBsP03jdQwljSXdtBhLOmtjowC9Mg9L+knSlcD8TNKpSA9lBpK2JF2VdDSR5n5J64m0qli399hNFMUlpshQii5jbXTbHGviB0nLNeNDSd9VO4A2UdB2fp+x0eCnaXxWXGA2X0au/3HgN9P4LFCjIANOJdrLr0zzZ+BEpNYDwKbpnQMeAw4m8HjQtM6Z9qa917zPQwFr3M5KgA6J5rTJCdFZJj9/lyvGhsDvwFNVuV2MhhjrK6b9bFiE+j1r87eBl4HDwCF7/U/k+ofAX5b/EXBv5JoLMuILzf3Ap6Z3EzgdqHMCuF7hcQf4HDgeoHnccncqdK/TvSDWffFXI/exICY/xZyqc6XLWF1UFZna4gJ7q8BsRvgd2/xXpo6P+D9dfT7PpECtA3cnWPM0GXGFZh/wgWltA+cDNC7X+AP4GzjZQe+k5dRxuYPeiuXU7e1qwLpDz7dFjXKRaSwuMLvAlG8zZlG+YmiK1HoFqT7wP2z+4Q45TfEGcMt01xLoNZEBTwRqD4BLpnMLeC1A41UmVxsXgXeBayV/Wx20rpTyrpnWRft7p6O/FdqzGrDukPNtkaMoMo3FBdBSQMOnYBCReyf05s126fU9ytfX98+mY54Kxnp7S9K3kj6U9KYdG0h6UdLbkh7poFXMfUnSOyVvL0h6VtIXHbS6nOP+s/Zm9mvyXW1uuC9ohZ72E9uDmXWLJOB1GxsH+DxPftsB8B6wlGDN02TAkxG6+4D3TWsbeC5CS8CDFce+AW500LhhOW2020TRjK3b21HEmgti9m0RonxbdMZeVzV+/4tF3cBpP7E9mKHNL5q8h5g0eYsCMQz0epq8gQrwMXAgcs0FGXGFRcB9wCemF9PkbYqM/Bas7fxLwNeJPdTdpo4itQti8lPMqTpXuozVRVXPpbHI3KkNTB1NfkL81j2mvhDp91HgV9MKuRIqrykj3WPq4rHyL+axj8/qGPmTqi6F9YDlHOvJU6oYcTsh/TYSzWmTE6JT19CtLTJt32D6CmHe0eQn1O8z5AXgT4sx4Vcu0/EQecMydB8z0hUWkTd2t4CrwNEePqMBcAR4mrBbwyXLPWJa8zrXmmLEhNBmfpkuY2102xxrih+pb+ieAb6vGhuA97UcJ5KR8gZ77K+99xxeYBzH6Q3/Z0fHcXrDC4zjOL3hBcZxnN74F+zlvXFWXF9PAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-size: 280px;
  color: transparent;
  display: block;
  font-size: 0;
  line-height: 0;
}

.viewer-zoom-in::before {
  background-position: 0 0;
  content: "Zoom In";
}

.viewer-zoom-out::before {
  background-position: -20px 0;
  content: "Zoom Out";
}

.viewer-one-to-one::before {
  background-position: -40px 0;
  content: "One to One";
}

.viewer-reset::before {
  background-position: -60px 0;
  content: "Reset";
}

.viewer-prev::before {
  background-position: -80px 0;
  content: "Previous";
}

.viewer-play::before {
  background-position: -100px 0;
  content: "Play";
}

.viewer-next::before {
  background-position: -120px 0;
  content: "Next";
}

.viewer-rotate-left::before {
  background-position: -140px 0;
  content: "Rotate Left";
}

.viewer-rotate-right::before {
  background-position: -160px 0;
  content: "Rotate Right";
}

.viewer-flip-horizontal::before {
  background-position: -180px 0;
  content: "Flip Horizontal";
}

.viewer-flip-vertical::before {
  background-position: -200px 0;
  content: "Flip Vertical";
}

.viewer-fullscreen::before {
  background-position: -220px 0;
  content: "Enter Full Screen";
}

.viewer-fullscreen-exit::before {
  background-position: -240px 0;
  content: "Exit Full Screen";
}

.viewer-close::before {
  background: transparent;
  font-family: icomoon;
  content: "\e920";
  color: inherit;
  font-size: 14px;
}

.viewer-container {
  bottom: 0;
  direction: ltr;
  font-size: 0;
  left: 0;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  z-index: 99999;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.viewer-container::-moz-selection,
.viewer-container *::-moz-selection {
  background-color: transparent;
}

.viewer-container::-moz-selection, .viewer-container *::-moz-selection {
  background-color: transparent;
}

.viewer-container::selection,
.viewer-container *::selection {
  background-color: transparent;
}

.viewer-container:focus {
  outline: 0;
}

.viewer-container img {
  display: block;
  height: auto;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}

.viewer-canvas {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

.viewer-canvas > img {
  height: auto;
  margin: 15px auto;
  max-width: 90% !important;
  width: auto;
}

.viewer-footer {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-align: center;
}

.viewer-navbar {
  background-color: var(--bodyBackgroundColor);
  overflow: hidden;
}

.viewer-list {
  box-sizing: content-box;
  margin: 0;
  overflow: hidden;
  padding: 1px 0;
}

.viewer-list > li {
  color: transparent;
  cursor: pointer;
  float: left;
  font-size: 0;
  line-height: 0;
  opacity: 0.5;
  overflow: hidden;
  transition: opacity 0.15s;
  width: 70px;
}

.viewer-list > li:focus,
.viewer-list > li:hover {
  opacity: 0.75;
}

.viewer-list > li:focus {
  outline: 0;
}

.viewer-list > li + li {
  margin-left: 1px;
}

.viewer-list > .viewer-loading {
  position: relative;
}

.viewer-list > .viewer-loading::after {
  border-width: 2px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  width: 20px;
}

.viewer-list > .viewer-active,
.viewer-list > .viewer-active:focus,
.viewer-list > .viewer-active:hover {
  opacity: 1;
}

.viewer-player {
  background-color: #000;
  bottom: 0;
  cursor: none;
  display: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.viewer-player > img {
  left: 0;
  position: absolute;
  top: 0;
}

.viewer-toolbar > ul {
  display: inline-block;
  margin: 0 auto 5px;
  overflow: hidden;
  padding: 6px 3px;
}

.viewer-toolbar > ul > li {
  background-color: var(--bodyBackgroundColor);
  border-radius: 50%;
  cursor: pointer;
  float: left;
  height: 24px;
  overflow: hidden;
  transition: background-color 0.15s;
  width: 24px;
}

.viewer-toolbar > ul > li:focus,
.viewer-toolbar > ul > li:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.viewer-toolbar > ul > li:focus {
  box-shadow: 0 0 3px #fff;
  outline: 0;
  position: relative;
  z-index: 1;
}

.viewer-toolbar > ul > li::before {
  margin: 2px;
}

.viewer-toolbar > ul > li + li {
  margin-left: 1px;
}

.viewer-toolbar > ul > .viewer-small {
  height: 18px;
  margin-bottom: 3px;
  margin-top: 3px;
  width: 18px;
}

.viewer-toolbar > ul > .viewer-small::before {
  margin: -1px;
}

.viewer-toolbar > ul > .viewer-large {
  height: 30px;
  margin-bottom: -3px;
  margin-top: -3px;
  width: 30px;
}

.viewer-toolbar > ul > .viewer-large::before {
  margin: 5px;
}

.viewer-tooltip {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  color: #fff;
  display: none;
  font-size: 12px;
  height: 20px;
  left: 50%;
  line-height: 20px;
  margin-left: -25px;
  margin-top: -10px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 50px;
}

.viewer-title {
  color: #ccc;
  display: inline-block;
  font-size: 12px;
  line-height: 1.2;
  margin: 0 5% 5px;
  max-width: 90%;
  opacity: 0.8;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.viewer-title:hover {
  opacity: 1;
}

.viewer-button {
  background-color: var(--bodyBackgroundColor);
  border-radius: 50%;
  cursor: pointer;
  height: 40px;
  overflow: hidden;
  position: absolute;
  inset-inline-end: 20px;
  inset-block-start: 20px;
  width: 40px;
  border-radius: 50%;
  color: var(--generalTextColor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--boxBorderColor);
}

.viewer-fixed {
  position: fixed;
}

.viewer-open {
  overflow: hidden;
}

.viewer-show {
  display: block;
}

.viewer-hide {
  display: none;
}

.viewer-backdrop {
  background-color: var(--bodyBackgroundColor);
}

.viewer-invisible {
  visibility: hidden;
}

.viewer-move {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.viewer-fade {
  opacity: 0;
}

.viewer-in {
  opacity: 1;
}

.viewer-transition {
  transition: all 0.3s;
}

@-webkit-keyframes viewer-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes viewer-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.viewer-loading::after {
  -webkit-animation: viewer-spinner 1s linear infinite;
  animation: viewer-spinner 1s linear infinite;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 40px;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  width: 40px;
  z-index: 1;
}

@media (max-width: 767px) {
  .viewer-hide-xs-down {
    display: none;
  }
}
@media (max-width: 991px) {
  .viewer-hide-sm-down {
    display: none;
  }
}
@media (max-width: 1199px) {
  .viewer-hide-md-down {
    display: none;
  }
}
#single-product-detail .product-container {
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 991px) {
  #single-product-detail .product-container {
    min-width: 100%;
    padding-top: 0;
  }
}
#single-product-detail .product-zoomer-video {
  z-index: 20;
  bottom: 5em !important;
  inset-inline-end: 0.5em !important;
}
#single-product-detail .comment-read-more {
  border-bottom: 1px solid rgb(204, 204, 204);
  border-top: 1px solid rgb(255, 255, 255);
  background: rgb(242, 242, 242);
  padding: 3px;
  font-size: 14px;
  cursor: pointer;
}
#single-product-detail .product-grid-zoomer {
  width: 70%;
  -webkit-padding-end: 3em;
          padding-inline-end: 3em;
}
#single-product-detail .product-grid-zoomer:not(.alone) {
  position: relative;
}
#single-product-detail .product-grid-zoomer.alone .product-big-grid-zoomer {
  -moz-column-count: 1;
       column-count: 1;
}
#single-product-detail .product-grid-zoomer.alone .product-big-grid-zoomer .product-big-zoomer-item {
  max-width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 671px) {
  #single-product-detail .product-grid-zoomer.alone .product-big-grid-zoomer .product-big-zoomer-item {
    max-width: 90%;
  }
}
@media screen and (max-width: 991px) {
  #single-product-detail .product-grid-zoomer {
    position: relative;
    padding: 0;
    overflow: hidden;
    width: 100%;
  }
  #single-product-detail .product-grid-zoomer .product-big-grid-zoomer {
    position: relative;
  }
  #single-product-detail .product-grid-zoomer .product-big-grid-zoomer img {
    position: relative;
  }
}
#single-product-detail .product-grid-zoomer .product-big-grid-zoomer {
  width: 100%;
  position: relative;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 1.4em;
       column-gap: 1.4em;
  margin: 0 auto;
}
#single-product-detail .product-grid-zoomer .product-big-grid-zoomer .video-product-item {
  position: relative;
  overflow: hidden;
}
#single-product-detail .product-grid-zoomer .product-big-grid-zoomer .video-product-item .product-big-zoomer-item img {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
#single-product-detail .product-grid-zoomer .product-big-grid-zoomer .video-product-item img {
  opacity: 0 !important;
}
#single-product-detail .product-grid-zoomer .product-big-grid-zoomer .video-product-item iframe {
  top: -113px !important;
  position: absolute;
  width: 100% !important;
  height: calc(100% + 226px) !important;
  left: 0 !important;
}
#single-product-detail .product-grid-zoomer .product-big-grid-zoomer .product-big-zoomer-item {
  margin-bottom: 1em;
}
#single-product-detail .product-grid-zoomer .product-big-grid-zoomer .product-big-zoomer-item img {
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  #single-product-detail .product-grid-zoomer .product-big-grid-zoomer {
    max-width: 100% !important;
    border-radius: 0 !important;
    -moz-column-count: 1;
         column-count: 1;
    display: flex;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll !important;
  }
  #single-product-detail .product-grid-zoomer .product-big-grid-zoomer .product-big-zoomer-item {
    min-width: 45%;
    max-width: 100%;
    scroll-snap-align: start;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 671px) {
  #single-product-detail .product-grid-zoomer .product-big-grid-zoomer {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0 !important;
    -moz-column-gap: 1em;
         column-gap: 1em;
    margin-bottom: 0;
  }
  #single-product-detail .product-grid-zoomer .product-big-grid-zoomer .product-big-zoomer-item {
    min-width: 90%;
  }
}
@media screen and (min-width: 992px) {
  #single-product-detail .product-grid-zoomer .product-big-grid-zoomer {
    transform: translate3d(0, 0, 0) !important;
  }
}
#single-product-detail .product-grid-detail {
  width: 30% !important;
  position: -webkit-sticky;
  position: sticky;
  z-index: 10;
  top: 110px;
  -webkit-padding-start: 0em !important;
          padding-inline-start: 0em !important;
}
@media screen and (max-width: 991px) {
  #single-product-detail .product-grid-detail {
    top: 0;
    margin: 0 auto;
    width: 90% !important;
    margin-top: 1em;
    padding: 1em 2em !important;
  }
}
#single-product-detail .product-grid-detail .product-detail-name {
  margin-bottom: 1.6em;
}
#single-product-detail .product-grid-detail .product-detail-name h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}
#single-product-detail .product-grid-detail .product-detail-name h2 {
  font-size: 1em;
  opacity: 0.7;
  font-weight: normal;
}
#single-product-detail .product-grid-detail .size-table {
  display: inline-flex;
  align-items: center;
  -webkit-margin-start: 0.5em;
          margin-inline-start: 0.5em;
  color: var(--buttonBackgroundColor);
  padding: 0.2em 0.6em;
  border: 1px solid var(--boxBorderColor);
  border-radius: var(--inputGeneralBorderRadius);
  cursor: pointer;
}
#single-product-detail .product-grid-detail .size-table span {
  font-size: 0.8em;
}
#single-product-detail .product-grid-detail .size-table .shape {
  width: 19px;
  height: 19px;
  -webkit-margin-end: 0.3em;
          margin-inline-end: 0.3em;
}
#single-product-detail .product-grid-detail .size-table .shape svg {
  fill: var(--buttonBackgroundColor);
}
#single-product-detail .product-grid-detail .size-table:hover {
  border-color: var(--generalPrimaryColor);
  color: var(--generalPrimaryColor);
}
#single-product-detail .product-grid-detail .size-table:hover svg {
  fill: var(--generalPrimaryColor);
}
#single-product-detail .product-grid-detail .product-detail-price-info .product-stock-alarm {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#single-product-detail .product-grid-detail .product-detail-price-info .product-stock-alarm .no-stock {
  opacity: 0.8;
  -webkit-margin-end: 1em;
          margin-inline-end: 1em;
  font-weight: bold;
}
#single-product-detail .product-grid-detail .product-detail-price-info .product-stock-alarm .stock-alarm {
  font-size: 90%;
  color: var(--generalPrimaryColor);
  display: flex;
  align-items: center;
  border-radius: var(--buttonBorderRadius);
  border: 1px solid var(--generalPrimaryColor);
  padding: 0.7em;
}
#single-product-detail .product-grid-detail .product-detail-price-info .product-stock-alarm .stock-alarm .shape {
  width: 24px;
  height: 24px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}
#single-product-detail .product-grid-detail .product-detail-price-info .product-stock-alarm .stock-alarm .shape svg {
  fill: var(--generalPrimaryColor);
}
#single-product-detail .product-grid-detail .product-detail-price-info .product-stock-alarm .stock-alarm:hover {
  color: var(--bodyBackgroundColor);
  background-color: var(--generalPrimaryColor);
}
#single-product-detail .product-grid-detail .product-detail-price-info .product-stock-alarm .stock-alarm:hover svg {
  fill: var(--bodyBackgroundColor);
}
#single-product-detail .product-grid-detail .product-detail-price-info .promotions-labels {
  margin-right: 1em;
}
#single-product-detail .product-grid-detail .product-detail-price-info .promotions-labels ul li {
  border-radius: 0.6em;
  background-color: #fff;
  font-size: 1.3em;
  text-align: center;
  font-weight: 300;
  color: green;
  padding: 0.6em;
  display: inline-flex;
  align-items: center;
}
#single-product-detail .product-grid-detail .product-detail-price-info .current {
  line-height: 1;
}
#single-product-detail .product-grid-detail .product-detail-price-info .hire-purchase-info {
  padding: 1em 0;
  font-weight: 300;
}
#single-product-detail .product-grid-detail .product-detail-price-info .hire-purchase-info a {
  font-weight: 600;
}
#single-product-detail .product-grid-detail .variation-content .f-wor {
  margin-bottom: 0.8em;
}
#single-product-detail .product-grid-detail .variation-content .variation-item .boxed-select {
  display: flex;
  position: relative;
}
#single-product-detail .product-grid-detail .variation-content .variation-item .boxed-select li {
  position: relative;
}
#single-product-detail .product-grid-detail .variation-content .variation-item .boxed-select li label {
  position: relative;
  margin: 0;
  padding: 0;
}
#single-product-detail .product-grid-detail .variation-content label {
  margin-bottom: 0.8em;
  display: flex;
  align-items: center;
}
#single-product-detail .product-grid-detail .product-action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6em 0 1em;
}
@media screen and (max-width: 991px) {
  #single-product-detail .product-grid-detail .product-action {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 1em;
    background: var(--bodyBackgroundColor);
  }
}
#single-product-detail .product-grid-detail .product-action .counter {
  height: 3.4em;
  padding: 0.7em;
  display: flex;
  align-items: center;
  margin-right: 1em;
}
#single-product-detail .product-grid-detail .product-action .counter input {
  min-height: unset;
  border: none;
  text-align: center;
  width: 60%;
}
#single-product-detail .product-grid-detail .product-action .counter div {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#single-product-detail .product-grid-detail .product-action .add-product {
  width: 100%;
}
#single-product-detail .product-grid-detail .product-action .add-product button {
  min-height: 4em;
  border-radius: 0.6em;
  width: 100%;
}
#single-product-detail .product-grid-detail .product-detail-delivery-info {
  margin-top: 2em;
}
#single-product-detail .product-grid-detail .product-detail-delivery-info ul {
  padding: 1em 0;
}
#single-product-detail .product-grid-detail .product-detail-delivery-info ul li {
  list-style: disc;
  list-style-position: inside;
  padding: 0.4em 0;
  font-weight: 300;
}
#single-product-detail .product-grid-detail .product-detail-delivery-info ol {
  display: flex;
  justify-content: flex-start;
}
#single-product-detail .product-grid-detail .product-detail-delivery-info ol li div {
  height: 100%;
  border-radius: 0.6em;
  background-color: #eee;
  padding: 1em 7em 1em 1em;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  #single-product-detail .product-grid-detail .product-detail-delivery-info ol li div {
    padding: 1em 4em 1em 1em;
  }
}
#single-product-detail .product-grid-detail .product-detail-delivery-info ol li div span {
  display: block;
  font-weight: 300;
}
#single-product-detail .product-grid-detail .product-detail-delivery-info ol li div .color {
  color: #000;
  font-weight: 600;
  margin-top: 0.2em;
}
#single-product-detail .product-grid-detail .product-detail-attributes {
  padding: 1.4em 0;
}
#single-product-detail .product-grid-detail .product-detail-attributes ~ :not(.comments-wraper) span {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 0.6em;
  display: block;
  padding-left: 1.27em;
}
#single-product-detail .product-grid-detail .product-detail-attributes ~ :not(.comments-wraper) ul li {
  list-style: disc;
  padding: 0.4em 0;
  font-weight: 300;
}
#single-product-detail .product-grid-detail .product-detail-related-products {
  margin-bottom: 4em;
}
#single-product-detail .product-grid-detail .product-detail-related-products ul {
  display: flex;
  flex-wrap: wrap;
}
#single-product-detail .product-grid-detail .product-detail-related-products ul li:last-child {
  margin-right: 0;
}
#single-product-detail .product-grid-detail .product-accordion {
  margin-top: 1em;
}
#single-product-detail .bundle-products {
  margin: 1.3em 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
#single-product-detail .bundle-products .bundle-title {
  font-weight: 500;
  margin-bottom: 0.6em;
  color: #aaa;
}
#single-product-detail .bundle-products .bundle-item {
  padding: 0.6em;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 0.6em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6em;
}
#single-product-detail .bundle-products .bundle-item:last-child {
  margin-bottom: 0;
}
#single-product-detail .bundle-products .bundle-item .bi-photo {
  max-width: 4em;
  margin-right: 1em;
  border: 1px solid #e6e6e6;
  overflow: hidden;
}
#single-product-detail .bundle-products .bundle-item .bi-rate {
  padding: 0.4em;
  color: #fff;
  background-color: #000;
  font-weight: 700;
  display: inline-block;
  margin-top: 0.3em;
  border-radius: 0.4em;
}
#single-product-detail .bundle-products .bundle-item .bi-action .combo-box {
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .tab-section {
    margin: 0 auto !important;
    width: 90%;
  }
}

@media screen and (max-width: 991px) {
  .recomended-products {
    margin: 0 auto 2em !important;
    width: 90%;
  }
}

.product-accordion {
  margin-top: 3em;
  overflow: hidden;
  border-bottom: none;
  border-radius: 0.6em;
}
.product-accordion .product-accordion-item {
  font-size: 1.1em;
  cursor: pointer;
  padding: 1em 0;
  border-bottom: 1px solid var(--boxBorderColor);
  position: relative;
  font-family: var(--fontFamilyBodyLabel);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-accordion .product-accordion-item.active {
  color: #000;
}
.product-accordion .product-accordion-item .shape {
  width: 16px;
  height: 16px;
}
.product-accordion .product-accordion-item .shape svg {
  fill: var(--generalTextColor);
}
.product-accordion .product-accordion-item.active:after {
  transform: translateY(-50%) rotate(180deg);
  transition: all 0.3s;
}
.product-accordion .product-accordion-content {
  padding: 1em;
}
.product-accordion .product-accordion-content .tab-inner-title {
  display: none;
  font-size: 1.4em;
  padding: 0 0 0.4em;
  font-family: var(--fontFamilyHeading);
}
@media screen and (max-width: 671px) {
  .product-accordion .product-accordion-content {
    padding: 2em 1em 1em !important;
    display: block;
    visibility: visible;
    opacity: 1;
    left: 0;
  }
  .product-accordion .product-accordion-content .tab-inner-title {
    display: block;
  }
}
.product-accordion .product-accordion-content p {
  line-height: 1.3;
}

.tab-inner *,
.accordion-content * {
  line-height: 1.4;
}
.tab-inner h1,
.tab-inner h2,
.tab-inner h3,
.tab-inner h4,
.tab-inner h5,
.tab-inner h6,
.accordion-content h1,
.accordion-content h2,
.accordion-content h3,
.accordion-content h4,
.accordion-content h5,
.accordion-content h6 {
  margin-bottom: 0.6em;
}
.tab-inner h1,
.accordion-content h1 {
  font-size: 1.1em;
  font-weight: 600;
  font-family: var(--fontFamilyBodyLabel);
}
.tab-inner h2,
.accordion-content h2 {
  font-size: 1.1em;
  font-weight: 600;
  font-family: var(--fontFamilyBodyLabel);
}
.tab-inner h3,
.accordion-content h3 {
  font-size: 1.1em;
  font-weight: 600;
}
.tab-inner h4,
.accordion-content h4 {
  font-size: 1em;
  font-weight: 600;
}
.tab-inner h5,
.accordion-content h5 {
  font-size: 1em;
  font-weight: 600;
}
.tab-inner h6,
.accordion-content h6 {
  font-size: 1em;
  font-weight: 600;
}
.tab-inner ul li,
.accordion-content ul li {
  list-style: circle;
}
.tab-inner ol li,
.accordion-content ol li {
  list-style: decimal;
}

.standard-tab {
  margin-top: 2em;
}
.standard-tab .tab-navigation {
  display: flex;
  justify-content: center;
}
.standard-tab .tab-navigation .tab-item {
  padding: 0.7em 1em;
  color: inherit;
}
.standard-tab .tab-navigation .tab-item.active-tab {
  color: inherit;
}
@media screen and (max-width: 671px) {
  .standard-tab .tab-navigation {
    display: none !important;
  }
}
.standard-tab .tab-content .tab-inner {
  padding: 2em 0;
  display: none;
  opacity: 0;
  position: relative;
  left: 2em;
  visibility: hidden;
}
.standard-tab .tab-content .tab-inner .tab-inner-title {
  display: none;
  font-size: 1.4em;
  padding: 0 0 0.4em;
  font-family: var(--fontFamilyHeading);
}
@media screen and (max-width: 671px) {
  .standard-tab .tab-content .tab-inner {
    padding: 2em 1em 1em !important;
    display: block;
    visibility: visible;
    opacity: 1;
    left: 0;
  }
  .standard-tab .tab-content .tab-inner .tab-inner-title {
    display: block;
  }
}
.standard-tab .tab-content .tab-inner.active-tab {
  transition-delay: 1s;
  display: block !important;
  opacity: 1;
  visibility: visible;
  -webkit-animation: activeTab;
          animation: activeTab;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  left: 0;
}
@keyframes activeTab {
  from {
    left: 2em;
    opacity: 0;
    visibility: hidden;
  }
  to {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
}

.product-detail-tab {
  margin-bottom: 3em;
}

.rated-star {
  fill: var(--generalPrimaryColor);
}

.product-comments {
  line-height: 1;
}
.product-comments .bttn {
  line-height: 1;
}
.product-comments .comments-wraper {
  display: flex;
}
@media screen and (max-width: 670px) {
  .product-comments .comments-wraper {
    display: block;
    flex-wrap: wrap;
  }
}
.product-comments .comment-title {
  font-size: 1.1em;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
.product-comments .comment-title .product-photo {
  max-width: 3em;
  max-height: 3em;
  overflow: hidden;
  align-items: start;
  justify-content: center;
  border-radius: 50%;
}
.product-comments .comment-title span {
  margin: 0 1em !important;
  padding: 0 !important;
}
.product-comments .comments-top {
  position: -webkit-sticky;
  position: sticky;
  align-self: flex-start;
  top: 60px;
}
.product-comments .comments-statistic {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 300px;
  margin-right: 2em;
}
@media screen and (max-width: 670px) {
  .product-comments .comments-statistic {
    width: 100%;
    margin: 0 0 1em;
  }
}
@media screen and (max-width: 670px) {
  .product-comments .comments-statistic .info {
    width: 100%;
  }
}
.product-comments .comments-statistic .info .average {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}
.product-comments .comments-statistic .info .average .rate {
  font-weight: 700;
  font-size: 3em;
}
@media screen and (max-width: 670px) {
  .product-comments .comments-statistic .info .average .rate {
    font-size: 2em;
  }
}
.product-comments .comments-statistic .info .average .stars {
  width: 150px;
  height: 40px;
  position: relative;
  margin: 0 1em;
}
@media screen and (max-width: 670px) {
  .product-comments .comments-statistic .info .average .stars {
    width: 100px;
  }
}
.product-comments .comments-statistic .info .average .stars .rated,
.product-comments .comments-statistic .info .average .stars .unrated {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 670px) {
  .product-comments .comments-statistic .info .average .stars .rated,
.product-comments .comments-statistic .info .average .stars .unrated {
    background-size: 100px auto;
  }
}
.product-comments .comments-statistic .info .average .stars svg {
  min-width: 150px;
  max-width: 150px;
}
@media screen and (max-width: 670px) {
  .product-comments .comments-statistic .info .average .stars svg {
    min-width: 100px;
    max-width: 100px;
  }
}
.product-comments .comments-statistic .info .average .stars .rated {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.product-comments .comments-statistic .info .rate-sharing .rate-item {
  display: flex;
  align-items: center;
  padding: 1px 0;
}
.product-comments .comments-statistic .info .rate-sharing .rate-item .length {
  font-size: 80%;
  padding: 0 0.5em;
  opacity: 0.6;
}
.product-comments .comments-statistic .info .rate-sharing .rate-item .star {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-comments .comments-statistic .info .rate-sharing .rate-item .star .size {
  width: 10px;
  text-align: center;
}
.product-comments .comments-statistic .info .rate-sharing .rate-item .star svg {
  width: 20px;
  height: 20px;
  margin: 0 0.5em;
}
.product-comments .comments-statistic .info .rate-sharing .rate-item .value {
  height: 4px;
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
  width: 200px;
  background-color: rgba(var(--rgbGeneralTextColor), 15%);
}
.product-comments .comments-statistic .info .rate-sharing .rate-item .value span {
  margin-bottom: 0;
  display: block;
  height: 100%;
  border-radius: var(--generalBorderRadius);
  background-color: var(--generalPrimaryColor);
}
.product-comments .comments-statistic .info .comment-actions {
  align-items: center;
  margin-bottom: 1em;
}
.product-comments .comments-statistic .info .comment-actions .attention-text {
  width: 100%;
  opacity: 0.5;
  font-size: 85%;
  margin: 0.7em 0 0;
}
.product-comments .comments-statistic .info .comment-actions .bttn {
  width: 100%;
  max-width: unset;
}
@media screen and (max-width: 670px) {
  .product-comments .comments-statistic .info .comment-actions {
    flex-direction: column;
    align-items: unset;
  }
  .product-comments .comments-statistic .info .comment-actions .attention-text {
    max-width: 100%;
  }
}
.product-comments .new-content {
  display: none;
  width: 100%;
  display: none;
  margin-bottom: 2em;
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
}
@media screen and (max-width: 670px) {
  .product-comments .new-content {
    position: fixed;
    background-color: var(--bodyBackgroundColor);
    z-index: 9999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100;
    padding: 2em;
  }
  .product-comments .new-content .f-row {
    margin-bottom: 2em;
  }
}
.product-comments .new-content .new-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-comments .new-content .new-rate svg {
  max-width: 30px;
  max-height: 30px;
  min-width: 30px;
  min-height: 30px;
}
.product-comments .new-content .new-rate .rate-action .selected label svg {
  fill: var(--generalPrimaryColor);
}
.product-comments .new-content .new-rate .rate-action .unselected label > svg {
  fill: var(--rgbGeneralTextColor), 15%;
}
.product-comments .new-content .new-rate .rate-action:hover label > svg {
  fill: var(--generalPrimaryColor) !important;
  opacity: 1;
}
.product-comments .new-content .new-rate .rate-action ul {
  display: flex;
  padding: 0;
}
.product-comments .new-content .new-rate .rate-action ul li {
  list-style: none;
}
.product-comments .new-content .new-rate .rate-action ul li label > svg {
  fill: var(--rgbGeneralTextColor), 15%;
  cursor: pointer;
  transition: all 0.3s;
}
.product-comments .new-content .new-rate .rate-action ul li label input {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  height: 0;
  width: 0;
}
.product-comments .new-content .new-rate .rate-action ul li:hover ~ li > label svg {
  fill: var(--rgbGeneralTextColor), 15% !important;
}
@media screen and (max-width: 670px) {
  .product-comments .new-content .new-rate {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: start;
  }
  .product-comments .new-content .new-rate .cancel {
    margin-bottom: 2em;
    padding: 0 !important;
  }
}
.product-comments .new-content .attention-text {
  font-size: 0.8em;
}
.product-comments .new-content .show-name input + .checkbox + span .showed-name {
  display: none;
}
.product-comments .new-content .show-name input + .checkbox + span .no-name {
  display: block;
}
.product-comments .new-content .show-name input:checked + .checkbox + span .showed-name {
  display: block;
}
.product-comments .new-content .show-name input:checked + .checkbox + span .no-name {
  display: none;
}
.product-comments .new-content .commentphoto label {
  border: 2px solid var(--buttonBackgroundColor);
  border-radius: var(--generalBorderRadius);
  color: var(--buttonBackgroundColor);
  padding: 1em;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  max-width: 150px;
}
.product-comments .new-content .commentphoto label span {
  display: inline-flex;
  font-size: 80%;
}
.product-comments .new-content .commentphoto label input {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  height: 0;
  width: 0;
}
.product-comments .new-content .commentphoto .attention-text {
  margin: 0 1em;
}
.product-comments .comment-filter {
  display: flex;
  padding: 0 0 1.4em 0;
  margin: 0 0 1em 0;
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
}
@media screen and (max-width: 670px) {
  .product-comments .comment-filter {
    margin: 1em 0;
  }
}
.product-comments .comment-filter > div {
  margin: 0 0.5em;
  font-size: 0.8em;
}
.product-comments .comment-filter > div:last-child {
  margin-right: 0;
}
.product-comments .comment-filter > div:first-child {
  margin-left: 0;
}
.product-comments .comment-filter .imaged-comments,
.product-comments .comment-filter .all-comments,
.product-comments .comment-filter .member-comments {
  display: flex;
  align-items: center;
  border-radius: var(--generalBorderRadius);
  border: 1px solid var(--boxBorderColor);
  height: 50px;
  padding: 0 1em;
  cursor: pointer;
}
.product-comments .comment-filter .imaged-comments:hover,
.product-comments .comment-filter .all-comments:hover,
.product-comments .comment-filter .member-comments:hover {
  border-color: var(--generalPrimaryColor);
}
.product-comments .comment-filter .imaged-comments ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5em 0 0;
}
.product-comments .comment-filter .imaged-comments ul li {
  width: 25px;
  max-width: 25px;
  border: 2px solid var(--bodyBackgroundColor);
  height: 25px;
  max-height: 25px;
  overflow: hidden;
  width: 120%;
  border-radius: 50%;
  margin: 0 -5px;
}
.product-comments .comments-content {
  width: 100%;
}
.product-comments .comments-content .comment-item {
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
  margin-bottom: 1em;
}
.product-comments .comments-content .comment-item .comment-images {
  padding: 1em 0;
}
.product-comments .comments-content .comment-item .comment-images ul {
  display: flex;
  align-items: center;
  padding: 0 0.5em 0 0;
}
.product-comments .comments-content .comment-item .comment-images ul li {
  overflow: hidden;
  margin-right: 1em;
  width: 20%;
  max-width: 70px;
}
.product-comments .comments-content .comment-item:last-child {
  border: none;
}
.product-comments .comments-content .comment-item .comment-item-info {
  display: flex;
  align-items: center;
  padding: 1em 0;
  font-size: 0.8em;
}
.product-comments .comments-content .comment-item .comment-item-info .rated-stars {
  display: flex;
  align-items: center;
}
.product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars {
  width: 60px;
  height: 20px;
  position: relative;
  margin: 0 0.5em;
}
.product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars .rated,
.product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars .unrated {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars svg {
  min-width: 60px;
  max-width: 60px;
}
.product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars .rated {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.product-comments .comments-content .comment-item .comment-item-info .comment-date {
  margin: 0 0.5em;
  opacity: 0.6;
}
.product-comments .comments-content .comment-item .comment-item-info .customer-name {
  opacity: 0.6;
}
.product-comments .comments-content .comment-item .comment-item-text {
  line-height: 1.4;
}
.product-comments .comments-content .comment-item .comment-item-action {
  padding: 1em 0;
}
.product-comments .comments-content .comment-item .comment-item-action span {
  opacity: 0.6;
  font-size: 0.8em;
}

.product-detail .product-comments {
  line-height: 1;
}
.product-detail .product-comments .bttn {
  line-height: 1;
}
.product-detail .product-comments .comments-wraper {
  display: flex;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-wraper {
    display: block;
    flex-wrap: wrap;
  }
}
.product-detail .product-comments .comment-title {
  font-size: 1.1em;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
.product-detail .product-comments .comment-title .product-photo {
  max-width: 3em;
  max-height: 3em;
  overflow: hidden;
  align-items: start;
  justify-content: center;
  border-radius: 50%;
}
.product-detail .product-comments .comment-title span {
  margin: 0 1em !important;
  padding: 0 !important;
}
.product-detail .product-comments .comments-top {
  position: -webkit-sticky;
  position: sticky;
  align-self: flex-start;
  top: 60px;
}
.product-detail .product-comments .comments-statistic {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 220px;
  margin-right: 2em;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-statistic {
    width: 100%;
    margin: 0 0 1em;
  }
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-statistic .info {
    width: 100%;
  }
}
.product-detail .product-comments .comments-statistic .info .average {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}
.product-detail .product-comments .comments-statistic .info .average .rate {
  font-weight: 700;
  font-size: 1.4em;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-statistic .info .average .rate {
    font-size: 1.4em;
  }
}
.product-detail .product-comments .comments-statistic .info .average .stars {
  width: 120px;
  height: 40px;
  position: relative;
  margin: 0 1em;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-statistic .info .average .stars {
    width: 100px;
  }
}
.product-detail .product-comments .comments-statistic .info .average .stars .rated,
.product-detail .product-comments .comments-statistic .info .average .stars .unrated {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-statistic .info .average .stars .rated,
.product-detail .product-comments .comments-statistic .info .average .stars .unrated {
    background-size: 100px auto;
  }
}
.product-detail .product-comments .comments-statistic .info .average .stars svg {
  min-width: 120px;
  max-width: 120px;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-statistic .info .average .stars svg {
    min-width: 100px;
    max-width: 100px;
  }
}
.product-detail .product-comments .comments-statistic .info .average .stars .rated {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.product-detail .product-comments .comments-statistic .info .rate-sharing .rate-item {
  display: flex;
  align-items: center;
  padding: 1px 0;
}
.product-detail .product-comments .comments-statistic .info .rate-sharing .rate-item .length {
  font-size: 80%;
  padding: 0 0.5em;
  opacity: 0.6;
}
.product-detail .product-comments .comments-statistic .info .rate-sharing .rate-item .star {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-detail .product-comments .comments-statistic .info .rate-sharing .rate-item .star .size {
  width: 10px;
  text-align: center;
}
.product-detail .product-comments .comments-statistic .info .rate-sharing .rate-item .star svg {
  width: 20px;
  height: 20px;
  margin: 0 0.5em;
}
.product-detail .product-comments .comments-statistic .info .rate-sharing .rate-item .value {
  height: 4px;
  border-radius: var(--generalBorderRadius);
  overflow: hidden;
  width: 120px;
  background-color: rgba(var(--rgbGeneralTextColor), 15%);
}
.product-detail .product-comments .comments-statistic .info .rate-sharing .rate-item .value span {
  margin-bottom: 0;
  display: block;
  height: 100%;
  border-radius: var(--generalBorderRadius);
  background-color: var(--generalPrimaryColor);
}
.product-detail .product-comments .comments-statistic .info .comment-actions {
  align-items: center;
  margin-bottom: 1em;
}
.product-detail .product-comments .comments-statistic .info .comment-actions .attention-text {
  width: 100%;
  opacity: 0.5;
  font-size: 85%;
  margin: 0.7em 0 0;
}
.product-detail .product-comments .comments-statistic .info .comment-actions .bttn {
  width: 100%;
  max-width: unset;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comments-statistic .info .comment-actions {
    flex-direction: column;
    align-items: unset;
  }
  .product-detail .product-comments .comments-statistic .info .comment-actions .attention-text {
    max-width: 100%;
  }
}
.product-detail .product-comments .new-content {
  display: none;
  width: 100%;
  display: none;
  margin-bottom: 2em;
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .new-content {
    position: fixed;
    background-color: var(--bodyBackgroundColor);
    z-index: 9999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100;
    padding: 2em;
  }
  .product-detail .product-comments .new-content .f-row {
    margin-bottom: 2em;
  }
}
.product-detail .product-comments .new-content .new-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-detail .product-comments .new-content .new-rate svg {
  max-width: 30px;
  max-height: 30px;
  min-width: 30px;
  min-height: 30px;
}
.product-detail .product-comments .new-content .new-rate .rate-action .selected label svg {
  fill: var(--generalPrimaryColor);
}
.product-detail .product-comments .new-content .new-rate .rate-action .unselected label > svg {
  fill: var(--rgbGeneralTextColor), 15%;
}
.product-detail .product-comments .new-content .new-rate .rate-action:hover label > svg {
  fill: var(--generalPrimaryColor) !important;
  opacity: 1;
}
.product-detail .product-comments .new-content .new-rate .rate-action ul {
  display: flex;
  padding: 0;
}
.product-detail .product-comments .new-content .new-rate .rate-action ul li {
  list-style: none;
}
.product-detail .product-comments .new-content .new-rate .rate-action ul li label > svg {
  fill: var(--rgbGeneralTextColor), 15%;
  cursor: pointer;
  transition: all 0.3s;
}
.product-detail .product-comments .new-content .new-rate .rate-action ul li label input {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  height: 0;
  width: 0;
}
.product-detail .product-comments .new-content .new-rate .rate-action ul li:hover ~ li > label svg {
  fill: var(--rgbGeneralTextColor), 15% !important;
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .new-content .new-rate {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: start;
  }
  .product-detail .product-comments .new-content .new-rate .cancel {
    margin-bottom: 2em;
    padding: 0 !important;
  }
}
.product-detail .product-comments .new-content .attention-text {
  font-size: 0.8em;
}
.product-detail .product-comments .new-content .show-name input + .checkbox + span .showed-name {
  display: none;
}
.product-detail .product-comments .new-content .show-name input + .checkbox + span .no-name {
  display: block;
}
.product-detail .product-comments .new-content .show-name input:checked + .checkbox + span .showed-name {
  display: block;
}
.product-detail .product-comments .new-content .show-name input:checked + .checkbox + span .no-name {
  display: none;
}
.product-detail .product-comments .new-content .commentphoto label {
  border: 2px solid var(--buttonBackgroundColor);
  border-radius: var(--generalBorderRadius);
  color: var(--buttonBackgroundColor);
  padding: 1em;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  max-width: 150px;
}
.product-detail .product-comments .new-content .commentphoto label span {
  display: inline-flex;
  font-size: 80%;
}
.product-detail .product-comments .new-content .commentphoto label input {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  height: 0;
  width: 0;
}
.product-detail .product-comments .new-content .commentphoto .attention-text {
  margin: 0 1em;
}
.product-detail .product-comments .comment-filter {
  display: flex;
  padding: 0 0 1.4em 0;
  margin: 0 0 1em 0;
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
}
@media screen and (max-width: 670px) {
  .product-detail .product-comments .comment-filter {
    margin: 1em 0;
  }
}
.product-detail .product-comments .comment-filter > div {
  margin: 0 0.5em;
  font-size: 0.8em;
}
.product-detail .product-comments .comment-filter > div:last-child {
  margin-right: 0;
}
.product-detail .product-comments .comment-filter > div:first-child {
  margin-left: 0;
}
.product-detail .product-comments .comment-filter .imaged-comments,
.product-detail .product-comments .comment-filter .all-comments,
.product-detail .product-comments .comment-filter .member-comments {
  display: flex;
  align-items: center;
  border-radius: var(--generalBorderRadius);
  border: 1px solid var(--boxBorderColor);
  height: 50px;
  padding: 0 1em;
  cursor: pointer;
}
.product-detail .product-comments .comment-filter .imaged-comments:hover,
.product-detail .product-comments .comment-filter .all-comments:hover,
.product-detail .product-comments .comment-filter .member-comments:hover {
  border-color: var(--generalPrimaryColor);
}
.product-detail .product-comments .comment-filter .imaged-comments ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5em 0 0;
}
.product-detail .product-comments .comment-filter .imaged-comments ul li {
  width: 25px;
  max-width: 25px;
  border: 2px solid var(--bodyBackgroundColor);
  height: 25px;
  max-height: 25px;
  overflow: hidden;
  width: 120%;
  border-radius: 50%;
  margin: 0 -5px;
}
.product-detail .product-comments .comments-content {
  width: 100%;
}
.product-detail .product-comments .comments-content .comment-item {
  border-bottom: 1px solid rgba(var(--rgbGeneralTextColor), 0.08);
  margin-bottom: 1em;
}
.product-detail .product-comments .comments-content .comment-item .comment-images {
  padding: 1em 0;
}
.product-detail .product-comments .comments-content .comment-item .comment-images ul {
  display: flex;
  align-items: center;
  padding: 0 0.5em 0 0;
}
.product-detail .product-comments .comments-content .comment-item .comment-images ul li {
  overflow: hidden;
  margin-right: 1em;
  width: 20%;
  max-width: 70px;
}
.product-detail .product-comments .comments-content .comment-item:last-child {
  border: none;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info {
  display: flex;
  align-items: center;
  padding: 1em 0;
  font-size: 0.8em;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info .rated-stars {
  display: flex;
  align-items: center;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars {
  width: 60px;
  height: 20px;
  position: relative;
  margin: 0 0.5em;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars .rated,
.product-detail .product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars .unrated {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars svg {
  min-width: 60px;
  max-width: 60px;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info .rated-stars .stars .rated {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info .comment-date {
  margin: 0 0.5em;
  opacity: 0.6;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-info .customer-name {
  opacity: 0.6;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-text {
  line-height: 1.4;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-action {
  padding: 1em 0;
}
.product-detail .product-comments .comments-content .comment-item .comment-item-action span {
  opacity: 0.6;
  font-size: 0.8em;
}

.product-slider .product-list-item {
  display: none;
}

.product-slider .product-list-item:first-child {
  display: block;
}

.product-slider.slick-initialized .product-list-item {
  display: block;
  visibility: visible !important;
}
.product-slider.slick-initialized .product-list-item .product-image {
  max-height: unset;
}

.liteheader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.3em 1em;
  z-index: 300;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.liteheader .shape {
  width: 26px;
  height: 26px;
}
.liteheader .shape svg {
  fill: #fff;
}
.liteheader .go-back {
  background-color: transparent !important;
  min-height: 2.4em;
  padding: 0 0.6em;
}
.liteheader .add-to-favourites {
  margin: 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-color: #fff;
  border-width: 0px;
  margin-bottom: 0.6em;
}
.liteheader .inner-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.liteheader .cart {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.liteheader .cart .shape {
  position: relative;
}
.liteheader .cart .cart-qty {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--generalPrimaryColor);
  color: var(--bodyBackgroundColor);
  top: -4px;
  font-size: 50%;
  right: -3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
}

.viewer-zoom-in::before,
.viewer-zoom-out::before,
.viewer-one-to-one::before,
.viewer-reset::before,
.viewer-prev::before,
.viewer-play::before,
.viewer-next::before,
.viewer-rotate-left::before,
.viewer-rotate-right::before,
.viewer-flip-horizontal::before,
.viewer-flip-vertical::before,
.viewer-fullscreen::before,
.viewer-fullscreen-exit::before,
.viewer-close::before {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAAAUCAYAAABWOyJDAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAQPSURBVHic7Zs/iFxVFMa/0U2UaJGksUgnIVhYxVhpjDbZCBmLdAYECxsRFBTUamcXUiSNncgKQbSxsxH8gzAP3FU2jY0kKKJNiiiIghFlccnP4p3nPCdv3p9778vsLOcHB2bfveeb7955c3jvvNkBIMdxnD64a94GHMfZu3iBcRynN7zAOI7TG15gHCeeNUkr8zaxG2lbYDYsdgMbktBsP03jdQwljSXdtBhLOmtjowC9Mg9L+knSlcD8TNKpSA9lBpK2JF2VdDSR5n5J64m0qli399hNFMUlpshQii5jbXTbHGviB0nLNeNDSd9VO4A2UdB2fp+x0eCnaXxWXGA2X0au/3HgN9P4LFCjIANOJdrLr0zzZ+BEpNYDwKbpnQMeAw4m8HjQtM6Z9qa917zPQwFr3M5KgA6J5rTJCdFZJj9/lyvGhsDvwFNVuV2MhhjrK6b9bFiE+j1r87eBl4HDwCF7/U/k+ofAX5b/EXBv5JoLMuILzf3Ap6Z3EzgdqHMCuF7hcQf4HDgeoHnccncqdK/TvSDWffFXI/exICY/xZyqc6XLWF1UFZna4gJ7q8BsRvgd2/xXpo6P+D9dfT7PpECtA3cnWPM0GXGFZh/wgWltA+cDNC7X+AP4GzjZQe+k5dRxuYPeiuXU7e1qwLpDz7dFjXKRaSwuMLvAlG8zZlG+YmiK1HoFqT7wP2z+4Q45TfEGcMt01xLoNZEBTwRqD4BLpnMLeC1A41UmVxsXgXeBayV/Wx20rpTyrpnWRft7p6O/FdqzGrDukPNtkaMoMo3FBdBSQMOnYBCReyf05s126fU9ytfX98+mY54Kxnp7S9K3kj6U9KYdG0h6UdLbkh7poFXMfUnSOyVvL0h6VtIXHbS6nOP+s/Zm9mvyXW1uuC9ohZ72E9uDmXWLJOB1GxsH+DxPftsB8B6wlGDN02TAkxG6+4D3TWsbeC5CS8CDFce+AW500LhhOW2020TRjK3b21HEmgti9m0RonxbdMZeVzV+/4tF3cBpP7E9mKHNL5q8h5g0eYsCMQz0epq8gQrwMXAgcs0FGXGFRcB9wCemF9PkbYqM/Bas7fxLwNeJPdTdpo4itQti8lPMqTpXuozVRVXPpbHI3KkNTB1NfkL81j2mvhDp91HgV9MKuRIqrykj3WPq4rHyL+axj8/qGPmTqi6F9YDlHOvJU6oYcTsh/TYSzWmTE6JT19CtLTJt32D6CmHe0eQn1O8z5AXgT4sx4Vcu0/EQecMydB8z0hUWkTd2t4CrwNEePqMBcAR4mrBbwyXLPWJa8zrXmmLEhNBmfpkuY2102xxrih+pb+ieAb6vGhuA97UcJ5KR8gZ77K+99xxeYBzH6Q3/Z0fHcXrDC4zjOL3hBcZxnN74F+zlvXFWXF9PAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-size: 280px;
  color: transparent;
  display: block;
  font-size: 0;
  line-height: 0;
}

.viewer-zoom-in::before {
  background-position: 0 0;
  content: "Zoom In";
}

.viewer-zoom-out::before {
  background-position: -20px 0;
  content: "Zoom Out";
}

.viewer-one-to-one::before {
  background-position: -40px 0;
  content: "One to One";
}

.viewer-reset::before {
  background-position: -60px 0;
  content: "Reset";
}

.viewer-prev::before {
  background-position: -80px 0;
  content: "Previous";
}

.viewer-play::before {
  background-position: -100px 0;
  content: "Play";
}

.viewer-next::before {
  background-position: -120px 0;
  content: "Next";
}

.viewer-rotate-left::before {
  background-position: -140px 0;
  content: "Rotate Left";
}

.viewer-rotate-right::before {
  background-position: -160px 0;
  content: "Rotate Right";
}

.viewer-flip-horizontal::before {
  background-position: -180px 0;
  content: "Flip Horizontal";
}

.viewer-flip-vertical::before {
  background-position: -200px 0;
  content: "Flip Vertical";
}

.viewer-fullscreen::before {
  background-position: -220px 0;
  content: "Enter Full Screen";
}

.viewer-fullscreen-exit::before {
  background-position: -240px 0;
  content: "Exit Full Screen";
}

.viewer-close::before {
  background: transparent;
  font-family: icomoon;
  content: "\e920";
  color: inherit;
  font-size: 14px;
}

.viewer-container {
  bottom: 0;
  direction: ltr;
  font-size: 0;
  left: 0;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  z-index: 99999;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.viewer-container::-moz-selection,
.viewer-container *::-moz-selection {
  background-color: transparent;
}

.viewer-container::-moz-selection, .viewer-container *::-moz-selection {
  background-color: transparent;
}

.viewer-container::selection,
.viewer-container *::selection {
  background-color: transparent;
}

.viewer-container:focus {
  outline: 0;
}

.viewer-container img {
  display: block;
  height: auto;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}

.viewer-canvas {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

.viewer-canvas > img {
  height: auto;
  margin: 15px auto;
  max-width: 90% !important;
  width: auto;
}

.viewer-footer {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-align: center;
}

.viewer-navbar {
  background-color: var(--bodyBackgroundColor);
  overflow: hidden;
}

.viewer-list {
  box-sizing: content-box;
  margin: 0;
  overflow: hidden;
  padding: 1px 0;
}

.viewer-list > li {
  color: transparent;
  cursor: pointer;
  float: left;
  font-size: 0;
  line-height: 0;
  opacity: 0.5;
  overflow: hidden;
  transition: opacity 0.15s;
  width: 70px;
}

.viewer-list > li:focus,
.viewer-list > li:hover {
  opacity: 0.75;
}

.viewer-list > li:focus {
  outline: 0;
}

.viewer-list > li + li {
  margin-left: 1px;
}

.viewer-list > .viewer-loading {
  position: relative;
}

.viewer-list > .viewer-loading::after {
  border-width: 2px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  width: 20px;
}

.viewer-list > .viewer-active,
.viewer-list > .viewer-active:focus,
.viewer-list > .viewer-active:hover {
  opacity: 1;
}

.viewer-player {
  background-color: #000;
  bottom: 0;
  cursor: none;
  display: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.viewer-player > img {
  left: 0;
  position: absolute;
  top: 0;
}

.viewer-toolbar > ul {
  display: inline-block;
  margin: 0 auto 5px;
  overflow: hidden;
  padding: 6px 3px;
}

.viewer-toolbar > ul > li {
  background-color: var(--bodyBackgroundColor);
  border-radius: 50%;
  cursor: pointer;
  float: left;
  height: 24px;
  overflow: hidden;
  transition: background-color 0.15s;
  width: 24px;
}

.viewer-toolbar > ul > li:focus,
.viewer-toolbar > ul > li:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.viewer-toolbar > ul > li:focus {
  box-shadow: 0 0 3px #fff;
  outline: 0;
  position: relative;
  z-index: 1;
}

.viewer-toolbar > ul > li::before {
  margin: 2px;
}

.viewer-toolbar > ul > li + li {
  margin-left: 1px;
}

.viewer-toolbar > ul > .viewer-small {
  height: 18px;
  margin-bottom: 3px;
  margin-top: 3px;
  width: 18px;
}

.viewer-toolbar > ul > .viewer-small::before {
  margin: -1px;
}

.viewer-toolbar > ul > .viewer-large {
  height: 30px;
  margin-bottom: -3px;
  margin-top: -3px;
  width: 30px;
}

.viewer-toolbar > ul > .viewer-large::before {
  margin: 5px;
}

.viewer-tooltip {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  color: #fff;
  display: none;
  font-size: 12px;
  height: 20px;
  left: 50%;
  line-height: 20px;
  margin-left: -25px;
  margin-top: -10px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 50px;
}

.viewer-title {
  color: #ccc;
  display: inline-block;
  font-size: 12px;
  line-height: 1.2;
  margin: 0 5% 5px;
  max-width: 90%;
  opacity: 0.8;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.viewer-title:hover {
  opacity: 1;
}

.viewer-button {
  background-color: var(--bodyBackgroundColor);
  border-radius: 50%;
  cursor: pointer;
  height: 40px;
  overflow: hidden;
  position: absolute;
  inset-inline-end: 20px;
  inset-block-start: 20px;
  width: 40px;
  border-radius: 50%;
  color: var(--generalTextColor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--boxBorderColor);
}

.viewer-fixed {
  position: fixed;
}

.viewer-open {
  overflow: hidden;
}

.viewer-show {
  display: block;
}

.viewer-hide {
  display: none;
}

.viewer-backdrop {
  background-color: var(--bodyBackgroundColor);
}

.viewer-invisible {
  visibility: hidden;
}

.viewer-move {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.viewer-fade {
  opacity: 0;
}

.viewer-in {
  opacity: 1;
}

.viewer-transition {
  transition: all 0.3s;
}

@-webkit-keyframes viewer-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes viewer-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.viewer-loading::after {
  -webkit-animation: viewer-spinner 1s linear infinite;
  animation: viewer-spinner 1s linear infinite;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 40px;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  width: 40px;
  z-index: 1;
}

@media (max-width: 767px) {
  .viewer-hide-xs-down {
    display: none;
  }
}
@media (max-width: 991px) {
  .viewer-hide-sm-down {
    display: none;
  }
}
@media (max-width: 1199px) {
  .viewer-hide-md-down {
    display: none;
  }
}
.side-bar nav {
  margin-bottom: 2em;
}
.side-bar nav ul li a {
  display: flex;
  align-items: center;
  font-size: 1em;
  padding: 0.7em 0;
  color: inherit;
}
.side-bar nav ul li a i {
  margin-right: 0.4em;
}
.side-bar nav ul li a:hover {
  color: #000;
}

#stores .page-content {
  padding: 3em 0;
}
#stores .page-content .full-w {
  width: 95% !important;
  margin: 0 auto;
}
#stores .our-stores a {
  color: inherit;
}
#stores .our-stores .our-stores-item {
  border: 1px solid var(--boxBorderColor);
  border-radius: 0.6em;
  padding: 2em;
  margin-bottom: 2em;
}
#stores .our-stores .our-stores-item:last-child {
  margin-bottom: 0;
}
#stores .our-stores .our-stores-item .store-cover {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 661px) {
  #stores .our-stores .our-stores-item .store-cover {
    flex-wrap: wrap;
  }
}
#stores .our-stores .our-stores-item .shape {
  width: 30px;
  height: 30px;
  margin-bottom: 1em;
}
#stores .our-stores .our-stores-item .shape svg {
  fill: var(--generalPrimaryColor);
}
#stores .our-stores .our-stores-item .store-image {
  -webkit-margin-end: 1.4em;
          margin-inline-end: 1.4em;
  border-radius: calc(var(--generalBorderRadius) * 0.4);
  overflow: hidden;
}
@media screen and (max-width: 661px) {
  #stores .our-stores .our-stores-item .store-image {
    width: 100%;
    margin-bottom: 1em;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}
#stores .our-stores .our-stores-item .store-image img {
  max-width: 14em;
}
@media screen and (max-width: 661px) {
  #stores .our-stores .our-stores-item .store-image img {
    width: 100%;
    max-width: unset;
    margin: 0 auto;
  }
}
@media screen and (max-width: 991px) {
  #stores .our-stores .our-stores-item .contact-chanel {
    margin-bottom: 1.5em;
  }
  #stores .our-stores .our-stores-item .contact-chanel:last-child {
    margin-bottom: 0;
  }
}
#stores .our-stores .our-stores-item .store-name {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 0.5em;
}
#stores .our-stores .our-stores-item .store-info {
  line-height: 1.4;
}
@media screen and (max-width: 661px) {
  #stores .our-stores .our-stores-item .store-info {
    width: 100%;
    text-align: center;
  }
}
#stores .our-stores .our-stores-item .store-contact {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #stores .our-stores .our-stores-item .store-contact {
    margin-top: 2em;
  }
}
#stores .our-stores .our-stores-item .store-contact > div a {
  padding: 0 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
