@charset "UTF-8";
/* line 1, ../sass/index/index-selectsvg.scss */
.i-selectsvg {
  position: relative;
}

/* line 5, ../sass/index/index-selectsvg.scss */
.i-selectsvg-top {
  position: absolute;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 3;
}
/* line 19, ../sass/index/index-selectsvg.scss */
.i-selectsvg-top .site-title {
  color: #fff;
  line-height: 1;
}
/* line 24, ../sass/index/index-selectsvg.scss */
.i-selectsvg-top .badge {
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: inline-flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 15px;
  background: #fff;
  border-radius: 15px;
  margin-bottom: 5px;
}
/* line 39, ../sass/index/index-selectsvg.scss */
.i-selectsvg-top .badge b {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  gap: 0 10px;
}
/* line 49, ../sass/index/index-selectsvg.scss */
.i-selectsvg-top .badge b:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: #29b8f0;
  border-radius: 50%;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blink2 {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.1;
  }
}
/* line 73, ../sass/index/index-selectsvg.scss */
.i-selectsvg-wr {
  position: relative;
  overflow: hidden;
  width: 100%;
}
/* line 78, ../sass/index/index-selectsvg.scss */
.i-selectsvg-wr img {
  display: block;
  width: 100%;
}
/* line 83, ../sass/index/index-selectsvg.scss */
.i-selectsvg-wr svg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}
/* line 90, ../sass/index/index-selectsvg.scss */
.i-selectsvg-wr svg polygon {
  opacity: 0;
  cursor: pointer;
  fill: #29b8f0 !important;
  transition: opacity 0.3s ease-in-out, fill 0.3s ease-in-out, stroke 0.3s ease-in-out;
  /* Убираем анимацию с ховера */
}
/* line 96, ../sass/index/index-selectsvg.scss */
.i-selectsvg-wr svg polygon.active {
  animation: blink 1.5s infinite;
  /* Анимация мигания */
}
@media (hover: hover) {
  /* line 102, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-wr svg polygon:hover {
    opacity: 0.6;
  }
}

/* line 110, ../sass/index/index-selectsvg.scss */
.anim {
  animation: fadeIng 1.5s ease-in-out forwards !important;
  animation-delay: .3s !important;
}

@keyframes fadeIng {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
  }
}
/* line 128, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 104;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: .3s ease-in-out;
  padding: 15px;
}
/* line 143, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup.show {
  opacity: 1;
  pointer-events: all;
}
/* line 147, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup.show .i-selectsvg-popup-bg {
  opacity: 0.8;
  pointer-events: all;
}

/* line 155, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #29222e;
  opacity: 0;
  pointer-events: none;
}

/* line 166, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-wr {
  position: relative;
  overflow: hidden;
  width: calc(100% - 30px);
  max-width: 1400px;
  height: calc(100% - 30px);
  max-height: 700px;
  transition: 0.3s ease all;
  border-radius: 5px;
  background: #fff;
  z-index: 2;
}

/* line 180, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-close, .panorama-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: .3s ease-in;
}
@media (hover: hover) {
  /* line 196, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-close:hover, .panorama-close:hover {
    background-color: #252985;
    color: #fff;
  }
}
/* line 202, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-close svg, .panorama-close svg {
  width: 25px;
  height: 25px;
}

/* line 208, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-body {
  width: 100%;
  position: relative;
  height: 100%;
}

/* line 214, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px;
  transition: 0.3s ease all;
  transition-delay: 0.3s;
}
/* line 222, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor.hide {
  opacity: 0;
  visibility: hidden;
}

/* line 228, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front {
  display: flex;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
/* line 234, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front .right {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
/* line 243, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front .right-select {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* line 248, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front .right-select .right-select-box {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #252985;
  transition: .3s ease-in-out;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}
/* line 261, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front .right-select .right-select-box.show {
  background-color: #29b8f0;
}
/* line 265, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front .right-select .right-select-box:hover {
  background-color: #29b8f0;
}
/* line 271, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front .left {
  width: calc(100% - 200px);
  align-self: center;
}
/* line 276, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front .left-svg {
  position: relative;
  width: 100%;
  height: 100%;
  display: none;
}
/* line 282, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front .left-svg.show {
  display: block;
}
/* line 286, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front .left-svg .img {
  display: block;
  width: 100%;
  height: 100%;
}
/* line 292, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front .left-svg img, .i-selectsvg-popup-floor-front .left-svg svg {
  width: 100%;
  display: block;
}
/* line 297, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front .left-svg svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
/* line 304, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front .left-svg .flat-select {
  cursor: pointer;
  fill: #83FABA;
  opacity: 0.3;
  transition: 0.3s ease all;
}
/* line 310, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front .left-svg .flat-select.sold {
  fill: #FFA186;
  pointer-events: none;
}
@media (hover: hover) {
  /* line 316, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .left-svg .flat-select:hover {
    opacity: 0.7;
    animation: none;
  }
}
/* line 323, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front .left-svg .i-selectsvg-sold-status {
  position: absolute;
  z-index: 2;
  background: #252985;
  padding: 5px 15px;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
/* line 334, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-floor-front .left-svg .i-selectsvg-attention {
  color: grey;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* line 343, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat {
  position: absolute;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  z-index: 5;
}
/* line 361, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat.show {
  opacity: 1;
  visibility: visible;
}
/* line 366, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat .i-selectsvg-popup-flat-right {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  width: 400px;
  padding-top: 10px;
}
/* line 381, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr {
  position: relative;
  margin-top: auto;
  padding-top: 15px;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
}
/* line 387, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr form {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}
/* line 403, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr .input {
  display: block;
  width: 100%;
  height: 50px;
  border: 2px solid #000;
  padding: 0 15px;
  border-radius: 5px;
  font-size: 18px;
}
/* line 412, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr .input.error {
  border-color: #FFABA2;
}
/* line 416, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr .input::placeholder {
  color: #000;
}
/* line 421, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr .attention {
  color: grey;
}
/* line 427, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat .i-selectsvg-popup-flat-left {
  position: relative;
  width: calc(100% - 400px - 30px);
}
/* line 433, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat .PPL-Form2 .left {
  width: 100%;
}
/* line 437, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat .PPL-Form2 .right {
  width: 100%;
}
/* line 440, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat .PPL-Form2 .right textarea {
  display: none;
}
/* line 444, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat .PPL-Form2 .right .form-btn {
  width: 100%;
}

/* line 451, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-tpl {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 460, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-tpl .img {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
/* line 471, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-tpl .img img {
  display: block;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* line 481, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-tpl .panorama {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 270px;
  height: 162px;
}
/* line 488, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-tpl .panorama a, .i-selectsvg-popup-flat-tpl .panorama div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: flex-end;
  align-items: flex-end;
  position: absolute;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 20px;
}
/* line 507, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-tpl .panorama img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease all;
}
/* line 518, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-tpl .panorama .site-title {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  width: 100%;
}
/* line 531, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-tpl .panorama .site-title:after {
  content: '+';
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: #252985;
  transition: 0.3s ease all;
  font-size: 36px;
  font-weight: 200;
}
@media (hover: hover) {
  /* line 554, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat-tpl .panorama:hover img {
    transform: scale(1.1);
  }
  /* line 559, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat-tpl .panorama:hover .site-title:after {
    background: #29b8f0;
    color: #fff;
  }
}
/* line 568, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-tpl.show {
  opacity: 1;
  visibility: visible;
}

/* line 574, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-info-tpl {
  display: none;
}
/* line 577, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-info-tpl.show {
  display: block;
}
/* line 581, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-info-tpl .top {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
/* line 592, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-info-tpl .top .name {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: flex-end;
  align-items: flex-end;
  line-height: 1;
  gap: 0 5px;
}
@media (hover: hover) {
  /* line 607, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat-info-tpl .pdf-wr:hover {
    opacity: 0.7;
  }
}
/* line 613, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-info-tpl .desc-bot {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: center;
  align-items: center;
  gap: 10px 0;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
}
/* line 632, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-info-tpl .desc-bot .row {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 0 25px;
  width: 100%;
}
/* line 644, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-info-tpl .desc-bot .col b {
  display: inline-block;
}
/* line 648, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-info-tpl .desc-bot .col span {
  opacity: 0.5;
}
/* line 652, ../sass/index/index-selectsvg.scss */
.i-selectsvg-popup-flat-info-tpl .desc-bot .col.max {
  transform: scale(1.5);
  transform-origin: top left;
}

/* line 660, ../sass/index/index-selectsvg.scss */
.panorama-wr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
}
/* line 670, ../sass/index/index-selectsvg.scss */
.panorama-wr.show {
  opacity: 1;
  visibility: visible;
}
/* line 675, ../sass/index/index-selectsvg.scss */
.panorama-wr .panorama-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/* line 682, ../sass/index/index-selectsvg.scss */
.panorama-wr .panorama-close {
  top: 30px;
  right: 30px;
}
/* line 687, ../sass/index/index-selectsvg.scss */
.panorama-wr .panorama-icon {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: #fff;
  border-radius: 50%;
}
/* line 700, ../sass/index/index-selectsvg.scss */
.panorama-wr .panorama-icon svg, .panorama-wr .panorama-icon img {
  width: 25px;
  height: 25px;
}

/* line 708, ../sass/index/index-selectsvg.scss */
.lang-he .i-selectsvg-top {
  direction: rtl;
}
/* line 712, ../sass/index/index-selectsvg.scss */
.lang-he .i-selectsvg-popup {
  direction: rtl;
}
/* line 717, ../sass/index/index-selectsvg.scss */
.lang-he .i-selectsvg-popup-close {
  left: 5px;
  right: auto;
}
/* line 722, ../sass/index/index-selectsvg.scss */
.lang-he .i-selectsvg-popup-floor-front .left-svg .i-selectsvg-attention {
  left: auto;
  right: 0;
}
/* line 730, ../sass/index/index-selectsvg.scss */
.lang-he .i-selectsvg-popup-flat-info-tpl .top .name .fz44 {
  direction: ltr;
}
/* line 738, ../sass/index/index-selectsvg.scss */
.lang-he .i-selectsvg-popup-flat-info-tpl .desc-bot .col.max {
  transform-origin: top right;
}
/* line 746, ../sass/index/index-selectsvg.scss */
.lang-he .panorama-wr .panorama-close {
  left: 30px;
  right: auto;
}
/* line 751, ../sass/index/index-selectsvg.scss */
.lang-he .panorama-wr .panorama-icon {
  left: 30px;
  right: auto;
}

@media only screen and (min-width: 1241px) and (max-width: 1439px) {
  /* line 760, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top {
    padding: 25px;
  }
  /* line 763, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top .badge {
    height: 27px;
    padding: 0 13px;
    margin-bottom: 4px;
  }
  /* line 768, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top .badge b {
    gap: 0 9px;
  }
  /* line 771, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top .badge b:before {
    width: 9px;
    height: 9px;
  }

  /* line 779, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-close {
    top: 4px;
    right: 4px;
    width: 36px;
    height: 36px;
  }
  /* line 785, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-close svg {
    width: 22px;
    height: 22px;
  }

  /* line 791, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor {
    padding: 27px;
  }

  /* line 796, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .right {
    width: 180px;
    gap: 18px;
  }
  /* line 801, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .right-select {
    gap: 9px;
  }
  /* line 804, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .right-select .right-select-box {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  /* line 811, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .left {
    width: calc(100% - 180px);
  }

  /* line 816, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat {
    padding: 27px;
  }
  /* line 819, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-right {
    width: 370px;
    padding-top: 9px;
  }
  /* line 823, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr {
    padding-top: 14px;
    border-top: 2px solid rgba(0, 0, 0, 0.2);
  }
  /* line 827, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr form {
    gap: 14px;
    margin-top: 14px;
  }
  /* line 832, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr .input {
    height: 50px;
    border: 2px solid #000;
    padding: 0 15px;
    border-radius: 5px;
    font-size: 18px;
  }
  /* line 842, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-left {
    width: calc(100% - 370px - 27px);
  }
  /* line 846, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .panorama {
    width: 243px;
    height: 146px;
  }
  /* line 850, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .panorama a, .i-selectsvg-popup-flat .panorama div {
    padding: 15px;
  }
  /* line 855, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .panorama .site-title:after {
    width: 45px;
    height: 45px;
    font-size: 32px;
  }

  /* line 866, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat-info-tpl .top .name {
    gap: 0 4px;
  }
  /* line 871, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat-info-tpl .desc-bot {
    gap: 9px 0;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 2px solid rgba(0, 0, 0, 0.2);
  }
  /* line 877, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat-info-tpl .desc-bot .row {
    gap: 0 20px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1240px) {
  /* line 887, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top {
    padding: 20px;
  }
  /* line 890, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top .badge {
    height: 27px;
    padding: 0 13px;
    margin-bottom: 4px;
  }
  /* line 895, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top .badge b {
    gap: 0 9px;
  }
  /* line 898, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top .badge b:before {
    width: 9px;
    height: 9px;
  }

  /* line 906, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-close {
    top: 4px;
    right: 4px;
    width: 36px;
    height: 36px;
  }
  /* line 912, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-close svg {
    width: 22px;
    height: 22px;
  }

  /* line 918, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor {
    padding: 22px;
  }

  /* line 923, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .right {
    width: 144px;
    gap: 15px;
  }
  /* line 928, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .right-select {
    gap: 7px;
  }
  /* line 931, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .right-select .right-select-box {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  /* line 938, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .left {
    width: calc(100% - 144px);
  }

  /* line 943, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat {
    padding: 22px;
  }
  /* line 946, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-right {
    width: 350px;
    padding-top: 20px;
  }
  /* line 950, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr {
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
  /* line 954, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr form {
    gap: 12px;
    margin-top: 12px;
  }
  /* line 959, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr .input {
    height: 44px;
    border: 1px solid #000;
    padding: 0 12px;
    border-radius: 5px;
    font-size: 16px;
  }
  /* line 969, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-left {
    width: calc(100% - 350px - 22px);
  }
  /* line 973, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .panorama {
    width: 194px;
    height: 116px;
  }
  /* line 977, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .panorama a, .i-selectsvg-popup-flat .panorama div {
    padding: 10px;
  }
  /* line 982, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .panorama .site-title:after {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  /* line 993, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat-info-tpl .top .name {
    gap: 0 4px;
  }
  /* line 998, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat-info-tpl .desc-bot {
    gap: 9px 0;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
  /* line 1004, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat-info-tpl .desc-bot .row {
    gap: 0 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  /* line 1014, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-wr {
    max-height: 525px;
  }

  /* line 1018, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top {
    padding: 15px;
  }
  /* line 1021, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top .badge {
    height: 22px;
    padding: 0 10px;
    margin-bottom: 3px;
  }
  /* line 1026, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top .badge b {
    gap: 0 5px;
  }
  /* line 1029, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top .badge b:before {
    width: 7px;
    height: 7px;
  }

  /* line 1037, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-close {
    top: 4px;
    right: 4px;
    width: 36px;
    height: 36px;
  }
  /* line 1043, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-close svg {
    width: 22px;
    height: 22px;
  }

  /* line 1049, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor {
    padding: 20px;
  }

  /* line 1054, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .right {
    width: 100px;
    gap: 15px;
  }
  /* line 1059, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .right-select {
    gap: 7px;
  }
  /* line 1062, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .right-select .right-select-box {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  /* line 1069, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .left {
    width: calc(100% - 100px);
  }

  /* line 1074, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat {
    display: block;
    padding: 20px;
  }
  /* line 1078, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-right {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
  /* line 1090, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr {
    width: calc((100% - 20px) / 2);
    padding-top: 0;
    border-top: 0;
    margin-top: 0;
  }
  /* line 1096, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr form {
    gap: 12px;
    margin-top: 12px;
  }
  /* line 1101, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr .input {
    height: 44px;
    border: 1px solid #000;
    padding: 0 12px;
    border-radius: 5px;
    font-size: 16px;
  }
  /* line 1111, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-left {
    width: 100%;
    height: 250px;
  }
  /* line 1116, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .panorama {
    width: 194px;
    height: 116px;
  }
  /* line 1120, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .panorama a, .i-selectsvg-popup-flat .panorama div {
    padding: 10px;
  }
  /* line 1125, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .panorama .site-title:after {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  /* line 1134, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat-info-tpl {
    width: calc((100% - 20px) / 2);
  }
  /* line 1138, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat-info-tpl .top .name {
    gap: 0 4px;
  }
  /* line 1143, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat-info-tpl .desc-bot {
    gap: 9px 0;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
  /* line 1149, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat-info-tpl .desc-bot .row {
    gap: 0 15px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  /* line 1159, ../sass/index/index-selectsvg.scss */
  .i-selectsvg {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }

  /* line 1172, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top {
    display: contents;
  }
  /* line 1175, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top .title-wr {
    -webkit-order: 1;
    -moz-order: 1;
    -ms-order: 1;
    -o-order: 1;
    order: 1;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    margin-bottom: 15px;
  }
  /* line 1193, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top .site-title {
    color: #000;
  }
  /* line 1197, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top .badge {
    height: 24px;
    padding: 0 10px;
    background: #000;
    color: #fff;
    margin-bottom: 0px;
  }
  /* line 1204, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top .badge b {
    gap: 0 5px;
  }
  /* line 1207, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top .badge b:before {
    width: 6px;
    height: 6px;
    background: #fff;
  }
  /* line 1215, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-top .button {
    -webkit-order: 3;
    -moz-order: 3;
    -ms-order: 3;
    -o-order: 3;
    order: 3;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  /* line 1228, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-wr {
    -webkit-order: 2;
    -moz-order: 2;
    -ms-order: 2;
    -o-order: 2;
    order: 2;
  }
  /* line 1235, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-wr img, .i-selectsvg-wr svg {
    width: 180%;
    margin: 0 -36%;
  }

  /* line 1243, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup {
    padding: 0px;
  }

  /* line 1247, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-wr {
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
  }

  /* line 1255, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-body {
    overflow: auto;
  }

  /* line 1259, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor {
    padding: 15px;
    padding-top: 45px;
  }

  /* line 1264, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front {
    justify-content: flex-start;
    flex-direction: column;
  }
  /* line 1268, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .right {
    -webkit-order: -1;
    -moz-order: -1;
    -ms-order: -1;
    -o-order: -1;
    order: -1;
    width: 100%;
    gap: 15px;
  }
  /* line 1278, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .right-select {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
  /* line 1286, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .right-select .right-select-box {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  /* line 1293, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .left {
    width: 100%;
    margin-top: 30px;
  }
  /* line 1298, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .left-svg {
    height: auto;
  }
  /* line 1301, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .left-svg .i-selectsvg-sold-status {
    padding: 3px 5px;
    border-radius: 4px;
    font-size: 10px;
  }
  /* line 1307, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-floor-front .left-svg .i-selectsvg-attention {
    position: relative;
  }

  /* line 1313, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: flex-start;
    padding: 15px;
    padding-top: 45px;
    overflow: auto;
  }
  /* line 1324, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-right {
    width: 100%;
    padding-top: 30px;
  }
  /* line 1328, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
  /* line 1333, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-right .form-wr .input {
    height: 44px;
    border: 1px solid #000;
    font-size: 16px;
  }
  /* line 1341, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-left {
    width: 100%;
    height: auto;
  }
  /* line 1345, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-left .img {
    height: 360px;
  }
  /* line 1350, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-tpl {
    position: relative;
    display: none;
    opacity: 1;
  }
  /* line 1355, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .i-selectsvg-popup-flat-tpl.show {
    display: block;
  }
  /* line 1360, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .panorama {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 0 auto;
    margin-top: 30px;
  }
  /* line 1368, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .panorama .site-title span {
    font-size: 1.2em;
  }
  /* line 1372, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat .panorama .site-title:after {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  /* line 1382, ../sass/index/index-selectsvg.scss */
  .i-selectsvg-popup-flat-info-tpl .desc-bot {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }

  /* line 1388, ../sass/index/index-selectsvg.scss */
  .panorama-wr .panorama-close {
    top: 15px;
    right: 15px;
  }
  /* line 1393, ../sass/index/index-selectsvg.scss */
  .panorama-wr .panorama-icon {
    right: 15px;
  }

  /* line 1400, ../sass/index/index-selectsvg.scss */
  .lang-he .panorama-wr .panorama-close {
    left: 15px;
  }
  /* line 1404, ../sass/index/index-selectsvg.scss */
  .lang-he .panorama-wr .panorama-icon {
    left: 15px;
  }
}
/* line 3, ../sass/index/index-catalog.scss */
body.go-down .IndexCatalog .msearch2-filters {
  top: var(--header-height);
}

/* line 9, ../sass/index/index-catalog.scss */
.IndexCatalog {
  position: relative;
}
/* line 12, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-top {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  gap: 0 40px;
}
/* line 24, ../sass/index/index-catalog.scss */
.IndexCatalog #mse2_sort {
  margin-left: auto;
}
/* line 27, ../sass/index/index-catalog.scss */
.IndexCatalog #mse2_sort .sort {
  cursor: pointer;
}
@media (hover: hover) {
  /* line 31, ../sass/index/index-catalog.scss */
  .IndexCatalog #mse2_sort .sort:hover {
    color: #29b8f0;
  }
}
/* line 38, ../sass/index/index-catalog.scss */
.IndexCatalog .mse2_tpl {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  gap: 0 10px;
}
/* line 50, ../sass/index/index-catalog.scss */
.IndexCatalog .mse2_tpl_el {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  border: 1px solid #252985;
  color: #252985;
  width: 50px;
  height: 50px;
  border-radius: 10px;
}
/* line 65, ../sass/index/index-catalog.scss */
.IndexCatalog .mse2_tpl_el svg, .IndexCatalog .mse2_tpl_el img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
/* line 72, ../sass/index/index-catalog.scss */
.IndexCatalog .mse2_tpl_el.active {
  border-color: #29b8f0;
  background: #29b8f0;
  color: #fff;
}
@media (hover: hover) {
  /* line 79, ../sass/index/index-catalog.scss */
  .IndexCatalog .mse2_tpl_el:hover:not(.active) {
    background: rgba(41, 184, 240, 0.3);
  }
}
/* line 85, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-wr {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  margin-top: 50px;
}
/* line 103, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-filters {
  position: sticky;
  transition: 0.3s ease all;
  top: 0;
  background: #252985;
  width: calc(100% - 1285px);
  padding: 30px;
}
/* line 111, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-filters .filter-row {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 0 30px;
  margin-bottom: 30px;
}
/* line 121, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-filters .filter-row:nth-last-child(1) {
  margin-bottom: 0;
}
/* line 126, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-filters .filter_title {
  opacity: 0.6;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  color: #fff;
  min-height: 50px;
}
/* line 139, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-filters .filter-row-result {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
}
/* line 153, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-filters .filter-row-result.objsquare {
  gap: 5px 20px;
}
/* line 158, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-filters .checkbox {
  position: relative;
  display: block;
}
/* line 162, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-filters .checkbox input {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
/* line 175, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-filters .checkbox span {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #fff;
  color: #000;
}
/* line 192, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-filters .checkbox input:checked ~ span {
  background: #29b8f0;
  color: #fff;
}
@media (hover: hover) {
  /* line 199, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .checkbox:hover span {
    background: rgba(41, 184, 240, 0.6);
    color: #fff;
  }
}
/* line 207, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-filters .filter-number-row-label {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  gap: 0 5px;
}
/* line 217, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-filters .filter-number-row-label span {
  color: #fff;
  opacity: 0.6;
}
/* line 222, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-filters .filter-number-row-label .form-control {
  display: block;
  width: 95px;
  padding: 0 15px;
  height: 50px;
  border-radius: 10px;
  background: #fff;
}
/* line 234, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-filters-buttons .btn {
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: inline-flex;
  -ms-align-items: center;
  align-items: center;
  gap: 0 10px;
  margin-top: 60px;
  color: #fff;
}
/* line 246, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-filters-buttons .btn span {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #252985;
  font-size: 14px;
  font-weight: 600;
}
@media (hover: hover) {
  /* line 265, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters-buttons .btn:hover {
    opacity: 0.7;
  }
}
/* line 272, ../sass/index/index-catalog.scss */
.IndexCatalog .msearch2-results {
  position: relative;
  width: 1285px;
  padding: 0 30px;
}
/* line 278, ../sass/index/index-catalog.scss */
.IndexCatalog #mse2_results {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

/* line 294, ../sass/index/index-catalog.scss */
.lang-he .IndexCatalog {
  direction: rtl;
}
/* line 297, ../sass/index/index-catalog.scss */
.lang-he .IndexCatalog #mse2_sort {
  margin-left: 0;
  margin-right: auto;
}
/* line 305, ../sass/index/index-catalog.scss */
.lang-he .IndexCatalog .msearch2-filters .filter-row-result.objsquare input {
  direction: ltr;
  text-align: right;
}

@media only screen and (min-width: 1640px) and (max-width: 1829px) {
  /* line 319, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter-row {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    gap: 5px 0;
  }
  /* line 328, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter_title {
    min-height: initial;
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1639px) {
  /* line 339, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters {
    width: calc(100% - 870px);
  }
  /* line 343, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-results {
    width: 870px;
  }
}
@media only screen and (min-width: 1241px) and (max-width: 1439px) {
  /* line 353, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-top {
    gap: 0 35px;
  }
  /* line 357, ../sass/index/index-catalog.scss */
  .IndexCatalog .mse2_tpl_el {
    width: 45px;
    height: 45px;
    border-radius: 9px;
  }
  /* line 362, ../sass/index/index-catalog.scss */
  .IndexCatalog .mse2_tpl_el svg, .IndexCatalog .mse2_tpl_el img {
    width: 22px;
    height: 22px;
  }
  /* line 368, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-wr {
    margin-top: 45px;
  }
  /* line 372, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters {
    width: calc(100% - 860px);
    padding: 25px;
  }
  /* line 376, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter-row {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    gap: 5px 0;
    margin-bottom: 25px;
  }
  /* line 386, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter_title {
    min-height: initial;
  }
  /* line 391, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter-row-result.objsquare {
    gap: 5px 20px;
  }
  /* line 397, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .checkbox span {
    width: 45px;
    height: 45px;
    border-radius: 9px;
  }
  /* line 405, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter-number-row-label .form-control {
    width: 85px;
    padding: 0 12px;
    height: 45px;
    border-radius: 9px;
  }
  /* line 415, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters-buttons .btn {
    margin-top: 50px;
  }
  /* line 420, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-results {
    width: 860px;
    padding: 0 25px;
  }
  /* line 425, ../sass/index/index-catalog.scss */
  .IndexCatalog #mse2_results {
    gap: 20px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1240px) {
  /* line 435, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-top {
    gap: 0 25px;
  }
  /* line 439, ../sass/index/index-catalog.scss */
  .IndexCatalog .mse2_tpl_el {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  /* line 444, ../sass/index/index-catalog.scss */
  .IndexCatalog .mse2_tpl_el svg, .IndexCatalog .mse2_tpl_el img {
    width: 20px;
    height: 20px;
  }
  /* line 450, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-wr {
    margin-top: 35px;
  }
  /* line 454, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters {
    width: calc(100% - 660px);
    padding: 15px;
  }
  /* line 458, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter-row {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    gap: 5px 0;
    margin-bottom: 15px;
  }
  /* line 468, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter_title {
    min-height: initial;
  }
  /* line 473, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter-row-result.objsquare {
    gap: 5px 15px;
  }
  /* line 479, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .checkbox span {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  /* line 487, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter-number-row-label .form-control {
    width: 85px;
    padding: 0 10px;
    height: 40px;
    border-radius: 8px;
  }
  /* line 497, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters-buttons .btn {
    margin-top: 30px;
  }
  /* line 502, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-results {
    width: 660px;
    padding: 0 15px;
  }
  /* line 507, ../sass/index/index-catalog.scss */
  .IndexCatalog #mse2_results {
    gap: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  /* line 518, ../sass/index/index-catalog.scss */
  body.go-down .IndexCatalog .msearch2-filters {
    top: auto;
  }

  /* line 525, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-top {
    gap: 0 15px;
  }
  /* line 529, ../sass/index/index-catalog.scss */
  .IndexCatalog .mse2_tpl_el {
    width: 35px;
    height: 35px;
    border-radius: 7px;
  }
  /* line 534, ../sass/index/index-catalog.scss */
  .IndexCatalog .mse2_tpl_el svg, .IndexCatalog .mse2_tpl_el img {
    width: 18px;
    height: 18px;
  }
  /* line 540, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-wr {
    margin-top: 25px;
  }
  /* line 544, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters {
    position: relative;
    top: auto;
    width: 100%;
    padding: 15px;
  }
  /* line 550, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter-wr {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 15px;
  }
  /* line 559, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter-row {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    flex: auto;
    gap: 5px 0;
    margin-bottom: 0;
  }
  /* line 570, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter_title {
    min-height: initial;
  }
  /* line 575, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter-row-result.objsquare {
    width: max-content;
    gap: 5px 15px;
  }
  /* line 582, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .checkbox span {
    width: 35px;
    height: 35px;
    border-radius: 7px;
  }
  /* line 590, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter-number-row-label .form-control {
    width: 65px;
    padding: 0 10px;
    height: 35px;
    border-radius: 7px;
  }
  /* line 600, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters-buttons .btn {
    margin-top: 30px;
  }
  /* line 605, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-results {
    width: 100%;
    padding: 0 15px;
    margin-top: 30px;
  }
  /* line 611, ../sass/index/index-catalog.scss */
  .IndexCatalog #mse2_results {
    gap: 15px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  /* line 622, ../sass/index/index-catalog.scss */
  body.go-down .IndexCatalog .msearch2-filters {
    top: auto;
  }

  /* line 629, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-top {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
  }
  /* line 637, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-top .site-title {
    width: 100%;
  }
  /* line 641, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-top #mse2_sort {
    margin-left: 0;
    margin-right: auto;
  }
  /* line 647, ../sass/index/index-catalog.scss */
  .IndexCatalog .mse2_tpl_el {
    width: 35px;
    height: 35px;
    border-radius: 7px;
  }
  /* line 652, ../sass/index/index-catalog.scss */
  .IndexCatalog .mse2_tpl_el svg, .IndexCatalog .mse2_tpl_el img {
    width: 18px;
    height: 18px;
  }
  /* line 658, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-wr {
    margin-top: 25px;
  }
  /* line 662, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters {
    position: relative;
    top: auto;
    width: 100%;
    padding: 15px;
  }
  /* line 668, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter-wr {
    gap: 15px;
  }
  /* line 672, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter-row {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    flex: auto;
    gap: 5px 0;
    margin-bottom: 10px;
  }
  /* line 683, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter_title {
    min-height: initial;
  }
  /* line 688, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter-row-result.objsquare {
    width: max-content;
    gap: 5px 15px;
  }
  /* line 695, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .checkbox span {
    width: 35px;
    height: 35px;
    border-radius: 7px;
  }
  /* line 703, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters .filter-number-row-label .form-control {
    width: 65px;
    padding: 0 10px;
    height: 35px;
    border-radius: 7px;
  }
  /* line 713, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-filters-buttons .btn {
    margin-top: 30px;
  }
  /* line 718, ../sass/index/index-catalog.scss */
  .IndexCatalog .msearch2-results {
    width: 100%;
    padding: 0 15px;
    margin-top: 30px;
  }
  /* line 724, ../sass/index/index-catalog.scss */
  .IndexCatalog #mse2_results {
    gap: 15px;
  }

  /* line 732, ../sass/index/index-catalog.scss */
  .lang-he .IndexCatalog .msearch2-top #mse2_sort {
    margin-left: auto;
    margin-right: 0;
  }
}
/* line 1, ../sass/index/index-catalog-tpl.scss */
.CatalogTPL {
  position: relative;
  aspect-ratio: 1;
  width: calc((100% - 20px * 2) / 3);
  border: 2px solid rgba(0, 0, 0, 0.2);
}
/* line 7, ../sass/index/index-catalog-tpl.scss */
.CatalogTPL .img {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  height: calc(100% / 3 * 2);
  padding: 30px;
}
/* line 21, ../sass/index/index-catalog-tpl.scss */
.CatalogTPL .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s ease all;
}
/* line 30, ../sass/index/index-catalog-tpl.scss */
.CatalogTPL .desc {
  position: relative;
  height: calc(100% / 3);
  padding: 30px;
  padding-top: 0;
}
/* line 37, ../sass/index/index-catalog-tpl.scss */
.CatalogTPL .desc-top {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s ease all;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
/* line 52, ../sass/index/index-catalog-tpl.scss */
.CatalogTPL .desc-top .price-wr {
  line-height: 1.1;
}
/* line 57, ../sass/index/index-catalog-tpl.scss */
.CatalogTPL .desc-bot {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  gap: 0 10px;
}
/* line 68, ../sass/index/index-catalog-tpl.scss */
.CatalogTPL .desc-bot .col {
  flex: auto;
}
/* line 71, ../sass/index/index-catalog-tpl.scss */
.CatalogTPL .desc-bot .col span {
  opacity: 0.5;
}
@media (hover: hover) {
  /* line 78, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL:hover {
    border-color: #29b8f0;
  }
  /* line 81, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL:hover .desc-top {
    border-color: #29b8f0;
  }
  /* line 86, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL:hover .img img {
    transform: scale(1.1);
  }
}

/* line 94, ../sass/index/index-catalog-tpl.scss */
.CatalogTPL-row {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  gap: 0 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  padding: 15px;
}
/* line 109, ../sass/index/index-catalog-tpl.scss */
.CatalogTPL-row .col.photo {
  margin-left: auto;
}
/* line 113, ../sass/index/index-catalog-tpl.scss */
.CatalogTPL-row .col .col-name {
  opacity: 0.5;
}
/* line 117, ../sass/index/index-catalog-tpl.scss */
.CatalogTPL-row .col .main-photo {
  display: block;
  width: 80px;
  height: auto;
}
@media (hover: hover) {
  /* line 125, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL-row:hover {
    border-color: #29b8f0;
  }
  /* line 128, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL-row:hover .site-btn {
    background: #29b8f0;
  }
}

/* line 138, ../sass/index/index-catalog-tpl.scss */
.lang-he .CatalogTPL-row .col.photo {
  margin-right: auto;
  margin-left: 0;
}

@media only screen and (min-width: 1241px) and (max-width: 1639px) {
  /* line 148, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL {
    width: calc((100% - 20px) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  /* line 156, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL {
    width: calc((100% - 15px) / 2);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  /* line 160, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL .img {
    padding: 15px;
  }
  /* line 164, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL .desc {
    padding: 15px;
    padding-top: 0;
  }
  /* line 169, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL .desc-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  /* line 175, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL .desc-bot {
    gap: 0 5px;
  }

  /* line 180, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL-row {
    gap: 0 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px;
  }
  /* line 186, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL-row .col .main-photo {
    width: 60px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  /* line 196, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL {
    width: 100%;
    aspect-ratio: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  /* line 201, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL .img {
    padding: 15px;
    height: 67vw;
  }
  /* line 206, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL .desc {
    padding: 15px;
    height: auto;
    padding-top: 0;
  }
  /* line 212, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL .desc-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  /* line 218, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL .desc-bot {
    gap: 0 5px;
  }

  /* line 223, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL-row {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px;
  }
  /* line 234, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL-row .col .main-photo {
    width: 100px;
  }
  /* line 238, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL-row .col.photo {
    -webkit-order: -1;
    -moz-order: -1;
    -ms-order: -1;
    -o-order: -1;
    order: -1;
    width: 100%;
    margin-left: 0;
  }
  /* line 248, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL-row .col.price-wr {
    width: calc((100% - 15px) / 2);
  }
  /* line 252, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL-row .col.btn {
    width: calc((100% - 15px) / 2);
  }
  /* line 255, ../sass/index/index-catalog-tpl.scss */
  .CatalogTPL-row .col.btn .site-btn {
    width: 100%;
  }
}
/* line 9, ../sass/catalog.scss */
body {
  padding-top: var(--header-height);
}
