@charset "UTF-8";
/* line 4, main/001__bootstrap.scss */
.area {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto; }

/* line 9, main/001__bootstrap.scss */
.area-padding {
  padding: 10px 10px; }

/* line 12, main/001__bootstrap.scss */
.area-padding-h {
  padding-left: 10px;
  padding-right: 10px; }

/* line 16, main/001__bootstrap.scss */
.area-padding-v {
  padding-top: 10px;
  padding-bottom: 10px; }

/* line 20, main/001__bootstrap.scss */
.area-flex {
  width: 100%; }

/* line 23, main/001__bootstrap.scss */
.max-w-100 {
  max-width: 100px; }

/* line 24, main/001__bootstrap.scss */
.max-w-200 {
  max-width: 200px; }

/* line 25, main/001__bootstrap.scss */
.max-w-300 {
  max-width: 300px; }

/* line 31, main/001__bootstrap.scss */
.btn-reset {
  box-shadow: none;
  background: none;
  border: none;
  padding: 0; }

/* line 46, main/001__bootstrap.scss */
.wc-btn {
  line-height: 1;
  cursor: pointer;
  transition: all 0.5s;
  box-shadow: none;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 20px; }
  /* line 47, main/001__bootstrap.scss */
  .wc-btn, .wc-btn span, .wc-btn .fa {
    display: inline-block;
    vertical-align: middle; }
  /* line 64, main/001__bootstrap.scss */
  .wc-btn, .wc-btn:hover, .wc-btn:visited, .wc-btn:active, .wc-btn:focus {
    text-decoration: none; }
  /* line 68, main/001__bootstrap.scss */
  .wc-btn.wc-primary {
    border-color: #a99a82;
    background: #a99a82;
    color: #fff; }
    /* line 72, main/001__bootstrap.scss */
    .wc-btn.wc-primary:hover, .wc-btn.wc-primary:visited, .wc-btn.wc-primary:active, .wc-btn.wc-primary:focus {
      border-color: #a99a82;
      background: #a99a82;
      color: #fff; }
    /* line 77, main/001__bootstrap.scss */
    .wc-btn.wc-primary:hover {
      border-color: #887965;
      background: #887965;
      color: #fff; }
    /* line 82, main/001__bootstrap.scss */
    .wc-btn.wc-primary:active {
      border-color: #887965;
      background: #fff;
      color: #887965; }

/*
=======================================
CONTAINER

display: flex|inline-flex

############ _ Направление и перенос
flex-flow: row|row-reverse|column|column-reverse nowrap|wrap|wrap-reverse;
flex-flow: row nowrap;
============ _ Направление главной оси
flex-direction: row;
    row (слева направо) - по умолчанию
    row-reverse (справа налево)
    column (сверху вниз)
    column-reverse (снизу вверх)
============ | Перенос/Направление поперечной оси
flex-wrap: nowrap;
    nowrap (только на одной линии - по умолчанию)
    wrap (разрешить перенос flex-элементов на новые линии)
    wrap-reverse (осуществлять перенос flex-элементов в обратном порядке)

############ _ Выравнивание по направлению главной оси
justify-content: flex-start;
    flex-start (flex-элементы выравниваются относительно начала оси) – по умолчанию
    flex-end (flex-элементы выравниваются относительно конца оси)
    center (по центру flex-контейнера)
    space-between (равномерно, т.е. с одинаковым расстоянием между flex-элементами)
    space-around (равномерно, но с добавлением половины пространства перед первым flex-элементом и после последнего)

############ | Выравнивание вдоль поперечной оси
align-items: stretch;
    stretch (растягиваются по всей длине линии вдоль направления поперечной оси) – по умолчанию
    flex-start (распологаются относительно начала поперечной оси)
    flex-end (относительно конца поперечной оси)
    baseline (относительно базовой линии)
    center (по центру)

############ | Выравнивание линий
align-content: stretch
    stretch (растягиваются по всей длине поперечной оси) – по умолчанию
    flex-start (относительно начала поперечной оси)
    flex-end (относительно конца поперечной оси)
    center (по центру)
    space-between (равномерно, т.е. с одинаковым расстоянием между линиями)
    space-around (равномерно, но с добавлением половины  пространства перед первой линией и после последней)



=========================================
ELEMENTS

############ | Выравнивание вдоль поперечной оси
align-self - варианты из align-items
align-self: auto*|stretch|flex-start|flex-end|baseline|center

############ Изменение порядка следования
order: 0;
  0 (по умолчанию)
  целое положительное или отрицательное число

############
flex: 0 1 auto;
  0 - flex-grow (1 значение) увеличение ширины
  1 - flex-shrink (2 значение) уменьшение ширины
  auto - flex-basis (3 значение) ширина


*/
/* line 7, main/100__base.scss */
body {
  overflow-x: hidden;
  overflow-y: auto; }

/* line 12, main/100__base.scss */
html, body, .global {
  min-height: 100vh; }

/* line 15, main/100__base.scss */
.global {
  display: flex;
  flex-flow: column nowrap;
  height: 100%; }

/* line 20, main/100__base.scss */
.wrapper {
  display: flex;
  flex-flow: column nowrap;
  flex: 1 0 auto; }

/* line 25, main/100__base.scss */
header {
  flex: 0 0 auto; }

/* line 28, main/100__base.scss */
.content {
  display: flex;
  flex-flow: row nowrap;
  flex: 1 0 auto; }

/* line 33, main/100__base.scss */
main {
  flex: 1 1 auto;
  order: 0;
  max-width: 100%; }

/* line 38, main/100__base.scss */
.sidebar-left {
  flex: 0 0 100%;
  order: -1;
  overflow-y: auto; }

/* line 44, main/100__base.scss */
.sidebar-right {
  flex: 1 0 auto;
  order: 2; }

/* line 49, main/100__base.scss */
footer {
  flex: 0 0 auto; }

@media (max-width: 768px) {
  /* line 56, main/100__base.scss */
  .content {
    flex-flow: column nowrap; }

  /* line 59, main/100__base.scss */
  main {
    flex: 1 0 auto; }

  /* line 62, main/100__base.scss */
  .sidebar-left {
    flex: 0 0 auto;
    order: 1; }

  /* line 66, main/100__base.scss */
  .sidebar-right {
    flex: 0 0 auto; }

  /* line 69, main/100__base.scss */
  .max-w {
    max-width: 100%; } }
/* line 4, main/110__global.scss */
.global {
  background: silver; }

/* line 9, main/110__global.scss */
.wrapper > .content {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 0 0 10px 10px;
  border-bottom: 3px solid #CDCED3;
  padding: 10px; }

/* line 18, main/110__global.scss */
iframe {
  max-width: 100%;
  max-height: 100%; }

/* line 22, main/110__global.scss */
img {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto; }

/* line 29, main/110__global.scss */
.owl-carousel .owl-item img {
  width: auto; }

/* line 32, main/110__global.scss */
*, :before, :after {
  box-sizing: border-box;
  padding: 0;
  margin: 0; }

/* line 40, main/110__global.scss */
.page-wrapper ul,
.tab-pane ul {
  padding: 0 0 0 30px; }
  /* line 43, main/110__global.scss */
  .page-wrapper ul > li::marker,
  .tab-pane ul > li::marker {
    color: #333; }

/* line 52, main/110__global.scss */
a, a:hover, a:visited, a:focus, a:active {
  color: #333; }

/* line 57, main/110__global.scss */
a.btn, a.btn:hover, a.btn:visited, a.btn:focus, a.btn:active {
  color: #fff; }

/* line 62, main/110__global.scss */
strong {
  color: #333; }

/* line 67, main/110__global.scss */
.product-index h1, .product-index h2, .product-index h3, .product-index h4, .product-index h5 {
  font-weight: 700; }

/* line 74, main/110__global.scss */
.page-wrapper .body ul,
.tab-pane ul {
  padding: 0 0 0 30px; }
  /* line 77, main/110__global.scss */
  .page-wrapper .body ul > li::marker,
  .tab-pane ul > li::marker {
    color: #333; }
/* line 83, main/110__global.scss */
.page-wrapper .body a:not(.btn),
.tab-pane a:not(.btn) {
  font-weight: bold;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.5s; }
  /* line 93, main/110__global.scss */
  .page-wrapper .body a:not(.btn):after,
  .tab-pane a:not(.btn):after {
    content: "";
    display: block;
    border-bottom: 1px solid #92764e;
    height: 1px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transition: all 0.5s; }
  /* line 105, main/110__global.scss */
  .page-wrapper .body a:not(.btn):hover,
  .tab-pane a:not(.btn):hover {
    color: #fcb040; }
    /* line 107, main/110__global.scss */
    .page-wrapper .body a:not(.btn):hover:after,
    .tab-pane a:not(.btn):hover:after {
      border-color: #fcb040; }

/* line 119, main/110__global.scss */
.toggle-body {
  overflow: hidden;
  position: relative; }
  /* line 123, main/110__global.scss */
  .toggle-body:after {
    content: "";
    display: block;
    clear: both; }
  /* line 129, main/110__global.scss */
  .toggle-body .tgl-block {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0; }
    /* line 134, main/110__global.scss */
    .toggle-body .tgl-block .tgl-wall {
      height: 100px;
      background: transparent; }
    /* line 138, main/110__global.scss */
    .toggle-body .tgl-block .tgl-panel {
      padding: 10px 0;
      text-align: right;
      background: white; }
      /* line 143, main/110__global.scss */
      .toggle-body .tgl-block .tgl-panel .tgl-btn {
        cursor: pointer;
        display: inline-block;
        padding: 6px 15px;
        border-radius: 0;
        color: #fff;
        font-weight: bold;
        background-color: #333;
        transition: all 0.3s ease 0s;
        font-size: 14px; }
        /* line 154, main/110__global.scss */
        .toggle-body .tgl-block .tgl-panel .tgl-btn:hover {
          background: #fcb040 none repeat scroll 0 0;
          color: #fff; }
  /* line 163, main/110__global.scss */
  .toggle-body.short .tgl-block .tgl-wall {
    background: linear-gradient(to bottom, transparent, white); }

/* line 175, main/110__global.scss */
body .owl-carousel {
  font-size: 0;
  line-height: 1; }
  /* line 179, main/110__global.scss */
  body .owl-carousel .owl-nav button.owl-prev,
  body .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 0; }
  /* line 184, main/110__global.scss */
  body .owl-carousel .owl-nav button.owl-prev {
    left: 0; }
  /* line 187, main/110__global.scss */
  body .owl-carousel .owl-nav button.owl-next {
    right: 0; }
  /* line 191, main/110__global.scss */
  body .owl-carousel .owl-dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0; }
  /* line 198, main/110__global.scss */
  body .owl-carousel button.owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: silver;
    margin: 0 5px; }
    /* line 205, main/110__global.scss */
    body .owl-carousel button.owl-dot.active {
      background: #92764e; }

/* line 214, main/110__global.scss */
html .lg-backdrop {
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 3040; }
  /* line 217, main/110__global.scss */
  html .lg-backdrop.in {
    opacity: 1; }
/* line 222, main/110__global.scss */
html .lg-sub-html, html .lg-toolbar {
  background-color: rgba(0, 0, 0, 0); }
/* line 225, main/110__global.scss */
html .lg-outer {
  z-index: 3050; }
/* line 228, main/110__global.scss */
html .lg-outer .lg-thumb-outer {
  background-color: rgba(0, 0, 0, 0.2); }

/* line 236, main/110__global.scss */
.run-anim {
  display: none; }
  /* line 238, main/110__global.scss */
  .run-anim.run-yes {
    display: inline-block; }

/* line 242, main/110__global.scss */
.run-anim:after {
  content: " ";
  display: block;
  width: 30px;
  height: 30px;
  margin: 0;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: run-anim 1.2s linear infinite; }

@keyframes run-anim {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/* line 268, main/110__global.scss */
.hide-me {
  display: none;
  position: absolute;
  opacity: 0;
  overflow: hidden;
  width: 1px;
  height: 1px; }

/* line 8, main/111__breadcrumbs.scss */
.breadcrumb {
  padding: 10px 10px 10px 10px;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  background: #f2f2f2;
  border-radius: 0; }
  /* line 15, main/111__breadcrumbs.scss */
  .breadcrumb a {
    color: #8e7a59 !important;
    font-weight: normal; }

/* line 20, main/111__breadcrumbs.scss */
.breadcrumb-item + .breadcrumb-item:before {
  content: "";
  font-size: 0;
  line-height: 1;
  width: 5px;
  height: 15px;
  display: inline-block !important;
  vertical-align: top;
  margin: 7px 7px 0 3px;
  position: relative;
  background: url("/img/full_path.png") no-repeat 0 0; }

/* line 4, main/112__pagination.scss */
.page-link {
  color: #333 !important;
  background-color: transparent;
  border: none;
  font-size: 30px;
  font-weight: 700; }

/* line 11, main/112__pagination.scss */
.page-item.active .page-link {
  color: #fcb040 !important;
  background-color: transparent; }

/* line 11, main/120__header.scss */
.h-top {
  background: rgba(0, 0, 0, 0.8); }

/* line 14, main/120__header.scss */
.h-row {
  background: rgba(255, 255, 255, 0.8); }

/* line 17, main/120__header.scss */
.ht-inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center; }
  /* line 22, main/120__header.scss */
  .ht-inner .cell {
    flex: 0 1 auto; }
    /* line 24, main/120__header.scss */
    .ht-inner .cell.slogan {
      color: #fff;
      color: #92764e; }
    /* line 31, main/120__header.scss */
    .ht-inner .cell.cart {
      position: relative; }

/* line 36, main/120__header.scss */
.h-inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center; }
  /* line 41, main/120__header.scss */
  .h-inner .cell {
    flex: 0 1 auto; }
    /* line 45, main/120__header.scss */
    .h-inner .cell.work {
      line-height: 1; }
      /* line 47, main/120__header.scss */
      .h-inner .cell.work .ttl {
        color: #000;
        font-weight: bold; }
      /* line 51, main/120__header.scss */
      .h-inner .cell.work .cnt {
        padding: 5px 0 0 0; }
    /* line 55, main/120__header.scss */
    .h-inner .cell.logo {
      position: relative; }
    /* line 59, main/120__header.scss */
    .h-inner .cell.phones {
      text-align: center; }
      /* line 61, main/120__header.scss */
      .h-inner .cell.phones a {
        transition: color 0.5s; }
      /* line 64, main/120__header.scss */
      .h-inner .cell.phones a:hover {
        color: #fcb040; }
      /* line 67, main/120__header.scss */
      .h-inner .cell.phones a {
        display: block;
        font-size: 0;
        line-height: 1; }
        /* line 71, main/120__header.scss */
        .h-inner .cell.phones a img, .h-inner .cell.phones a span {
          display: inline-block;
          vertical-align: middle; }
        /* line 75, main/120__header.scss */
        .h-inner .cell.phones a img {
          margin-right: 10px;
          position: relative;
          top: 2px; }
        /* line 80, main/120__header.scss */
        .h-inner .cell.phones a span {
          font: 20px Arial;
          font-weight: 700;
          color: #000000; }
      /* line 86, main/120__header.scss */
      .h-inner .cell.phones a + a {
        margin-top: 10px; }
      /* line 89, main/120__header.scss */
      .h-inner .cell.phones div {
        text-align: center;
        font: bold 16px Arial;
        color: #92764e; }
    /* line 95, main/120__header.scss */
    .h-inner .cell.menu-search {
      width: 100%;
      max-width: 400px; }
      /* line 98, main/120__header.scss */
      .h-inner .cell.menu-search .form-control {
        background-image: none !important; }

/* line 111, main/120__header.scss */
ul.menu-main a {
  transition: color 0.5s;
  color: #fff; }
/* line 115, main/120__header.scss */
ul.menu-main a:hover {
  color: #fff; }
/* line 118, main/120__header.scss */
ul.menu-main a.nav-link {
  font-weight: normal; }

/* line 124, main/120__header.scss */
.links {
  position: relative;
  padding-left: 70px; }

/* line 128, main/120__header.scss */
.h-langs {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px; }

/* line 202, main/120__header.scss */
.main-navbar {
  margin-top: 20px; }
  /* line 206, main/120__header.scss */
  .main-navbar, .main-navbar a {
    color: #fff; }
  /* line 209, main/120__header.scss */
  .main-navbar .nav {
    display: flex;
    flex-flow: row nowrap;
    padding: 0; }
    /* line 214, main/120__header.scss */
    .main-navbar .nav > li {
      flex: 1 0 auto;
      justify-content: space-between;
      text-align: center;
      border-right: 1px solid #000; }
      /* line 219, main/120__header.scss */
      .main-navbar .nav > li > a {
        font-size: 18px;
        font-weight: 400;
        transition: all 0.5s ease;
        padding: 10px 5px;
        background: #555555;
        background: linear-gradient(180deg, #555555 0%, #333333 100%); }
        /* line 227, main/120__header.scss */
        .main-navbar .nav > li > a img {
          vertical-align: top;
          position: relative;
          top: 4px; }
      /* line 233, main/120__header.scss */
      .main-navbar .nav > li > a:hover {
        background: linear-gradient(0deg, #555555 0%, #333333 100%); }
      /* line 236, main/120__header.scss */
      .main-navbar .nav > li > a.active {
        color: #fcb040; }
    /* line 241, main/120__header.scss */
    .main-navbar .nav > li:first-child a {
      border-radius: 10px 0 0 0; }
    /* line 244, main/120__header.scss */
    .main-navbar .nav > li:last-child {
      border-right-width: 0 !important; }
      /* line 246, main/120__header.scss */
      .main-navbar .nav > li:last-child a {
        border-radius: 0 10px 0 0; }
    /* line 250, main/120__header.scss */
    .main-navbar .nav > li + li {
      border-left: 1px solid #656565; }
    /* line 254, main/120__header.scss */
    .main-navbar .nav > li.cat-1 > a {
      color: red !important; }
    /* line 257, main/120__header.scss */
    .main-navbar .nav > li.cat-1 > a.active {
      color: #fcb040 !important; }

/* line 279, main/120__header.scss */
.checkbox__label2 input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 20px; }

/* line 285, main/120__header.scss */
.checkbox__text2 {
  position: relative;
  padding: 18px 0 0 45px;
  cursor: pointer; }
  /* line 289, main/120__header.scss */
  .checkbox__text2:before {
    content: '';
    position: absolute;
    top: 27px;
    left: 0;
    width: 36px;
    height: 10px;
    border-radius: 13px;
    background: #A6A7A8;
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
    transition: .2s; }
  /* line 301, main/120__header.scss */
  .checkbox__text2:after {
    content: '';
    position: absolute;
    top: 24px;
    left: 1px;
    width: 16px;
    height: 16px;
    border-radius: 7px;
    background: #FFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: .2s; }

/* line 317, main/120__header.scss */
.checkbox__label2 input:checked + .checkbox__text2:after {
  left: 20px;
  background: red; }

/* line 322, main/120__header.scss */
.lang-lbl {
  display: inline-block;
  vertical-align: middle; }
  /* line 326, main/120__header.scss */
  .lang-lbl:first-child {
    margin-right: 5px; }

/* line 331, main/120__header.scss */
.m-lang, .m-lang:hover, .m-lang:active, .m-lang:focus, .m-lang:visited {
  text-decoration: none; }

/* line 335, main/120__header.scss */
.lru {
  color: #fff; }

/* line 338, main/120__header.scss */
.luk {
  color: grey; }

/* line 342, main/120__header.scss */
.m-lang[data-lang=ru] .lru {
  color: grey; }
/* line 345, main/120__header.scss */
.m-lang[data-lang=ru] .luk {
  color: #fff; }

/* line 7, main/121__search.scss */
.search-form #search-q {
  width: 100%; }
/* line 11, main/121__search.scss */
.search-form .input-group {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative; }
/* line 16, main/121__search.scss */
.search-form .input-group-append {
  flex: 0 0 auto;
  position: absolute;
  display: block;
  z-index: 2;
  top: 0;
  margin-top: 4px;
  right: 4px;
  cursor: pointer; }
/* line 26, main/121__search.scss */
.search-form .input-group-text {
  background: none !important;
  border: none;
  font-size: 20px;
  margin: 0;
  padding: 5px; }

/* line 72, main/121__search.scss */
body .tt-menu {
  padding: 0; }

/* line 75, main/121__search.scss */
.tt-menu .tt-suggestion.sac-block {
  padding: 0;
  font-size: 0;
  line-height: 1;
  white-space: normal; }
  /* line 81, main/121__search.scss */
  .tt-menu .tt-suggestion.sac-block + .sac-block {
    border-top: 1px solid #f1f1f1; }
  /* line 86, main/121__search.scss */
  .tt-menu .tt-suggestion.sac-block a, .tt-menu .tt-suggestion.sac-block a:hover, .tt-menu .tt-suggestion.sac-block a:active, .tt-menu .tt-suggestion.sac-block a:visited, .tt-menu .tt-suggestion.sac-block a:focus {
    text-decoration: none; }

/* line 93, main/121__search.scss */
.sac-link {
  display: block;
  padding: 10px; }
  /* line 97, main/121__search.scss */
  .sac-link:hover {
    background: #f0f5e2; }
  /* line 22, main/000__var.scss */
  .sac-link:after {
    display: block;
    content: "";
    clear: both; }

/* line 104, main/121__search.scss */
.sac-image,
.sac-text {
  display: inline-block;
  vertical-align: middle; }

/* line 109, main/121__search.scss */
.sac-image {
  width: 30%;
  padding: 0 10px 0 0;
  text-align: center; }

/* line 117, main/121__search.scss */
.sac-text {
  width: 69.9%; }

/* line 120, main/121__search.scss */
.sac-name {
  font-size: 16px;
  color: #000;
  padding: 0 0 10px 0; }

/* line 127, main/121__search.scss */
.sac-old {
  font-size: 14px;
  color: silver; }

/* line 131, main/121__search.scss */
.sac-actual {
  font-size: 24px;
  color: #333;
  font-weight: 700; }

/* line 140, main/121__search.scss */
.sac-link.who-c .sac-image {
  display: none; }
/* line 143, main/121__search.scss */
.sac-link.who-c .sac-text {
  width: auto; }
/* line 146, main/121__search.scss */
.sac-link.who-c .sac-name {
  color: #333;
  padding: 0; }
  /* line 149, main/121__search.scss */
  .sac-link.who-c .sac-name span {
    font-weight: 700; }

/* line 5, main/125__cart-widget.scss */
.cart-icon {
  display: inline-block;
  position: relative;
  text-decoration: none !important;
  color: #fff !important;
  font-size: 0; }
  /* line 11, main/125__cart-widget.scss */
  .cart-icon i {
    font-size: 40px; }
  /* line 14, main/125__cart-widget.scss */
  .cart-icon img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px; }

/* line 34, main/125__cart-widget.scss */
.crt-box {
  display: inline-block;
  vertical-align: middle;
  padding: 10px 10px;
  background: #000; }

/* line 40, main/125__cart-widget.scss */
.crt-amnt {
  font-weight: bold;
  color: #fcb040;
  font: 16px Arial; }

/* line 45, main/125__cart-widget.scss */
.crt-txt {
  font: 12px Arial;
  color: #fff !important; }

/* line 5, main/131__footer-before.scss */
.bottom-cell {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 300px;
  height: 200px;
  background-color: #f0f0f0;
  margin: 0; }
  /* line 14, main/131__footer-before.scss */
  .bottom-cell .caption {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    height: 100px;
    margin-top: -50px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    transition: all 0.5s; }
    /* line 26, main/131__footer-before.scss */
    .bottom-cell .caption .inner {
      border: 1px solid #fff;
      padding: 5px;
      text-align: center;
      width: 100%;
      height: 100%;
      box-sizing: border-box; }
  /* line 36, main/131__footer-before.scss */
  .bottom-cell.new {
    background: #f0f0f0 url("/img/news.jpg") scroll no-repeat 50% 50%/cover; }
  /* line 39, main/131__footer-before.scss */
  .bottom-cell.event {
    background: #f0f0f0 url("/img/events.jpg") scroll no-repeat 50% 50%/cover; }
    /* line 41, main/131__footer-before.scss */
    .bottom-cell.event .inner {
      border: 1px solid red; }
  /* line 46, main/131__footer-before.scss */
  .bottom-cell .title {
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    padding: 4px 0 10px 0; }
  /* line 54, main/131__footer-before.scss */
  .bottom-cell .subtitle {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase; }

/* line 62, main/131__footer-before.scss */
.bottom-cell:hover .caption {
  background: black; }

/* line 65, main/131__footer-before.scss */
.bottom-cell:hover .inner {
  border-color: #a99a82; }

/* line 68, main/131__footer-before.scss */
.bottom-cell:hover .title {
  color: #a99a82; }

/* line 71, main/131__footer-before.scss */
.bottom-cell:hover .subtitle {
  color: #a99a82; }

/* line 78, main/131__footer-before.scss */
.fb-inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: flex-start;
  padding: 20px; }
  /* line 85, main/131__footer-before.scss */
  .fb-inner .cell {
    flex: 0 1 auto; }

/* line 90, main/131__footer-before.scss */
.a-fb {
  color: #000;
  font-size: 0;
  line-height: 1; }
  /* line 96, main/131__footer-before.scss */
  .a-fb > .area {
    background: #fff;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 20px;
    border-bottom: 3px solid #CDCED3; }
  /* line 104, main/131__footer-before.scss */
  .a-fb .cell {
    font-size: 14px;
    color: #000; }

/* line 115, main/131__footer-before.scss */
.cats > ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: flex-start;
  text-align: center; }
  /* line 121, main/131__footer-before.scss */
  .cats > ul > li {
    flex: 1 1 auto; }
    /* line 123, main/131__footer-before.scss */
    .cats > ul > li > a {
      font-size: 14px;
      color: #fff;
      background: #555555;
      background: linear-gradient(180deg, #555555 0%, #333333 100%); }
    /* line 129, main/131__footer-before.scss */
    .cats > ul > li > a.active {
      color: #fcb040; }
  /* line 134, main/131__footer-before.scss */
  .cats > ul > li + li {
    border-left: 1px solid #656565; }
  /* line 138, main/131__footer-before.scss */
  .cats > ul > li:first-child a {
    border-radius: 0 0 0 10px; }
  /* line 143, main/131__footer-before.scss */
  .cats > ul > li:last-child a {
    border-radius: 0 0 10px 0; }
  /* line 148, main/131__footer-before.scss */
  .cats > ul > li:hover a {
    background: linear-gradient(0deg, #555555 0%, #333333 100%); }
  /* line 154, main/131__footer-before.scss */
  .cats > ul > li.cat-1 > a {
    color: red !important; }
  /* line 157, main/131__footer-before.scss */
  .cats > ul > li.cat-1 > a.active {
    color: #fcb040 !important; }

@media (max-width: 768px) {
  /* line 170, main/131__footer-before.scss */
  .global .fb-inner {
    flex-flow: row wrap; }
  /* line 173, main/131__footer-before.scss */
  .global .footer .cell {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center; }
    /* line 177, main/131__footer-before.scss */
    .global .footer .cell + .cell {
      padding-top: 30px; } }
/* line 4, main/130__footer.scss */
.f-inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center; }
  /* line 9, main/130__footer.scss */
  .f-inner .cell {
    flex: 0 1 auto; }

/* line 14, main/130__footer.scss */
.a-f {
  background: rgba(255, 255, 255, 0.8);
  font-size: 0;
  line-height: 1; }
  /* line 20, main/130__footer.scss */
  .a-f a, .a-f a:focus, .a-f a:visited, .a-f a:active {
    color: #777;
    text-decoration: none; }
  /* line 24, main/130__footer.scss */
  .a-f a:hover {
    text-decoration: underline; }
  /* line 29, main/130__footer.scss */
  .a-f ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    border: none;
    background: none; }
    /* line 35, main/130__footer.scss */
    .a-f ul li {
      display: block; }
      /* line 37, main/130__footer.scss */
      .a-f ul li a {
        display: block;
        line-height: 1;
        padding: 8px 0;
        transition: all 0.5s ease;
        color: #fcb040; }
    /* line 46, main/130__footer.scss */
    .a-f ul li:hover a {
      color: #000; }
  /* line 55, main/130__footer.scss */
  .a-f .cell {
    font-size: 14px;
    color: #000; }
    /* line 61, main/130__footer.scss */
    .a-f .cell.creator {
      float: right; }
      /* line 63, main/130__footer.scss */
      .a-f .cell.creator a {
        display: inline-block;
        background: url("/img/icon_tios.png") no-repeat 0 0;
        font-size: 0;
        width: 50px;
        height: 30px; }
    /* line 72, main/130__footer.scss */
    .a-f .cell.text {
      text-align: center; }

/* line 81, main/130__footer.scss */
.we-social2 {
  display: block; }
  /* line 87, main/130__footer.scss */
  .we-social2 .we-social-a {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    margin: 0 10px 0 0; }
    /* line 97, main/130__footer.scss */
    .we-social2 .we-social-a.fb {
      background: transparent url("/img/we-social/chemodany-facebook.png") scroll no-repeat 0 0; }
    /* line 104, main/130__footer.scss */
    .we-social2 .we-social-a.gl {
      background: transparent url("/img/we-social/chemodany-google+.png") scroll no-repeat 0 0; }
    /* line 110, main/130__footer.scss */
    .we-social2 .we-social-a.in {
      background: transparent url("/img/we-social/instagram-logo.png") scroll no-repeat 0 0; }
    /* line 116, main/130__footer.scss */
    .we-social2 .we-social-a.yt {
      background: transparent url("/img/we-social/youtube-logo.png") scroll no-repeat 0 0; }
    /* line 123, main/130__footer.scss */
    .we-social2 .we-social-a.fb, .we-social2 .we-social-a.in, .we-social2 .we-social-a.yt, .we-social2 .we-social-a.gl {
      background-size: contain; }
      /* line 129, main/130__footer.scss */
      .we-social2 .we-social-a.fb:hover, .we-social2 .we-social-a.in:hover, .we-social2 .we-social-a.yt:hover, .we-social2 .we-social-a.gl:hover {
        opacity: 0.9; }

@media (max-width: 768px) {
  /* line 143, main/130__footer.scss */
  .global .f-inner {
    flex-flow: row wrap; }
  /* line 146, main/130__footer.scss */
  .global .a-f .cell {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center; }
    /* line 150, main/130__footer.scss */
    .global .a-f .cell + .cell {
      padding-top: 30px; } }
/* line 4, main/140__home.scss */
.front-slider {
  text-align: center !important; }
  /* line 6, main/140__home.scss */
  .front-slider .owl-item img {
    display: inline-block;
    width: 100%; }

/* line 12, main/140__home.scss */
.front-list {
  text-align: center; }

/* line 5, main/140__comments.scss */
.desc-review {
  width: 44%;
  min-width: 300px;
  float: right;
  margin: 0 0 20px 20px;
  border-left: 1px solid #d0d0d0;
  padding-left: 20px; }

/* line 15, main/140__comments.scss */
.p-reviews .title {
  font-size: 20px;
  color: grey;
  padding: 0 0 20px; }

/* line 21, main/140__comments.scss */
.p-comment {
  position: relative; }
  /* line 23, main/140__comments.scss */
  .p-comment + .p-comment {
    margin-top: 15px; }
  /* line 27, main/140__comments.scss */
  .p-comment .who {
    min-height: 30px; }
  /* line 30, main/140__comments.scss */
  .p-comment .rate {
    float: right; }
    /* line 32, main/140__comments.scss */
    .p-comment .rate .caption {
      display: none !important; }
    /* line 35, main/140__comments.scss */
    .p-comment .rate .rating-xs {
      font-size: 26px; }
  /* line 39, main/140__comments.scss */
  .p-comment .human {
    color: #fcb040;
    font-weight: 700;
    font-size: 16px; }
  /* line 45, main/140__comments.scss */
  .p-comment .text {
    padding: 20px 15px;
    background: #f2f2f2;
    border-radius: 0 10px 10px;
    font-size: 14px; }
  /* line 52, main/140__comments.scss */
  .p-comment.answer-yes {
    padding-left: 30px;
    margin-top: 1px; }
    /* line 55, main/140__comments.scss */
    .p-comment.answer-yes .human {
      color: #92764e; }
    /* line 58, main/140__comments.scss */
    .p-comment.answer-yes .text {
      background: #eaeaea; }
  /* line 64, main/140__comments.scss */
  .p-comment.answer-no .toggle-body.short .tgl-block .tgl-wall {
    background: linear-gradient(to bottom, transparent, #f2f2f2); }
  /* line 67, main/140__comments.scss */
  .p-comment.answer-no .toggle-body .tgl-block .tgl-panel {
    background: #f2f2f2; }
  /* line 71, main/140__comments.scss */
  .p-comment.answer-yes .toggle-body.short .tgl-block .tgl-wall {
    background: linear-gradient(to bottom, transparent, #cfcfcf); }
  /* line 74, main/140__comments.scss */
  .p-comment.answer-yes .toggle-body .tgl-block .tgl-panel {
    background: #cfcfcf; }

/* line 5, main/150__articles.scss */
.post {
  position: relative;
  margin: 0px 0px 10px 0px;
  padding: 12px 12px 10px 12px;
  min-height: 110px;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  font: 12px Arial;
  color: #000000; }
  /* line 22, main/000__var.scss */
  .post:after {
    display: block;
    content: "";
    clear: both; }
  /* line 17, main/150__articles.scss */
  .post .post-img {
    float: none;
    display: block;
    text-align: center;
    margin: 0 0 20px 0; }
  /* line 30, main/150__articles.scss */
  .post .date {
    position: relative;
    float: right;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    font: 10px Arial;
    color: #000000; }
  /* line 39, main/150__articles.scss */
  .post .title a {
    display: block;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    font-size: 18px;
    font-weight: bold;
    color: #92764e;
    text-decoration: none;
    text-transform: uppercase; }
  /* line 52, main/150__articles.scss */
  .post .preview {
    position: relative;
    margin: 10px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    font-size: 18px; }

/* line 4, main/550__global.scss */
.p-group {
  font-size: 0;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 10;
  width: 27px; }

/* line 13, main/550__global.scss */
.p-color {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 20px;
  border: 2px solid transparent;
  margin: 1px; }
  /* line 21, main/550__global.scss */
  .p-color:hover {
    border-color: #00ff00; }

/* line 26, main/550__global.scss */
.stickers {
  position: absolute;
  top: 0;
  font-size: 0; }
  /* line 30, main/550__global.scss */
  .stickers.s-left {
    left: 0;
    max-width: 55px; }
  /* line 34, main/550__global.scss */
  .stickers.s-right {
    right: 0; }

/* line 38, main/550__global.scss */
.d-sticker {
  text-align: center;
  display: inline-block;
  position: relative; }
  /* line 42, main/550__global.scss */
  .d-sticker i {
    display: inline-block;
    font-size: 50px;
    color: #dc3545; }
  /* line 48, main/550__global.scss */
  .d-sticker span {
    position: absolute;
    top: 17px;
    left: 0;
    right: 0;
    font-size: 14px;
    font-weight: bold;
    color: #fff; }

/* line 60, main/550__global.scss */
.c-sticker {
  display: inline-block;
  font-size: 40px; }
  /* line 63, main/550__global.scss */
  .c-sticker.rec {
    color: #fcb040; }

/* line 68, main/550__global.scss */
.expected {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  font-size: 30px;
  color: red;
  border: 1px solid red;
  padding: 2px 10px 5px 10px;
  background: rgba(255, 255, 255, 0.8);
  width: 200px;
  height: 40px;
  text-align: center;
  margin: -20px 0 0 -100px; }

/* line 7, main/550__prd-card.scss */
.prd-card,
.prd-inner {
  max-width: 100%;
  width: 340px; }
  /* line 11, main/550__prd-card.scss */
  .prd-card.mini,
  .prd-inner.mini {
    width: 340px; }

/* line 18, main/550__prd-card.scss */
.prd-card {
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  margin: 10px 1px;
  line-height: 1;
  z-index: 4;
  font-size: 14px; }

/* line 29, main/550__prd-card.scss */
.prd-inner {
  background: #fff;
  padding: 10px 8px;
  border: 1px solid #e9e9e9;
  border-radius: 0;
  position: relative;
  z-index: 5; }
  /* line 38, main/550__prd-card.scss */
  .prd-inner > div {
    overflow: hidden;
    width: 100%; }
  /* line 43, main/550__prd-card.scss */
  .prd-inner .name {
    height: 72px;
    line-height: 72px;
    text-align: left;
    padding-top: 10px;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: -7px;
    margin-right: -7px;
    border-top: 1px solid #e9e9e9;
    width: auto !important; }
    /* line 54, main/550__prd-card.scss */
    .prd-inner .name span {
      display: inline-block;
      vertical-align: top;
      line-height: 1;
      font-weight: 400;
      font-size: 18px;
      color: grey; }
  /* line 63, main/550__prd-card.scss */
  .prd-inner .photo {
    display: block;
    font-size: 0;
    text-align: center;
    width: 100%;
    padding: 0 0 100% 0;
    position: relative; }
    /* line 70, main/550__prd-card.scss */
    .prd-inner .photo .inn {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0; }
      /* line 71, main/550__prd-card.scss */
      .prd-inner .photo .inn:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 1px;
        margin: 0 -1px 0 0;
        height: 100%; }
    /* line 85, main/550__prd-card.scss */
    .prd-inner .photo img {
      vertical-align: middle;
      max-height: 100%; }
  /* line 90, main/550__prd-card.scss */
  .prd-inner .price {
    text-align: center;
    padding: 10px 0; }
    /* line 93, main/550__prd-card.scss */
    .prd-inner .price .old {
      font-weight: 400;
      font-size: 20px;
      color: silver;
      text-decoration: line-through;
      display: inline-block;
      vertical-align: middle; }
    /* line 101, main/550__prd-card.scss */
    .prd-inner .price .cur {
      font-weight: 700;
      color: #fcb040;
      font: 26px Arial;
      display: inline-block;
      vertical-align: middle; }
  /* line 109, main/550__prd-card.scss */
  .prd-inner .pcrd-buy {
    margin-left: 8px;
    padding: 7px 10px; }
  /* line 119, main/550__prd-card.scss */
  .prd-inner .extend {
    padding-top: 20px;
    left: 8px;
    right: 8px;
    text-align: left;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.7s; }
    /* line 135, main/550__prd-card.scss */
    .prd-inner .extend p {
      margin: 0 !important;
      padding: 0 !important;
      line-height: 1;
      font-size: 14px; }
    /* line 141, main/550__prd-card.scss */
    .prd-inner .extend p + p {
      margin-top: 7px !important;
      padding-top: 7px !important;
      border-top: 1px dashed silver; }

/* line 148, main/550__prd-card.scss */
.prd-card:hover {
  overflow: visible;
  z-index: 6; }
  /* line 153, main/550__prd-card.scss */
  .prd-card:hover .prd-inner {
    z-index: 7;
    border: 1px solid #fcb040; }

/* line 175, main/550__prd-card.scss */
html.home .prd-card, html.home .prd-inner {
  width: 320px; }

@media (max-width: 768px) {
  /* line 182, main/550__prd-card.scss */
  .prd-card:hover {
    overflow: hidden; }
    /* line 185, main/550__prd-card.scss */
    .prd-card:hover .prd-inner {
      position: relative;
      box-shadow: none; }
    /* line 190, main/550__prd-card.scss */
    .prd-card:hover .extend {
      display: none !important;
      position: absolute; } }
/* line 4, main/551__prd-index.scss */
.back {
  text-align: center; }

@media (max-width: 768px) {
  /* line 8, main/551__prd-index.scss */
  .back {
    display: block !important; } }
/* line 12, main/551__prd-index.scss */
.back-cat {
  border: 2px solid #92764e;
  border-radius: 10px;
  font-size: 18px; }

/* line 19, main/551__prd-index.scss */
.prd-list {
  font-size: 0;
  line-height: 1; }

/* line 25, main/551__prd-index.scss */
.list-options {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 0;
  border-top: 1px dashed silver;
  border-bottom: 1px dashed silver; }

/* line 36, main/551__prd-index.scss */
.option-cell {
  flex: 0 1 auto;
  line-height: 1; }
  /* line 39, main/551__prd-index.scss */
  .option-cell label, .option-cell .two-points, .option-cell select {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    line-height: 1;
    margin: 0; }
  /* line 46, main/551__prd-index.scss */
  .option-cell + .option-cell {
    padding-left: 20px; }
  /* line 50, main/551__prd-index.scss */
  .option-cell .two-points {
    margin-right: 7px; }

/* line 54, main/551__prd-index.scss */
[data-preference="pd_view"] {
  display: inline-block;
  vertical-align: middle;
  font-size: 40px;
  color: silver;
  line-height: 1; }
  /* line 61, main/551__prd-index.scss */
  [data-preference="pd_view"].active {
    color: #333; }

/* line 66, main/551__prd-index.scss */
.product-index {
  text-align: center; }
  /* line 69, main/551__prd-index.scss */
  .product-index h1 {
    margin: 0 0 20px 0;
    line-height: 1.1;
    min-height: 40px;
    text-align: center; }
  /* line 80, main/551__prd-index.scss */
  .product-index .pagination {
    justify-content: center; }
  /* line 84, main/551__prd-index.scss */
  .product-index .desc {
    padding: 40px 0; }
  /* line 88, main/551__prd-index.scss */
  .product-index > .run-anim:after {
    width: 100px;
    height: 100px;
    border-color: #333 transparent #333 transparent; }

/* line 98, main/551__prd-index.scss */
.link-more {
  display: block;
  margin: 40px auto;
  font-size: 20px;
  background: #333;
  color: #fff;
  padding: 10px 30px 12px 30px;
  border-radius: 6px;
  transition: all 0.5s ease; }
  /* line 107, main/551__prd-index.scss */
  .link-more:hover {
    background: #fcb040; }
  /* line 111, main/551__prd-index.scss */
  .link-more .lm-text {
    display: inline-block;
    vertical-align: middle; }
  /* line 116, main/551__prd-index.scss */
  .link-more .run-anim {
    vertical-align: middle;
    margin-left: 10px; }

/* line 5, main/551__prd-view.scss */
.product-view > h1 {
  position: relative;
  margin: 15px 0px 15px 0px;
  padding: 0px 0px 5px 3px;
  font: 38px Arial;
  color: #333333;
  border-bottom: 1px solid #f1f1f1; }

/* line 29, main/551__prd-view.scss */
.avl-label {
  display: inline-block;
  padding: 0 10px 2px 10px;
  font-size: 14px;
  font-weight: bold; }

/* line 36, main/551__prd-view.scss */
.product-view.avl-yes .avl-label {
  color: green;
  border: 2px solid green; }

/* line 42, main/551__prd-view.scss */
.product-view.avl-no .avl-label {
  color: red;
  border: 2px solid red; }

/* line 50, main/551__prd-view.scss */
.photos {
  font-size: 0;
  line-height: 1;
  text-align: center;
  border: 1px solid #f3f3f3; }
  /* line 60, main/551__prd-view.scss */
  .photos a.main {
    display: inline-block;
    position: relative;
    height: 400px;
    line-height: 400px;
    font-size: 0; }
    /* line 66, main/551__prd-view.scss */
    .photos a.main img {
      line-height: 1;
      max-height: 100%;
      width: auto !important;
      display: inline-block !important;
      vertical-align: middle; }

/* line 90, main/551__prd-view.scss */
.general {
  background: #f7f7f7;
  border: 1px solid #f4f4f4;
  border-radius: 0;
  font-size: 0; }
  /* line 97, main/551__prd-view.scss */
  .general > .title {
    background: #434343;
    color: #fff;
    text-align: center;
    font: 18px Arial;
    padding: 5px; }

/* line 105, main/551__prd-view.scss */
.buybox {
  padding: 20px 25px; }
  /* line 107, main/551__prd-view.scss */
  .buybox > div {
    font-size: 14px; }

/* line 116, main/551__prd-view.scss */
.product-detail .price {
  text-align: center; }
  /* line 118, main/551__prd-view.scss */
  .product-detail .price > div {
    display: inline-block; }
  /* line 121, main/551__prd-view.scss */
  .product-detail .price .lbl {
    color: #505050;
    font-size: 18px; }
  /* line 125, main/551__prd-view.scss */
  .product-detail .price .old {
    color: #bbb;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin: 0 auto; }
    /* line 131, main/551__prd-view.scss */
    .product-detail .price .old:after {
      display: block;
      content: "";
      position: absolute;
      top: 55%;
      left: 0;
      right: 0;
      height: 2px;
      background: #bbb; }
  /* line 142, main/551__prd-view.scss */
  .product-detail .price .cur {
    color: #a99a82;
    font-size: 40px;
    font-weight: 700;
    line-height: 1; }

/* line 151, main/551__prd-view.scss */
.prop-btn {
  box-shadow: none;
  background: none;
  border: 2px solid silver;
  border-radius: 10px;
  height: 100%;
  padding: 5px 10px;
  font-size: 20px;
  transition: all 0.4s ease;
  outline: none; }
  /* line 161, main/551__prd-view.scss */
  .prop-btn::-moz-focus-inner {
    border: 0; }
  /* line 164, main/551__prd-view.scss */
  .prop-btn:hover {
    border-color: #434343; }
  /* line 167, main/551__prd-view.scss */
  .prop-btn.selected {
    border-color: #fcb040;
    color: #fcb040; }

/* line 174, main/551__prd-view.scss */
.buy {
  text-align: center; }
  /* line 176, main/551__prd-view.scss */
  .buy .avl-label {
    display: inline-block;
    vertical-align: middle;
    font-size: 26px;
    font-weight: 700; }
  /* line 182, main/551__prd-view.scss */
  .buy [data-action="cart-add"] {
    font-size: 30px;
    font-weight: 700;
    margin: 20px 0; }

/* line 192, main/551__prd-view.scss */
.actions {
  text-align: center;
  border-top: 1px dashed #bbb;
  padding: 15px 20px;
  background: #f7f7f7; }
  /* line 197, main/551__prd-view.scss */
  .actions + .link-list {
    border-top: 1px dashed #bbb; }
  /* line 205, main/551__prd-view.scss */
  .actions .btn {
    margin: 5px; }

/* line 210, main/551__prd-view.scss */
.buybox .properties {
  margin-top: 20px;
  padding: 10px 0;
  border-top: 1px dashed grey;
  border-bottom: 1px dashed grey; }
  /* line 219, main/551__prd-view.scss */
  .buybox .properties label.prop-inp {
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px 0 0; }
  /* line 224, main/551__prd-view.scss */
  .buybox .properties select {
    display: inline-block;
    vertical-align: middle; }

/* line 232, main/551__prd-view.scss */
.properties-info {
  padding: 0;
  font-size: 0; }
  /* line 237, main/551__prd-view.scss */
  .properties-info .prop-item {
    border-bottom: 1px solid #f7f7f7; }
    /* line 239, main/551__prd-view.scss */
    .properties-info .prop-item:nth-child(odd) {
      background: #fff; }
    /* line 242, main/551__prd-view.scss */
    .properties-info .prop-item:nth-child(even) {
      background: #fafafa; }
    /* line 245, main/551__prd-view.scss */
    .properties-info .prop-item .lbl,
    .properties-info .prop-item .param {
      font-size: 16px;
      font-weight: 300;
      width: 49.99%;
      display: inline-block;
      padding: 10px 20px;
      border-right: 1px solid #f7f7f7;
      margin-right: -1px; }
    /* line 257, main/551__prd-view.scss */
    .properties-info .prop-item .param {
      border-left: 1px solid #f7f7f7; }

/* line 267, main/551__prd-view.scss */
.prod-tabs {
  margin-top: 40px; }
  /* line 269, main/551__prd-view.scss */
  .prod-tabs .nav-tabs {
    border-bottom: 2px solid #434343; }
  /* line 272, main/551__prd-view.scss */
  .prod-tabs .nav-tabs .nav-item {
    margin-bottom: -2px; }
  /* line 275, main/551__prd-view.scss */
  .prod-tabs .nav-tabs .nav-link {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    border: 2px solid #434343 !important;
    background-color: #a99a82;
    border-bottom-color: #434343;
    border-width: 0 0 2px 0 !important;
    margin: 0 4px 0 0; }
  /* line 285, main/551__prd-view.scss */
  .prod-tabs .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #434343; }
  /* line 294, main/551__prd-view.scss */
  .prod-tabs .tab-content {
    padding: 20px;
    border: 1px solid #f1f1f1;
    border-top-width: 0; }
    /* line 298, main/551__prd-view.scss */
    .prod-tabs .tab-content p {
      margin: 0 0 20px 0; }

/* line 315, main/551__prd-view.scss */
.product-view .cities {
  margin: 20px 0 0 0;
  padding: 20px 0 0 0;
  border-top: 1px solid silver; }
  /* line 318, main/551__prd-view.scss */
  .product-view .cities a {
    color: #fcb040; }
/* line 323, main/551__prd-view.scss */
.product-view .pics {
  padding: 30px 0 0 0;
  text-align: center; }
  /* line 326, main/551__prd-view.scss */
  .product-view .pics .title {
    font-size: 30px;
    padding: 2px 0 10px 0;
    margin: 0;
    font-weight: bold; }
    /* line 331, main/551__prd-view.scss */
    .product-view .pics .title span {
      color: grey; }
  /* line 335, main/551__prd-view.scss */
  .product-view .pics a {
    display: inline-block;
    vertical-align: top;
    border: 1px solid silver;
    padding: 5px;
    font-size: 0;
    height: 212px;
    line-height: 200px;
    margin-top: 10px;
    text-decoration: none !important; }
    /* line 345, main/551__prd-view.scss */
    .product-view .pics a:after {
      display: none !important; }
    /* line 348, main/551__prd-view.scss */
    .product-view .pics a img {
      display: inline-block;
      vertical-align: middle; }
  /* line 353, main/551__prd-view.scss */
  .product-view .pics a:hover {
    border-color: #333; }
  /* line 356, main/551__prd-view.scss */
  .product-view .pics a + a {
    margin-left: 10px; }

/* line 371, main/551__prd-view.scss */
.city-more, .city-hide {
  text-decoration: none;
  color: #434343;
  display: inline-block;
  margin-left: 6px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  -webkit-transition: all 1s ease;
  transition: all 1s ease; }

/* line 382, main/551__prd-view.scss */
.city-hide:after,
.city-more:after {
  content: "";
  display: block;
  border-bottom: 1px solid #434343;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease; }

/* line 395, main/551__prd-view.scss */
.city-hide:hover,
.city-more:hover {
  text-decoration: none;
  /*color: #fba128;*/ }

/* line 400, main/551__prd-view.scss */
.city-hide:hover:after,
.city-more:hover:after {
  border-bottom: 1px solid transparent; }

/* line 413, main/551__prd-view.scss */
.widget {
  margin: 40px 0 0 0; }
  /* line 415, main/551__prd-view.scss */
  .widget .head {
    border-bottom: 2px solid #434343; }
  /* line 418, main/551__prd-view.scss */
  .widget .title {
    display: inline-block;
    border-radius: 0;
    padding: 4px 0;
    color: #434343;
    font-size: 20px;
    margin: 0; }
  /* line 429, main/551__prd-view.scss */
  .widget .body {
    padding: 20px 10px; }

/* line 442, main/551__prd-view.scss */
.w-sales .more {
  text-align: right; }
  /* line 444, main/551__prd-view.scss */
  .w-sales .more a {
    font-weight: bold;
    text-decoration: underline; }

/* line 467, main/551__prd-view.scss */
.photos {
  position: relative; }

/* line 471, main/551__prd-view.scss */
body #photos_mini {
  padding: 2px;
  background: #f7f7f7; }
  /* line 486, main/551__prd-view.scss */
  body #photos_mini .owl-stage-outer {
    padding: 2px; }
  /* line 490, main/551__prd-view.scss */
  body #photos_mini .owl-item {
    cursor: pointer;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0); }
    /* line 497, main/551__prd-view.scss */
    body #photos_mini .owl-item img {
      margin: 0;
      padding: 2px;
      height: 90px !important;
      width: auto;
      display: inline-block; }
  /* line 507, main/551__prd-view.scss */
  body #photos_mini .owl-item.current {
    border-color: orange; }
  /* line 514, main/551__prd-view.scss */
  body #photos_mini .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: -1px; }
    /* line 519, main/551__prd-view.scss */
    body #photos_mini .owl-nav button {
      position: absolute;
      width: 20px;
      height: 104px;
      outline: none; }
      /* line 525, main/551__prd-view.scss */
      body #photos_mini .owl-nav button:hover {
        background: #f0f5e2; }
    /* line 529, main/551__prd-view.scss */
    body #photos_mini .owl-nav .owl-prev {
      left: -23px;
      right: auto; }
      /* line 532, main/551__prd-view.scss */
      body #photos_mini .owl-nav .owl-prev:after {
        content: "\f053";
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        font-family: "Font Awesome 5 Free";
        font-size: 20px;
        font-weight: 900; }
    /* line 543, main/551__prd-view.scss */
    body #photos_mini .owl-nav .owl-next {
      right: -23px;
      left: auto; }
      /* line 546, main/551__prd-view.scss */
      body #photos_mini .owl-nav .owl-next:after {
        font-weight: 900;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        content: "\f054";
        font-family: "Font Awesome 5 Free";
        font-size: 20px; }

/* line 610, main/551__prd-view.scss */
.stickers.s-left {
  top: 10px;
  left: 10px;
  max-width: 55px;
  z-index: 11; }

@media (max-width: 500px) {
  /* line 627, main/551__prd-view.scss */
  .prod-tabs .nav-tabs {
    border: none;
    justify-content: center; }

  /* line 631, main/551__prd-view.scss */
  .prod-tabs .nav-tabs .nav-link {
    border: none;
    border-width: 0 !important;
    border-radius: 6px;
    margin: 2px; }

  /* line 637, main/551__prd-view.scss */
  .prod-tabs .tab-content {
    border-top-width: 1px;
    margin-top: 2px;
    padding: 5px; }

  /* line 643, main/551__prd-view.scss */
  .wrapper > .content > .area-padding {
    padding-left: 0;
    padding-right: 0; } }
/* line 5, main/551__prd-view-near.scss */
.near .list {
  text-align: center; }
  /* line 8, main/551__prd-view-near.scss */
  .near .list + .list {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid silver; }
/* line 14, main/551__prd-view-near.scss */
.near .title {
  font-size: 20px;
  color: #000;
  text-align: left;
  margin: 0 20px;
  font-weight: 700; }
  /* line 21, main/551__prd-view-near.scss */
  .near .title a {
    position: relative;
    text-decoration: none !important;
    transition: all 0.5s; }
    /* line 26, main/551__prd-view-near.scss */
    .near .title a:after {
      content: "";
      display: block;
      border-bottom: 1px solid #009600;
      width: 100%;
      height: 1px;
      position: absolute;
      top: 100%;
      left: 0;
      transition: all 0.5s; }
  /* line 38, main/551__prd-view-near.scss */
  .near .title a:hover {
    color: #fcb040; }
    /* line 40, main/551__prd-view-near.scss */
    .near .title a:hover:after {
      border-bottom: 1px solid #fcb040; }

/* line 5, main/551__prd-view-link.scss */
.prd-link {
  text-align: center !important;
  line-height: 1;
  border: 1px solid transparent;
  padding: 10px 5px;
  background: #fff;
  border-radius: 5px;
  width: 90px;
  transition: all .7s ease;
  display: inline-block;
  margin: 2px;
  text-decoration: none !important; }
  /* line 19, main/551__prd-view-link.scss */
  .prd-link .name {
    display: block;
    font-size: 0;
    margin: 0 0 10px;
    height: 24px;
    line-height: 24px;
    overflow: hidden; }
    /* line 26, main/551__prd-view-link.scss */
    .prd-link .name span {
      display: inline-block;
      vertical-align: middle;
      font-size: 12px;
      line-height: 1; }
  /* line 33, main/551__prd-view-link.scss */
  .prd-link .photo {
    display: block;
    height: 50px; }
  /* line 37, main/551__prd-view-link.scss */
  .prd-link img {
    display: inline-block !important; }
  /* line 40, main/551__prd-view-link.scss */
  .prd-link .cost {
    display: block;
    font-size: 14px;
    padding: 10px 0 0;
    font-weight: 700; }
    /* line 46, main/551__prd-view-link.scss */
    .prd-link .cost .old {
      display: block;
      text-decoration: line-through;
      font-size: 12px;
      font-weight: 400;
      color: silver;
      height: 12px; }
    /* line 54, main/551__prd-view-link.scss */
    .prd-link .cost .cur {
      display: block; }

/* line 59, main/551__prd-view-link.scss */
.prd-link.avl-no {
  background: #e8e6e6; }
  /* line 62, main/551__prd-view-link.scss */
  .prd-link.avl-no .name span {
    color: grey; }
  /* line 69, main/551__prd-view-link.scss */
  .prd-link.avl-no .cost .cur {
    color: grey; }

/* line 75, main/551__prd-view-link.scss */
.prd-link:hover {
  border-color: #fba128; }

/* line 79, main/551__prd-view-link.scss */
.link-list {
  background: #f7f7f7;
  border: 1px solid #f4f4f4;
  border-radius: 0;
  padding: 25px 20px;
  font-size: 0;
  text-align: center; }
  /* line 87, main/551__prd-view-link.scss */
  .link-list + .link-list {
    padding-top: 0; }
  /* line 91, main/551__prd-view-link.scss */
  .link-list .title {
    font-size: 16px;
    padding: 0 0 7px;
    font-weight: 700; }
  /* line 97, main/551__prd-view-link.scss */
  .link-list .list {
    padding: 0 40px; }

/* line 104, main/551__prd-view-link.scss */
body .link-list .owl-carousel .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0;
  line-height: 1; }
  /* line 111, main/551__prd-view-link.scss */
  body .link-list .owl-carousel .owl-nav i {
    font-size: 20px;
    color: #333 !important; }
  /* line 116, main/551__prd-view-link.scss */
  body .link-list .owl-carousel .owl-nav button.owl-prev,
  body .link-list .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 55px;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    height: 30px;
    width: 30px; }
    /* line 125, main/551__prd-view-link.scss */
    body .link-list .owl-carousel .owl-nav button.owl-prev:hover,
    body .link-list .owl-carousel .owl-nav button.owl-next:hover {
      background: #333;
      color: #fff !important; }
      /* line 128, main/551__prd-view-link.scss */
      body .link-list .owl-carousel .owl-nav button.owl-prev:hover i,
      body .link-list .owl-carousel .owl-nav button.owl-next:hover i {
        color: #fff !important; }
  /* line 133, main/551__prd-view-link.scss */
  body .link-list .owl-carousel .owl-nav button.owl-prev {
    left: -40px;
    right: auto; }
    /* line 136, main/551__prd-view-link.scss */
    body .link-list .owl-carousel .owl-nav button.owl-prev i {
      margin-right: 2px; }
  /* line 140, main/551__prd-view-link.scss */
  body .link-list .owl-carousel .owl-nav button.owl-next {
    right: -40px;
    left: auto; }
    /* line 143, main/551__prd-view-link.scss */
    body .link-list .owl-carousel .owl-nav button.owl-next i {
      margin-left: 2px; }

/* line 4, main/552__filter.scss */
#filter-widget {
  font-size: 12px;
  color: #000; }
  /* line 8, main/552__filter.scss */
  #filter-widget .head {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    min-height: 40px;
    margin: 0 0 20px 0; }

/* line 20, main/552__filter.scss */
.property-block.price-range .range {
  text-align: center; }
  /* line 22, main/552__filter.scss */
  .property-block.price-range .range .min-max {
    padding: 10px 0 0 0; }
  /* line 25, main/552__filter.scss */
  .property-block.price-range .range .range-txt {
    display: inline-block;
    vertical-align: middle; }
    /* line 28, main/552__filter.scss */
    .property-block.price-range .range .range-txt.lbl {
      font-size: 14px;
      padding: 0 4px; }
    /* line 32, main/552__filter.scss */
    .property-block.price-range .range .range-txt.val {
      width: 70px;
      text-align: center;
      background: #fff;
      box-shadow: none;
      border: 1px solid silver;
      font-size: 18px;
      border-radius: 0; }
/* line 43, main/552__filter.scss */
.property-block.price-range .ui-slider {
  margin: 10px 16px;
  background: #878787;
  border: none;
  border-radius: 0;
  height: 5px; }
  /* line 49, main/552__filter.scss */
  .property-block.price-range .ui-slider .ui-slider-range {
    background: #fcb040; }
  /* line 52, main/552__filter.scss */
  .property-block.price-range .ui-slider .ui-slider-handle {
    top: -7px;
    margin-left: -.6em;
    border-radius: 18px;
    background: #e6e6e6;
    border: 1px solid #e6e6e6;
    cursor: pointer; }
    /* line 59, main/552__filter.scss */
    .property-block.price-range .ui-slider .ui-slider-handle:hover {
      background: #cacaca; }
/* line 64, main/552__filter.scss */
.property-block.price-range button.wc-btn.wc-primary {
  padding: 3px 10px;
  font-size: 12px;
  font-weight: normal;
  vertical-align: middle; }

/* line 81, main/552__filter.scss */
.property-name {
  color: #fff;
  padding: 9px 10px 12px 10px;
  position: relative;
  border-radius: 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  background: #555555;
  background: linear-gradient(180deg, #555555 0%, #333333 100%); }

/* line 115, main/552__filter.scss */
.property-values {
  margin: 0;
  padding: 10px 0 40px 0; }
  /* line 119, main/552__filter.scss */
  .property-values .li {
    list-style: none;
    padding: 10px 42px 7px 36px;
    font-size: 12px;
    clear: both;
    position: relative;
    overflow: hidden; }
  /* line 129, main/552__filter.scss */
  .property-values .li.color .filter-label {
    border: none;
    background-color: #f1f1f1; }
  /* line 135, main/552__filter.scss */
  .property-values .li.color .filter-label[style="background-color: transparent"] {
    background: -webkit-linear-gradient(left, orange, yellow, green, cyan, blue, violet);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, orange, yellow, green, cyan, blue, violet);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, orange, yellow, green, cyan, blue, violet);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, orange, yellow, green, cyan, blue, violet);
    /* Standard syntax (must be last) */ }
  /* line 144, main/552__filter.scss */
  .property-values .li.active-no .filter-text {
    color: silver; }
  /* line 147, main/552__filter.scss */
  .property-values .li.active-no .filter-count {
    color: silver; }
  /* line 152, main/552__filter.scss */
  .property-values .li.color.check-yes .filter-label {
    border: 2px solid #333 !important; }
  /* line 158, main/552__filter.scss */
  .property-values .li.check-yes .filter-label[style="background-color: transparent"] {
    border: 2px solid #333 !important; }
  /* line 161, main/552__filter.scss */
  .property-values .li.check-yes .filter-label[style^="background:"] {
    border: 2px solid #333 !important; }
  /* line 164, main/552__filter.scss */
  .property-values .li.check-yes .filter-text {
    color: #333; }
  /* line 167, main/552__filter.scss */
  .property-values .li.check-yes .filter-count {
    color: #333; }
  /* line 172, main/552__filter.scss */
  .property-values .li:hover .filter-label {
    color: #fcb040 !important; }
  /* line 178, main/552__filter.scss */
  .property-values .li:hover .filter-text {
    text-decoration: none;
    color: #fcb040 !important; }
  /* line 185, main/552__filter.scss */
  .property-values .prop-second-area {
    transition: height 1.5s ease;
    overflow: hidden;
    height: auto; }
    /* line 189, main/552__filter.scss */
    .property-values .prop-second-area.not-visible {
      height: 0; }
  /* line 194, main/552__filter.scss */
  .property-values .prop-more-area {
    display: inline-block;
    margin: 10px 0 20px 0;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer; }
    /* line 202, main/552__filter.scss */
    .property-values .prop-more-area.not-visible {
      color: #000; }

/* line 22, main/000__var.scss */
.filter-panel:after {
  display: block;
  content: "";
  clear: both; }
/* line 229, main/552__filter.scss */
.filter-panel .filter-toggle {
  line-height: 1;
  cursor: pointer;
  transition: all 0.5s;
  box-shadow: none;
  border: 1px solid #a99a82;
  background: #a99a82;
  font-size: 14px;
  color: #fff;
  border-radius: 6px;
  font-weight: 400;
  padding: 10px 20px;
  margin-bottom: 30px;
  display: none; }
/* line 247, main/552__filter.scss */
.filter-panel .filter-reset {
  color: #a99a82 !important;
  background: #fff !important; }

/* line 259, main/552__filter.scss */
.filter-flag {
  position: absolute;
  left: -9000px; }

/* line 263, main/552__filter.scss */
.filter-label {
  cursor: pointer;
  margin: 0;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 5px;
  top: 7px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border: 1px solid silver;
  border-radius: 4px;
  font-size: 0;
  line-height: 1; }
  /* line 278, main/552__filter.scss */
  .filter-label i {
    font-size: 18px;
    padding: 2px 0 0 2px;
    opacity: 0; }
  /* line 286, main/552__filter.scss */
  .filter-label.check-yes {
    border-color: #333;
    background: #333;
    color: #fff; }
    /* line 292, main/552__filter.scss */
    .filter-label.check-yes i {
      opacity: 1; }
  /* line 296, main/552__filter.scss */
  .filter-label.active-yes {
    cursor: pointer; }

/* line 300, main/552__filter.scss */
.filter-count {
  position: absolute;
  top: 8px;
  right: 5px;
  color: #000;
  font-size: 14px;
  font-weight: bold; }

/* line 308, main/552__filter.scss */
.filter-text {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1; }
  /* line 314, main/552__filter.scss */
  .filter-text:hover, .filter-text:active, .filter-text:focus, .filter-text:visited {
    text-decoration: none;
    color: #000; }

/* line 7, main/555__cart-index.scss */
.cart-index h1 {
  text-align: center; }
/* line 12, main/555__cart-index.scss */
.cart-index form label {
  line-height: 1;
  font-size: 16px;
  text-align: right;
  padding-right: 0; }
/* line 22, main/555__cart-index.scss */
.cart-index form .is-required:after {
  margin-left: 0; }

/* line 34, main/555__cart-index.scss */
.cart-tools {
  padding: 0 0 40px 0;
  text-align: right; }
  /* line 22, main/000__var.scss */
  .cart-tools:after {
    display: block;
    content: "";
    clear: both; }
  /* line 39, main/555__cart-index.scss */
  .cart-tools .cart-clear {
    color: #92764e;
    padding: 0;
    transition: all 0.5s ease;
    text-decoration: underline;
    font-weight: bold; }

/* line 55, main/555__cart-index.scss */
.cart-total {
  padding: 20px 0 40px 0;
  text-align: right; }

/* line 59, main/555__cart-index.scss */
.cart-resume {
  display: inline-block;
  margin-right: 20px;
  font-size: 20px;
  color: grey; }

/* line 65, main/555__cart-index.scss */
.cart-sum {
  display: inline-block;
  font-size: 20px;
  color: #fcb040;
  font-weight: bold; }

/* line 73, main/555__cart-index.scss */
.steps {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0;
  line-height: 1; }
  /* line 82, main/555__cart-index.scss */
  .steps button {
    flex: 0 1 auto;
    font-size: 30px; }
    /* line 86, main/555__cart-index.scss */
    .steps button i {
      transition: all 0.5s ease; }
    /* line 90, main/555__cart-index.scss */
    .steps button:hover i {
      color: #fcb040; }
  /* line 95, main/555__cart-index.scss */
  .steps input {
    flex: 0 2 auto;
    font-size: 20px;
    max-width: 50px;
    padding: 0;
    height: auto;
    text-align: center;
    font-weight: bold; }

/* line 108, main/555__cart-index.scss */
.cart-item {
  font-size: 0;
  line-height: 1;
  border-top: 1px dotted silver;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px 0; }
  /* line 117, main/555__cart-index.scss */
  .cart-item:last-of-type {
    border-bottom: 1px dotted silver; }
  /* line 129, main/555__cart-index.scss */
  .cart-item .acts {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px; }
  /* line 135, main/555__cart-index.scss */
  .cart-item .ci-delete {
    font-size: 30px; }
    /* line 137, main/555__cart-index.scss */
    .cart-item .ci-delete i {
      color: #8e2531;
      transition: all 0.5s ease; }
    /* line 142, main/555__cart-index.scss */
    .cart-item .ci-delete:hover i {
      color: #dc3545; }
  /* line 148, main/555__cart-index.scss */
  .cart-item .info {
    flex: 1 1 70%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center; }
  /* line 161, main/555__cart-index.scss */
  .cart-item .image {
    flex: 1 1 30%;
    text-align: center; }
    /* line 164, main/555__cart-index.scss */
    .cart-item .image img {
      max-height: 100px; }
  /* line 168, main/555__cart-index.scss */
  .cart-item .text {
    flex: 1 1 70%; }
    /* line 171, main/555__cart-index.scss */
    .cart-item .text > a, .cart-item .text div {
      display: block;
      text-align: left; }
  /* line 176, main/555__cart-index.scss */
  .cart-item .name {
    font-size: 16px;
    color: #333 !important;
    padding: 0 0 10px 0;
    font-weight: 700; }
  /* line 182, main/555__cart-index.scss */
  .cart-item .code {
    font-size: 16px;
    color: #000 !important;
    padding: 0 0 10px 0; }
    /* line 186, main/555__cart-index.scss */
    .cart-item .code .value {
      color: #92764e;
      font-weight: 700; }
  /* line 191, main/555__cart-index.scss */
  .cart-item .cart-params {
    font-size: 16px;
    color: #333 !important;
    padding: 0 0 10px 0; }
    /* line 195, main/555__cart-index.scss */
    .cart-item .cart-params .param-value {
      font-weight: 700; }
  /* line 199, main/555__cart-index.scss */
  .cart-item .price {
    font-size: 16px; }
    /* line 201, main/555__cart-index.scss */
    .cart-item .price .value {
      color: #92764e;
      font-weight: bold; }
  /* line 209, main/555__cart-index.scss */
  .cart-item .amount {
    flex: 1 1 30%;
    text-align: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center; }
  /* line 219, main/555__cart-index.scss */
  .cart-item .steps {
    flex: 0 1 50%; }
    /* line 221, main/555__cart-index.scss */
    .cart-item .steps .ci-step {
      color: silver; }
    /* line 224, main/555__cart-index.scss */
    .cart-item .steps .ci-quantity {
      margin: 0 5px; }
  /* line 229, main/555__cart-index.scss */
  .cart-item .ci-amount {
    flex: 0 1 50%;
    font-size: 20px;
    font-weight: bold;
    color: #92764e;
    text-align: right; }

/* line 242, main/555__cart-index.scss */
.order-head {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  padding: 3px;
  color: #000;
  margin: 0 0 40px 0;
  border-bottom: 1px dotted silver; }

/* line 254, main/555__cart-index.scss */
.order-submit {
  margin: 0 0 40px 0; }
  /* line 257, main/555__cart-index.scss */
  .order-submit .wc-btn.wc-primary {
    padding: 10px 20px 12px 20px;
    font-size: 20px; }

/* line 276, main/555__cart-index.scss */
.modal .cart-item {
  flex-flow: row wrap; }
/* line 279, main/555__cart-index.scss */
.modal .cart-item .info {
  flex: 0 1 100%;
  padding: 0 0 20px 0; }
/* line 283, main/555__cart-index.scss */
.modal .cart-item .name {
  padding: 0 50px 10px 0; }
/* line 286, main/555__cart-index.scss */
.modal .cart-item .amount {
  flex: 0 1 100%;
  justify-content: flex-end; }
  /* line 289, main/555__cart-index.scss */
  .modal .cart-item .amount .steps {
    flex: 0 1 auto; }
  /* line 292, main/555__cart-index.scss */
  .modal .cart-item .amount .ci-amount {
    flex: 0 1 auto;
    min-width: 120px; }

@media (max-width: 800px) {
  /* line 299, main/555__cart-index.scss */
  .cart-item {
    flex-flow: row wrap; }

  /* line 302, main/555__cart-index.scss */
  .cart-item .info {
    flex: 0 1 100%;
    padding: 0 0 20px 0; }

  /* line 306, main/555__cart-index.scss */
  .cart-item .name {
    padding: 0 50px 10px 0; }

  /* line 309, main/555__cart-index.scss */
  .cart-item .amount {
    flex: 0 1 100%;
    justify-content: flex-end; }
    /* line 312, main/555__cart-index.scss */
    .cart-item .amount .steps {
      flex: 0 1 auto; }
    /* line 315, main/555__cart-index.scss */
    .cart-item .amount .ci-amount {
      flex: 0 1 auto;
      min-width: 120px; } }
/* line 323, main/555__cart-index.scss */
.modal .cart-index form label {
  text-align: left;
  padding-right: 15px; }

/* line 329, main/555__cart-index.scss */
.invalid-feedback {
  display: block !important; }

@media (max-width: 576px) {
  /* line 334, main/555__cart-index.scss */
  .cart-index form label {
    text-align: left;
    padding-right: 15px; } }
/* line 4, main/556__compare.scss */
.compare-page {
  text-align: center; }
  /* line 7, main/556__compare.scss */
  .compare-page textarea {
    resize: none;
    display: block;
    width: 100%; }
  /* line 12, main/556__compare.scss */
  .compare-page .fast-copy {
    box-shadow: none;
    border: none;
    background: none;
    text-decoration: underline;
    padding: 0; }
  /* line 20, main/556__compare.scss */
  .compare-page .body {
    text-align: left; }
  /* line 24, main/556__compare.scss */
  .compare-page .tools {
    padding: 0 0 20px 0;
    text-align: right; }
  /* line 29, main/556__compare.scss */
  .compare-page .compare-products a.p-name {
    text-decoration: none !important;
    line-height: 1;
    display: block;
    padding: 0 0 20px 0;
    height: 70px; }
    /* line 35, main/556__compare.scss */
    .compare-page .compare-products a.p-name:after {
      display: none !important; }
  /* line 39, main/556__compare.scss */
  .compare-page .compare-products .price-cell {
    font-size: 20px;
    color: #333; }
  /* line 43, main/556__compare.scss */
  .compare-page .compare-products .controls {
    padding-top: 20px; }
  /* line 47, main/556__compare.scss */
  .compare-page .compare-products table {
    width: 100%;
    table-layout: fixed; }
  /* line 51, main/556__compare.scss */
  .compare-page .compare-products td {
    width: 100%; }
  /* line 57, main/556__compare.scss */
  .compare-page thead {
    text-align: center; }

/* line 6, main/810__mob-menu.scss */
.mob-row .logodiv {
  display: inline-block;
  vertical-align: middle;
  margin-top: 9px; }
/* line 12, main/810__mob-menu.scss */
.mob-row a {
  display: inline-block;
  text-decoration: none !important; }
/* line 16, main/810__mob-menu.scss */
.mob-row a.mlogo {
  height: 27px; }
/* line 19, main/810__mob-menu.scss */
.mob-row a.mlang {
  color: #92764e;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px; }
/* line 29, main/810__mob-menu.scss */
.mob-row a[href^="tel"] {
  display: block;
  font-weight: 700;
  font-size: 22px;
  background: #92764e;
  color: #fff;
  padding: 1px 5px 2px 5px;
  font-family: Arial, sans-serif;
  padding-top: 3px; }
/* line 44, main/810__mob-menu.scss */
.mob-row a[href^="tel"] + a[href^="tel"] {
  padding-top: 6px; }

/* line 49, main/810__mob-menu.scss */
.department.phones {
  text-align: center; }
  /* line 51, main/810__mob-menu.scss */
  .department.phones a {
    transition: color 0.5s; }
  /* line 54, main/810__mob-menu.scss */
  .department.phones a:hover {
    color: #fcb040; }
  /* line 57, main/810__mob-menu.scss */
  .department.phones a {
    display: block;
    font-size: 0;
    line-height: 1; }
    /* line 61, main/810__mob-menu.scss */
    .department.phones a img, .department.phones a span {
      display: inline-block;
      vertical-align: middle; }
    /* line 65, main/810__mob-menu.scss */
    .department.phones a img {
      margin-right: 10px;
      position: relative;
      top: 2px; }
    /* line 70, main/810__mob-menu.scss */
    .department.phones a span {
      font: 32px Arial;
      font-weight: 400;
      color: #000000; }
  /* line 76, main/810__mob-menu.scss */
  .department.phones a + a {
    margin-top: 10px; }
  /* line 79, main/810__mob-menu.scss */
  .department.phones div {
    text-align: center;
    font: bold 16px Arial;
    color: #92764e; }
/* line 85, main/810__mob-menu.scss */
.department.find {
  text-align: center; }
  /* line 87, main/810__mob-menu.scss */
  .department.find input {
    display: inline-block;
    vertical-align: middle;
    width: 80%; }
  /* line 92, main/810__mob-menu.scss */
  .department.find button {
    display: inline-block;
    vertical-align: middle;
    width: 14%;
    padding-left: 0;
    padding-right: 0; }
/* line 100, main/810__mob-menu.scss */
.department ul.nav {
  flex-direction: column; }
  /* line 103, main/810__mob-menu.scss */
  .department ul.nav li a.nav-link {
    font-size: 20px;
    font-weight: 700;
    color: #92764e !important; }
/* line 111, main/810__mob-menu.scss */
.department + .department {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed silver; }

/* line 122, main/810__mob-menu.scss */
.mob-row {
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  line-height: 1;
  font-size: 0;
  overflow: hidden;
  background: #f2f2f2;
  padding: 3px 90px 3px 50px;
  text-align: center; }

/* line 143, main/810__mob-menu.scss */
.mob-left-tgl {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1003;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  margin: 0;
  padding: 0;
  transition: all 0.5s; }
  /* line 155, main/810__mob-menu.scss */
  .mob-left-tgl i {
    font-size: 30px;
    color: #92764e;
    transition: all 0.5s; }
    /* line 159, main/810__mob-menu.scss */
    .mob-left-tgl i.hide-pnl {
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0; }

/* line 168, main/810__mob-menu.scss */
.mob-left-pnl {
  position: fixed;
  top: 0;
  left: -90%;
  width: 90%;
  bottom: 0;
  z-index: 1002;
  transition: left 0.5s;
  background: #fff;
  color: grey; }
  /* line 183, main/810__mob-menu.scss */
  .mob-left-pnl .hdr {
    font-size: 0;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    background: #444;
    color: #fff;
    padding: 0 15px 0 50px; }
    /* line 192, main/810__mob-menu.scss */
    .mob-left-pnl .hdr span {
      display: inline-block;
      vertical-align: middle;
      line-height: 1;
      font-size: 20px; }
  /* line 199, main/810__mob-menu.scss */
  .mob-left-pnl .cnt {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 15px 15px; }

/* line 212, main/810__mob-menu.scss */
.mob-left-bg {
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: opacity 0.5s;
  margin: 0;
  padding: 0; }

/* line 228, main/810__mob-menu.scss */
.mob-left-chk:checked ~ .mob-left-tgl i.show-pnl {
  opacity: 0; }
/* line 231, main/810__mob-menu.scss */
.mob-left-chk:checked ~ .mob-left-tgl i.hide-pnl {
  opacity: 1;
  color: #fff; }
/* line 236, main/810__mob-menu.scss */
.mob-left-chk:checked ~ .mob-left-pnl {
  left: 0;
  visibility: visible !important;
  opacity: 1 !important; }
/* line 242, main/810__mob-menu.scss */
.mob-left-chk:checked ~ .global {
  overflow: hidden;
  width: 100vw;
  height: 100vh; }
/* line 247, main/810__mob-menu.scss */
.mob-left-chk:checked ~ .mob-left-bg {
  visibility: visible !important;
  opacity: 1 !important; }

@media (max-width: 768px) {
  /* line 255, main/810__mob-menu.scss */
  .main-navbar,
  .h-top,
  .cats,
  .h-row {
    display: none; }

  /* line 261, main/810__mob-menu.scss */
  .mob-row {
    display: block !important; }

  /* line 264, main/810__mob-menu.scss */
  .mob-left-tgl {
    display: block !important; }

  /* line 267, main/810__mob-menu.scss */
  header.header {
    padding-top: 50px; }

  /* line 272, main/810__mob-menu.scss */
  [aria-label="breadcrumb"] {
    border-top: 1px solid silver;
    border-bottom: 1px solid silver; }
    /* line 275, main/810__mob-menu.scss */
    [aria-label="breadcrumb"] .breadcrumb {
      background: #fff; }

  /* line 281, main/810__mob-menu.scss */
  .cart-icon {
    display: block;
    position: absolute;
    top: 5px;
    right: 5px; }
    /* line 286, main/810__mob-menu.scss */
    .cart-icon .crt-txt:first-child {
      display: none; }

  /* line 292, main/810__mob-menu.scss */
  .pd-filter {
    display: block !important; }

  /* line 297, main/810__mob-menu.scss */
  .option-cell .two-points {
    display: none; } }
/* line 306, main/810__mob-menu.scss */
.filter-toggle {
  background: none;
  border: none;
  box-shadow: none;
  font-size: 0;
  line-height: 1;
  color: #92764e; }
  /* line 313, main/810__mob-menu.scss */
  .filter-toggle i {
    line-height: 1;
    font-size: 36px; }

/* line 318, main/810__mob-menu.scss */
.bg {
  z-index: 1990;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: opacity 0.5s;
  margin: 0;
  padding: 0; }

@media (max-width: 768px) {
  /* line 331, main/810__mob-menu.scss */
  .sidebar-left {
    position: fixed;
    top: 0;
    left: -90%;
    width: 90%;
    bottom: 0;
    z-index: 2000;
    transition: left 0.5s;
    background: #fff;
    padding: 0 !important; }

  /* line 343, main/810__mob-menu.scss */
  .property-values {
    padding: 10px 10px 40px 10px; }

  /* line 347, main/810__mob-menu.scss */
  .filter-on .sidebar-left {
    left: 0;
    visibility: visible !important;
    opacity: 1 !important; }
  /* line 353, main/810__mob-menu.scss */
  .filter-on .global {
    overflow: hidden;
    width: 100vw;
    height: 100vh; }
  /* line 358, main/810__mob-menu.scss */
  .filter-on .bg {
    visibility: visible !important;
    opacity: 1 !important; }

  /* line 365, main/810__mob-menu.scss */
  .filter-panel .filter-toggle {
    display: inline-block; } }
/* line 375, main/810__mob-menu.scss */
ul.mob-cats {
  display: flex;
  flex-wrap: nowrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-flow: column nowrap; }

/*# sourceMappingURL=main.css.map */
