

/* Start:/bitrix/templates/detsys/slick.css?15496499621729*/
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* End */


/* Start:/bitrix/templates/detsys/lightbox.css?15496499624115*/
/* Preload images */
body:after {
  content: url(/bitrix/templates/detsys/img/lightbox-close.png) url(/bitrix/templates/detsys/img/lightbox-loading.gif) url(/bitrix/templates/detsys/img/lightbox-prev.png) url(/bitrix/templates/detsys/img/lightbox-next.png);
  display: none;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(/bitrix/templates/detsys/img/lightbox-loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(/bitrix/templates/detsys/img/lightbox-prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(/bitrix/templates/detsys/img/lightbox-next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(/bitrix/templates/detsys/img/lightbox-close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* End */


/* Start:/bitrix/templates/detsys/styles_new.css?1744816456213045*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
HTML,
BODY {
  margin: 0;
  min-width: 280px;
  height: 100%;
}
@font-face {
  font-family: 'MyriadPro-Cond';
  font-display: swap;
  src: url('/bitrix/templates/detsys/font/MyriadPro-Cond.eot?#iefix') format('embedded-opentype'), url('/bitrix/templates/detsys/font/MyriadPro-Cond.otf') format('opentype'), url('/bitrix/templates/detsys/font/MyriadPro-Cond.woff') format('woff'), url('/bitrix/templates/detsys/font/MyriadPro-Cond.ttf') format('truetype'), url('/bitrix/templates/detsys/font/MyriadPro-Cond.svg#MyriadPro-Cond') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'MyriadPro-BoldCond';
  font-display: swap;
  src: url('/bitrix/templates/detsys/font/MyriadPro-BoldCond.eot?#iefix') format('embedded-opentype'), url('/bitrix/templates/detsys/font/MyriadPro-BoldCond.otf') format('opentype'), url('/bitrix/templates/detsys/font/MyriadPro-BoldCond.woff') format('woff'), url('/bitrix/templates/detsys/font/MyriadPro-BoldCond.ttf') format('truetype'), url('/bitrix/templates/detsys/font/MyriadPro-BoldCond.svg#MyriadPro-BoldCond') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'MyriadPro-Regular';
  font-display: swap;
  src: url('/bitrix/templates/detsys/font/MyriadPro-Regular.eot?#iefix') format('embedded-opentype'), url('/bitrix/templates/detsys/font/MyriadPro-Regular.otf') format('opentype'), url('/bitrix/templates/detsys/font/MyriadPro-Regular.woff') format('woff'), url('/bitrix/templates/detsys/font/MyriadPro-Regular.ttf') format('truetype'), url('/bitrix/templates/detsys/font/MyriadPro-Regular.svg#MyriadPro-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'MyriadPro-Semibold';
  font-display: swap;
  src: url('/bitrix/templates/detsys/font/MyriadPro-Semibold.eot?#iefix') format('embedded-opentype'), url('/bitrix/templates/detsys/font/MyriadPro-Semibold.otf') format('opentype'), url('/bitrix/templates/detsys/font/MyriadPro-Semibold.woff') format('woff'), url('/bitrix/templates/detsys/font/MyriadPro-Semibold.ttf') format('truetype'), url('/bitrix/templates/detsys/font/MyriadPro-Semibold.svg#MyriadPro-Semibold') format('svg');
  font-weight: normal;
  font-style: normal;
}
INPUT {
  outline: none;
}
TEXTAREA {
  outline: none;
  resize: none;
}
P.nopt {
  margin-top: 0px;
}
.bBody:after {
  content: "";
  display: table;
  clear: both;
}
.GSfixWidth {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1200px;
  margin: 0 auto;
}
.GSfixWidth_relative {
  position: relative;
}
.GSclear {
  clear: both;
}
.GSslider .slide,
.GSslider .hidden,
.GSslider .move {
  width: 100%;
}
.GSslider .hidden {
  overflow: hidden;
}
.GSslider .move {
  position: relative;
}
.GSslider .slide {
  position: absolute;
}
.GSpagination {
  overflow: hidden;
}
.GSpagination .bNext,
.GSpagination .bPrev {
  float: left;
  width: 41px;
  height: 51px;
}
.GSpagination .bNext {
  background: url('/bitrix/templates/detsys/img/next.png') no-repeat top left;
}
.GSpagination .bNext:hover {
  background-position: 0 -52px;
}
.GSpagination .bNext:active {
  background-position: 0 -104px;
}
.GSpagination .bPrev {
  background: url('/bitrix/templates/detsys/img/prev.png') no-repeat top left;
}
.GSpagination .bPrev:hover {
  background-position: 0 -52px;
}
.GSpagination .bPrev:active {
  background-position: 0 -104px;
}
.GSpagination .bNext2,
.GSpagination .bPrev2 {
  float: left;
  width: 21px;
  height: 32px;
}
.GSpagination .bNext2 {
  background: url('/bitrix/templates/detsys/img/next2.svg') no-repeat top left;
}
.GSpagination .bPrev2 {
  background: url('/bitrix/templates/detsys/img/prev2.svg') no-repeat top left;
}
.GSpagination .bNext3,
.GSpagination .bPrev3 {
  float: left;
  width: 50px;
  height: 83px;
  z-index: 1;
}
.GSpagination .bNext3 {
  background: url('/bitrix/templates/detsys/img/next3.png') no-repeat top left;
  position: absolute;
  right: 30px;
  top: 0px;
  top: 180px;
}
.GSpagination .bPrev3 {
  background: url('/bitrix/templates/detsys/img/prev3.png') no-repeat top left;
  position: absolute;
  left: 30px;
  top: 0px;
  top: 180px;
}
.GSpagination .page {
  float: left;
}
.GSpagination .page a {
  float: left;
  width: 13px;
  height: 13px;
  background: #ddd7c9;
  margin: 0 5px;
  margin-top: 18px;
}
.GSpagination .page a:hover,
.GSpagination .page a.act {
  background: #F05213;
}
.GSpagination .page a:active {
  background: #4d5153;
}
#sliderLicensePopup .GSpagination .bNext3,
#sliderLicensePopup .GSpagination .bPrev3 {
  top: 200px;
}
.GSclose {
  background: url('/bitrix/templates/detsys/img/close.svg?2') no-repeat top left;
  background-position: 0 0;
  background-size: 26px 78px;
  width: 26px;
  height: 26px;
}
.GSclose:hover {
  background-position: 0 -26px;
}
.GSclose:active {
  background-position: 0 -52px;
}
.GScontact .time {
  font-family: 'MyriadPro-Regular', Arial;
  color: #F05213;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  text-align: right;
}
.GScontact .phone {
  margin-top: -3px;
  font-family: 'MyriadPro-Cond', Arial;
  color: #3D3D3D;
  font-size: 33px;
  line-height: 33px;
  text-transform: uppercase;
  text-align: right;
}
.GScontact .phone A {
  color: #3D3D3D;
  text-decoration: none;
}
.GScontact .phone.f {
  margin-bottom: 3px;
}
.GScontact2 .skype {
  position: relative;
  margin-top: 15px;
  margin-left: 90px;
}
.GScontact2 .accnt {
  text-align: center;
}
.GScontact2 .acontact {
  position: relative;
  display: inline-block;
  margin: 20px auto 0px auto;
  color: #d2531f;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 18px;
  font-family: 'MyriadPro-Semibold', Arial;
  text-decoration: none;
}
.GScontact2 .skype .ico {
  width: 24px;
  height: 24px;
  background: url('/bitrix/templates/detsys/img/skype.png') no-repeat center;
  float: left;
}
.GScontact2 .skype .name {
  float: left;
  margin-left: 10px;
  padding-top: 5px;
  font-family: 'MyriadPro-Regular', Arial;
  color: #F05213;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  text-align: right;
}
.GScontact2 .skype .name:hover {
  text-decoration: none;
}
.GScontact2 .skype .openBtn {
  width: 12px;
  height: 10px;
  margin-left: 10px;
  margin-top: 8px;
  background: url('/bitrix/templates/detsys/img/openBtn.png') no-repeat center;
  float: left;
}
.GScontact2 .skype .open {
  display: none;
  background: #DDD7C9;
  padding: 5px;
  width: 100px;
  position: absolute;
  margin-top: 2px;
  left: 5px;
  z-index: 1;
}
.GScontact2 .skype.opened .open {
  display: block;
}
.GScontact2 .skype .open A {
  display: block;
  font-family: 'MyriadPro-Regular', Arial;
  color: #F05213;
  font-size: 19px;
  line-height: 19px;
  text-decoration: none;
}
.GScontact2 .skype .open.show {
  display: block;
}
.GScontact2 .callback {
  margin-top: 15px;
}
.GScontact2 .email,
.GScontact2 .facebook {
  position: relative;
  margin-top: 15px;
  margin-left: 29px;
}
.GScontact2 .email .ico {
  width: 24px;
  height: 24px;
  background: url('/bitrix/templates/detsys/img/hemail.png') no-repeat center;
  float: left;
}
.GScontact2 .facebook .ico {
  width: 24px;
  height: 24px;
  background: url('/bitrix/templates/detsys/img/fb.png') no-repeat center;
  float: left;
}
.GScontact2 .email A,
.GScontact2 .facebook A {
  float: left;
  margin-left: 10px;
  padding-top: 4px;
  font-family: 'MyriadPro-Regular', Arial;
  color: #F05213;
  font-size: 15px;
  line-height: 15px;
  text-transform: uppercase;
  text-align: right;
}
.GScontact2 .email A:hover,
.GScontact2 .email A:active,
.GScontact2 .facebook A:hover,
.GScontact2 .facebook A:active {
  text-decoration: none;
}
.GSitemsAll {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 25px;
  line-height: 25px;
  color: #ddd7c9;
  text-decoration: none;
  margin-top: 40px;
}
.GSitemsAll .iaico {
  display: inline-block;
  background: url('/bitrix/templates/detsys/img/itemsAll.png') top left no-repeat;
  width: 23px;
  height: 15px;
}
.GSitemsAll:hover {
  color: #F05213;
}
.GSitemsAll:hover .iaico {
  background-position: 0 -16px;
}
.GSitemsAll:active {
  color: #4d5153;
}
.GSitemsAll:active .iaico {
  background-position: 0 -32px;
}
.GStitle {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 20px;
  line-height: 1.2;
  color: #4d5153;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: normal;
}
.GStitle h2 {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: inherit;
  display: inline-block;
  margin: 0;
}
.GStitle span {
  font-family: 'MyriadPro-Cond', Arial;
  color: #cd542c;
  font-size: 75%;
  line-height: 1;
  vertical-align: super;
}
.GStitle span a {
  color: #cd542c;
}
.GStitle span a:hover {
  text-decoration: none;
}
.GStitle span a:active {
  text-decoration: none;
  color: #d2531f;
}
@media (min-width: 600px) {
  .GStitle {
    font-size: 40px;
  }
}
.GStitle__inherit,
span.GStitle__inherit {
  font-size: inherit;
  color: inherit;
  vertical-align: inherit;
}
.GStitle2 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 42px;
  line-height: 1;
  color: #F05213;
}
.GStitle3 {
  font-size: 36px;
  line-height: 36px;
  color: #4d5153;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  font-family: 'MyriadPro-Semibold', Arial;
}
.GSbtn {
  display: block;
  background: #db421e;
  padding-bottom: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  font-family: 'MyriadPro-Regular', Arial;
  color: #ffffff;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  -webkit-overflow-scrolling: touch;
}
.GSbtn .text {
  color: #ffffff;
}
.GSbtn.big {
  font-size: 27px;
  line-height: 27px;
}
.GSbtn .bg {
  background: #eb5324;
  padding: 13px 10px 9px 10px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  pointer-events: none;
}
.GSbtn:hover {
  background: #eb5324;
}
.GSbtn:hover .bg {
  background: #f27754;
}
.GSbtn:active {
  padding-top: 4px;
  padding-bottom: 0;
  background: #c1371c;
}
.GSbtn:active .bg {
  background: #db421e;
}
.GSbtn.callback .bg {
  position: relative;
}
.GSbtn.callback .text {
  padding-left: 30px;
}
.GSbtn.callback .ico {
  position: absolute;
  left: 50%;
  margin-left: -73px;
  margin-top: -6px;
  width: 22px;
  height: 22px;
  float: left;
  background: url('/bitrix/templates/detsys/img/callback.svg') no-repeat center;
}
.GSbtn2,
.GSbtn2-nh {
  font-family: 'MyriadPro-Cond', Arial;
  background: #f1efe9;
  font-size: 18px;
  line-height: 1;
  color: #F05213;
  text-decoration: none;
  padding: 4px 10px;
}
@media (min-width: 300px) {
  .GSbtn2,
  .GSbtn2-nh {
    font-size: 22px;
  }
}
@media (min-width: 600px) {
  .GSbtn2,
  .GSbtn2-nh {
    font-size: 30px;
  }
}
.GSbtn2:hover,
.GSbtn2-nh:hover {
  background: #ddd7c9;
  color: #af4328;
}
.GSbtn2:active,
.GSbtn2-nh:active {
  background: #ddd7c9;
  color: #F05213;
}
.GSbtn3 {
  display: block;
  background: #bfaf98;
  padding-bottom: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
}
.GSbtn3 .text {
  color: #d2531f;
}
.GSbtn3 .bg {
  background: #ddd7c9;
  padding: 13px 10px 9px 10px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.GSbtn3:hover {
  background: #eb5324;
}
.GSbtn3:hover .text {
  color: #ffffff;
}
.GSbtn3:hover .bg {
  background: #f27754;
}
.GSbtn3:active {
  padding-top: 4px;
  padding-bottom: 0;
  background: #c1371c;
}
.GSbtn3:active .text {
  color: #ffffff;
}
.GSbtn3:active .bg {
  background: #db421e;
}
.GSbtn4 {
  font-family: 'MyriadPro-Regular', Arial;
  color: #bc4425;
  font-size: 16px;
  line-height: 16px;
  overflow: hidden;
  display: inline-block;
}
.GSbtn4:hover {
  text-decoration: none;
}
.GSbtn4 .ico {
  width: 36px;
  height: 34px;
  background: url('/bitrix/templates/detsys/img/print.svg') no-repeat;
  float: left;
}
.GSbtn4 .ico.email {
  width: 36px;
  height: 36px;
  background: url('/bitrix/templates/detsys/img/email.svg') no-repeat;
  float: left;
}
.GSbtn4 .text {
  padding-left: 45px;
  margin-top: 8px;
}
.GSinput1 {
  margin: 0px;
  border: 1px solid #b0b0b0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #f0f0f0;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 19px;
  line-height: 19px;
  color: #4d5153;
  padding: 8px 10px;
}
.GSinput1.placeholder,
.GSinput1.def {
  color: #cacaca;
}
.GSinput1::-webkit-input-placeholder {
  color: #cacaca;
}
.GSinput1::-moz-placeholder {
  color: #cacaca;
}
.GSinput1:-moz-placeholder {
  color: #cacaca;
}
.GSinput1:-ms-input-placeholder {
  color: #cacaca;
}
.GSinput1.err {
  color: #eb5324;
  border-color: #eb5324;
}
.GSinput1.err.placeholder {
  color: #eb5324;
}
.GSinput1.err::-webkit-input-placeholder {
  color: #eb5324;
}
.GSinput1.err::-moz-placeholder {
  color: #eb5324;
}
.GSinput1.err:-moz-placeholder {
  color: #eb5324;
}
.GSinput1.err:-ms-input-placeholder {
  color: #eb5324;
}
.GSinput1:focus {
  border: 1px solid #3d3d3d;
  background: #f0f0f0;
}
.GSinput1.GSselect {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
}
.GSinput1.GSselect .option {
  display: none;
  background: #f0f0f0;
  border: 1px solid #b0b0b0;
  border-top: none;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  margin-top: -10px;
  margin-left: -11px;
  width: 100%;
}
.GSinput1.GSselect .option .items {
  max-height: 300px;
  overflow: auto;
  margin: 10px 0;
  margin-right: 10px;
}
.GSinput1.GSselect.open .option {
  display: block;
  position: absolute;
}
.GSinput1.GSselect .opener {
  display: block;
  position: relative;
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #4d5153;
  text-decoration: none;
}
.GSinput1.GSselect .ico {
  position: absolute;
  right: 0px;
  top: 15px;
  width: 16px;
  height: 10px;
  background: url('/bitrix/templates/detsys/img/GSselect.png') no-repeat top;
}
.GSinput1.GSselect.open .ico {
  background-position: 0 -11px;
}
.GSinput1.GSselect .option A {
  color: #4d5153;
  text-decoration: none;
  display: block;
  margin: 10px;
}
.GSinput1.GSselect .option A:first-child {
  margin-top: 0px;
}
.GSinput1.GSselect .option A:last-child {
  margin-bottom: 0px;
}
.topBan {
  background: #DDD7C9;
  height: 60px;
  font-family: 'MyriadPro-Cond', Arial;
  color: #4D5153;
  font-size: 31px;
  line-height: 31px;
  text-transform: uppercase;
  text-align: center;
}
.topBan .GSfixWidth {
  position: relative;
}
.topBan .i {
  position: absolute;
  top: 15px;
  width: 100%;
  display: none;
}
.topBan SPAN {
  font-family: 'MyriadPro-BoldCond', Arial;
  color: #F05213;
}
.topBan .GSclose {
  position: absolute;
  right: 0px;
  top: 17px;
}
.bHeader .headerNav {
  background: #3D3D3D;
  padding: 10px 0;
}
.bHeader .headerNav .text {
  font-family: 'MyriadPro-Regular', Arial;
  color: #ffffff;
  font-size: 17px;
  line-height: 17px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bHeader .headerNav .text h1 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.bHeader .headerNav .icons {
  float: left;
}
.bHeader .headerNav .icons .iso {
  float: left;
  width: 33px;
  height: 28px;
  background: url('/bitrix/templates/detsys/img/iso.svg') no-repeat center;
}
.bHeader .headerNav .right {
  float: right;
  font-family: 'MyriadPro-Regular', Arial;
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
}
.bHeader .headerNav .right a {
  color: #ffffff;
}
.bHeader .headerNav .right a:hover {
  text-decoration: none;
}
@media (min-width: 1200px) {
  .bHeader .headerNav .text {
    float: left;
    margin-bottom: 0;
  }
  .bHeader .headerNav .icons {
    margin-left: 50px;
  }
  .bHeader .headerNav .icons .iso {
    margin: -6px 0;
  }
  .bHeader .headerNav .right {
    line-height: 18px;
  }
}
.bHeader .header {
  padding: 20px 0;
}
.bHeader .header .headerHello {
  text-align: center;
  position: absolute;
  pointer-events: none;
  left: 200px;
  right: 430px;
  margin-top: 15px;
  display: none;
}
.bHeader .header .headerHello .h {
  font-family: 'MyriadPro-Semibold', Arial;
  font-size: 40px;
  color: #eb5324;
  text-transform: uppercase;
}
.bHeader .header .headerHello .ff {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 21px;
  color: #3d3d3d;
  margin-top: -5px;
}
@media (min-width: 1200px) {
  .bHeader .header .headerHello {
    display: block;
  }
}
.bHeader .header .headerHello_new {
  margin-top: -15px;
}
.bHeader .header .logo {
  display: block;
  background: url('/bitrix/templates/detsys/img/logo_clear.svg') no-repeat center;
  background-size: contain;
  width: 100%;
  max-width: 304px;
  max-width: 200px;
  height: 95px;
  margin: 0 auto;
}
.bHeader .header .GScontact {
  float: right;
  margin-right: 30px;
  margin-top: 28px;
}
.bHeader .header .GScontact2 {
  float: right;
  width: 210px;
}
.bHeader .header .pmob {
  display: block;
  font-size: 14px;
  line-height: 14px;
  max-width: 240px;
  margin: 17px auto 0;
}
.bHeader .header .pmob .bg {
  position: relative;
}
.bHeader .header .pmob .text {
  padding-left: 40px;
  padding-right: 15px;
  padding-bottom: 2px;
}
.bHeader .header .pmob .ico {
  position: absolute;
  top: 50%;
  margin-left: 15px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  float: left;
  background: url('/bitrix/templates/detsys/img/pmob.png') no-repeat center;
  background-size: cover;
}
.bHeader .header .GScontact,
.bHeader .header .GScontact2 {
  display: none;
}
@media (min-width: 600px) {
  .bHeader .header .logo {
    float: left;
    margin: 0;
  }
  .bHeader .header .pmob {
    margin: 17px 0 0;
    float: right;
    max-width: none;
  }
  .bHeader .header .pmob .text {
    padding-left: 70px;
  }
}
@media (min-width: 900px) {
  .bHeader .header .pmob {
    display: none;
  }
  .bHeader .header .GScontact,
  .bHeader .header .GScontact2 {
    display: block;
  }
}
.menuNav {
  background: #4d5153;
  position: relative;
}
.menuNav:after {
  content: "";
  display: table;
  clear: both;
}
.menuNav .GSfixWidth {
  padding: 0;
}
.menuNav .hamburger-menu {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.menuNav .hamburger-menu__login {
  display: block;
  border-top: 1px solid #ddd7c9;
  margin-top: 10px;
  padding-top: 10px;
}
.menuNav .hamburger-menu__prolog {
  display: block;
  font-family: 'MyriadPro-Regular', Arial;
  color: #ddd7c9;
  font-size: 14px;
  line-height: 1.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd7c9;
  padding-bottom: 15px;
}
.menuNav .menu a {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-family: 'MyriadPro-Regular', Arial;
  text-decoration: none;
  padding: 10px 8px;
  overflow: hidden;
}
.menuNav .menu span {
  color: #ffffff;
  font-size: 18px;
  line-height: 18px;
  font-family: 'MyriadPro-Regular', Arial;
  text-decoration: none;
  padding: 0 15px;
  float: left;
  padding-top: 13px;
  height: 31px;
  overflow: hidden;
}
.menuNav .menu__catalog {
  display: none;
}
@media (min-width: 1200px) {
  .menuNav .menu__catalog {
    display: block;
  }
}
.menuNav .menu__catalog:hover {
  background: #3d3d3d;
}
.menuNav .menu__catalog:hover .menu__catalog-dropdown {
  display: block;
}
.menuNav .menu__arrow {
  display: inline-block;
  width: 11px !important;
  margin-left: 5px;
  height: 7px !important;
  padding: 0 !important;
  float: none !important;
  overflow: visible !important;
  position: relative;
  top: -3px;
}
.menuNav .menu__catalog-dropdown {
  display: none;
}
.menuNav .menu a:hover {
  background: #3d3d3d;
}
.menuNav .menu a.act {
  background: #d9d5c7;
  color: #4d5153;
}
.menuNav .menu span.act {
  background: #d9d5c7;
  color: #4d5153;
}
.menuNav .menu .dSearch {
  display: none;
  position: relative;
}
.menuNav .menu .dSearch a {
  padding: 0 15px;
}
.menuNav .menu .dSearch .qiOpen {
  display: none;
  background: #ddd7c9;
  position: absolute;
  top: 0px;
  left: 0px;
  margin-top: -55px;
  margin-left: -370px;
}
.menuNav .menu .dSearch.opened .search {
  background: #3d3d3d;
}
.menuNav .menu .dSearch.opened .qiOpen {
  display: block;
}
.menuNav .menu .dSearch .qiOpen INPUT {
  margin: 7px;
  width: 415px;
}
@media (min-width: 1200px) {
  .menuNav .menu .dSearch {
    display: block;
  }
}
.menuNav .search {
  display: block;
  padding: 0 15px;
}
.menuNav .search:hover {
  background: #3d3d3d;
}
.menuNav .search .ico {
  width: 20px;
  height: 20px;
  background: url('/bitrix/templates/detsys/img/search.png') no-repeat center;
  padding-top: 12px;
  margin: 0 auto;
}
.menuNav .dBasket {
  position: absolute;
  top: 0;
  right: 0;
  margin-left: 120px;
  max-width: 160px;
}
.menuNav .dBasket .dSearch {
  position: absolute;
  top: 0;
  left: -50px;
  height: 58px;
}
.menuNav .dBasket .dSearch .search {
  padding: 0 15px;
}
.menuNav .dBasket .dSearch .search .ico {
  background: url('/bitrix/templates/detsys/img/search2.png') no-repeat center;
  padding: 0;
  height: 58px;
}
@media (min-width: 1200px) {
  .menuNav .dBasket .dSearch {
    display: none;
  }
}
.menuNav .dBasket .basket {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-family: 'MyriadPro-Regular', Arial;
  text-decoration: none;
  padding: 21px 8px 21px 35px;
  height: 58px;
  box-sizing: border-box;
  text-transform: uppercase;
  white-space: nowrap;
  background: url('/bitrix/templates/detsys/img/basket.svg?3') no-repeat left 5px center;
  background-size: 23px 22px;
}
.menuNav .dBasket .basket:hover {
  background-color: #3d3d3d;
}
.menuNav .dBasket.opened .basket {
  background-color: #3d3d3d;
}
@media (min-width: 600px) {
  .menuNav .dBasket.opened .bOpen {
    display: block;
  }
}
.menuNav .dBasket .btext {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menuNav .dBasket .btext .mobile {
  display: none;
}
@media (max-width: 1199px) {
  .menuNav .dBasket .btext {
    font-size: 0;
  }
  .menuNav .dBasket .btext .mobile {
    display: none;
    font-size: 18px;
  }
}
.menuNav .dBasket .bOpen {
  display: none;
  position: absolute;
  top: 100%;
  right: 0px;
  background: #eae6de;
  z-index: 1;
  width: 490px;
  padding: 10px;
  overflow: hidden;
}
.menuNav .dBasket .bOpen .l {
  float: left;
  width: 260px;
  margin-right: 10px;
}
.menuNav .dBasket .bOpen .l .ltitle {
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
}
.menuNav .dBasket .bOpen .l .item {
  overflow: hidden;
  margin-top: 3px;
}
.menuNav .dBasket .bOpen .l .item .delete {
  float: left;
  width: 10px;
  height: 10px;
  background: url('/bitrix/templates/detsys/img/delete.png?3') no-repeat top left;
  margin-top: 7px;
}
.menuNav .dBasket .bOpen .l .item .delete:hover {
  background-position: 0 -11px;
}
.menuNav .dBasket .bOpen .l .item .delete:active {
  background-position: 0 -22px;
}
.menuNav .dBasket .bOpen .l .item .product {
  font-family: 'MyriadPro-Semibold', Arial;
  color: #F05213;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  padding-left: 20px;
  display: block;
}
.menuNav .dBasket .bOpen .r {
  float: left;
  width: 220px;
}
.menuNav .dBasket .bOpen .r .bnav {
  overflow: hidden;
}
.menuNav .dBasket .bOpen .r .bnav A {
  float: left;
  margin-right: 12px;
  font-family: 'MyriadPro-Regular', Arial;
  color: #bc4425;
  font-size: 15px;
  line-height: 15px;
  text-transform: uppercase;
}
.menuNav .dBasket .bOpen .r .bnav .nmr {
  margin-right: 0px;
}
.menuNav .dBasket .bOpen .r .GSbtn {
  margin-top: 20px;
}
@media (min-width: 600px) {
  .menuNav .menu a {
    font-size: 18px;
    padding: 13px 15px;
  }
  .menuNav .dBasket {
    max-width: 530px;
  }
  .menuNav .dBasket .basket {
    font-size: 18px;
    padding: 20px 15px 20px 35px;
  }
  .menuNav .search .ico {
    padding-top: 24px;
  }
}
@media (min-width: 1200px) {
  .menuNav .menu a {
    float: left;
  }
  .menuNav .hamburger {
    display: none;
  }
  .menuNav .hamburger-menu {
    display: block !important;
    text-align: left;
    padding: 0;
  }
  .menuNav .hamburger-menu__login {
    display: none;
  }
  .menuNav .hamburger-menu__prolog {
    display: none;
  }
  .menuNav .dBasket {
    float: right;
    position: relative;
    margin-left: 0;
  }
  .menuNav .dBasket .basket {
    padding: 13px 15px 13px 35px;
    height: auto;
  }
  .menuNav .dSearch {
    float: left;
  }
  .menuNav .dSearch .ico {
    margin: 0;
  }
}
@media (max-width: 1199px) {
  .menuNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-width: 280px;
    z-index: 100;
  }
  .bNet {
    margin-top: 58px;
  }
}
.hamburger {
  padding: 16px 15px 14px;
  display: inline-block;
  cursor: pointer;
  transition-property: filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  overflow: visible;
}
.hamburger:hover {
  background: #3d3d3d;
}
.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #ddd7c9;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19,1,0.22,1);
}
.hamburger--vortex .hamburger-inner::before,
.hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19,1,0.22,1);
}
.hamburger--vortex.is-active .hamburger-inner::before,
.hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}
.subMenu {
  background: #d9d5c7;
  padding: 10px 0;
}
.subMenu .GSfixWidth {
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
}
.subMenu .GSfixWidth a,
.subMenu .GSfixWidth span {
  flex: 0 0 100%;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 18px;
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  text-decoration: none;
  padding: 5px 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.subMenu .GSfixWidth a.act,
.subMenu .GSfixWidth span.act {
  color: #cd531f;
  font-family: 'MyriadPro-Semibold', Arial;
}
.subMenu .GSfixWidth a .vcnt,
.subMenu .GSfixWidth span .vcnt {
  height: auto !important;
}
.subMenu .GSfixWidth a.sale {
  color: #bc4425;
}
.subMenu .GSfixWidth a:hover {
  color: #cd531f;
}
@media (min-width: 600px) {
  .subMenu .GSfixWidth a,
  .subMenu .GSfixWidth span {
    flex: 0 0 50%;
  }
}
@media (min-width: 900px) {
  .subMenu .GSfixWidth a,
  .subMenu .GSfixWidth span {
    flex: 0 0 33%;
  }
}
@media (min-width: 1200px) {
  .subMenu .GSfixWidth {
    flex-flow: row nowrap;
  }
  .subMenu .GSfixWidth a,
  .subMenu .GSfixWidth span {
    flex: 1;
    font-size: 18px;
    line-height: 19px;
    border-left: 1px solid #b2ada1;
    margin: 0;
    background: #d7d1c3;
  }
  .subMenu .GSfixWidth a:first-child,
  .subMenu .GSfixWidth span:first-child {
    margin-left: -1px;
  }
  .subMenu .GSfixWidth a:last-child,
  .subMenu .GSfixWidth span:last-child {
    border-right: 1px solid #b2ada1;
  }
}
#popup {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: auto;
  z-index: 100;
}
.popupCloser {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.popup {
  display: none;
  background: #ffffff;
  position: absolute;
  -moz-box-shadow: 0 0px 70px rgba(0,0,0,0.5);
  -webkit-box-shadow: 0 0px 70px rgba(0,0,0,0.5);
  box-shadow: 0 0px 70px rgba(0,0,0,0.5);
}
.popup .cont {
  padding: 40px 15px 15px 15px;
  position: relative;
}
.popup .GSclose {
  position: absolute;
  top: 10px;
  right: 10px;
}
.popup .GStitle,
.popup .GStitle2 {
  text-align: center;
}
@media (min-width: 600px) {
  .popup .cont {
    padding: 30px 45px 45px 45px;
  }
  .popup .GStitle,
  .popup .GStitle2 {
    text-align: left;
  }
}
#popupCallback INPUT[type=text],
#popupCallback .GSbtn,
#popupPresent INPUT[type=text],
#popupPresent .GSbtn,
#popupFloatprice INPUT[type=text],
#popupFloatprice .GSbtn {
  margin-top: 20px;
  display: block;
}
#popupCallback INPUT[type=text],
#popupFloatprice INPUT[type=text],
#popupPresent INPUT[type=text] {
  width: 220px;
}
#popupCallback .checkboxWrap,
#popupFloatprice .checkboxWrap,
#popupPresent .checkboxWrap {
  width: 240px;
  margin: 20px auto 0;
}
#popupPresent .GStitle2 {
  font-size: 36px;
  line-height: 36px;
}
#popupFastBuyDone {
  max-width: 400px;
}
#popupLogin INPUT[type=text],
#popupFastBuy INPUT[type=text],
#popupCheaper INPUT[type=text],
#popupRepassword INPUT[type=text],
#popupReg INPUT[type=text],
#popupSaveDone INPUT[type=text],
#popupLoginPlus INPUT[type=text],
#popupLogin INPUT[type=password],
#popupFastBuy INPUT[type=password],
#popupCheaper INPUT[type=password],
#popupRepassword INPUT[type=password],
#popupReg INPUT[type=password],
#popupSaveDone INPUT[type=password],
#popupLoginPlus INPUT[type=password],
#popupLogin .checkboxWrap,
#popupFastBuy .checkboxWrap,
#popupCheaper .checkboxWrap,
#popupRepassword .checkboxWrap,
#popupReg .checkboxWrap,
#popupSaveDone .checkboxWrap,
#popupLoginPlus .checkboxWrap,
#popupLogin .checkboxWrap {
  display: block;
  margin-top: 20px;
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
}
#popupLogin .foot,
#popupFastBuy .foot,
#popupCheaper .foot,
#popupRepassword .foot,
#popupReg .foot,
#popupSaveDone .foot,
#popupLoginPlus .foot {
  overflow: hidden;
  margin-top: 20px;
}
#popupLogin .foot .r,
#popupFastBuy .foot .r,
#popupCheaper .foot .r,
#popupRepassword .foot .r,
#popupReg .foot .r,
#popupSaveDone .foot .r,
#popupLoginPlus .foot .rr {
  text-align: center;
}
#popupLogin .foot .r a,
#popupFastBuy .foot .r a,
#popupCheaper .foot .r a,
#popupRepassword .foot .r a,
#popupReg .foot .r a,
#popupSaveDone .foot .r a,
#popupLoginPlus .foot .rr a {
  padding: 10px 0;
}
@media (min-width: 600px) {
  #popupLogin .foot .l,
  #popupFastBuy .foot .l,
  #popupCheaper .foot .l,
  #popupRepassword .foot .l,
  #popupReg .foot .l,
  #popupSaveDone .foot .l,
  #popupLoginPlus .foot .ll {
    float: left;
    width: 210px;
    margin-right: 20px;
  }
  #popupLogin .foot .r,
  #popupFastBuy .foot .r,
  #popupCheaper .foot .r,
  #popupRepassword .foot .r,
  #popupReg .foot .r,
  #popupSaveDone .foot .r,
  #popupLoginPlus .foot .rr {
    float: right;
    text-align: right;
  }
  #popupLogin .foot .r a,
  #popupFastBuy .foot .r a,
  #popupCheaper .foot .r a,
  #popupRepassword .foot .r a,
  #popupReg .foot .r a,
  #popupSaveDone .foot .r a,
  #popupLoginPlus .foot .rr a {
    padding: 0;
  }
}
#popupLogin .foot .r A,
#popupFastBuy .foot .r A,
#popupCheaper .foot .r A,
#popupRepassword .foot .r A,
#popupReg .foot .r A,
#popupSaveDone .foot .r A,
#popupLoginPlus .foot .rr A {
  display: block;
  font-family: 'MyriadPro-Regular', Arial;
  color: #F05213;
  font-size: 17px;
  line-height: 17px;
  margin-top: 2px;
}
#popupLogin .foot .r A:hover,
#popupFastBuy .foot .r A:hover,
#popupCheaper .foot .r A:hover,
#popupRepassword .foot .r A:hover,
#popupReg .foot .r A:hover,
#popupSaveDone .foot .r A:hover,
#popupLoginPlus .foot .rr A:hover {
  text-decoration: none;
}
#popupLogin .foot .r A:active,
#popupFastBuy .foot .r A:active,
#popupCheaper .foot .r A:active,
#popupRepassword .foot .r A:active,
#popupReg .foot .r A:active,
#popupSaveDone .foot .r A:active,
#popupLoginPlus .foot .rr A:active {
  color: #af4328;
}
#popupLoginPlus {
  width: 1100px;
}
#popupLoginPlus .oh {
  overflow: hidden;
}
#popupLoginPlus .oh .l {
  float: left;
  width: 382px;
}
#popupLoginPlus .oh .r {
  padding-left: 440px;
  padding-top: 25px;
}
#popupLoginPlus .oh .r .ptitle {
  font-family: 'MyriadPro-Cond', Arial;
  color: #3d3d3d;
  font-size: 30px;
  line-height: 30px;
}
#popupLoginPlus .oh .r .item {
  display: table;
  width: 100%;
  margin-top: 20px;
}
#popupLoginPlus .oh .r .num {
  font-family: 'MyriadPro-BoldCond', Arial;
  color: #ddd7c9;
  font-size: 48px;
  line-height: 48px;
  display: table-cell;
  text-align: left;
  vertical-align: middle;
  width: 60px;
}
#popupLoginPlus .oh .r .text {
  font-family: 'MyriadPro-Regular', Arial;
  color: #000000;
  font-size: 20px;
  line-height: 25px;
  display: table-cell;
  vertical-align: middle;
}
#popupLoginPlus .foot {
  margin-top: 30px;
}
#popupLoginPlus .foot .rr A {
  margin-top: 8px;
}
#popupLoginPlus .regBtn {
  margin-top: 30px;
}
.footer {
  background: #4d5153;
}
.footer .fpad {
  padding: 25px 0 35px 0;
  overflow: hidden;
}
.footer .fpad .GSfixWidth {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.footer .fpad .GSfixWidth .block {
  margin: 15px;
  flex: 1;
}
@media (max-width: 599px) {
  .footer .fpad .GSfixWidth .block {
    padding: 0 15px;
    box-sizing: border-box;
    flex: 0 0 100%;
  }
  .footer .fpad .GSfixWidth .block.b4 {
    order: 2;
  }
  .footer .fpad .GSfixWidth .block.b2 {
    order: 3;
    display: none;
  }
  .footer .fpad .GSfixWidth .block.b3 {
    order: 4;
    display: none;
  }
}
@media (min-width: 600px) and (max-width: 1199px) {
  .footer .fpad .GSfixWidth .block {
    flex-basis: 44%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .footer .fpad .GSfixWidth .block.b4 {
    order: 2;
  }
  .footer .fpad .GSfixWidth .block.b2 {
    order: 3;
  }
  .footer .fpad .GSfixWidth .block.b3 {
    order: 4;
  }
}
@media (min-width: 1200px) {
  .footer .fpad .GSfixWidth {
    flex-flow: row nowrap;
  }
  .footer .fpad .GSfixWidth .block.b1 {
    flex: 1 0 380px;
  }
  .footer .fpad .GSfixWidth .block.b2,
  .footer .fpad .GSfixWidth .block.b3 {
    flex: 1 0 280px;
  }
  .footer .fpad .GSfixWidth .block.b4 {
    flex: 1 0 205px;
    order: 4;
  }
}
.footer .fpad .GSfixWidth .block.b4 {
  order: -1;
}
@media (min-width: 600px) {
  .footer .fpad .GSfixWidth .block.b4 {
    order: 1;
  }
}
.footer .fpad .GSfixWidth .block.b4 {
  flex-shrink: 0;
}
.footer .fpad .GSfixWidth .block.b1 .text {
  font-family: 'MyriadPro-Regular', Arial;
  color: #F05213;
  font-size: 17px;
  line-height: 20px;
  text-transform: uppercase;
}
.footer .fpad .GSfixWidth .block.b1 .logo {
  display: block;
  background: url('/bitrix/templates/detsys/img/logo_footer_clear.svg') no-repeat center;
  background-size: contain;
  width: 100%;
  max-width: 304px;
  max-width: 200px;
  height: 95px;
  margin-top: 10px;
}
.footer .fpad .GSfixWidth .block.b1 .copy {
  font-family: 'MyriadPro-Regular', Arial;
  color: #ddd7c9;
  font-size: 12px;
  line-height: 1;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .footer .fpad .GSfixWidth .block.b1 .copy {
    font-size: 15px;
    display: block;
  }
}
.footer .fpad .GSfixWidth .block.b1 .copy__text {
  order: 2;
}
.footer .fpad .GSfixWidth .block.b1 .email {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 10px;
  order: 1;
}
@media (min-width: 900px) {
  .footer .fpad .GSfixWidth .block.b1 .email {
    font-size: 17px;
    margin-bottom: 0;
  }
}
.footer .fpad .GSfixWidth .block.b1 .sep {
  display: none;
}
@media (min-width: 900px) {
  .footer .fpad .GSfixWidth .block.b1 .sep {
    display: inline;
  }
}
.footer .fpad .GSfixWidth .block.b1 A {
  color: #F05213;
}
.footer .fpad .GSfixWidth .block.b1 A:hover {
  text-decoration: none;
}
.footer .fpad .GSfixWidth .block.b1 .text2 {
  font-family: 'MyriadPro-Regular', Arial;
  color: #ddd7c9;
  font-size: 13px;
  line-height: 17px;
  margin-top: 3px;
}
.footer .fpad .GSfixWidth .block.b1 .text2 a {
  font-size: 15px;
}
@media (min-width: 900px) {
  .footer .fpad .GSfixWidth .block.b1 .text2 a {
    font-size: inherit;
  }
}
.footer .fpad .GSfixWidth .block.b2 A,
.footer .fpad .GSfixWidth .block.b3 A {
  display: block;
  font-family: 'MyriadPro-Cond', Arial;
  color: #ffffff;
  font-size: 27px;
  line-height: 27px;
  text-decoration: none;
  padding: 3px 10px;
  margin-bottom: 3px;
}
.footer .fpad .GSfixWidth .block.b2 A:hover,
.footer .fpad .GSfixWidth .block.b3 A:hover {
  background: #767676;
}
.footer .fpad .GSfixWidth .block.b2 A:active,
.footer .fpad .GSfixWidth .block.b3 A:active {
  color: #F05213;
  background: #767676;
}
.footer .fpad .GSfixWidth .block.b3 .toTop {
  display: inline-block;
  overflow: hidden;
  padding: 10px;
}
.footer .fpad .GSfixWidth .block.b3 .toTop .ico {
  float: left;
  width: 23px;
  height: 28px;
  background: url('/bitrix/templates/detsys/img/toTop.png') no-repeat top left;
  background-position: 0 0;
  margin-right: 15px;
  margin-top: 5px;
}
.footer .fpad .GSfixWidth .block.b3 .toTop .ttitle {
  float: left;
  font-family: 'MyriadPro-Cond', Arial;
  color: #ddd7c9;
  font-size: 37px;
  line-height: 37px;
  text-transform: uppercase;
}
.footer .fpad .GSfixWidth .block.b3 .toTop:hover {
  background: #767676;
}
.footer .fpad .GSfixWidth .block.b3 .toTop:hover .ttitle {
  color: #3d3d3d;
}
.footer .fpad .GSfixWidth .block.b3 .toTop:active .ttitle {
  color: #af4328;
}
.footer .fpad .GSfixWidth .block.b3 .toTop:hover .ico {
  color: #3d3d3d;
  background-position: 0 -29px;
}
.footer .fpad .GSfixWidth .block.b3 .toTop:active .ico {
  color: #af4328;
  background-position: 0 -58px;
}
.footer .fpad .GSfixWidth .block.b3 .text {
  margin-top: 50px;
  font-family: 'MyriadPro-Cond', Arial;
  color: #ffffff;
  font-size: 22px;
  line-height: 22px;
}
.footer .fpad .GSfixWidth .block.b3 .text A {
  color: #F05213;
}
.footer .fpad .GSfixWidth .block.b3 .text A:hover {
  text-decoration: none;
}
.footer .fpad .GSfixWidth .block.b3 .pay {
  margin-top: 20px;
  overflow: hidden;
}
.footer .fpad .GSfixWidth .block.b3 .pay .visa {
  float: left;
  background: url('/bitrix/templates/detsys/img/visa.png') no-repeat center;
  width: 66px;
  height: 22px;
  margin-top: 10px;
}
.footer .fpad .GSfixWidth .block.b3 .pay .mastercard {
  float: left;
  background: url('/bitrix/templates/detsys/img/mastercard.png') no-repeat center;
  width: 66px;
  height: 39px;
}
.footer .fpad .GSfixWidth .block.b4 .GScontact,
.footer .fpad .GSfixWidth .block.b4 .GScontact2 {
  max-width: 300px;
  margin: 0 auto;
}
.footer .fpad .GSfixWidth .block.b4 .GScontact .phone {
  color: #ffffff;
}
.footer .fpad .GSfixWidth .block.b4 .GScontact .phone a {
  color: #ffffff;
  text-decoration: none;
}
.footer .fpad .GSfixWidth .block.b4 .GScontact2 {
  margin-top: 30px !important;
}
.footer .fpad .GSfixWidth .block.b4 .GScontact2 .GSbtn {
  margin-top: 20px;
}
.footer .fpad .GSfixWidth .block.b4 .GScontact2 .skype {
  width: 120px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .footer .fpad .GSfixWidth .block.b4 .GScontact,
  .footer .fpad .GSfixWidth .block.b4 .GScontact2 {
    margin: 0 0 0 auto;
  }
  .footer .fpad .GSfixWidth .block.b4 .GScontact2 .skype {
    margin: 0 0 0 auto;
  }
}
@media (max-width: 599px) {
  .footer .fpad .GSfixWidth .block.b4 .GScontact > *,
  .footer .fpad .GSfixWidth .block.b4 .GScontact2 > * {
    text-align: center;
  }
}
.bService {
  background: #3d3d3d;
  height: 400px;
  border-bottom: 6px solid #F05213;
  overflow: hidden;
  position: relative;
}
.bService .subItems {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 400px;
  width: 100%;
}
.bService .GSfixWidth {
  position: relative;
  overflow: hidden;
  height: 400px;
}
.bService .bgL {
  height: 400px;
  background: url('/bitrix/templates/detsys/img/bServiceBgL.png') top left repeat-y;
  background-position: 0 4px;
}
.bService .bgR {
  height: 400px;
  background: url('/bitrix/templates/detsys/img/bServiceBgR.png') top right repeat-y;
  background-position: 100% 4px;
}
.bService .ser {
  float: left;
  background: #3d3d3d;
  position: relative;
  cursor: pointer;
}
.bService .ser .bg {
  height: 400px;
  opacity: 0.3;
}
.bService .ser:hover .bg {
  opacity: 1;
}
.bService .ser .stitle A {
  font-family: 'MyriadPro-Cond', Arial;
  color: #ffffff;
  font-size: 32px;
  line-height: 32px;
  text-align: center;
  position: absolute;
  left: 1%;
  bottom: 90px;
  width: 98%;
  text-decoration: none;
}
.bService .ser:hover  .stitle {
  color: #ddd7c9;
}
.bService .ser.v2 .stitle {
  font-size: 44px;
  line-height: 44px;
  text-align: left;
  position: absolute;
  left: 50px;
  top: 40px;
  bottom: none;
}
.bService .ser .stitle .text {
  padding: 0 3px;
  text-shadow: 0px 0px 20px rgba(0,0,0,0.7);
}
.bService .ser .detail {
  display: none;
  font-family: 'MyriadPro-Regular', Arial;
  color: #F05213;
  font-size: 21px;
  line-height: 21px;
  text-align: center;
  background: url('/bitrix/templates/detsys/img/bServiceDetail.png');
  text-decoration: none;
  padding: 0 15px 3px 15px;
  margin-top: 5px;
}
.bService .ser:hover .detail {
  display: inline-block;
}
.bService .smenu {
  position: absolute;
  bottom: 0px;
  display: table;
  width: 100%;
  max-width: 100%;
  z-index: 2;
}
.bService .smenu A {
  display: table-cell;
  vertical-align: bottom;
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  text-transform: uppercase;
}
.bService .smenu A .bl {
  background: #ddd7c9;
  padding: 10px;
  margin: 0 2px;
}
.bService .smenu A:hover,
.bService .smenu A.act {
  padding: 0px;
  margin-left: -2px;
}
.bService .smenu A:hover .bl,
.bService .smenu A.act .bl {
  background: #F05213;
  color: #ddd7c9;
  margin: 0px;
  padding: 12px;
}
.bService .smenu A.npl .bl {
  margin-left: 0px;
}
.bService .smenu A.npr .bl {
  margin-right: 0px;
}
.bService .smenu A.npl:hover .bl,
.bService .smenu A.npl.act .bl {
  padding-left: 10px;
}
.bService .smenu A.npr:hover .bl,
.bService .smenu A.npr.act .bl {
  padding-right: 10px;
}
.bForm1 {
  background: #4d5153;
  border-bottom: 6px solid #ddd7c9;
}
.bForm1.v2 {
  border-top: 6px solid #d7d1c3;
  border-bottom: 6px solid #d7d1c3;
}
.bForm1.v2 .bgR {
  padding-top: 12px;
  padding-bottom: 15px;
}
.bForm1.v2 .GSinput1 {
  margin: 10px 7px;
  width: 200px;
}
@media (max-width: 599px) {
  .bForm1.v2 .GSinput1 {
    width: 100%;
  }
}
.bForm1.v2 .GSbtn {
  width: 220px;
  margin: 10px 7px;
}
@media (max-width: 599px) {
  .bForm1.v2 .GSbtn {
    width: 100%;
  }
}
.bForm1.v2 .fcnt {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.bForm1.v2 .ftitle {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0;
}
@media (min-width: 300px) {
  .bForm1.v2 .ftitle {
    font-size: 24px;
  }
}
@media (min-width: 600px) {
  .bForm1.v2 .ftitle {
    font-size: 28px;
  }
}
@media (min-width: 900px) {
  .bForm1.v2 .ftitle {
    font-size: 34px;
  }
}
@media (max-width: 1199px) {
  .bForm1.v2 .ftitle br {
    display: none;
  }
}
.bForm1.v2 .ftitle.v2 {
  font-size: 20px;
  line-height: 1;
}
@media (min-width: 300px) {
  .bForm1.v2 .ftitle.v2 {
    font-size: 24px;
  }
}
@media (min-width: 600px) {
  .bForm1.v2 .ftitle.v2 {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .bForm1.v2 .ftitle.v2 br {
    display: none;
  }
}
.bForm1.v2.ntb {
  border-top: none;
}
.bForm1.v3 {
  border-top: 6px solid #d7d1c3;
  border-bottom: 6px solid #d7d1c3;
}
.bForm1 .bgL {
  background: url('/bitrix/templates/detsys/img/bForm1BgL2.png') top left repeat-y;
}
.bForm1 .bgR {
  background: url('/bitrix/templates/detsys/img/bForm1BgR2.png') top right repeat-y;
  padding: 25px 0;
}
.bForm1 .cnt {
  overflow: hidden;
  margin: 0 auto;
}
.bForm1 .l {
  text-align: right;
  font-family: 'MyriadPro-Cond', Arial;
  color: #ffffff;
  font-size: 51px;
  line-height: 51px;
  text-transform: uppercase;
  width: 530px;
  margin-right: 15px;
  float: left;
}
.bForm1 .r {
  width: 519px;
  float: right;
}
.bForm1 .r .GSinput1 {
  width: 230px;
  float: left;
}
.bForm1 .r .GSinput1.mr {
  margin-right: 15px;
}
.bForm1 .r .GSinput1.mb {
  margin-bottom: 15px;
}
.bForm1 .r .GSbtn {
  float: left;
  width: 250px;
}
.bForm1 .done {
  display: none;
}
.bForm1 .done .ftitle1 {
  font-family: 'MyriadPro-Cond', Arial;
  color: #ffffff;
  font-size: 48px;
  line-height: 48px;
  text-transform: uppercase;
  text-align: center;
}
.bForm1 .done .ftitle2 {
  margin-top: 10px;
  font-family: 'MyriadPro-Cond', Arial;
  color: #ffffff;
  font-size: 36px;
  line-height: 36px;
  text-transform: uppercase;
  text-align: center;
}
.bForm1 .checkboxWrap {
  max-width: 550px;
  margin: 0 auto;
}
.bForm1 .checkboxWrap .text1 {
  color: #ffffff;
}
.bForm2 .done {
  display: none;
}
.bProductList {
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.bProductList.mt {
  margin: 50px 0 0 0;
  display: block;
}
.bProductList.mt .item {
  margin: 0;
}
.bProductList .GSslider .slide,
.bProductList .GSslider .hidden,
.bProductList .GSslider .move {
  height: 230px;
}
.bProductList .GSslider .slide {
  padding: 0 5px;
}
.bProductList .item {
  width: 250px;
  width: 100%;
}
@media (min-width: 600px) {
  .bProductList .item {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .bProductList .item {
    width: 33.33%;
  }
}
@media (max-width: 1199px) {
  .bProductList .item .adaptHidder {
    display: none;
  }
}
.bProductList .item .to-compare-from-list {
  display: none;
}
.bProductList .item .to-compare-from-list_row {
  display: none;
}
.bProductList.vert .item {
  float: none;
  width: 100%;
  margin-bottom: 0px;
}
.bProductList .item .pad {
  padding: 10px;
  position: relative;
}
.bProductList .item:hover .pad {
  background: #f1efe9;
}
.bProductList .top {
  overflow: hidden;
}
.bProductList .iimg {
  display: block;
  max-width: 100%;
  max-height: 150px;
}
.bProductList .l {
  padding: 15px 0 0 0;
}
@media (min-width: 600px) {
  .bProductList .l {
    padding: 0 0 0 140px;
  }
}
.bProductList .top .ititle {
  font-family: 'MyriadPro-Semibold', Arial;
  color: #F05213;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
}
.bProductList .top .itext {
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  font-size: 17px;
  line-height: 18px;
  text-decoration: none;
  max-height: 128px;
  overflow: hidden;
}
.bProductList .foot {
  overflow: hidden;
  padding-top: 20px;
}
.bProductList .foot .GSbtn {
  width: 130px;
  margin: 0 auto 10px;
}
.bProductList .foot .price {
  font-family: 'MyriadPro-Semibold', Arial;
  color: #F05213;
  font-size: 21px;
  line-height: 21px;
  text-transform: uppercase;
  padding-top: 10px;
  text-align: center;
}
.bProductList .foot .price.off {
  color: #919395;
  font-size: 16px;
}
.bProductList .foot .oldprice {
  font-family: 'MyriadPro-Semibold', Arial;
  color: #4d5153;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  text-decoration: line-through;
  text-align: center;
}
@media (min-width: 600px) {
  .bProductList .foot .GSbtn {
    float: left;
    margin: 0 10px 0 0;
  }
  .bProductList .foot .price {
    text-align: left;
  }
  .bProductList .foot .oldprice {
    margin-top: -18px;
    padding-left: 140px;
    text-align: left;
  }
}
.bProductList .select {
  overflow: hidden;
  margin-top: 4px;
  margin-bottom: -15px;
}
.bProductList .setSelect {
  padding-left: 10px;
  font-family: 'MyriadPro-Regular', Arial;
  color: #F05213;
  font-size: 16px;
  line-height: 16px;
  margin-top: 3px;
  display: inline-block;
}
.bProductList .select .GScheckbox {
  float: left;
}
.bProductList .img {
  width: 260px;
  height: 300px;
  position: relative;
  background: #ffffff;
  margin: 0 auto;
}
.bProductList .img .vc {
  width: 260px;
  height: 300px;
  vertical-align: middle;
  display: table-cell;
}
.bProductList .img IMG {
  max-width: 260px;
  max-height: 300px;
}
@media (min-width: 600px) {
  .bProductList .img {
    float: left;
    margin: 0;
    width: 130px;
    height: 150px;
  }
  .bProductList .img .vc {
    width: 130px;
    height: 150px;
  }
  .bProductList .img IMG {
    max-width: 130px;
    max-height: 150px;
  }
}
.bProductList .product-list-slider .img {
  width: 130px;
  height: 150px;
}
.bProductList .product-list-slider .vc {
  width: 130px;
  height: 150px;
}
.bProductList .product-list-slider .iimg {
  max-width: 100%;
  max-height: 100%;
}
.GSzico {
  width: 22px;
  height: 22px;
  background: url('/bitrix/templates/detsys/img/izoom.png') no-repeat top left;
  background-position: 0 0;
  position: absolute;
  margin-top: -22px;
  left: 2px;
  bottom: 2px;
}
.GSzico2 {
  width: 37px;
  height: 37px;
  background: url('/bitrix/templates/detsys/img/izoom2.png?1') no-repeat top left;
  background-position: 0 0;
  position: absolute;
  top: 100%;
  margin-top: -47px;
  left: 10px;
}
.GSzico2:hover {
  background-position: 0 -38px;
}
.GSzico2:active {
  background-position: 0 -76px;
}
#sliderProductMain .GSpagination,
.sliderProductMain .GSpagination,
#sliderRev .GSpagination {
  float: right;
  margin-top: -70px;
  margin-right: 40px;
}
.bMainBanner {
  margin-top: 20px;
}
.bMainBanner .slick-slider .slick-slide a,
.bMainBanner .slick-slider .slick-slide img {
  width: 100%;
}
@media (min-width: 900px) {
  .bMainBanner .slick-slider .slick-slide {
    margin: 0 12px;
  }
}
#sliderMainBanner .GSpagination {
  float: right;
  margin-right: 40px;
  margin-bottom: 5px;
}
.bPartner {
  background: #ddd7c9;
  margin-top: 20px;
  padding: 40px 0;
}
.bPartner .GStitle {
  margin-top: 0px !important;
}
.bPartner.nmt {
  margin-top: 0px;
  padding-top: 30px;
}
.bPartner .slider-wrap {
  position: relative;
}
.bPartner .slider-wrap .slick-slider {
  padding: 0 21px;
}
.bPartner .slider-wrap .slick-slider .slick-slide {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 200px;
  margin: 0 5px;
  height: 100px;
}
.bPartner .slider-wrap .toClient {
  width: 160px;
  margin: 25px auto 0;
}
.bPartner .slider-wrap .toClient .text {
  font-size: 13px;
  line-height: 16px;
}
@media (min-width: 600px) {
  .bPartner .slider-wrap .slick-slider {
    padding: 0 160px 0 21px;
  }
  .bPartner .slider-wrap .toClient {
    width: 110px;
    margin: 0;
    position: absolute;
    right: 30px;
    top: 0;
  }
  .bPartner .slider-wrap .toClient .ico {
    width: 23px;
    height: 24px;
    margin: 0 auto;
    margin-bottom: 15px;
    margin-top: 5px;
    background: url('/bitrix/templates/detsys/img/plus.png') no-repeat top left;
  }
}
.bMarki {
  background: #ddd7c9;
  margin-top: 20px;
  padding: 40px 0;
}
.bMarki .slider-wrap {
  position: relative;
}
.bMarki .slider-wrap .slick-slider {
  padding: 0 21px;
}
.bMarki .slider-wrap .slick-slider .slick-slide {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 200px;
  margin: 0 5px;
  height: 100px;
}
@media (min-width: 600px) {
  .bMarki .slider-wrap .slick-slider {
    padding: 0 21px 0 21px;
  }
  .bMarki .slider-wrap .toClient {
    width: 110px;
    margin: 0;
    position: absolute;
    right: 30px;
    top: 0;
  }
  .bMarki .slider-wrap .toClient .ico {
    width: 23px;
    height: 24px;
    margin: 0 auto;
    margin-bottom: 15px;
    margin-top: 5px;
    background: url('/bitrix/templates/detsys/img/plus.png') no-repeat top left;
  }
}
.GSpagination .bPrev2 {
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -16px;
}
.GSpagination .bNext2 {
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -16px;
}
.bNews {
  padding: 30px 0;
}
.bNews .items {
  display: flex;
  flex-flow: row wrap;
  margin: -15px;
}
.bNews .items .item {
  flex: 1 0 260px;
  margin: 15px;
}
.bNews .items .item .date {
  font-family: 'MyriadPro-Regular', Arial;
  color: #979797;
  font-size: 18px;
  line-height: 18px;
  text-align: right;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 3px;
}
.bNews .items .item .nititle {
  font-family: 'MyriadPro-Cond', Arial;
  color: #F05213;
  font-size: 28px;
  line-height: 28px;
  padding-top: 15px;
  padding-bottom: 30px;
}
.bNews .items .item .nititle A {
  color: #F05213;
  text-decoration: none;
}
.bNews .items .item .nitext {
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  font-size: 19px;
  line-height: 23px;
}
.bNews .items .item .more {
  color: #F05213;
}
.bLicense {
  background: #ddd7c9;
  margin-top: 20px;
  padding: 40px 0 20px 0;
}
.bLicense .items {
  overflow: hidden;
}
.bLicense .items .item {
  margin: 0 20px 20px;
}
@media (min-width: 600px) {
  .bLicense .items .column {
    float: left;
    width: 50%;
  }
  .bLicense .items .column.mr .item,
  .bLicense .items .column.ml .item {
    margin: 0 60px 20px;
  }
  .bLicense .items .column.mr .item {
    margin-left: 0;
  }
  .bLicense .items .column.ml .item {
    margin-right: 0;
  }
}
.bLicense .item {
  display: block;
  position: relative;
}
.bLicense .item .bg1,
.bLicense .item .bg2 {
  position: absolute;
  width: 100%;
  height: 80px;
  z-index: 1;
}
.bLicense .item .bg1 {
  background: url('/bitrix/templates/detsys/img/bLicense_bg1.png') left no-repeat;
}
.bLicense .item .bg2 {
  background: url('/bitrix/templates/detsys/img/bLicense_bg2.png') right no-repeat;
}
.bLicense .item .GSzico2 {
  z-index: 2;
}
.bLicense .item .img {
  height: 80px;
}
.bResponse {
  padding: 30px 0;
}
.bResponse .net {
  overflow: hidden;
}
.bResponse .net .l {
  width: 100%;
  margin-bottom: 30px;
}
.bResponse .net .l .response {
  display: block;
  width: 210px;
  height: 280px;
  border: 15px solid #ddd7c9;
  position: relative;
  margin: 0 auto;
}
.bResponse .net .l .response .img {
  background: #ddd7c9;
  height: 280px;
}
.bResponse .net .l .response .count {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #F05213;
  font-family: 'MyriadPro-Cond', Arial;
  color: #ffffff;
  font-size: 36px;
  line-height: 36px;
  padding: 5px 10px;
}
.bResponse .net .r {
  flex: 1;
  overflow: hidden;
}
.bResponse .net .r .item {
  border-top: 1px solid #588f84;
  overflow: hidden;
  padding-top: 15px;
  margin-bottom: 30px;
}
.bResponse .net .r .item .from {
  margin-right: 20px;
}
.bResponse .net .r .item .text {
  font-family: 'MyriadPro-Regular', Arial;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 20px;
}
.bResponse .net .r .item .name {
  font-family: 'MyriadPro-Regular', Arial;
  color: #F05213;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  cursor: pointer;
}
.bResponse .net .r .item .post {
  font-family: 'MyriadPro-Regular', Arial;
  color: #969696;
  font-size: 15px;
  line-height: 15px;
  text-transform: uppercase;
  margin: 20px 0 10px;
}
@media (min-width: 600px) {
  .bResponse .net {
    display: flex;
    flex-flow: row wrap;
  }
  .bResponse .net .l {
    width: 240px;
    margin: 0 30px 0 0;
  }
}
@media (min-width: 900px) {
  .bResponse .net .r .column {
    float: left;
    width: 50%;
  }
  .bResponse .net .r .column.mr .item {
    margin-right: 15px;
  }
  .bResponse .net .r .column.ml .item {
    margin-left: 15px;
  }
}
.slider-xl-nav {
  float: right;
  margin: -15px 56px 0 41px;
  position: relative;
}
.slider-xl-nav .slick-prev {
  left: -41px;
}
.slider-xl-nav .slick-next {
  right: -41px;
}
.slider-xl-nav .slick-prev,
.slider-xl-nav .slick-next {
  top: 12px;
  margin: 0;
}
.slider-xl-nav .slick-dots li button {
  margin: 18px 5px;
}
.bResponse.v2 {
  padding: 30px 0;
}
.bResponse.v2 .item .text {
  width: 100%;
  font-family: 'MyriadPro-Regular', Arial;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 20px;
}
.bResponse.v2 .item .name {
  font-family: 'MyriadPro-Regular', Arial;
  color: #F05213;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}
.bResponse.v2 .item .post {
  font-family: 'MyriadPro-Regular', Arial;
  color: #969696;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  margin: 20px 0 10px;
}
.bResponse.v2 .item:after {
  content: "";
  display: table;
  clear: both;
}
.bResponse.v2 .item .img {
  border: 10px solid #ddd7c9;
  width: 148px;
  height: 198px;
  margin: 0 auto 15px;
  cursor: pointer;
}
.bResponse.v2 .item .from {
  float: none;
  width: auto;
  margin-right: 0px;
  margin-bottom: 15px;
}
.bResponse.v2 .item .post {
  margin-top: 15px;
}
@media (min-width: 600px) {
  .bResponse.v2 .item .img {
    border: 15px solid #ddd7c9;
    width: 157px;
    height: 210px;
    margin: 0;
    float: left;
  }
  .bResponse.v2 .item .pl {
    padding-left: 210px;
  }
}
#popupResponse,
#popupResponseV2 {
  max-width: 790px;
  width: 100%;
  min-width: 280px;
}
#popupResponse .GStitle2,
#popupResponseV2 .GStitle2 {
  font-size: 30px;
}
@media (min-width: 600px) {
  #popupResponse,
  #popupResponseV2 {
    font-size: 42px;
  }
}
#popupResponse .img,
#popupResponseV2 .img {
  width: 100%;
  margin-bottom: 20px;
}
#popupResponse .GSslider .slide,
#popupResponse .GSslider .hidden,
#popupResponse .GSslider .move {
  height: 80px;
}
#popupResponse .GSslider {
  padding: 0 30px;
}
#popupResponse .GSslider {
  position: relative;
}
#popupResponse .GSslider .slide {
  padding-left: 5px;
  overflow: hidden;
}
#popupResponse .GSslider .item {
  float: left;
  width: 9.09%;
  height: 80px;
  padding: 5px 5px;
  background: #ddd7c9;
  margin-left: -5px;
}
#popupResponse .GSslider .item.act .img2 {
  outline: 5px solid #F05213;
}
#popupResponse .GSslider .item .img2 {
  height: 70px;
  position: relative;
}
#popupLicense {
  max-width: 790px;
  width: 100%;
  min-width: 280px;
}
#popupLicense .slick-prev {
  margin-left: -15px;
}
#popupLicense .slick-next {
  margin-right: -15px;
}
#popupLicense .GStitle2 {
  font-size: 30px;
}
@media (min-width: 600px) {
  #popupLicense {
    font-size: 42px;
  }
}
#popupLicense .slide img {
  width: 100%;
}
#popupClient,
#popupGetPresentation,
#popupGetDrone,
#popupGetSKUD {
  width: 100%;
  max-width: 330px;
}
#popupClient .done,
#popupGetPresentation .done,
#popupGetDrone .done,
#popupGetSKUD .done {
  display: none;
  margin-top: 20px;
}
#popupClient INPUT[type=text],
#popupClient .GSbtn,
#popupClient .checkboxWrap,
#popupGetPresentation INPUT[type=text],
#popupGetPresentation .GSbtn,
#popupGetPresentation .checkboxWrap,
#popupGetDrone INPUT[type=text],
#popupGetDrone .GSbtn,
#popupGetDrone .checkboxWrap,
#popupGetSKUD INPUT[type=text],
#popupGetSKUD .GSbtn,
#popupGetSKUD .checkboxWrap {
  margin: 20px auto 0;
  display: block;
  width: 240px;
}
#popupClient INPUT[type=text],
#popupGetPresentation INPUT[type=text],
#popupGetDrone INPUT[type=text],
#popupGetSKUD INPUT[type=text] {
  box-sizing: border-box;
}
.a1:hover {
  text-decoration: none;
}
.title1 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 25px;
  line-height: 1;
  color: #4d5153;
}
@media (min-width: 600px) {
  .title1 {
    font-size: 36px;
  }
}
.title1.cnt {
  text-align: center;
}
.title2 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 29px;
  line-height: 1;
  color: #4d5153;
}
.title3 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 43px;
  line-height: 1;
  color: #4d5153;
}
.title4 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 56px;
  line-height: 1;
  color: #4d5153;
}
.title5 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 60px;
  line-height: 1;
  color: #F05213;
}
.title6 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 28px;
  line-height: 1;
  color: #F05213;
}
.title6 h1 {
  font-size: 83%;
  line-height: 1.2;
  font-weight: normal;
  margin: 0px;
  display: inline;
}
@media (min-width: 600px) {
  .title6 {
    font-size: 36px;
  }
}
@media (min-width: 900px) {
  .title6 {
    font-size: 48px;
  }
}
.title7 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 14px;
  line-height: 1;
  color: #4d5153;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .title7 {
    font-size: 32px;
  }
}
@media (min-width: 900px) {
  .title7 {
    font-size: 40px;
  }
}
.title8 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 48px;
  line-height: 1;
  color: #4d5153;
}
.title9 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 53px;
  line-height: 1;
  color: #4d5153;
}
.text1 {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 15px;
  line-height: 1.05;
  color: #4d5153;
}
@media (min-width: 600px) {
  .text1 {
    font-size: 19px;
  }
}
@media (max-width: 600px) {
  .text1 {
    font-size: 17px;
  }
}
.text1 A {
  color: #F05213;
}
.text1 H2 {
  line-height: 1.1em;
}
.text2 {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 18px;
  line-height: 1.05;
  color: #4d5153;
}
@media (min-width: 600px) {
  .text2 {
    font-size: 21px;
  }
}
.text2 A {
  color: #F05213;
}
.text2 A:hover,
.text2 A:active {
  text-decoration: none;
}
.text3 {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 24px;
  line-height: 25px;
  line-height: 2em;
  color: #4d5153;
}
.text4 {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 28px;
  line-height: 29px;
  color: #4d5153;
}
.text5 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 28px;
  line-height: 29px;
  color: #3d3d3d;
}
.text1 B,
.text1 STRONG {
  font-family: 'MyriadPro-Semibold', Arial;
  font-weight: normal;
}
.ul1 {
  padding: 0px;
  margin: 0px;
  margin-left: 20px;
}
.ul1 LI {
  list-style: none;
  padding: 0px;
}
.a1 {
  color: #F05213;
}
.breadCrumbs {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 16px;
  color: #9fa1a3;
  margin-top: 20px;
  margin-bottom: 20px;
}
.breadCrumbs_compare {
  margin-top: 10px;
  margin-bottom: 10px;
}
.breadCrumbs A {
  color: #9fa1a3;
  text-decoration: none;
}
A.breadCrumbs__sel,
.breadCrumbs__sel {
  color: #F05213;
}
.subNav {
  overflow: hidden;
  margin: 20px;
  margin-bottom: 10px;
}
.subNav A {
  float: left;
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 24px;
  line-height: 24px;
  color: #F05213;
  padding: 5px 10px;
  text-decoration: none;
  background: #f1efe9;
  margin-right: 10px;
  margin-bottom: 10px;
}
.protectingITinformation .b2 .title1 {
  margin-bottom: 15px;
}
.protectingITinformation .b3 {
  margin-top: 20px;
}
.protectingITinformation .b3 .title1.uc {
  text-transform: uppercase;
}
.protectingITinformation .b3 .item {
  overflow: hidden;
  margin-bottom: 20px;
  margin-top: 10px;
}
.protectingITinformation .b3 .item .img {
  width: 250px;
  height: 120px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto 20px;
}
.protectingITinformation .b3 .item .img.v1 {
  background-image: url('/bitrix/templates/detsys/img/protectingITinformation_i1.jpg');
}
.protectingITinformation .b3 .item .img.v2 {
  background-image: url('/bitrix/templates/detsys/img/protectingITinformation_i2.jpg');
}
.protectingITinformation .b3 .item .img.v3 {
  background-image: url('/bitrix/templates/detsys/img/protectingITinformation_i3.jpg');
}
.protectingITinformation .b3 .item .img.v4 {
  background-image: url('/bitrix/templates/detsys/img/protectingITinformation_i4.jpg');
}
.protectingITinformation .b3 .item .title1 {
  margin-bottom: 20px;
}
@media (min-width: 900px) {
  .protectingITinformation .b3 .item .info {
    padding-left: 480px;
  }
  .protectingITinformation .b3 .item .img {
    float: left;
    width: 440px;
    height: 210px;
    margin: 0;
  }
}
.protectingITinformation .b4 {
  margin-top: 10px;
  margin-bottom: 30px;
}
.protectingITinformation .b5 .title2 {
  margin-top: 10px;
  margin-bottom: 15px;
}
.protectingITinformation .b5 .item {
  margin-top: 4px;
  overflow: hidden;
}
.protectingITinformation .b5 .item .ititle {
  display: block;
  text-decoration: none;
  background: #eeebe7;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 24px;
  line-height: 24px;
  color: #F05213;
  padding: 2px;
}
.protectingITinformation .b5 .item .ititle .t {
  padding-left: 40px;
}
.protectingITinformation .b5 .item .ico {
  float: left;
  width: 16px;
  height: 16px;
  background: url('/bitrix/templates/detsys/img/plusMinus.png') left top no-repeat;
  margin-left: 10px;
  margin-top: 4px;
}
.protectingITinformation .b5 .item .info {
  display: none;
  padding-top: 15px;
  padding-bottom: 40px;
  max-width: 850px;
}
@media (min-width: 600px) {
  .protectingITinformation .b5 .item .info {
    padding-left: 70px;
  }
}
.protectingITinformation .b5 .item.open .ititle {
  background: #e6e3da;
  color: #4d5153;
}
.protectingITinformation .b5 .item.open .ico {
  background-position: 0 -17px;
}
.protectingITinformation .b5 .item.open .info {
  display: block;
}
.protectingITinformation .b6 {
  margin-top: 40px;
}
.protectingITinformation .b7 {
  margin-top: 40px;
}
.protectingITinformation .b7 .img {
  width: 250px;
  height: 290px;
  background: url('/bitrix/templates/detsys/img/protectingITinformation_i5.jpg') center no-repeat / contain;
  margin: 0 auto;
}
.protectingITinformation .b7 .title1 {
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .protectingITinformation .b7 .img {
    width: 430px;
    height: 500px;
  }
}
@media (min-width: 900px) {
  .protectingITinformation .b7 .img {
    float: left;
    margin: 0;
  }
  .protectingITinformation .b7 .text1 {
    padding-left: 450px;
  }
}
.protectingITinformation .b8 {
  margin-top: 40px;
}
.protectingITinformation .b9 {
  margin-top: 30px;
}
.protectingITinformation .b9 .img {
  width: 250px;
  height: 165px;
  background: url('/bitrix/templates/detsys/img/protectingITinformation_i6.jpg') center no-repeat / contain;
  margin: 0 auto;
}
.protectingITinformation .b9 .title1 {
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .protectingITinformation .b9 .img {
    width: 430px;
    height: 285px;
  }
}
@media (min-width: 900px) {
  .protectingITinformation .b9 .img {
    float: left;
    margin: 0;
  }
  .protectingITinformation .b9 .text1 {
    padding-left: 450px;
  }
}
.protectingITinformation .b10 {
  margin-top: 40px;
  margin-bottom: 40px;
}
.protectingITinformation .b10 .title1 {
  margin-bottom: 20px;
}
.protectingITinformation .b10 .slick-slider {
  padding: 0 21px;
}
.protectingITinformation .b10 .slick-slider .slick-slide {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 200px;
  margin: 0 5px;
  height: 100px;
}
.slider1 {
  padding: 0px 30px;
  position: relative;
}
.slider1 .item {
  float: left;
}
.slider1 .slide IMG {
  display: block;
  margin: 0 10px;
}
.slider1 .hidden {
  overflow: hidden;
}
.slider1 .move {
  position: relative;
}
.slider1 .slide {
  position: absolute;
}
.slider1 .slide,
.slider1 .hidden,
.slider1 .move {
  height: 89px;
  width: 100%;
}
.slider2 {
  padding: 0px 30px;
  position: relative;
}
.slider2 .item {
  float: left;
}
.slider2 .slide IMG {
  display: block;
  margin: 0 10px;
}
.slider2 .hidden {
  overflow: hidden;
}
.slider2 .move {
  position: relative;
}
.slider2 .slide {
  position: absolute;
}
.slider2 .slide,
.slider2 .hidden,
.slider2 .move {
  height: 50px;
  width: 100%;
}
.bRental .title1 {
  text-transform: uppercase;
}
.bRental .oh {
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 20px;
}
.bRental .oh .r {
  margin-top: 30px;
}
.bRental .oh .GSinput1,
.bRental .oh .checkboxWrap {
  width: 100%;
  margin-top: 15px;
  box-sizing: border-box;
}
.bRental .oh .GSbtn {
  width: 100%;
  max-width: 270px;
  margin-top: 15px;
}
@media (min-width: 900px) {
  .bRental .oh {
    margin-top: 70px;
    margin-bottom: 40px;
  }
  .bRental .oh .l,
  .bRental .oh .r {
    float: left;
    width: 50%;
    margin-top: 0;
  }
  .bRental .padl {
    padding-left: 20px;
  }
  .bRental .padr {
    padding-right: 20px;
  }
}
.bottomContact {
  margin: 50px 15px 40px;
  text-align: center;
}
.bottomContact span,
.bottomContact a {
  color: #F05213;
}
.bottomContact span a {
  text-decoration: none;
}
.bProtection .oh {
  overflow: hidden;
  margin-top: 70px;
  margin-bottom: 40px;
}
.bProtection .title1 {
  text-transform: uppercase;
}
.bProtection .oh .GSbtn {
  width: 250px;
  float: right;
  margin: 20px 0 0 20px !important;
}
.bProtection .oh .item {
  overflow: hidden;
  margin-bottom: 30px;
}
.bProtection .oh .item .title1 {
  margin-bottom: 10px;
}
@media (min-width: 900px) {
  .bProtection .l,
  .bProtection .r {
    float: left;
    width: 50%;
  }
  .bProtection .padl {
    padding-left: 20px;
  }
  .bProtection .padr {
    padding-right: 20px;
  }
}
.bSecurity {
  margin-bottom: 40px;
}
.bSecurity .title3 {
  text-align: center;
  margin-bottom: 20px;
}
.bSecurity .lsr {
  overflow: hidden;
  height: 320px;
}
.bSecurity .lsr .lsrMenu {
  width: 350px;
  float: left;
}
.bSecurity .lsr .lsrMenu A {
  font-family: 'MyriadPro-Cond', Arial;
  height: 49px;
  display: block;
  text-decoration: none;
  color: #4d5153;
  font-size: 34px;
  line-height: 34px;
  background: #d7d1c3;
  padding: 15px 0 0 15px;
}
.bSecurity .lsr .lsrMenu A.act {
  background: #F05213;
  color: #d7d1c3;
}
.bSecurity .lsr .lsrR {
  width: 850px;
  height: 320px;
  float: left;
  position: relative;
}
.bSecurity .lsr .lsrR .item {
  width: 850px;
  height: 320px;
  position: absolute;
  top: 0px;
  left: 0px;
}
.bSecurity .lsr .lsrR .item.v1 {
  z-index: 1;
  background: url('/bitrix/templates/detsys/img/bSecurity_i1.jpg') left no-repeat;
}
.bSecurity .lsr .lsrR .item.v2 {
  background: url('/bitrix/templates/detsys/img/bSecurity_i2.jpg') left no-repeat;
}
.bSecurity .lsr .lsrR .item.v3 {
  background: url('/bitrix/templates/detsys/img/bSecurity_i3.jpg') left no-repeat;
}
.bSecurity .lsr .lsrR .item.v4 {
  background: url('/bitrix/templates/detsys/img/bSecurity_i4.jpg') left no-repeat;
}
.bSecurity .lsr .lsrR .item.v5 {
  background: url('/bitrix/templates/detsys/img/bSecurity_i5.jpg') left no-repeat;
}
.bSecurity .lsr .lsrR .info {
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  font-size: 24px;
  line-height: 24px;
  color: #ffffff;
  font-family: 'MyriadPro-Regular', Arial;
  background: url('/bitrix/templates/detsys/img/bSecurityInfoBg.png');
}
.bSecurity .lsr .lsrR .info .ipad {
  padding: 10px 15px;
}
.bSecurity .lsr .lsrR .info SPAN {
  display: block;
  margin-top: 20px;
  font-size: 18px;
  line-height: 18px;
}
.bDev {
  margin-top: 50px;
}
.bDev .title3 {
  text-align: center;
  margin-bottom: 40px;
}
.bProject {
  margin-top: 50px;
}
.bProject .title4 {
  text-transform: uppercase;
}
.bProject .demo .item {
  border-bottom: 1px solid #55897f;
  padding: 10px 0;
}
.bProject .demo .item:last-child {
  border-bottom: 0px;
}
.bProject .demo {
  display: table;
  width: 100%;
}
.bProject .l,
.bProject .r {
  display: table-cell;
  vertical-align: middle;
}
.bProject .l {
  width: 550px;
}
.bProject .demo .img {
  width: 510px;
  height: 315px;
}
.bProject .list {
  overflow: hidden;
  margin-top: 70px;
}
.bProject .list .lhidden {
  width: 5000px;
}
.bProject .list .item {
  float: left;
  width: 280px;
  height: 165px;
  margin-right: 25px;
  position: relative;
}
.bProject .list .item .ititle {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 26px;
  line-height: 26px;
  text-transform: uppercase;
  color: #F05213;
  background: #ffffff;
  background: url('/bitrix/templates/detsys/img/bProjectItitleBg.png');
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 260px;
  height: 60px;
  padding: 10px 10px 0 10px;
}
.bProject .list .item:last-child {
  margin-right: 0px;
}
.bWorkSh {
  background: #fbfaf9;
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: 30px;
  padding: 40px 60px 80px 60px;
}
.bWorkSh .num .al {
  float: right;
  margin-right: 15px;
}
.bWorkSh .title3 {
  text-align: center;
  margin-bottom: 40px;
}
.bWorkSh .list {
  display: table;
  width: 100%;
}
.bWorkSh .list .item {
  margin-top: 30px;
}
.bWorkSh .item .num,
.bWorkSh .item .ico,
.bWorkSh .item .itext {
  display: table-cell;
  vertical-align: middle;
}
.bWorkSh .num {
  width: 40px;
  text-align: center;
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 60px;
  line-height: 60px;
  color: #d7d1c3;
}
.bWorkSh .itext {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 25px;
  line-height: 30px;
  color: #4d5153;
}
.bWorkSh .item .ico {
  width: 150px;
}
.bWorkSh .ico.v1 {
  height: 55px;
  background: url('/bitrix/templates/detsys/img/bProject_i1.png') center no-repeat;
}
.bWorkSh .ico.v2 {
  height: 83px;
  background: url('/bitrix/templates/detsys/img/bProject_i2.png') center no-repeat;
}
.bWorkSh .ico.v3 {
  height: 56px;
  background: url('/bitrix/templates/detsys/img/bProject_i3.png') center no-repeat;
}
.bWorkSh .ico.v4 {
  height: 71px;
  background: url('/bitrix/templates/detsys/img/bProject_i4.png') center no-repeat;
}
.bWorkSh .ico.v5 {
  height: 72px;
  background: url('/bitrix/templates/detsys/img/bProject_i5.png') center no-repeat;
}
.bWorkSh .ico.v6 {
  height: 60px;
  background: url('/bitrix/templates/detsys/img/bProject_i6.png') center no-repeat;
}
.bWorkSh .ico.v7 {
  height: 65px;
  background: url('/bitrix/templates/detsys/img/bProject_i7.png') center no-repeat;
}
.bNewsDetail .nfilter {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 24px;
  line-height: 24px;
  color: #4d5153;
  margin-top: -20px;
}
.bNewsDetail .nfilter span {
  font-size: 24px;
}
.bNewsDetail .nfilter .small {
  display: inline-block;
}
.bNewsDetail .nfilter .big {
  display: none;
}
@media (min-width: 600px) {
  .bNewsDetail .nfilter {
    float: right;
  }
  .bNewsDetail .nfilter .big {
    display: inline-block;
  }
  .bNewsDetail .nfilter .small {
    display: none;
  }
}
.bNewsDetail .nfilter a {
  color: #F05213;
  text-decoration: none;
}
.bNewsDetail .nfilter input {
  font-family: 'MyriadPro-Cond', Arial;
  color: #F05213;
  padding: 3px 5px;
  font-size: 24px;
  line-height: 24px;
  margin: 0 5px;
  background: #ddd7c9;
  border: 0px;
  width: 85px;
  cursor: pointer;
}
.bNewsDetail .nfilter input:hover {
  background: #F05213;
  color: #ddd7c9;
}
.bNewsDetail .nfilter a:hover {
  color: #ddd7c9;
  background: #F05213;
}
.bNewsDetail .nnav {
  overflow: hidden;
  margin-top: 30px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.bNewsDetail .nnav a {
  font-size: 16px;
  max-width: 50%;
}
.bNewsDetail .nnav .n {
  text-align: right;
}
.bNewsDetail .ndetail {
  overflow: hidden;
  margin-top: 30px;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 20px;
}
.bNewsDetail .ndetail .dtitle {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 20px;
  line-height: 1;
  color: #F05213;
}
.bNewsDetail .ndetail .dtitle a {
  color: #F05213;
  text-decoration: none;
}
.bNewsDetail .ndetail .date {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 14px;
  line-height: 1;
  color: #979797;
  float: right;
  margin-top: 12px;
}
.bNewsDetail .ndetail .dimg {
  display: block;
  margin: 20px auto;
  max-width: 580px;
  max-height: 280px;
}
@media (min-width: 600px) {
  .bNewsDetail .ndetail .dtitle {
    font-size: 32px;
  }
  .bNewsDetail .ndetail .date {
    font-size: 18px;
  }
}
@media (max-width: 899px) {
  .bNewsDetail .ndetail .l .pad {
    display: flex;
    flex-flow: column nowrap;
  }
  .bNewsDetail .ndetail .l .pad .dtitle {
    order: 0;
  }
  .bNewsDetail .ndetail .l .pad .date {
    order: 1;
  }
  .bNewsDetail .ndetail .l .pad img {
    order: 2;
  }
}
@media (min-width: 900px) {
  .bNewsDetail .ndetail .l,
  .bNewsDetail .ndetail .r {
    float: left;
    width: 50%;
  }
  .bNewsDetail .ndetail .l .pad {
    padding-right: 15px;
  }
  .bNewsDetail .ndetail .r .pad {
    padding-left: 15px;
  }
  .bNewsDetail .ndetail .dtitle {
    padding-right: 100px;
  }
  .bNewsDetail .ndetail .dimg {
    margin: 20px 0;
  }
}
.cl {
  clear: both;
}
.bNewsAll {
  margin-top: 50px;
  margin-bottom: 30px;
}
.bNewsAll .title1 {
  text-transform: uppercase;
  margin-bottom: 5px;
}
.bNewsAll .items {
  overflow: hidden;
}
.bNewsAll .item {
  margin-bottom: 30px;
}
.bNewsAll .item .dimg {
  max-width: 160px;
  max-height: 80px;
  margin-bottom: 10px;
}
.bNewsAll .item .date {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 18px;
  line-height: 18px;
  color: #979797;
  float: right;
  margin-top: 70px;
}
.bNewsAll .item .dtitle {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 28px;
  line-height: 28px;
  color: #F05213;
}
.bNewsAll .item .dtitle a {
  color: #F05213;
  text-decoration: none;
}
.bNewsAll .item .dhr {
  clear: both;
  border-bottom: 1px solid #d3d3d3;
  margin: 10px 0;
  margin-top: 0px;
}
.bNewsAll .item .dtop {
  overflow: hidden;
}
.bNewsAll .item.act {
  outline: 5px solid #eae6de;
}
.bNewsAll .str {
  overflow: hidden;
  margin-bottom: 20px;
  padding: 5px;
}
.bNewsAll.Article {
  text-align: center;
}
.bNewsAll.Article .date {
  margin-top: 0px;
}
@media (min-width: 900px) {
  .bNewsAll .item {
    float: left;
    width: 33.33%;
    margin: 0;
  }
  .bNewsAll .item .pad {
    padding: 30px;
  }
}
.bNewsAll_recommended {
  border-top: 1px solid #d3d3d3;
  padding-top: 50px;
  margin-top: 20px;
}
@media (max-width: 599px) {
  .bNewsAll_recommended {
    margin-left: -30px;
    margin-right: -30px;
  }
}
.bNewsAll_recommended .str {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 900px) {
  .bNewsAll_recommended .str {
    flex-direction: row;
  }
}
.bNewsAll_recommended .title1 {
  margin-bottom: 20px;
}
@media (min-width: 900px) {
  .bNewsAll_recommended .title1 {
    margin-bottom: 5px;
  }
}
.bNewsAll_recommended .item {
  flex-grow: 0;
  flex-shrink: 0;
  margin-bottom: 0px;
}
.bNewsAll_recommended .item .text1 {
  margin-top: 10px;
}
@media (min-width: 900px) {
  .bNewsAll_recommended .item {
    width: 33.333333333333%;
    margin-bottom: 30px;
  }
}
.bContactInf {
  margin-top: 50px;
  margin-bottom: 30px;
}
.bContactInf .title1 {
  font-size: 30px;
}
.bContactInf .oh {
  overflow: hidden;
}
@media (min-width: 1200px) {
  .bContactInf .oh .l {
    float: left;
    width: 600px;
    margin-right: 30px;
  }
  .bContactInf .oh .r {
    padding-left: 630px;
  }
}
@media (min-width: 900px) {
  .bContactInf .oh .l {
    float: left;
    width: 600px;
    margin-right: 30px;
  }
  .bContactInf .oh .r {
    padding-left: 630px;
  }
}
@media (max-width: 1100px) and (min-width: 900px) {
  .bContactInf .oh .l {
    width: 500px;
  }
  .bContactInf .oh .r {
    padding-left: 530px;
  }
}
.bContactBot {
  margin-bottom: 30px;
}
.bContactBot .phone {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 29px;
  line-height: 29px;
  color: #4d5153;
  margin: 30px 0;
}
.bContactBot .phone SPAN {
  color: #F05213;
}
.bContactBot .phone SPAN A {
  color: #F05213;
  text-decoration: none;
}
.bAboutProjects2 {
  margin: 0 -15px;
  overflow: hidden;
}
.bAboutProjects2 .l,
.bAboutProjects2 .r {
  padding: 0 15px;
  box-sizing: border-box;
}
.bAboutProjects2 .img {
  width: 100%;
  max-width: 490px;
  height: 153px;
  background: url('/bitrix/templates/detsys/img/bAboutProjects_i1.jpg') center no-repeat;
  background-size: contain;
  margin-bottom: 30px;
}
.bAboutProjects2 .rtitle {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 40px;
  line-height: 1;
  color: #4d5153;
  text-transform: uppercase;
  margin-top: 30px;
}
.bAboutProjects2 .num {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 50px;
  line-height: 1;
  color: #F05213;
  text-transform: uppercase;
}
.bAboutProjects2 .rtitle1 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 30px;
  line-height: 1;
  color: #4d5153;
  text-transform: uppercase;
}
.bAboutProjects2 .rtitle2 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 25px;
  line-height: 1;
  color: #4d5153;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .bAboutProjects2 .l,
  .bAboutProjects2 .r {
    float: left;
    width: 50%;
  }
  .bAboutProjects2 .rtitle {
    font-size: 61px;
  }
  .bAboutProjects2 .num {
    font-size: 90px;
  }
  .bAboutProjects2 .rtitle1 {
    font-size: 38px;
  }
  .bAboutProjects2 .rtitle2 {
    font-size: 33px;
  }
}
@media (min-width: 900px) {
  .bAboutProjects2 .num {
    font-size: 155px;
    margin-top: -15px;
  }
}
.bArticle {
  margin-top: 30px;
}
.bArticle .title6 {
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
}
.bArticle .title6:after {
  content: "";
  display: table;
  clear: both;
}
.bArticle .title6 .date {
  font-family: 'MyriadPro-Regular', Arial;
  color: #979797;
  font-size: 18px;
  line-height: 18px;
  padding-top: 25px;
  float: right;
  padding-left: 20px;
}
.bArticle img {
  display: block;
  max-width: 100%;
  margin: 20px auto;
  float: none;
}
@media (max-width: 599px) {
  .bArticle img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 600px) {
  .bArticle img {
    float: right;
    margin: 0px;
    margin-left: 40px;
    margin-bottom: 20px;
  }
  .bArticle img.fl {
    float: left;
    margin: 0px;
    margin-right: 40px;
    margin-bottom: 20px;
  }
}
.bArticle_img-left img {
  max-width: 100%;
  float-right: auto;
  float: none;
  height: auto !important;
  margin: 20px 0 !important;
}
@media (max-width: 600px) {
  .bArticle_img-left img {
    max-width: 100% !important;
    margin: 20px auto !important;
  }
}
@media (max-width: 599px) {
  .bArticle img.iimg {
    width: auto;
  }
}
.bArticle img.free {
  display: inline-block;
  margin: 0;
  float: none !important;
}
@media (max-width: 599px) {
  .bArticle img.free {
    width: auto;
    height: auto;
  }
}
.bArticle A {
  color: #F05213;
}
.bArticle A:hover {
  text-decoration: none;
}
.bArticle .text1 {
  margin: 40px 0;
}
.bAboutResponse {
  margin-top: 60px;
}
.bAboutScan {
  margin-top: 20px;
  margin-bottom: 20px;
}
.bAboutScan .item {
  width: 230px;
  margin: 0 30px;
}
.bAboutScan .item img {
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
}
.bAboutScan .item .text {
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  font-size: 19px;
  line-height: 21px;
  margin-top: 20px;
  text-align: center;
}
.bAboutScan .slick-arrow {
  top: 160px;
}
.bAboutPart .img {
  width: 100%;
  max-width: 381px;
  height: 239px;
  background: url('/bitrix/templates/detsys/img/bAboutPart.jpg') center no-repeat;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .bAboutPart .img {
    float: left;
    margin: 0;
  }
  .bAboutPart .r {
    padding-left: 405px;
  }
}
.bAboutPL {
  margin-top: 50px;
}
.bAboutPL .title7 {
  text-align: center;
}
.bAboutPL .subTitle {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 15px;
  line-height: 1;
  color: #ddd7c9;
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .bAboutPL .subTitle {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .bAboutPL .subTitle {
    font-size: 32px;
  }
}
.bAboutPL .str {
  background: #f7f6f4;
  overflow: hidden;
  max-width: 1060px;
  margin: 0 auto;
  margin-top: 15px;
}
.bAboutPL .str .text2 br {
  display: none;
}
@media (min-width: 900px) {
  .bAboutPL .str .text2 br {
    display: block;
  }
}
.bAboutPL .str .str2,
.bAboutPL .str .l .title1,
.bAboutPL .str .l .text2 {
  margin: 15px 0;
}
@media (min-width: 600px) {
  .bAboutPL .str .str2,
  .bAboutPL .str .l .title1,
  .bAboutPL .str .l .text2 {
    margin: 0;
  }
}
@media (min-width: 900px) {
  .bAboutPL .str .l {
    width: 50%;
    float: left;
  }
  .bAboutPL .str .l .pad {
    padding: 20px;
  }
}
.bAboutPL .str .l .pad {
  padding: 5px 15px;
}
@media (min-width: 600px) {
  .bAboutPL .str .l .pad {
    padding: 20px;
  }
}
.bAboutPL .str .l .title1 {
  padding-bottom: 10px;
}
.bAboutPL .str .str2 {
  overflow: hidden;
}
.bAboutPL .str .str2 .num {
  font-family: 'MyriadPro-Cond', Arial;
  color: #4d5153;
  font-size: 24px;
  line-height: 1;
}
.bAboutPL .str .str2 .free {
  font-family: 'MyriadPro-Cond', Arial;
  color: #F05213;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}
.bAboutPL .str .str2 .num {
  display: inline;
}
.bAboutPL .str .str2 .text2 {
  display: inline;
}
.bAboutPL .str .str2 .free {
  display: inline;
}
.bAboutPL .str .str2 .text2.tfree {
  display: inline;
}
@media (min-width: 600px) {
  .bAboutPL .str .str2 .num {
    font-size: 68px;
    display: block;
    float: left;
  }
  .bAboutPL .str .str2 .text2 {
    display: block;
    padding-left: 110px;
    padding-top: 10px;
  }
  .bAboutPL .str .str2 .free {
    font-size: 50px;
    display: block;
    float: left;
    padding-top: 10px;
  }
  .bAboutPL .str .str2 .text2.tfree {
    display: block;
    padding-left: 200px;
    padding-top: 0px;
  }
}
.bAboutPL .bottomContact .title1 {
  line-height: 1.11;
}
.bAboutJob .title7 {
  margin-top: 60px;
  margin-bottom: -20px;
}
.bAboutJob .bottomContact .title1 {
  line-height: 1.1;
}
.bAboutJob .items {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .bAboutJob .items {
    display: block;
  }
}
.bAboutJob .item {
  border-top: 1px solid #e0d8ca;
  padding-top: 20px;
  margin-top: 30px;
}
.bAboutJob .item {
  float: left;
  width: 100%;
}
@media (min-width: 900px) {
  .bAboutJob .item {
    width: 50%;
  }
}
.bAboutJob .item:nth-child(even) {
  float: right;
}
.bAboutJob .item .pad {
  padding-right: 0px;
}
@media (min-width: 900px) {
  .bAboutJob .item .pad {
    padding-right: 20px;
  }
}
.bAboutJob .item:nth-child(even) .pad {
  padding-right: 0px;
  padding-left: 0px;
}
@media (min-width: 900px) {
  .bAboutJob .item:nth-child(even) .pad {
    padding-left: 20px;
  }
}
.catalogMenu {
  border-bottom: 6px solid #F05213;
  background: #ddd7c9;
}
.catalogMenu .bg1 {
  background: url('/bitrix/templates/detsys/img/catalogMenu_bg1.png') left center no-repeat;
}
.catalogMenu .bg2 {
  background: url('/bitrix/templates/detsys/img/catalogMenu_bg2.png') right center no-repeat;
  padding-top: 10px;
}
.catalogMenu .str {
  overflow: hidden;
}
.catalogMenu .ctitle {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 38px;
  line-height: 38px;
  color: #3d3d3d;
  text-transform: uppercase;
  float: left;
}
.catalogMenu .csearch {
  float: left;
  margin-left: 30px;
  position: relative;
}
.catalogMenu .csearch .vr {
  position: absolute;
  width: 1px;
  height: 30px;
  background: #babcbe;
  top: 5px;
  right: 40px;
}
.catalogMenu .csearch INPUT[type=text] {
  width: 380px;
  padding-right: 40px;
}
.catalogMenu .csearch INPUT[type=submit] {
  position: absolute;
  width: 26px;
  height: 26px;
  background: url('/bitrix/templates/detsys/img/catalogMenu_search.png') center no-repeat;
  top: 7px;
  right: 8px;
  margin: 0px;
  padding: 0px;
  border: 0px;
  cursor: pointer;
}
.catalogMenu .dev {
  float: right;
}
.catalogMenu .dev .dtitle {
  text-align: right;
  font-family: 'MyriadPro-Cond', Arial;
  color: #4d5153;
  font-size: 21px;
  line-height: 24px;
  text-transform: uppercase;
  padding-right: 66px;
  margin-top: -2px;
}
.catalogMenu .dev .ico {
  width: 56px;
  height: 46px;
  background: url('/bitrix/templates/detsys/img/catalogMenu_dev.png') center no-repeat;
  float: right;
}
.catalogMenu .items {
  display: table;
}
.catalogMenu .item {
  display: table-cell;
}
.catalogMenu .items A {
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px 15px 20px;
  margin-bottom: -6px;
  display: inline-block;
}
.catalogMenu .items .sale A {
  color: #bc4425;
}
.catalogMenu .items .sel A {
  color: #ddd7c9;
  background: #4d5153;
}
.bCatalog .GStitle {
  margin-bottom: 10px;
}
.bCatalog .sub {
  overflow: hidden;
  margin-bottom: 5px;
  overflow-wrap: normal;
  word-wrap: normal;
}
.bCatalog .sub .GSbtn2 {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.bCatalog .sub .GSbtn2.act {
  color: #4d5153;
  background: #f1efe9;
}
.bCatalog .sub .filter {
  background: #f1efe9;
  clear: both;
  margin-bottom: 10px;
  padding: 15px 20px;
}
.bCatalog .bProductList {
  margin-bottom: 20px;
}
.bCatalog .bProductList.vert {
  margin-bottom: 0px;
}
.bCatalog .GStitle {
  margin-top: 20px;
}
.bProductList .sale,
.bCatalogDetail .sale,
.bProductList .hit,
.bCatalogDetail .hit {
  width: 79px;
  height: 79px;
  background: url('/bitrix/templates/detsys/img/bCatalog_sale.svg?2') center no-repeat;
  position: absolute;
  bottom: 10px;
  right: 5px;
}
.bProductList .sale,
.bProductList .hit {
  width: 59px;
  height: 59px;
  background: url('/bitrix/templates/detsys/img/bCatalog_sale.svg?2') center no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 15px;
  left: 0px;
  top: 0px;
  pointer-events: none;
  width: 48px;
  height: 48px;
}
.bCatalogDetail .hit SPAN,
.bProductList .hit SPAN {
  padding-bottom: 5px;
  font-family: 'MyriadPro-Regular', Arial;
}
.bCatalogDetail .hit,
.bProductList .hit {
  color: #000;
  font-size: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  font-family: 'MyriadPro-Regular', Arial;
}
.bProductList .hit {
  font-size: 10px;
  line-height: 0.9em;
}
.bProductList .sale .val,
.bCatalogDetail .sale .val {
  color: #000;
  font-size: 31px;
  line-height: 31px;
  margin-top: 23px;
  font-family: 'MyriadPro-BoldCond', Arial;
  text-align: center;
}
.bProductList .sale .val {
  font-size: 21px;
  line-height: 21px;
  margin-top: 18px;
  font-size: 17px;
  line-height: 17px;
  margin-top: 14px;
}
.bCatalogDetail .GSbtn4 {
  margin-top: 10px;
}
.bConditions .b1 {
  margin-top: 50px;
}
.bConditions .b1 .title1.uc {
  text-transform: uppercase;
}
.bConditions .b1 .item {
  overflow: hidden;
  margin-bottom: 50px;
  margin-top: 40px;
}
.bConditions .b1 .item .title1 {
  margin-bottom: 20px;
}
.bConditions .b1 .item .img {
  width: 100%;
  max-width: 460px;
  height: 200px;
  margin: 0 auto 20px;
}
.bConditions .b1 .item .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.bConditions .b1 .item .img.v1 {
  background: url('/bitrix/templates/detsys/img/bConditions_img1.jpg') no-repeat;
}
.bConditions .b1 .item .img.v2 {
  background: url('/bitrix/templates/detsys/img/bConditions_img2.jpg') no-repeat;
}
.bConditions .b1 .item .img.v3 {
  background: url('/bitrix/templates/detsys/img/bConditions_img3.jpg') no-repeat;
}
@media (min-width: 900px) {
  .bConditions .b1 .item .info {
    padding-left: 490px;
  }
  .bConditions .b1 .item .img {
    float: left;
    margin: 0;
  }
}
.bCatalogSection .sub {
  margin-top: 15px;
}
.bCatalogDetail .product-spec-table {
  width: 100%;
}
.bCatalogDetail .product-spec-table,
.bCatalogDetail .product-spec-table tr,
.bCatalogDetail .product-spec-table td {
  border: 1px solid #d3d3d3;
  margin: 0;
  padding: 0;
  border-spacing: 0;
}
.bCatalogDetail .product-spec-table td {
  padding: 5px;
}
.bCatalogDetail .product-spec-table ul {
  padding: 0 20px;
  margin: 0;
}
@media (min-width: 900px) {
  .bCatalogDetail.v3 .detail > .oh .w {
    width: 40%;
  }
  .bCatalogDetail.v3 .detail > .oh .w:last-child {
    width: 60%;
  }
}
.bCatalogDetail.v3 .param .GScounter {
  clear: both;
  margin-bottom: 15px;
}
.bCatalogDetail.v3 .detail .price {
  padding-right: 60px;
}
.bCatalogDetail.v3 .detail .price .priceSelector {
  float: left;
  margin-right: 10px;
  position: relative;
  bottom: -3px;
}
@media (max-width: 899px) {
  .bCatalogDetail.v3 .detail .price .priceSelector {
    bottom: -1px;
  }
}
.bCatalogDetail.v3 .detail .price.mt {
  padding-right: 0;
}
.bCatalogDetail.v3 .detail .price.off {
  color: #919395;
}
.bCatalogDetail.v3 .detail .text1 ul li {
  background-size: 19px 15px;
  padding-left: 30px;
  min-height: 15px;
}
.bCatalogDetail.v3 .detail .text1 ul li p {
  margin: 0;
}
.bCatalogDetail.v3 .detail .text1 ul ul {
  margin-top: 10px;
  margin-bottom: 10px;
}
.bCatalogDetail.v3 .detail .text1 ul ul li {
  background: none;
  position: relative;
}
.bCatalogDetail.v3 .detail .text1 ul ul li:after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: #bc4425;
  position: absolute;
  top: 7px;
  left: 18px;
}
.bCatalogDetail.v3 .detail .text1 ul>ul {
  padding-left: 30px;
}
.bCatalogDetail.v3 .detail .nds {
  padding-top: 5px;
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
}
@media (max-width: 899px) {
  .bCatalogDetail.v3 .detail .nds {
    padding-left: 0px;
  }
}
.bCatalogDetail.v3 .fquestion > * {
  margin: 0 auto;
  max-width: 600px;
}
.bCatalogDetail.v3 .badges .wrap {
  display: flex;
  flex-flow: row wrap;
  overflow: hidden;
  justify-content: space-evenly;
  border-left: 1px solid #ddd7c9;
  border-right: 1px solid #ddd7c9;
  margin: 10px 0;
  padding: 0;
}
.bCatalogDetail.v3 .badges .wrap div,
.bCatalogDetail.v3 .badges .wrap a {
  display: inline-block;
  flex: 1;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 14px;
  text-align: center;
  margin: 10px 0;
  padding: 50px 25px 0;
  word-break: normal;
}
.bCatalogDetail.v3 .badges .wrap .sep {
  display: none;
  flex: 0 0 1px;
  background: #ddd7c9;
  margin: 0;
  padding: 0;
}
.bCatalogDetail.v3 .badges .wrap .zakupki {
  background: url(/bitrix/templates/detsys/img/badges-zakupki.png?2) center top no-repeat;
  text-decoration: none;
  color: #F05213;
}
.bCatalogDetail.v3 .badges .wrap .nalicie {
  background: url(/bitrix/templates/detsys/img/badges-nalicie.png?2) center top no-repeat;
}
.bCatalogDetail.v3 .badges .wrap .nalicie-zal {
  background: url(/bitrix/templates/detsys/img/badges-nalicie-zal.png?5) center top no-repeat;
}
.bCatalogDetail.v3 .badges .wrap .official {
  background: url(/bitrix/templates/detsys/img/badges-official.png?3) center top no-repeat;
}
.bCatalogDetail.v3 .badges .wrap .proizvodstvo {
  background: url(/bitrix/templates/detsys/img/badges-proizvodstvo.png?5) center top no-repeat;
}
.bCatalogDetail.v3 .badges .wrap .zakup {
  background: url(/bitrix/templates/detsys/img/badges-zakup.png?2) center top no-repeat;
}
.bCatalogDetail.v3 .badges .wrap .delivery {
  background: url(/bitrix/templates/detsys/img/badges-delivery.png?2) center top no-repeat;
}
.bCatalogDetail .GSfixWidth {
  position: relative;
}
.bCatalogDetail .text1 img {
  max-width: 100%;
}
@media (max-width: 599px) {
  .bCatalogDetail .text1 img {
    height: auto;
  }
}
.bCatalogDetail .oh {
  overflow: hidden;
  position: relative;
}
.bCatalogDetail .apb {
  position: absolute;
  bottom: 20px;
  width: 50%;
}
.bCatalogDetail .aboutPay {
  margin: 30px 0;
}
.bCatalogDetail .aboutPay .text1.v1 {
  padding-left: 74px;
  min-height: 65px;
  background: url('/bitrix/templates/detsys/img/aboutPay_1.svg') left center no-repeat;
  background-size: 63px 60px;
}
.bCatalogDetail .aboutPay .text1.v2 {
  padding-left: 74px;
  min-height: 77px;
  background: url('/bitrix/templates/detsys/img/aboutPay_2.svg') 6px center no-repeat;
  background-size: 54px 72px;
}
.bCatalogDetail .back {
  text-align: center;
}
.bCatalogDetail .back a {
  font-size: 20px;
  line-height: 1;
  color: #bc4425;
  font-family: 'MyriadPro-Cond', Arial;
  text-decoration: none;
  margin-top: 10px;
}
.bCatalogDetail .detail {
  margin-top: 10px;
}
.bCatalogDetail .detail #eKPlink {
  margin-top: 10px;
}
.bCatalogDetail .detail .GStitle {
  margin-top: 0;
  margin-bottom: 5px;
  padding-right: 60px;
}
.bCatalogDetail .detail .doop {
  color: #4d5153;
  font-size: 18px;
  line-height: 18px;
  font-family: 'MyriadPro-Regular', Arial;
  background: #ddd7c9;
  display: inline-block;
  padding: 10px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bCatalogDetail .detail .text1 ul {
  padding-left: 0px;
}
.bCatalogDetail .detail .text1 ul li {
  background: url('/bitrix/templates/detsys/img/bCatalogDetail_li.svg') left top no-repeat;
  background-size: 19px 15px;
  padding-left: 30px;
  margin-bottom: 10px;
  list-style: none;
  min-height: 20px;
}
.bCatalogDetail .detail .photo #product-slider {
  margin-bottom: 20px;
}
.bCatalogDetail .detail .photo #product-slider .img {
  height: 300px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.bCatalogDetail .detail .photo #product-slider-nav {
  margin: 0 auto;
  max-width: 382px;
  padding: 0 41px;
}
.bCatalogDetail .detail .photo #product-slider-nav .img {
  width: 100px;
  height: 100px;
  margin: 0 4px;
  cursor: pointer;
}
.bCatalogDetail .detail .GSbtn {
  width: 190px;
  float: left;
  margin-right: 20px;
}
.bCatalogDetail .detail .price {
  font-family: 'MyriadPro-Semibold', Arial;
  color: #F05213;
  font-size: 36px;
  line-height: 36px;
  text-transform: uppercase;
}
.bCatalogDetail .detail .price.mt {
  margin-top: 8px;
}
.bCatalogDetail .detail .fquestion {
  margin-bottom: 20px;
}
.bCatalogDetail .detail .fquestion,
.bCatalogDetail .detail .fsendemail {
  margin-top: 30px;
  background: #ddd7c9;
  padding: 20px 20px 10px;
}
.bCatalogDetail .detail .fquestion .text1,
.bCatalogDetail .detail .fsendemail .text1 {
  margin-bottom: 10px;
}
.bCatalogDetail .detail .fsendemail {
  padding: 0px;
  display: none;
}
.bCatalogDetail .detail .fsendemail .form {
  display: flex;
}
.bCatalogDetail .detail .fquestion .text1 {
  text-align: center;
}
.bCatalogDetail .detail .fquestion .form {
  margin: 0 -10px;
  display: flex;
  flex-flow: row wrap;
}
.bCatalogDetail .detail .fquestion .GSinput1,
.bCatalogDetail .detail .fsendemail .GSinput1 {
  margin: 10px;
  padding: 7px 10px 8px 10px;
  display: inline-block;
  width: 242px;
  flex: 1;
}
.bCatalogDetail .detail .fquestion .GSinput1 {
  width: 150px;
  flex: 1;
}
.bCatalogDetail .detail .fquestion .GSinput1:first-child {
  width: 100px;
  flex: 1;
}
.bCatalogDetail .detail .fquestion .done,
.bCatalogDetail .detail .fsendemail .done {
  display: none;
}
.bCatalogDetail .detail .fquestion .done .text1 {
  font-size: 20px;
  line-height: 1.3em;
}
.bCatalogDetail .detail .fsendemail .done .text1 {
  font-size: 17px;
  padding: 10px 0;
}
.bCatalogDetail .detail .fquestion .GSbtn,
.bCatalogDetail .detail .fsendemail .GSbtn {
  margin: 10px;
  flex-grow: 1;
  flex-shrink: 0;
}
.bCatalogDetail .detailtext {
  border-top: 6px solid #ddd7c9;
  overflow: hidden;
}
.bCatalogDetail .detailtext .GSfixWidth {
  margin-top: 20px;
  margin-bottom: 20px;
}
.bCatalogDetail .detailtext ul {
  margin: 20px 0;
  padding: 0;
}
.bCatalogDetail .detailtext ul li {
  background: url('/bitrix/templates/detsys/img/bCatalogDetail_li.svg') left top no-repeat;
  background-size: 19px 15px;
  padding-left: 30px;
  margin-bottom: 10px;
  list-style: none;
  min-height: 20px;
}
@media (min-width: 600px) {
  .bCatalogDetail .detailtext ul li {
    background-size: 38px 30px;
    padding-left: 50px;
    min-height: 30px;
  }
}
@media (min-width: 900px) {
  .bCatalogDetail .detailtext ul {
    display: flex;
    flex-flow: row wrap;
    margin: 20px -20px;
  }
  .bCatalogDetail .detailtext ul li {
    flex: 0 0 50%;
    padding: 0 20px 0 70px;
    background-position: 20px top;
    box-sizing: border-box;
  }
}
.bCatalogDetail .buyinfo {
  margin-top: 25px;
  margin-bottom: 20px;
  overflow: hidden;
}
@media (max-width: 599px) {
  .bCatalogDetail .buyinfo {
    margin-top: 15px;
  }
}
.bCatalogDetail .buyinfo > div:first-child {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -8px 10px;
}
.bCatalogDetail .buyinfo > div:first-child .GSbtn {
  flex: 1 0 190px;
  margin: 8px;
}
.bCatalogDetail .buyinfo .GSbtn.big {
  font-size: 22px;
  line-height: 22px;
}
.bCatalogDetail .buyinfo .sale,
.bCatalogDetail .buyinfo .hit {
  bottom: -10px;
  right: 0;
  width: 60px;
  height: 60px;
  background-size: cover;
}
.bCatalogDetail .buyinfo .sale .val,
.bCatalogDetail .buyinfo .hit .val {
  margin-top: 14px;
  font-size: 24px;
}
.bCatalogDetail .buyinfo .getPrice {
  margin-top: 20px;
}
.bCatalogDetail .buyinfo .oldprice {
  font-family: 'MyriadPro-Regular', Arial;
  color: #919395;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  text-decoration: line-through;
}
.bCatalogDetail .buyinfo .adaptHidder {
  display: none;
}
.bCatalogDetail .relative {
  position: relative;
}
@media (max-width: 599px) {
  .bCatalogDetail .relative {
    padding-bottom: 35px;
  }
}
.bCatalogDetail .param {
  margin-top: 30px;
  margin-bottom: 10px;
}
.bCatalogDetail .cnav {
  margin-top: 20px;
  overflow: hidden;
}
.bCatalogDetail .cnav .text1 {
  text-align: justify;
}
@media (max-width: 599px) {
  .bCatalogDetail .cnav .text1 {
    text-align: left;
  }
}
.bCatalogDetail .cnmenu {
  border-bottom: 6px solid #F05213;
}
.bCatalogDetail .cnmenu .mrow {
  display: flex;
  flex-flow: row wrap;
  margin-top: -5px;
  margin-bottom: -11px;
  margin-left: -5px;
  margin-right: -5px;
}
.bCatalogDetail .cnmenu A {
  color: #4d5153;
  background: #ddd7c9;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 30px;
  margin: 5px;
}
@media (max-width: 599px) {
  .bCatalogDetail .cnmenu A {
    flex-grow: 1;
    flex-shrink: 0;
  }
}
.bCatalogDetail .cnav .cnmenu A:hover,
.bCatalogDetail .cnav .cnmenu A.act {
  color: #ddd7c9;
  background: #4d5153;
}
.bCatalogDetail .cnav .bl {
  display: none;
}
.bCatalogDetail .cnav .bl.v2 {
  padding-top: 30px;
}
.bCatalogDetail .cnav .cert {
  color: #bc4425;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 23px;
  line-height: 23px;
  display: inline-block;
  height: 31px;
  background: url('/bitrix/templates/detsys/img/cert.png') left center no-repeat;
  padding-left: 36px;
  padding-top: 3px;
  margin-left: 50px;
}
.bCatalogDetail .rec .GStitle {
  margin-bottom: 10px;
}
.bCatalogDetail .rec {
  margin-top: 50px;
}
@media (max-width: 599px) {
  .bCatalogDetail .rec .item:nth-child(3) {
    display: none;
  }
}
.bCatalogDetail .cnav .complect {
  margin-bottom: 20px;
}
.bCatalogDetail .cnav .complect .ctitle {
  color: #4d5153;
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 40px;
  line-height: 40px;
  text-align: right;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
}
.bCatalogDetail .cnav .complect .all {
  color: #bc4425;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 23px;
  line-height: 23px;
  display: inline-block;
  margin-top: 20px;
}
.bCatalogDetail .cnav .complect .GSbtn .text {
  font-size: 20px;
  line-height: 1;
}
.bCatalogDetail .videoInfo {
  margin-top: 20px;
  overflow: hidden;
}
.bCatalogDetail .payinfo .wrap {
  display: flex;
  flex-flow: row wrap;
  overflow: hidden;
  justify-content: space-evenly;
  border-left: 1px solid #ddd7c9;
  border-right: 1px solid #ddd7c9;
  margin: -10px 0 10px;
  padding: 0;
}
.bCatalogDetail .payinfo .wrap div {
  display: inline-block;
  flex: 0 60px;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 14px;
  text-align: center;
  margin: 10px 0;
  padding: 60px 4px 0;
  word-break: normal;
}
.bCatalogDetail .payinfo .wrap .sep {
  display: none;
  flex: 0 0 1px;
  background: #ddd7c9;
  margin: 0;
  padding: 0;
}
.bCatalogDetail .payinfo .wrap .beznal {
  background: url(/bitrix/templates/detsys/img/payinfo-beznal.png) center top no-repeat;
}
.bCatalogDetail .payinfo .wrap .nal {
  background: url(/bitrix/templates/detsys/img/payinfo-nal.png) center top no-repeat;
}
.bCatalogDetail .payinfo .wrap .card {
  background: url(/bitrix/templates/detsys/img/payinfo-card.png) center top no-repeat;
}
.bCatalogDetail .payinfo .wrap .zakup {
  background: url(/bitrix/templates/detsys/img/payinfo-zakup.png) center top no-repeat;
}
@media (min-width: 1200px) {
  .bCatalogDetail .payinfo.nogos .wrap div {
    flex: 0 140px;
  }
  .bCatalogDetail .payinfo .wrap {
    flex-wrap: nowrap;
  }
  .bCatalogDetail .payinfo .wrap .sep {
    display: block;
  }
}
.bCatalogDetail .iVideo .videoCont {
  position: relative;
}
.bCatalogDetail .iVideo iframe {
  width: 100%;
  height: 210px;
}
.bCatalogDetail .iVideo .block {
  position: absolute;
  width: 100%;
  height: 210px;
  top: 0px;
  left: 0px;
}
.bCatalogDetail .iVideo .title2 {
  margin-bottom: 10px;
}
@media (min-width: 900px) {
  .bCatalogDetail .iVideo {
    float: left;
    width: 50%;
    margin-bottom: 20px;
  }
  .bCatalogDetail .iVideo:nth-child(even) .pad {
    padding-left: 10px;
  }
  .bCatalogDetail .iVideo:nth-child(odd) .pad {
    padding-right: 10px;
  }
}
@media (min-width: 600px) {
  .bCatalogDetail .detail .text1 ul {
    margin-bottom: 20px;
  }
  .bCatalogDetail .detail .text1 ul li {
    background-size: 38px 30px;
    padding-left: 50px;
    min-height: 30px;
  }
}
.bCatalogDetail .relative {
  position: relative;
}
.bCatalogDetail .ya-share2 {
  position: absolute;
  right: 0px;
  bottom: 0px;
  pointer-events: none;
  z-index: 2;
}
.bCatalogDetail .ya-share2__item {
  pointer-events: auto;
}
@media (max-width: 599px) {
  .bCatalogDetail .ya-share2__item {
    margin: 0 6px 0 0 !important;
  }
  .bCatalogDetail .ya-share2__item:last-child {
    margin-right: 0 !important;
  }
}
.bCatalogDetail .ya-share2__icon {
  height: 34px !important;
  width: 34px !important;
  background-size: 34px 34px !important;
}
@media (min-width: 600px) {
  .bCatalogDetail .ya-share2__icon {
    height: 24px !important;
    width: 24px !important;
    background-size: 24px 24px !important;
  }
}
@media (min-width: 900px) {
  .bCatalogDetail .detail .fquestion {
    margin-bottom: 0;
  }
  .bCatalogDetail .back {
    z-index: 2;
    position: absolute;
    top: 5px;
    right: 15px;
  }
  .bCatalogDetail .back a {
    font-size: 30px;
  }
  .bCatalogDetail .w {
    width: 50%;
    float: left;
  }
  .bCatalogDetail .w:first-child .p {
    padding-right: 20px;
  }
  .bCatalogDetail .relative {
    position: relative;
  }
  .bCatalogDetail .ya-share2 {
    position: absolute;
    left: 0px;
    top: 0px;
  }
  .bCatalogDetail .ya-share2__list.ya-share2__list_direction_horizontal > .ya-share2__item {
    display: block;
    margin-right: 0px;
    margin-bottom: 6px;
  }
  .bCatalogDetail .ya-share2__list.ya-share2__list_direction_horizontal > .ya-share2__item:last-child {
    margin-bottom: 0px;
  }
  .bCatalogDetail .w:last-child .p {
    padding-left: 20px;
  }
  .bCatalogDetail .cnav.pr .hbl {
    float: left;
    width: 60%;
  }
  .bCatalogDetail .cnav .complect {
    width: 40%;
    float: right;
    max-width: 450px;
    padding-left: 20px;
    box-sizing: border-box;
  }
  .bCatalogDetail .buyinfo .adaptHidder {
    display: inline;
  }
}
@media (min-width: 1200px) {
  .bCatalogDetail .detail .fquestion .text1 {
    text-align: left;
  }
}
.bCamera .fcamera,
.bFquestion {
  background: #ddd7c9;
  padding: 20px 20px 10px;
}
.bCamera .fcamera .text1,
.bFquestion .text1 {
  margin: 0 0 10px;
}
.bCamera .fcamera .GSbtn,
.bFquestion .GSbtn {
  width: 140px;
  flex-grow: 1;
  margin: 10px;
  flex: 1 0 140px;
}
.bCamera .fcamera .checkboxWrap,
.bFquestion .checkboxWrap {
  margin: 10px;
}
.bCamera .fcamera .form,
.bFquestion .form {
  display: flex;
  flex-flow: row wrap;
}
.bCamera .fcamera .GSinput1,
.bFquestion .GSinput1 {
  width: 150px;
  margin: 10px;
  padding: 7px 10px 8px 10px;
  flex-grow: 1;
}
.bCamera .fcamera .GSinput1:first-child,
.bFquestion .GSinput1:first-child {
  width: 100px;
}
.bCamera .fcamera {
  margin-top: 40px;
}
.bFquestion {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 485px;
}
@media (min-width: 1200px) {
  .bFquestionPrev {
    max-width: 640px;
    float: left;
  }
  .bFquestion {
    float: right;
    width: 505px;
  }
  .bFquestion.pasmar {
    margin-top: 0px;
    margin-left: 20px;
    margin-bottom: 20px;
  }
}
.bFquestion FORM,
.bCamera .fcamera FORM {
  margin: 0 -10px;
}
.bFquestion .done,
.bCamera .fcamera  .done {
  display: none;
}
.bFquestion .done .text1,
.bCamera .fcamera .done .text1 {
  font-size: 20px;
  line-height: 1.3em;
  margin: -6px 0;
}
.GScounter {
  padding-right: 34px;
  position: relative;
  float: left;
  padding-right: 40px;
}
@media (min-width: 600px) {
  .GScounter {
    padding-right: 34px;
  }
}
.GScounter INPUT {
  font-family: 'MyriadPro-Regular', Arial;
  background: #ddd7c9;
  color: #F05213;
  font-size: 30px;
  border: 0px;
  margin: 0px;
  text-align: center;
  padding: 5px;
  line-height: 60px;
  width: 50px;
}
@media (min-width: 600px) {
  .GScounter INPUT {
    width: 30px;
    line-height: 30px;
  }
}
.GScounter .plus {
  position: absolute;
  width: 30px;
  top: 0px;
  right: 0px;
  background: #ddd7c9;
  color: #4d5153;
  font-size: 24px;
  text-align: center;
  font-family: 'MyriadPro-BoldCond', Arial;
  text-decoration: none;
  line-height: 35px;
  width: 35px;
}
@media (min-width: 600px) {
  .GScounter .plus {
    line-height: 24px;
    width: 30px;
  }
}
.GScounter .minus {
  position: absolute;
  width: 30px;
  bottom: 0px;
  right: 0px;
  background: #ddd7c9;
  color: #4d5153;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  font-family: 'MyriadPro-BoldCond', Arial;
  text-decoration: none;
  line-height: 35px;
  width: 35px;
}
@media (min-width: 600px) {
  .GScounter .minus {
    line-height: 24px;
    width: 30px;
  }
}
.GScounter .plus:hover,
.GScounter .minus:hover {
  background: #F05213;
  color: #ffffff;
}
.bCatalogDetail .param {
  overflow: hidden;
}
.bCatalogDetail .param .GScounter {
  margin-right: 10px;
}
.bCatalogDetail .param .gsctitle {
  float: left;
  padding-top: 10px;
  color: #bc4425;
  font-size: 26px;
  line-height: 26px;
  font-family: 'MyriadPro-Regular', Arial;
  text-transform: uppercase;
  margin-right: 30px;
  padding-top: 20px;
}
@media (min-width: 600px) {
  .bCatalogDetail .param .gsctitle {
    padding-top: 10px;
  }
}
.bCatalogDetail .opt {
  margin-top: 30px;
}
.bCatalogDetail .opt .opener {
  color: #F05213;
  font-size: 31px;
  line-height: 31px;
  font-family: 'MyriadPro-Cond', Arial;
  text-transform: uppercase;
}
.bCatalogDetail .opt .opener .ico {
  width: 17px;
  height: 17px;
  background: url('/bitrix/templates/detsys/img/opt_opener.svg') left top no-repeat;
  float: left;
  margin-right: 10px;
  margin-top: 8px;
}
.bCatalogDetail .opt .hidden {
  display: none;
}
.bCatalogDetail .opt.open  .hidden {
  display: block;
}
.bCatalogDetail .opt.open .opener {
  text-decoration: none;
}
.bCatalogDetail .opt.open .opener .ico {
  background-position: 0 -18px;
}
.bCatalogDetail .opt .item {
  display: table;
  width: 100%;
  padding-top: 20px;
}
.bCatalogDetail .opt .item .td1,
.bCatalogDetail .opt .item .td2 {
  display: table-cell;
  vertical-align: middle;
}
.bCatalogDetail .opt .item .td1 {
  width: 40px;
}
.bCatalogDetail .opt .item .sprice {
  color: #bc4425;
}
.GScheckbox {
  display: block;
  width: 24px;
  height: 24px;
  background: url('/bitrix/templates/detsys/img/GScheckbox.png') left top no-repeat;
  box-sizing: content-box;
}
.GScheckbox.err {
  position: relative;
}
.GScheckbox.err:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #eb5324;
}
.GScheckbox.act {
  background-position: 0 -25px;
}
.GScheckbox.v2 {
  display: block;
  width: 22px;
  height: 22px;
  background: url('/bitrix/templates/detsys/img/GScheckbox_v2.png') left top no-repeat;
}
.GScheckbox.v2.act {
  background-position: 0 -23px;
}
.GSradio {
  display: block;
  width: 30px;
  height: 30px;
  background: url('/bitrix/templates/detsys/img/GSradio.svg') left top no-repeat;
  background-size: 30px 60px;
}
.GSradio.act {
  background-position: 0 -30px;
}
.bProductList .resNav {
  overflow: hidden;
  margin: 20px 0;
}
.bProductList .resNav {
  overflow: hidden;
}
.bProductList .resNav .sort,
.bProductList .resNav .onpage,
.bProductList .resNav .sep {
  float: right;
  text-align: right;
}
.bProductList .resNav .stitle {
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  font-size: 24px;
  line-height: 24px;
}
.bProductList .resNav .sep {
  float: right;
  width: 3px;
  background: #ddd7c9;
  height: 65px;
  margin: 0 30px;
}
.bProductList .resNav .var {
  font-family: 'MyriadPro-Regular', Arial;
  color: #bc4425;
  font-size: 24px;
  line-height: 24px;
  text-decoration: none;
  margin-top: 10px;
  padding: 3px 5px;
  display: inline-block;
}
.bProductList .resNav .var:hover,
.bProductList .resNav .var.act {
  background: #ddd7c9;
}
.bProductList .resNav .GSpagination2 {
  float: left;
  margin-top: 20px;
}
.GSpagination2 SPAN.sel,
.GSpagination2 A {
  font-family: 'MyriadPro-Regular', Arial;
  color: #bc4425;
  font-size: 30px;
  line-height: 30px;
  text-decoration: none;
  padding: 3px 10px;
  display: inline-block;
}
.GSpagination2 SPAN.sel {
  background: #ddd7c9;
}
TABLE.clear {
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}
TABLE.clear TD {
  padding: 0;
  margin: 0;
}
.bBasket {
  margin-bottom: 80px;
}
.bBasket .list {
  margin-top: 30px;
  width: 100%;
  border-bottom: 5px solid #ddd7c9;
  margin-bottom: 20px;
}
.bBasket .list td {
  display: block;
  vertical-align: middle;
}
.bBasket .list .header {
  display: none;
}
.bBasket .list .header td {
  background: #ddd7c9;
  font-family: 'MyriadPro-Cond', Arial;
  color: #4d5153;
  font-size: 31px;
  line-height: 1;
  padding: 10px;
}
.bBasket .list tbody {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.bBasket .list tbody tr {
  flex: 1 0 280px;
  display: block;
  position: relative;
  border-top: 1px solid #e8e4db;
  border-bottom: 1px solid #e8e4db;
}
.bBasket .list tbody td {
  padding: 10px;
}
.bBasket .list tbody td.price {
  display: inline;
}
.bBasket .list tbody td.price-per-unit {
  display: none;
}
.bBasket .list tbody td.count {
  display: inline-block;
}
.bBasket .list tbody td.delete-wrap {
  position: absolute;
  top: 0;
  right: 0;
}
.bBasket .list .delete {
  display: block;
  margin: 0 auto;
  width: 20px;
  height: 20px;
  background: url('/bitrix/templates/detsys/img/deleteBig.svg') no-repeat top left;
}
.bBasket .list .img {
  text-align: center;
}
.bBasket .list .img img {
  max-width: 150px;
  max-height: 100px;
  display: inline-block;
}
.bBasket .list .name a {
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
}
.bBasket .list .price {
  font-family: 'MyriadPro-Semibold', Arial;
  color: #F05213;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.bBasket .list .params {
  font-family: 'MyriadPro-Regular', Arial;
  color: #a5a6a9;
  font-size: 21px;
  line-height: 21px;
}
.bBasket .list .GScounter {
  float: none;
  width: 40px;
}
.bBasket .oh {
  overflow: hidden;
}
.bBasket .oh .r .sum {
  overflow: hidden;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.bBasket .oh .r .sum .title {
  font-family: 'MyriadPro-Cond', Arial;
  color: #4d5153;
  font-size: 22px;
  line-height: 1;
}
.bBasket .oh .r .sum .val {
  font-family: 'MyriadPro-Semibold', Arial;
  color: #F05213;
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
}
.bBasket .oh .r .wtext {
  font-family: 'MyriadPro-Regular', Arial;
  color: #a5a6a9;
  font-size: 21px;
  line-height: 21px;
  margin: 6px 0 14px 0;
}
.bBasket .oh .r .GSbtn {
  max-width: 260px;
  float: right;
}
.bBasket .oh .l .GSbtn4 {
  padding-bottom: 20px;
}
@media (min-width: 300px) {
  .bBasket .oh .r .sum .title {
    font-size: 26px;
  }
  .bBasket .oh .r .sum .val {
    font-size: 24px;
  }
}
@media (min-width: 600px) {
  .bBasket .oh .l {
    float: left;
    width: 140px;
  }
  .bBasket .oh .r {
    float: right;
    width: 400px;
  }
  .bBasket .oh .r .GSbtn {
    float: right;
  }
  .bBasket .oh .r .wtext {
    text-align: right;
  }
  .bBasket .oh .r .sum .title {
    font-size: 44px;
  }
  .bBasket .oh .r .sum .val {
    font-size: 34px;
    line-height: 44px;
  }
}
@media (min-width: 900px) {
  .bBasket .list tbody tr {
    display: table-row;
    border: none;
  }
  .bBasket .list tbody td {
    padding: 50px 10px;
    display: table-cell;
  }
  .bBasket .list .header {
    display: table-row;
  }
  .bBasket .list td:before {
    display: none !important;
  }
  .bBasket .list tbody td {
    border: 0 !important;
  }
  .bBasket .list tbody td.price,
  .bBasket .list tbody td.count {
    display: table-cell;
  }
  .bBasket .list tbody td.delete-wrap {
    position: static;
    top: none;
    right: none;
  }
  .bBasket .list tbody {
    display: table-row-group;
  }
}
#productCalc {
  position: fixed;
  height: 110px;
  background: #F05213;
  top: 50%;
  margin-top: -55px;
  left: 0px;
  width: 280px;
  padding-left: 15px;
  margin-left: -265px;
  display: none;
}
#productCalc.open {
  margin-left: 0px;
}
#productCalc .pctitle {
  font-family: 'MyriadPro-Cond', Arial;
  color: #ffffff;
  font-size: 27px;
  line-height: 27px;
  margin-top: 10px;
}
#productCalc .sum {
  font-family: 'MyriadPro-Cond', Arial;
  color: #ddd7c9;
  font-size: 37px;
  line-height: 37px;
  text-transform: uppercase;
}
#productCalc .toBasket {
  font-family: 'MyriadPro-Cond', Arial;
  color: #ffffff;
  font-size: 21px;
  line-height: 21px;
  text-decoration: none;
  background: url('/bitrix/templates/detsys/img/productCalcBascet.png') center right no-repeat;
  padding-right: 30px;
}
#productCalc .opener {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 110px;
}
#productCalc .opener .ico {
  position: absolute;
  width: 11px;
  height: 17px;
  left: 50%;
  top: 50%;
  margin-left: -5.5px;
  margin-top: -8.5px;
  background: url('/bitrix/templates/detsys/img/productCalcOpener.png') top left no-repeat;
}
#productCalc.open .opener .ico {
  background-position: 0 -18px;
}
.bSearch {
  margin-bottom: 90px;
}
.bSearch .noresult .snrtitle1 {
  margin-top: 90px;
  font-family: 'MyriadPro-Cond', Arial;
  color: #ddd7c9;
  font-size: 36px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.bSearch .noresult .snrtitle2 {
  font-family: 'MyriadPro-Cond', Arial;
  color: #ddd7c9;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .bSearch .noresult .snrtitle1 {
    font-size: 50px;
  }
  .bSearch .noresult .snrtitle2 {
    font-size: 32px;
  }
}
@media (min-width: 900px) {
  .bSearch .noresult .snrtitle1 {
    font-size: 99px;
  }
  .bSearch .noresult .snrtitle2 {
    font-size: 64px;
  }
}
.bSearch .guess {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 1.17;
  color: #4d5153;
  margin-top: 20px;
}
.bSearch .guess A {
  color: #d2531f;
  text-decoration: none;
}
.bSearch .form {
  padding: 15px 30px;
  background: #eae6de;
  position: relative;
}
.bSearch .form .GSbtn {
  width: 140px;
  margin: 15px auto;
}
.bSearch .form .param {
  overflow: hidden;
  margin: 15px 0;
}
.bSearch .form .param .item {
  float: left;
  overflow: hidden;
  margin-right: 20px;
}
.bSearch .form .param .GScheckbox {
  float: left;
}
.bSearch .form .param .ptitle {
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  font-size: 20px;
  line-height: 20px;
  padding-left: 10px;
  display: inline-block;
  padding-top: 2px;
}
.bSearch .form input[type=text] {
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  .bSearch .form {
    padding: 25px 30px;
    height: 40px;
    padding-left: 330px;
    padding-right: 190px;
  }
  .bSearch .form input[type=text] {
    margin: 0;
  }
  .bSearch .form .param {
    position: absolute;
    top: 25px;
    left: 30px;
    float: none;
    margin: 8px 0 0;
  }
  .bSearch .form .GSbtn {
    position: absolute;
    top: 25px;
    right: 30px;
    float: none;
    margin: 0;
  }
}
.bSearch .result {
  overflow: hidden;
  margin-top: 70px;
}
.bSearch .result .hr {
  height: 1px;
  background: #d3d3d3;
}
.bSearch .sitem {
  margin-top: 20px;
}
.bSearch .sitem .stitle A {
  margin-top: 20px;
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 24px;
  line-height: 1;
  color: #d2531f;
  text-decoration: none;
}
@media (min-width: 600px) {
  .bSearch .sitem .stitle A {
    font-size: 32px;
  }
}
@media (min-width: 900px) {
  .bSearch .sitem .stitle A {
    font-size: 37px;
  }
}
.bSearch .bProductList .itext B,
.bSearch .bProductList .ititle B {
  font-weight: normal;
  background: #ddd7c9;
}
.bSearch .GSbtn2-nh {
  margin-top: 20px;
  margin-bottom: 10px;
  display: block;
}
.bSearch .sitem .desc {
  margin-top: 10px;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 1.17;
  color: #4d5153;
}
@media (min-width: 600px) {
  .bSearch .sitem .desc {
    font-size: 20px;
  }
}
@media (min-width: 900px) {
  .bSearch .sitem .desc {
    font-size: 24px;
  }
}
.bSearch .sitem .desc B,
.bSearch .sitem .stitle B {
  font-weight: normal;
  background: #ddd7c9;
}
.bSearch .result .sr .pad .GStitle {
  padding-top: 50px;
}
@media (min-width: 900px) {
  .bSearch .result .sl,
  .bSearch .result .sr {
    float: left;
    width: 50%;
  }
  .bSearch .result  .sl.w100,
  .bSearch .result  .sr.w100 {
    width: 100%;
  }
  .bSearch .result .sl .pad {
    padding-right: 20px;
  }
  .bSearch .result .sr .pad {
    padding-left: 20px;
  }
  .bSearch .result .sr .pad .GStitle {
    padding-top: 0px;
  }
  .bSearch .result .sl .pad {
    padding-right: 20px;
  }
  .bSearch .sl .item {
    width: 100%;
  }
  .bSearch .sl.w100 .item {
    width: 50%;
  }
}
.bCatalog .sub .filter {
  overflow: hidden;
}
.bCatalog .sub .filter .oh {
  overflow: hidden;
}
.bCatalog .sub .filter .left,
.bCatalog .sub .filter .right {
  float: left;
  width: 50%;
}
.bCatalog .sub .filter .vleft {
  float: left;
  width: auto;
  margin-right: 20px !important;
}
.bCatalog .sub .filter .left .pad {
  padding-right: 20px;
}
.bCatalog .sub .filter .right .pad {
  padding-left: 20px;
}
.bCatalog .sub .filter .selectnav {
  text-align: right;
  margin-bottom: 10px;
}
.bCatalog .sub .filter .selectnav A {
  font-family: 'MyriadPro-Regular', Arial;
  color: #bc4425;
  font-size: 18px;
  line-height: 18px;
  margin-left: 20px;
}
.bCatalog .sub .filter .GSbtn {
  float: right;
  width: 210px;
  margin-top: 20px;
}
.bCatalog .sub .filter .item {
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  font-size: 20px;
  line-height: 20px;
  overflow: hidden;
  margin: 4px 0;
}
.bCatalog .sub .filter .item.sr {
  float: right;
}
.bCatalog .sub .filter .subitem {
  font-family: 'MyriadPro-Regular', Arial;
  color: #6f7274;
  font-size: 18px;
  line-height: 18px;
  margin: 4px 0;
  margin-left: 35px;
  overflow: hidden;
}
.bCatalog .sub .filter .item .GScheckbox {
  float: left;
  margin-right: 10px;
}
.bCatalog .sub .filter .subitem .GScheckbox {
  float: left;
  margin-right: 10px;
}
#popupToBasket .oh {
  overflow: hidden;
  margin: 0 -10px;
  display: flex;
  flex-flow: row wrap;
}
#popupToBasket .oh .GSbtn {
  flex: auto;
  margin: 10px 10px 0;
}
#popupToBasket .oh .GSbtn .bg {
  padding-left: 20px;
  padding-right: 20px;
}
#bManual {
  margin-bottom: 30px;
}
#bManual .sub {
  display: none;
}
#bManual .file a {
  color: #F05213;
}
#bManual .item {
  padding: 5px 0;
}
#bManual .item a {
  color: #4d5153;
  text-decoration: none;
  padding: 1px 4px;
}
#bManual .item a:hover {
  background: #ddd7c9;
  color: #F05213;
}
#bManual .item.sub {
  padding-left: 20px;
  background: url('/bitrix/templates/detsys/img/personalManual_line.png') repeat-y top left;
  background-position: 10px 0;
}
.bPersonal {
  margin-bottom: 50px;
}
.bPersonal .tbl {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -15px;
}
.bPersonal .tbl .td {
  flex: 1 0 250px;
  padding: 0 15px;
}
.bPersonal .field {
  margin-top: 10px;
  line-height: 24px;
  min-height: 70px;
}
.bPersonal .checkboxWrap {
  margin-top: 10px;
  text-align: left;
}
.bPersonal .field .GSinput1 {
  width: 100%;
  box-sizing: border-box;
  margin-top: 3px;
  max-width: 100%;
}
.bPersonal .field .need {
  color: #F05213;
  font-size: 15px;
}
.bPersonal .oh {
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
  margin: 0 -10px;
}
.bPersonal .oh .field {
  padding: 0 10px;
}
.bPersonal .oh .field.w1 {
  flex: 1 0 200px;
}
.bPersonal .oh .field.w1 INPUT {
  width: 100%;
}
.bPersonal .oh .field.w2 {
  flex: 1 0 100px;
}
.bPersonal .oh .field.w2 INPUT {
  width: 100%;
}
.bPersonal .oh .field.w3 {
  flex: 1 0 50px;
}
.bPersonal .oh .field.w3 INPUT {
  width: 100%;
}
.bPersonal .oh .field.w4 {
  flex: 1 0 160px;
}
.bPersonal .oh .field.w4 INPUT {
  width: 100%;
}
.bPersonal .oh .field.w5 {
  flex: 1 0 140px;
}
.bPersonal .oh .field.w5 INPUT {
  width: 100%;
}
.bPersonal .field.h1 TEXTAREA {
  height: 55px;
}
.bPersonal .field.h2 TEXTAREA {
  height: 190px;
}
.bPersonal .allneed {
  margin-top: 10px;
  font-family: 'MyriadPro-Regular', Arial;
  color: #F05213;
  font-size: 20px;
  line-height: 20px;
}
.bPersonal .allneed span {
  font-size: 24px;
  line-height: 24px;
}
.bPersonal .GSbtn {
  max-width: 322px;
  margin: 20px auto 0;
}
.bPersonal.reg .regHide {
  display: none;
}
.bPersonal.reg .sh {
  display: inline-block;
  margin-bottom: 16px;
}
.bPersonal.reg .td.tw2,
.bPersonal.reg .td.tw3 {
  margin-top: 22px;
}
.bPersonal.reg .td.tw2 .regHide,
.bPersonal.reg .td.tw3.regHide {
  margin-top: -10px;
}
.bOrder {
  margin-bottom: 60px;
}
.bOrder .bPersonal {
  margin-bottom: 0px;
}
.bOrder .deliveryInfo {
  border-top: 2px solid #ddd7c9;
  margin-top: 50px;
  padding-top: 20px;
}
.bOrder .deliveryInfo .tbl {
  display: table;
}
.bOrder .deliveryInfo .tbl .tr {
  display: table-row;
}
.bOrder .deliveryInfo .tbl .num {
  display: table-cell;
  vertical-align: middle;
  font-family: 'MyriadPro-BoldCond', Arial;
  font-size: 61px;
  line-height: 61px;
  color: #ddd7c9;
  text-align: center;
  padding-top: 10px;
}
.bOrder .deliveryInfo .tbl .text1 {
  display: table-cell;
  vertical-align: middle;
  padding-left: 30px;
  padding-top: 10px;
}
.bOrder .oh .r {
  margin-top: 50px;
}
.bOrder .oh .sl {
  background: #eae6de;
  margin-top: 20px;
  padding: 20px;
}
.bOrder .oh .sl .item {
  overflow: hidden;
  margin-top: 10px;
}
.bOrder .oh .sl .item:first-child {
  margin-top: 0px;
}
.bOrder .oh .sl .rbtn {
  float: left;
}
.bOrder .oh .sl .labelForRadio {
  padding-left: 40px;
  padding-top: 5px;
}
@media (min-width: 600px) {
  .bOrder .oh {
    overflow: hidden;
  }
  .bOrder .oh .l {
    float: left;
    width: 48%;
  }
  .bOrder .oh .r {
    margin-top: 0;
    float: right;
    width: 48%;
  }
  .bOrder .title2 {
    margin-left: 30px;
  }
  .bOrder .deliveryInfo .tbl {
    margin-left: 30px;
  }
}
@media (min-width: 900px) {
  .bOrder .oh {
    overflow: hidden;
  }
  .bOrder .oh .l {
    width: 30%;
  }
  .bOrder .oh .r {
    width: 66.6%;
  }
}
@media (min-width: 1200px) {
  .bOrder .oh .sl {
    float: left;
    width: 310px;
  }
  .bOrder .oh .sr {
    padding-left: 400px;
  }
}
.bExperts {
  margin-top: 20px;
}
.bExperts .aut {
  overflow: hidden;
  position: relative;
}
.bExperts .aut IMG {
  float: left;
  margin: 0;
}
.bExperts .aut .r {
  left: 110px;
  position: absolute;
  bottom: 0px;
}
.bExperts .aut .r .text1 {
  margin-top: 3px;
}
.GStable1 {
  border-collapse: collapse;
  border-spacing: 0px;
}
.GStable1  TD {
  padding: 10px 10px;
  vertical-align: top;
  border: 1px #ddd7c9 solid;
}
.GStable1 TR.theader TD {
  background: #ddd7c9;
  font-size: 24px;
  line-height: 24px;
  padding: 3px 10px;
}
.GStable1  TD.cnt {
  text-align: center;
}
.GStable1  TD.nbr {
  white-space: nowrap;
}
#popupCalc1 {
  max-width: 980px;
}
#popupCalc1 .GStitle2 {
  margin-bottom: 20px;
}
@media (max-width: 899px) {
  #popupCalc1 .GStitle2 {
    font-size: 24px;
  }
}
#popupCalc1 .text5 {
  line-height: 103%;
}
@media (max-width: 899px) {
  #popupCalc1 .text5 {
    font-size: 18px;
  }
  #popupCalc1 .text5 br {
    display: none;
  }
}
#popupCalc1 .itemPC {
  overflow: hidden;
  margin-top: 10px;
}
@media (min-width: 900px) {
  #popupCalc1 .itemPC {
    margin-left: 50px;
  }
}
#popupCalc1 .itemPC .GSradio {
  float: left;
  margin-right: 10px;
}
#popupCalc1 .countDisk {
  margin-top: 50px;
}
#popupCalc1 .countDisk.nmt {
  margin-top: 15px;
}
#popupCalc1 .countDisk .text5 {
  line-height: 1;
  padding-left: 85px;
}
#popupCalc1 .countDisk .text5.pt {
  padding-top: 15px;
}
@media (max-width: 1199px) {
  #popupCalc1 .countDisk .text5 {
    padding-top: 15px;
  }
}
#popupCalc1 .countDisk .GScounter {
  margin-top: 5px;
}
#popupCalc1 .optTitle {
  font-size: 31px;
  line-height: 31px;
  color: #919395;
  text-transform: uppercase;
  font-family: 'MyriadPro-Cond', Arial;
}
#popupCalc1 .itemOpt {
  clear: both;
  overflow: hidden;
  margin-top: 15px;
}
#popupCalc1 .itemOpt.nmt {
  margin-top: 0px;
}
#popupCalc1 .itemOpt .GScheckbox {
  float: left;
  margin-top: 3px;
}
#popupCalc1 .itemOpt .text5 {
  padding-left: 34px;
}
#popupCalc1 .l,
#popupCalc1 .r {
  margin-bottom: 50px;
}
@media (min-width: 1200px) {
  #popupCalc1 .l,
  #popupCalc1 .r {
    float: left;
    width: 50%;
    margin-bottom: 0;
  }
  #popupCalc1 .l .pad {
    padding-right: 10px;
  }
  #popupCalc1 .r .pad {
    padding-left: 10px;
  }
}
@media (max-width: 1199px) {
  #popupCalc1 .form .form {
    width: 250px;
    margin: 0 auto;
  }
  #popupCalc1 .form .form .GSinput1,
  #popupCalc1 .form .form .need {
    float: none;
    margin: 0 auto 10px;
  }
}
#popupCalc1 .oh,
#popupCalc2 .oh {
  overflow: hidden;
}
#popupCalc1 .GStitle2,
#popupCalc2 .GStitle2 {
  text-transform: uppercase;
}
#popupCalc1 .hr,
#popupCalc2 .hr {
  height: 4px;
  background: #ddd7c9;
  margin: 20px 0;
}
#popupCalc1 .form,
#popupCalc2 .form {
  margin-top: 20px;
}
#popupCalc1 .form .GSinput1,
#popupCalc2 .form .GSinput1 {
  width: 100%;
  max-width: 250px;
  margin-top: 10px;
  box-sizing: border-box;
}
#popupCalc1 .form .need,
#popupCalc2 .form .need {
  margin-top: 25px;
  color: #4d5153;
  margin-right: 20px;
}
#popupCalc1 .btns,
#popupCalc2 .btns {
  margin-top: 30px;
  overflow: hidden;
}
#popupCalc1 .btns .GSbtn,
#popupCalc1 .btns .GSbtn3,
#popupCalc2 .btns .GSbtn,
#popupCalc2 .btns .GSbtn3 {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 10px auto;
}
@media (min-width: 900px) {
  #popupCalc1 .form .GSinput1,
  #popupCalc2 .form .GSinput1 {
    float: left;
    margin-left: 10px;
  }
  #popupCalc1 .form .need,
  #popupCalc2 .form .need {
    float: right;
  }
  #popupCalc1 .btns .GSbtn,
  #popupCalc1 .btns .GSbtn3,
  #popupCalc2 .btns .GSbtn,
  #popupCalc2 .btns .GSbtn3 {
    float: left;
    width: auto;
    max-width: none;
    margin: 0 10px;
  }
}
#popupCalc1 .btns .GSbtn.b,
#popupCalc1 .btns .GSbtn3.b,
#popupCalc2 .btns .GSbtn.b,
#popupCalc2 .btns .GSbtn3.b {
  font-size: 24px;
  line-height: 24px;
}
#popupCalc1 .GSbtn .bg,
#popupCalc2 .GSbtn .bg {
  padding-left: 20px;
  padding-right: 20px;
}
#popupCalc1 .GSbtn3 .bg,
#popupCalc2 .GSbtn3 .bg {
  padding-left: 80px;
  padding-right: 80px;
}
#popupCalc1 .done,
#popupCalc2 .done {
  display: none;
}
#popupCalc1 .done .status,
#popupCalc2 .done .status {
  font-family: 'MyriadPro-Cond', Arial;
  color: #ddd7c9;
  font-size: 28px;
  line-height: 28px;
  margin: 30px 0;
  text-transform: uppercase;
}
#popupCalc1 .done .ans,
#popupCalc2 .done .ans {
  color: #d2531f;
  text-transform: uppercase;
}
#popupCalc1 .done .opt,
#popupCalc2 .done .opt {
  margin-top: 10px;
  margin-bottom: 20px;
}
#popupCalc1 .done .opt .item,
#popupCalc2 .done .opt .item {
  margin-top: 10px;
}
#popupCalc1 .done .opt .item .ico,
#popupCalc2 .done .opt .item .ico {
  float: left;
  width: 18px;
  height: 14px;
  background: url('/bitrix/templates/detsys/img/opt.png') no-repeat;
  margin-top: 8px;
}
#popupCalc1 .done .opt .item .text,
#popupCalc2 .done .opt .item .text {
  padding-left: 25px;
}
#popupCalc1 .done .hr,
#popupCalc2 .done .hr {
  margin-top: 70px;
}
#popupCalc1 .l .labelForRadio {
  display: inline-block;
}
#popupCalc1 .hr2,
#popupCalc2 .hr2 {
  height: 2px;
  background: #ddd7c9;
  margin: 20px 0;
  margin-bottom: 15px;
}
#popupCalc1 .done .mmt,
#popupCalc2 .done .mmt {
  margin-top: 60px;
}
#popupCalc1 .done .sm .item,
#popupCalc2 .done .sm .item {
  overflow: hidden;
}
#popupCalc1 .done .sm .item:first-child,
#popupCalc2 .done .sm .item:first-child {
  margin-top: 0px;
}
#popupCalc2 .done .sm .item .sl {
  width: 650px;
  float: left;
}
#popupCalc1 .done .sm .item .sr,
#popupCalc2 .done .sm .item .sr {
  width: 240px;
  float: right;
  text-align: right;
}
#popupCalc1 .done .sum,
#popupCalc2 .done .sum {
  text-align: right;
}
#popupCalc1 .done .info,
#popupCalc2 .done .info {
  margin-top: 30px;
  overflow: hidden;
}
#popupCalc1 .done .info .il,
#popupCalc1 .done .info .ir,
#popupCalc2 .done .info .il,
#popupCalc2 .done .info .ir {
  width: 50%;
  float: left;
}
#popupCalc1 .done .info P,
#popupCalc2 .done .info P {
  margin: 15px 0;
}
#popupCalc1 .done .info .il .ipad,
#popupCalc2 .done .info .il .ipad {
  padding-right: 20px;
}
#popupCalc1 .done .info .ir .ipad,
#popupCalc2 .done .info .ir .ipad {
  padding-left: 20px;
}
#popupCalc1 .done .btns,
#popupCalc2 .done .btns {
  margin-top: 30px;
}
#popupCalc1 .done .btns .GSbtn4,
#popupCalc2 .done .btns .GSbtn4 {
  float: left;
  margin-left: 10px;
  margin-top: 7px;
}
#popupCallback .cont,
#popupFloatprice .cont {
  min-width: 242px;
}
#popupCallback .done,
#popupFloatprice .done,
#popupPresent .done,
#popupRepassword .done,
#popupCheaper .done {
  display: none;
  text-align: center;
  margin-top: 20px;
}
.noLogin {
  padding-bottom: 20px;
}
.calcFormCall {
  overflow: hidden;
  width: 820px;
  margin: 20px auto;
}
.calcFormCall .ccl {
  padding-right: 370px;
  color: #ffffff;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 23px;
  line-height: 23px;
}
.calcFormCall .ccr {
  float: right;
}
.calcFormCall .GSbtn {
  width: 370px;
}
.calcFormCall .GSbtn .text {
  font-size: 17px;
  line-height: 17px;
}
.arendaCatalogue {
  margin-bottom: 50px;
}
.arendaCatalogue .GSbtn {
  width: 370px;
  margin: 0 auto;
}
#popupCalc2 .q1 {
  margin-top: 30px;
}
#popupCalc2 .q1 .area {
  overflow: hidden;
  margin-top: 10px;
}
#popupCalc2 .q1 .area .itemArea {
  float: left;
  overflow: hidden;
  margin-right: 20px;
}
#popupCalc2 .q1 .area .GSradio {
  float: left;
}
#popupCalc2 .q1 .area .labelForRadio {
  white-space: nowrap;
  padding-left: 40px;
}
#popupCalc2 .q2 {
  margin-top: 30px;
}
#popupCalc2 .q2 .q2item {
  overflow: hidden;
  margin-bottom: 20px;
}
#popupCalc2 .q2 .q2item .text5 {
  padding-left: 90px;
  margin-top: 7px;
}
#popupCalc2 .itemOpt {
  overflow: hidden;
  margin-top: 15px;
}
#popupCalc2 .itemOpt.nmt {
  margin-top: 0px;
}
#popupCalc2 .itemOpt .GScheckbox {
  float: left;
  margin-top: 3px;
}
#popupCalc2 .itemOpt .text5 {
  padding-left: 34px;
}
#popupCalc2 .oh1 {
  overflow: hidden;
}
#popupCalc2 .oh1 .l1 {
  float: left;
}
#popupCalc2 .oh1 .r1 {
  padding-left: 150px;
}
#popupCalc2 .oh1 .l2 {
  float: left;
}
#popupCalc2 .oh1 .r2 {
  padding-left: 110px;
}
.GSpagination2 {
  margin-bottom: 8px;
}
.GSpagination2 .gpPrevAll,
.GSpagination2 .gpNextAll {
  display: none;
}
.GSpagination2 .gpNext,
.GSpagination2 .gpPrev {
  width: 41px;
  height: 51px;
  padding: 0px;
  display: inline-block;
  margin-bottom: -17px;
}
.GSpagination2 .gpNext {
  background: url('/bitrix/templates/detsys/img/next.png') no-repeat top left;
}
.GSpagination2 .gpNext:hover {
  background-position: 0 -52px;
}
.GSpagination2 .gpNext:active {
  background-position: 0 -104px;
}
.GSpagination2 .gpPrev {
  background: url('/bitrix/templates/detsys/img/prev.png') no-repeat top left;
}
.GSpagination2 .gpPrev:hover {
  background-position: 0 -52px;
}
.GSpagination2 .gpPrev:active {
  background-position: 0 -104px;
}
.bTextOH {
  overflow: hidden;
}
@media (min-width: 600px) {
  .bTextL,
  .bTextR {
    float: left;
    width: 50%;
  }
  .bTextL .bTextP {
    padding-right: 20px;
  }
  .bTextR .bTextP {
    padding-left: 20px;
  }
}
.bTextHR {
  background: #dfd7c9;
  height: 3px;
}
.bText1 .title1 {
  margin: 10px 0;
}
.bText1 .title8 {
  margin-bottom: 20px;
}
.bText2 {
  background: #dfd7c9;
  padding: 10px 0;
  color: #4a5052;
}
.bText2 .bTextR .bTextP {
  font-size: 22px;
  line-height: 1;
}
.bText2 .btitle1 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}
.bText2 .btitle2 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  color: #cd4321;
}
@media (min-width: 600px) {
  .bText2 .bTextR .bTextP {
    font-size: 23px;
  }
  .bText2 .btitle1 {
    font-size: 57px;
  }
  .bText2 .btitle2 {
    font-size: 23px;
  }
}
.bText3 {
  max-width: 1050px;
  margin: 0 auto;
}
.bText3 .btitle1 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  color: #4a5052;
}
.bText3 .btitle2 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
  color: #4a5052;
}
.bText3 .btitle3,
.bText3 .btitle4 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: #4a5052;
}
.bText3 .btitle5 {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 18px;
  line-height: 1;
  color: #4a5052;
}
.bText3 .bLicense3 .item {
  display: block;
  margin: 15px auto;
  width: 100%;
  max-width: 450px;
  position: relative;
  height: 150px;
}
.bText3 .bLicense3 .item .img {
  height: 150px;
}
.bText3 .bLicense3 .item .bg1,
.bText3 .bLicense3 .item .bg2 {
  position: absolute;
  width: 100%;
  height: 150px;
  z-index: 1;
}
.bText3 .bLicense3 .item .bg1 {
  background: url('/bitrix/templates/detsys/img/bLicense_bg1.png') bottom left no-repeat;
}
.bText3 .bLicense3 .item .bg2 {
  background: url('/bitrix/templates/detsys/img/bLicense_bg2.png') top right no-repeat;
}
@media (min-width: 600px) {
  .bText3 .btitle1 {
    font-size: 48px;
  }
  .bText3 .btitle2 {
    font-size: 51px;
  }
  .bText3 .btitle3,
  .bText3 .btitle4 {
    font-size: 30px;
  }
  .bText3 .btitle5 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .bText3 .bLicense3 .item {
    margin: 0;
    float: right;
  }
}
.bOrderHistory {
  margin-bottom: 40px;
}
.bOrderLog {
  border-collapse: collapse;
  border-spacing: 0px;
  width: 100%;
}
.bOrderLog>tbody {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.bOrderLog>tbody>tr {
  flex: 1 1 400px;
}
.bOrderLog td {
  margin: 0px;
  padding: 0px;
}
.bOrderLog .tHeader {
  display: none;
}
.bOrderLog .tHeader td {
  background: #ddd7c9;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 16px;
  color: #4d5153;
  padding: 10px 15px;
}
.bOrderLog .tHeader .right {
  float: right;
}
.bOrderLog .tSep {
  display: none;
}
.bOrderLog .tSep td {
  padding: 10px 0;
}
.bOrderLog .tSep .sep {
  height: 1px;
  background: #ddd7c9;
}
.bOrderLog .tSepHeader {
  display: none;
}
.bOrderLog .tSepHeader td {
  padding-top: 10px;
}
.bOrderLog .tItem {
  border-top: 1px solid #ddd7c9;
  border-bottom: 1px solid #ddd7c9;
}
.bOrderLog .tItem td {
  padding: 20px 15px;
}
.bOrderLog .tItem td.td1 {
  font-family: 'MyriadPro-BoldCond', Arial;
  font-size: 36px;
  line-height: 36px;
  color: #ddd7c9;
}
.bOrderLog .tItem td.td2 {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 20px;
  color: #4d5153;
  padding-top: 0px;
  padding-bottom: 0px;
}
.bOrderLog .tItem td.td2 .count {
  color: #d2531f;
  font-size: 18px;
}
.bOrderLog .tItem td.td2 img {
  max-width: 50px;
  max-height: 50px;
}
.bOrderLog .tItem td.td3,
.bOrderLog .tItem td.td4 {
  font-family: 'MyriadPro-Semibold', Arial;
  font-size: 17px;
  line-height: 17px;
  color: #d2531f;
  white-space: nowrap;
  text-transform: uppercase;
}
.bOrderLog .tItem td.td3 {
  padding-left: 15px;
  width: 100px;
}
.bOrderLog .tItem td.td5 {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 20px;
  color: #4d5153;
  overflow-wrap: normal;
  word-wrap: normal;
  word-break: normal;
}
.bOrderLog .tItem td.td6 {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 20px;
  color: #4d5153;
}
.bOrderLog .tItem td.td6 .paystatus {
  color: #d2531f;
}
.bOrderLog .tItem td.td6 .GSbtn {
  max-width: 160px;
}
.bOrderLog .tItem td.td7 {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 16px;
  color: #d2531f;
}
.bOrderLog .tItem>td {
  display: block;
}
.bOrderLog .tItem>td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  display: inline;
  font-size: 20px;
  color: black;
}
.bOrderLog .tItems {
  border-collapse: collapse;
  border-spacing: 0px;
  width: 100%;
}
.bOrderLog .tItems td {
  margin: 0px;
  padding: 5px 0;
  display: inline;
}
.bOrderLog .tItems td:nth-child(3) {
  display: inline-block;
}
.bOrderLog .tItems td.pl {
  padding-left: 5px;
}
.bOrderLog .tItems td.pr {
  padding-right: 5px;
}
.bOrderLog .tItems td.ppr {
  padding-right: 15px;
}
@media (min-width: 1200px) {
  .bOrderLog>tbody {
    display: table-row;
  }
  .bOrderLog .tSep,
  .bOrderLog .tSepHeader,
  .bOrderLog .tHeader {
    display: table-row;
  }
  .bOrderLog .tItem {
    border: none;
  }
  .bOrderLog .tItem tbody {
    display: table-row-group;
  }
  .bOrderLog .tItem>td {
    border-right: 1px solid #ddd7c9;
    display: table-cell;
  }
  .bOrderLog .tItem>td:before {
    display: none;
  }
  .bOrderLog .tItem>td.td1,
  .bOrderLog .tItem>td.td5 {
    text-align: center;
  }
  .bOrderLog .tItem>td.td2 {
    min-width: 450px;
  }
  .bOrderLog .tItem>td.td3,
  .bOrderLog .tItem>td.td4 {
    text-align: right;
  }
  .bOrderLog .tItem>td.td7 {
    border-right: 0;
  }
  .bOrderLog .tItems td {
    display: table-cell;
  }
  .bOrderLog .tItems td.vsep {
    background: #ddd7c9;
    width: 1px;
  }
}
.adaptShower {
  display: none;
}
.bWorkSh .sm-row {
  margin-top: 40px;
}
.bWorkSh .sm-va-m {
  height: 60px;
}
.sm-row {
  display: table;
  width: 100%;
}
.sm-col {
  float: left;
}
.sm-col-r {
  float: right;
}
.sm-va-m {
  display: table-cell;
  vertical-align: middle;
  float: none;
}
.sm-col.ml30 {
  margin-left: 30%;
}
.sm-col.w10 {
  width: 10%;
}
.sm-col.w20 {
  width: 20%;
}
.sm-col.w30 {
  width: 30%;
}
.sm-col.w40 {
  width: 40%;
}
.sm-col.w50 {
  width: 50%;
}
.sm-col.w60 {
  width: 60%;
}
.sm-col.w70 {
  width: 70%;
}
.sm-col.w80 {
  width: 80%;
}
.sm-col.w90 {
  width: 90%;
}
.subSubMenu {
  background: #bab5aa;
  padding: 30px 0;
  position: relative;
}
.subSubMenu A {
  color: #4d5153;
  text-decoration: none;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 18px;
  line-height: 18px;
}
.subSubMenu A:hover {
  color: #3d3d3d;
  font-family: 'MyriadPro-Semibold', Arial;
}
.subSubMenu DIV {
  padding: 8px 0;
}
.subSubMenu .sepsep {
  width: 13px;
  height: 6px;
  background: url('/bitrix/templates/detsys/img/subSubMenu.png') no-repeat top left;
  position: absolute;
  top: 0px;
  margin-top: -6px;
}
.superCalc {
  background: #f1efe9;
  padding: 15px;
  max-width: 550px;
  margin: 0 auto;
  margin-bottom: 30px;
  overflow: hidden;
}
.superCalc.w2 {
  max-width: 670px;
}
.superCalc.wmax {
  max-width: none;
}
.superCalc .ico {
  width: 121px;
  height: 153px;
  background: url('/bitrix/templates/detsys/img/calc.png') no-repeat top left;
  margin: 15px auto;
}
.superCalc .ftext {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 23px;
  line-height: 28px;
  color: #4d5153;
  text-align: center;
}
.superCalc .ftext b {
  font-family: 'MyriadPro-Semibold', Arial;
  font-weight: normal;
}
.superCalc .GSbtn {
  margin-top: 20px;
}
.superCalc .GSbtn .text {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 17px;
  line-height: 17px;
}
@media (min-width: 600px) {
  .superCalc {
    padding: 20px 110px;
  }
  .superCalc .ico {
    float: left;
    margin: 0 30px 0 0;
  }
  .superCalc .GSbtn {
    margin-left: 151px;
  }
  .superCalc .ftext {
    text-align: left;
  }
}
#sliderProductPhoto {
  margin-left: 5%;
}
#sliderProductPhoto .slide,
#sliderProductPhoto .move,
#sliderProductPhoto .hidden {
  height: 100px;
}
#sliderProductPhoto .GSpagination {
  float: left;
  margin-top: 30px;
}
#sliderProductPhoto .hidden {
  width: 60%;
  float: left;
  margin: 0 20px;
}
.footerNewMenu {
  max-width: 280px;
}
.footerNewMenu .mtitle {
  color: #d2531f;
  font-size: 27px;
  line-height: 27px;
  padding: 5px 10px;
  padding-top: 0px;
  font-family: 'MyriadPro-Cond', Arial;
}
.footerNewMenu A {
  color: #ffffff;
  font-size: 27px;
  line-height: 27px;
  font-family: 'MyriadPro-Cond', Arial;
}
#popupReg .GSbtn {
  margin-top: 30px;
}
#popupSaveDone .GSbtn {
  margin-top: 30px;
}
.comptitle {
  padding-bottom: 10px;
}
.oldh3 {
  font-size: 22px;
  font-weight: bold;
}
.bService2 {
  background: url('/bitrix/templates/detsys/img/bService2.jpg') center no-repeat;
  background-size: cover;
  border-bottom: 6px solid #f05714;
  padding: 1px 0;
}
@media (min-width: 600px) {
  .bService2 .l {
    float: left;
  }
  .bService2 .r {
    float: right;
  }
  .bService2 .va {
    display: table-cell;
    height: 410px;
    vertical-align: middle;
  }
}
.bService2 .title {
  text-align: center;
  font-family: 'MyriadPro-Regular', Arial;
  color: #fff;
  font-size: 32px;
  margin: 15px 0;
}
.bService2 .btn {
  background: #fff;
  color: #4d5153;
  font-size: 20px;
  font-family: 'MyriadPro-Regular', Arial;
  line-height: 1.1em;
  text-decoration: none;
  text-align: center;
  padding: 6px 8px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  width: 230px;
  display: block;
  margin: 15px auto;
}
.bService2 .btn:hover {
  background: #ff5100;
  color: #fff;
}
.bService2 .btn:active {
  background: #ed5212;
  color: #4d5153;
}
.bFastOrder {
  background: #fcfaf8;
  margin-top: 30px;
  padding: 30px 15px;
}
@media (min-width: 900px) {
  .bFastOrder {
    padding: 30px 60px;
  }
}
@media (min-width: 1200px) {
  .bFastOrder {
    padding: 30px 120px;
  }
}
.bFastOrder .GSinput1 {
  border: 1px solid #e0d8ca;
  background: #fcfaf8;
}
.bFastOrder .top {
  margin: 0 -15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.bFastOrder .top .GSinput1,
.bFastOrder .top .GSbtn {
  margin: 15px;
  box-sizing: border-box;
  width: 200px;
}
.bFastOrder .top .GSclear {
  display: none;
}
.bFastOrder .bPersonal {
  margin: 25px -15px 0;
  display: flex;
  flex-flow: row wrap;
}
.bFastOrder .bPersonal .l,
.bFastOrder .bPersonal .r {
  padding: 15px;
  box-sizing: content-box;
}
.bFastOrder .bPersonal .l {
  width: 100%;
  max-width: 374px;
}
.bFastOrder .bPersonal .r {
  width: 100%;
  max-width: 400px;
}
.bFastOrder .bPersonal .GSclear {
  display: none;
}
.bFastOrder .regHide {
  margin-top: 30px;
  display: none;
}
.bFastOrder .GSinput1.GSselect .option {
  background: #fff;
  border-color: #e0d8ca;
}
.bFastOrder .needpassword {
  margin-top: 25px;
  display: none;
}
.gCatNewsubcatIncText {
  margin-bottom: 30px;
}
.bProject2 .title4 {
  text-transform: uppercase;
}
.bProject2 .demo {
  display: none;
}
.bProject2 .demo .tprev {
  margin: 30px 20px;
}
.bProject2 .demo .item {
  border-bottom: 1px solid #ddd7c9;
  padding: 20px 0;
  position: relative;
}
.bProject2 .demo .item IMG {
  display: block;
  max-width: 250px;
  max-height: 250px;
}
.bProject2 .demo .item .rel {
  position: relative;
  margin-bottom: 10px;
  width: 250px;
  border: 3px solid #f1efe9;
  margin: 0 auto 15px;
}
.bProject2 .demo .item .rel img {
  width: 100%;
}
.bProject2 .demo .item .rel .GSzico {
  width: 30px;
  height: 30px;
  background: url('/bitrix/templates/detsys/img/izoom.png') center no-repeat rgba(241,239,233,0.9);
  position: absolute;
  left: 0px;
  bottom: 0px;
  pointer-events: none;
}
.bProject2 .demo .title1 {
  font-size: 30px;
  line-height: 1em;
  margin-bottom: 5px;
}
.bProject2 .demo .img {
  height: 315px;
  margin-bottom: 15px;
}
.bProject2 .l,
.bProject2 .r {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bProject2 .r .item:last-child {
  border-bottom: 0px;
}
.bProject2 .list {
  margin: 0 -15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.bProject2 .list .hr,
.bProject2 .list .GSclear {
  display: none;
}
.bProject2 .list .item {
  width: 220px;
  height: 165px;
  margin: 15px;
  position: relative;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 0;
  transition: all 100ms linear;
}
.bProject2 .list .item:hover .ititle {
  background: rgba(255,255,255,0.93);
}
.bProject2 .list .item.sel {
  border: 3px solid #f05213;
  z-index: 2;
}
.bProject2 .list .item.sel .ititle {
  background: #fff;
}
.bProject2 .list .item .ititle {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 24px;
  line-height: 1.1em;
  text-transform: uppercase;
  color: #F05213;
  background: rgba(255,255,255,0.85);
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 80px;
  padding: 12px 10px 8px 10px;
  text-align: center;
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bProject2 .list .item .ititle .t {
  display: table;
  width: 100%;
}
.bProject2 .list .item .ititle .va {
  display: table-cell;
  vertical-align: middle;
  height: 60px;
}
.bProject2.mm {
  margin: 50px 0;
}
.bProject2.mm .list {
  margin-top: 30px;
}
.bProject2 .bPartner {
  margin-top: 40px;
}
@media (min-width: 600px) {
  .bProject2 .demo .item .rel {
    float: left;
    width: 100px;
  }
  .bProject2 .demo .item .tpl {
    padding-left: 125px;
  }
  .bProject2 .demo .item IMG {
    max-width: 100px;
    max-height: 100px;
  }
}
@media (min-width: 900px) {
  .bProject2 .l,
  .bProject2 .r {
    float: left;
    width: 50%;
  }
  .bProject2 .l {
    padding-right: 20px;
  }
  .bProject2 .r {
    padding-left: 20px;
  }
  .bProject2 .r .item:first-child {
    padding-top: 0px;
  }
  .bProject2 .demo .item:last-child {
    border-bottom: 0px;
  }
}
@media (min-width: 1200px) {
  .bProject2 .list {
    border-bottom: 3px solid #f05213;
    margin: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .bProject2 .list .item {
    margin: 0;
  }
  .bProject2 .list .item.sel .bbt {
    height: 6px;
    background: #fff;
    position: absolute;
    bottom: -6px;
    width: 100%;
    z-index: 3;
  }
  .bProject2 .list .item:first-child {
    margin-left: 0;
  }
  .bProject2 .list .item:last-child {
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .bProject2 .list .item {
    width: 280px;
    height: 80px;
    border: 3px solid white;
    background-position: left center !important;
    background-size: auto 100% !important;
  }
  .bProject2 .list .item .ititle {
    left: auto;
    right: 0;
    height: 74px;
    width: 174px;
    font-size: 18px;
    padding: 6px 5px 4px 5px;
    background: white !important;
  }
}
.stext H1,
.stext H2,
.stext H3,
.stext H4,
.stext H5,
.stext H6 {
  font-weight: normal;
  font-family: 'MyriadPro-Cond', Arial;
  color: #4d5153;
  line-height: 1.2em;
}
.stext H1 {
  font-size: 20px;
}
.stext H2 {
  font-size: 19px;
}
.stext H3 {
  font-size: 18px;
}
.stext H4 {
  font-size: 17px;
}
.stext H5 {
  font-size: 14px;
}
.stext H6 {
  font-size: 12px;
}
@media (min-width: 600px) {
  .stext H1 {
    font-size: 30px;
  }
  .stext H2 {
    font-size: 28px;
  }
  .stext H3 {
    font-size: 26px;
  }
  .stext H4 {
    font-size: 24px;
  }
  .stext H5 {
    font-size: 22px;
  }
  .stext H6 {
    font-size: 20px;
  }
}
.gFBLink {
  display: inline-block;
  margin-left: 10px;
  margin-bottom: -5px;
  width: 24px;
  height: 24px;
  background: url('/bitrix/templates/detsys/img/fb.png') no-repeat center;
}
.socialBtn {
  margin-bottom: 30px;
  margin-top: -10px;
}
.socialBtn A {
  float: left;
  width: 63px;
  height: 63px;
  margin-right: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}
.socialBtn .fb {
  background: url('/bitrix/templates/detsys/img/cfb.png') no-repeat center;
}
.socialBtn .yt {
  background: url('/bitrix/templates/detsys/img/cyt.png') no-repeat center;
}
.socialBtn .vk {
  background: url('/bitrix/templates/detsys/img/cvk.png') no-repeat center;
}
.socialBtn .em {
  background: url('/bitrix/templates/detsys/img/cem.png') no-repeat center;
}
.footerSocial {
  margin-bottom: 30px;
  margin-top: -5px;
  text-align: right;
}
.footerSocial .title {
  font-family: 'MyriadPro-Regular', Arial;
  color: #ddd7c9;
  font-size: 15px;
  line-height: 17px;
}
.footerSocial A {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  margin-left: 10px;
  margin-top: 5px;
}
.footerSocial .fb {
  background: url('/bitrix/templates/detsys/img/ffb.svg') no-repeat center #f15213;
  background-size: 11px 20px;
}
.footerSocial .yt {
  background: url('/bitrix/templates/detsys/img/fyt.svg') no-repeat center #f15213;
  background-size: 20px 24px;
}
.footerSocial .vk {
  background: url('/bitrix/templates/detsys/img/fvk.svg') no-repeat center #f15213;
  background-size: 24px 13px;
}
.bServiceList .text1 {
  margin-bottom: 15px;
  margin-top: -5px;
}
.bServiceList .sub {
  margin-bottom: 40px;
}
.bServiceList .ico {
  height: 50px;
  width: 50px;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 15px;
}
.bServiceList .ico.i1 {
  background: url('/bitrix/templates/detsys/img/service/1.png?7') no-repeat center;
  background-size: contain;
}
.bServiceList .ico.i2 {
  background: url('/bitrix/templates/detsys/img/service/2.png?3') no-repeat center;
  background-size: contain;
}
.bServiceList .ico.i3 {
  background: url('/bitrix/templates/detsys/img/service/3.png?1') no-repeat center;
  background-size: contain;
}
.bServiceList .ico.i4 {
  background: url('/bitrix/templates/detsys/img/service/4.png?1') no-repeat center;
  background-size: contain;
}
.bServiceList .ico.i5 {
  background: url('/bitrix/templates/detsys/img/service/5.png?1') no-repeat center;
  background-size: contain;
}
.bAboutService {
  margin: 30px 0;
}
.bAboutService .sm-row {
  margin: 0 -15px;
  margin-top: 20px;
}
.bAboutService .sm-col {
  padding: 0 15px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  .bAboutService .sm-col {
    width: 33.3%;
  }
}
.bAboutService .sm-col A:hover,
.bAboutService .sm-col A:active {
  text-decoration: none;
}
.bAboutService .aico {
  height: 50px;
  width: 50px;
  float: left;
  margin-top: -10px;
}
.bAboutService .r {
  padding-left: 65px;
}
.bAboutService .aico.i1 {
  background: url('/bitrix/templates/detsys/img/aservice/1.png?2') no-repeat center top;
  background-size: contain;
  margin-top: -5px;
}
.bAboutService .aico.i2 {
  background: url('/bitrix/templates/detsys/img/aservice/2.png?2') no-repeat center top;
  background-size: contain;
}
.bAboutService .aico.i3 {
  background: url('/bitrix/templates/detsys/img/aservice/3.png?2') no-repeat center top;
  background-size: contain;
  margin-top: -8px;
}
.bAboutService .aico.i4 {
  background: url('/bitrix/templates/detsys/img/aservice/4.png?2') no-repeat center top;
  background-size: contain;
  margin-top: -7px;
}
.bAboutService .aico.i5 {
  background: url('/bitrix/templates/detsys/img/aservice/5.png?2') no-repeat center top;
  background-size: contain;
}
.bAboutService .aico.i6 {
  background: url('/bitrix/templates/detsys/img/aservice/6.png?2') no-repeat center top;
  background-size: contain;
  margin-top: -7px;
}
.bAboutService .aico.i7 {
  background: url('/bitrix/templates/detsys/img/aservice/7.png?2') no-repeat center top;
  background-size: contain;
}
.bAboutService .aico.i8 {
  background: url('/bitrix/templates/detsys/img/aservice/8.png?2') no-repeat center top;
  background-size: contain;
}
.bTicket {
  margin-bottom: 40px;
  border-collapse: collapse;
  border-spacing: 0px;
  width: 100%;
}
.bTicket tbody {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.bTicket tbody tr {
  flex: 1 250px;
}
.bTicket td {
  margin: 0px;
  padding: 0px;
}
.bTicket .tHeader {
  display: none;
}
.bTicket .tHeader td {
  background: #ddd7c9;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 16px;
  color: #4d5153;
  padding: 10px 15px;
}
.bTicket .tSep {
  display: none;
}
.bTicket .tSep td {
  padding: 10px 0;
}
.bTicket .tSep .sep {
  height: 1px;
  background: #ddd7c9;
}
.bTicket .tSepHeader {
  display: none;
}
.bTicket .tSepHeader td {
  padding-top: 10px;
}
.bTicket .tItem {
  padding: 15px 0;
  border-top: 1px solid #ddd7c9;
  border-bottom: 1px solid #ddd7c9;
}
.bTicket .tItem td {
  padding: 5px 0;
  display: block;
}
.bTicket .tItem td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  display: inline;
  font-size: 20px;
  color: black;
}
.bTicket .tItem td.td1 {
  font-family: 'MyriadPro-BoldCond', Arial;
  font-size: 36px;
  line-height: 36px;
  color: #ddd7c9;
}
.bTicket .tItem td.td2 {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 1.2em;
  color: #4d5153;
}
.bTicket .tItem td.td2 a {
  color: #4d5153;
}
.bTicket .tItem td.td2 a:hover {
  color: #4d5153;
  text-decoration: none;
}
.bTicket .tItem td.td2 a:active {
  color: #d2531f;
  text-decoration: none;
}
.bTicket .tItem td.td3 {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 1.3em;
  color: #d2531f;
}
.bTicket .tItem td.td3:after {
  content: "";
  display: table;
  clear: both;
}
.bTicket .tItem td.td4 {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 1.3em;
  color: #4d5153;
}
.bTicket .tItem td.td5 {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 1.3em;
  color: #4d5153;
}
.bTicket .tItem td.td6 {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 1.3em;
  color: #4d5153;
}
.bTicket .GSbtn {
  margin-top: 10px;
}
@media (min-width: 900px) {
  .bTicket tbody {
    display: table-row-group;
  }
  .bTicket .tHeader,
  .bTicket .tSep,
  .bTicket .tSepHeader {
    display: table-row;
  }
  .bTicket .tItem {
    padding: 0;
    border: none;
  }
  .bTicket .tItem td {
    padding: 20px 15px;
    border-right: 1px solid #ddd7c9;
    display: table-cell;
  }
  .bTicket .tItem td.td1 {
    text-align: center;
  }
  .bTicket .tItem td.td6 {
    border-right: 0;
  }
  .bTicket td:before {
    display: none !important;
  }
}
.bTicketBtns .btn {
  width: 200px;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.bTicketBtns sup {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
  font-size: 0.75em;
}
.bTicketAdd {
  padding-bottom: 50px;
}
.bTicketAdd .allneed {
  font-family: 'MyriadPro-Regular', Arial;
  color: #F05213;
  font-size: 20px;
  line-height: 20px;
  margin-top: 28px;
  float: left;
}
.bTicketAdd .field {
  margin-top: 10px;
  line-height: 24px;
  min-height: 70px;
}
.bTicketAdd .field .GSinput1 {
  margin-top: 3px;
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
}
.bTicketAdd .field .need {
  color: #F05213;
  font-size: 24px;
}
.bTicketAdd .field textarea {
  height: 190px;
}
.bTicketAdd .checkboxWrap {
  margin-top: 10px;
  max-width: 600px;
  text-align: left;
}
.bTicketAdd .GSbtn {
  margin-top: 20px;
  width: 200px;
}
.bTicketDetail {
  border-collapse: collapse;
  border-spacing: 0px;
  margin-bottom: 30px;
}
.bTicketDetail .text1 {
  line-height: 1.3em;
}
.bTicketDetail .title {
  font-size: 24px;
  line-height: 1.1em;
}
.bTicketDetail TD {
  padding: 20px 0;
  border-bottom: 1px solid #ddd7c9;
  vertical-align: top;
}
.bTicketDetail.nbrd TD {
  border-bottom: 0;
  padding: 10px 0;
}
.bTicketDetail__photo {
  max-width: 200px;
  max-height: 200px;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}
.bTicketDetail TD.l {
  padding-right: 30px;
  text-align: right;
  color: #9fa1a3;
}
.bTicketDetail TR:last-child TD {
  border-bottom: 0;
}
.bTicketDetailCont {
  margin-top: -10px;
}
.bTicketDetailCont .wpr .text1 {
  font-size: 16px;
}
.bTicketDetailCont .wpr .GSbtn {
  margin-top: 10px;
  width: 140px;
}
.bTicketDetailCont .wpr .status {
  color: #d2531f;
}
.bTicketDetailCont .wpr .GSbtn {
  cursor: pointer;
}
@media (min-width: 600px) {
  .bTicketDetailCont {
    margin: -10px -40px 0;
  }
  .bTicketDetailCont .wpl {
    float: left;
    width: 65%;
    padding: 0 40px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .bTicketDetailCont .wpr {
    float: left;
    width: 35%;
    padding: 0 40px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: -7px;
  }
}
.title1.sp SUP {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
  font-size: 0.75em;
}
.st_vfl {
  margin: 0 auto 15px;
  border: 15px solid #ddd7c9;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}
@media (min-width: 900px) {
  .st_vfl {
    float: left;
    margin: 0 30px 15px 0;
  }
}
.st_ifr {
  max-width: 100%;
  border: 15px solid #ddd7c9;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 600px) {
  .st_ifr {
    float: right;
    max-width: 33%;
    margin: 0;
    margin-left: 30px;
    margin-bottom: 15px;
  }
}
.st_ifl {
  max-width: 100%;
  border: 15px solid #ddd7c9;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 600px) {
  .st_ifl {
    float: left;
    margin: 0;
    margin-right: 30px;
    margin-bottom: 15px;
    max-width: 33%;
  }
}
.st_ifc {
  display: block;
  max-width: 100%;
  border: 15px solid #ddd7c9;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 30px auto;
  float: none;
}
.st_i-no-bord {
  border: 0;
}
.bArticle .st_ifr {
  max-width: 100%;
  border: 15px solid #ddd7c9;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 600px) {
  .bArticle .st_ifr {
    float: right;
    max-width: 33%;
    margin: 0;
    margin-left: 30px;
    margin-bottom: 15px;
  }
}
.bArticle .st_ifl {
  max-width: 100%;
  border: 15px solid #ddd7c9;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 600px) {
  .bArticle .st_ifl {
    float: left;
    margin: 0;
    margin-right: 30px;
    margin-bottom: 15px;
    max-width: 33%;
  }
}
.bArticle .st_ifc {
  display: block;
  max-width: 100%;
  border: 15px solid #ddd7c9;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 30px auto;
  float: none;
}
.bArticle .st_i-no-bord {
  border: 0;
}
#form19 {
  border-top: none;
}
.bTabs {
  margin-top: -40px;
}
.bTabs .demo {
  display: none;
}
.bTabs .demo .tprev {
  margin: 30px 20px;
}
@media (max-width: 599px) {
  .bTabs .demo .tprev {
    margin-left: 0;
    margin-right: 0;
  }
}
.bTabs .title4 {
  text-transform: uppercase;
}
.bTabs .qlist {
  margin: 0 -15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.bTabs .qlist .hr,
.bTabs .qlist .GSclear {
  display: none;
}
.bTabs .qlist .item {
  width: 220px;
  height: 165px;
  margin: 15px;
  position: relative;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 0;
  transition: all 100ms linear;
}
.bTabs .qlist .item:hover .ititle {
  background: rgba(255,255,255,0.93);
}
.bTabs .qlist .item.sel {
  border: 3px solid #f05213;
  z-index: 2;
}
.bTabs .qlist .item.sel .ititle {
  background: #fff;
}
.bTabs .qlist .item .ititle {
  font-family: 'MyriadPro-Cond', Arial;
  font-size: 24px;
  line-height: 1.1em;
  text-transform: uppercase;
  color: #F05213;
  background: rgba(255,255,255,0.85);
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 80px;
  padding: 12px 10px 8px 10px;
  text-align: center;
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bTabs .qlist .item .ititle .t {
  display: table;
  width: 100%;
}
.bTabs .qlist .item .ititle .va {
  display: table-cell;
  vertical-align: middle;
  height: 60px;
}
.bTabs.mm {
  margin: 50px 0;
}
.bTabs.mm .qlist {
  margin-top: 30px;
}
.bTabs .bPartner {
  margin-top: 40px;
}
.bTabs.video .bst {
  border-top: 3px solid #f1efe9;
  margin-top: -20px;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .bTabs .qlist {
    border-bottom: 3px solid #f05213;
    margin: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .bTabs .qlist .item {
    margin: 0;
  }
  .bTabs .qlist .item.sel .bbt {
    height: 6px;
    background: #fff;
    position: absolute;
    bottom: -6px;
    width: 100%;
    z-index: 3;
  }
  .bTabs .qlist .item:first-child {
    margin-left: 0;
  }
  .bTabs .qlist .item:last-child {
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .bTabs .qlist .item {
    width: 280px;
    height: 80px;
    border: 3px solid white;
    background-position: left center !important;
    background-size: auto 100% !important;
  }
  .bTabs .qlist .item .ititle {
    left: auto;
    right: 0;
    height: 74px;
    width: 174px;
    font-size: 18px;
    padding: 6px 5px 4px 5px;
    background: white !important;
  }
}
@media (max-width: 599px) {
  .bTabs .qlist .item {
    width: 100%;
    margin-top: 0;
  }
  .bTabs .qlist .item .ititle {
    width: auto;
    right: 0;
    left: 105px;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.bVideo.demo {
  display: block !important;
}
.bVideo .list-3col {
  margin: 0 -15px;
  display: flex;
  flex-flow: row wrap;
}
.bVideo .list-3col .item {
  padding: 15px;
  flex: 0 0 100%;
  box-sizing: border-box;
}
.bVideo .list-3col .item .r {
  padding-left: 50px;
}
@media (min-width: 600px) {
  .bVideo .list-3col .item {
    flex: 0 0 50%;
  }
}
@media (min-width: 900px) {
  .bVideo .list-3col .item {
    flex: 0 0 33.33%;
  }
}
.bVideo .list-4col {
  margin: 0 -15px;
  display: flex;
  flex-flow: row wrap;
}
.bVideo .list-4col .item {
  padding: 15px;
  flex: 0 0 100%;
  box-sizing: border-box;
}
.bVideo .list-4col .item .r {
  padding-left: 50px;
}
@media (min-width: 900px) {
  .bVideo .list-4col .item {
    flex: 0 0 50%;
  }
}
@media (min-width: 1200px) {
  .bVideo .list-4col .item {
    flex: 0 0 25%;
  }
}
.bVideo .aico {
  width: 40px;
  height: 40px;
  float: left;
}
.bVideo .list {
  margin: 0 -15px;
}
.bVideo .list .r {
  padding-left: 50px;
}
.bVideo .list .ostr {
  margin-top: 9px;
}
.bVideo .list .tstr {
  margin-top: -9px;
}
.bVideo .types {
  margin: 0 -15px;
  display: flex;
  flex-flow: row wrap;
}
.bVideo .types .col {
  width: 100%;
  padding: 20px 15px;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  .bVideo .types .col {
    width: 50%;
  }
}
.bVideo .types UL {
  list-style: none;
  padding: 0px;
  margin-top: -10px;
}
.bVideo .types LI {
  list-style: none;
  padding: 0px;
  padding: 5px 0;
}
.bVideo .types .plus LI .ico {
  width: 16px;
  height: 16px;
  float: left;
  margin-right: 7px;
  margin-top: 3px;
  background: url('/bitrix/templates/detsys/img/plusMinus.png') no-repeat top left;
}
.bVideo .types .minus LI .ico {
  width: 16px;
  height: 16px;
  float: left;
  margin-right: 5px;
  margin-top: 3px;
  background: url('/bitrix/templates/detsys/img/plusMinus.png') no-repeat top left;
  background-position: 0 -17px;
}
.bVideo .work .tprev {
  margin: 30px 20px;
}
.bVideo .work .item {
  border-bottom: 1px solid #ddd7c9;
  padding: 20px 0;
  position: relative;
}
.bVideo .work .item IMG {
  display: block;
  max-width: 250px;
  max-height: 250px;
}
@media (max-width: 599px) {
  .bVideo .work .item IMG {
    max-width: 100%;
  }
}
.bVideo .work .item .rel {
  position: relative;
  margin-bottom: 10px;
  width: 250px;
  border: 3px solid #f1efe9;
  margin: 0 auto 15px;
}
@media (max-width: 599px) {
  .bVideo .work .item .rel {
    width: auto;
  }
}
.bVideo .work .item .rel img {
  width: 100%;
}
.bVideo .work .item .rel .GSzico {
  width: 30px;
  height: 30px;
  background: url('/bitrix/templates/detsys/img/izoom.png') center no-repeat rgba(241,239,233,0.9);
  position: absolute;
  left: 0px;
  bottom: 0px;
  pointer-events: none;
}
.bVideo .work .title1 {
  font-size: 30px;
  line-height: 1em;
  margin-bottom: 5px;
}
.bVideo .work .img {
  height: 315px;
  margin-bottom: 15px;
}
@media (min-width: 600px) {
  .bVideo .work .item .rel {
    width: 100px;
    float: left;
  }
  .bVideo .work .item .tpl {
    padding-left: 125px;
  }
}
@media (min-width: 900px) {
  .bVideo .work .l,
  .bVideo .work .r {
    float: left;
    width: 50%;
    box-sizing: border-box;
    padding: 0 20px;
  }
  .bVideo .work .r .item:first-child {
    padding-top: 0px;
  }
  .bVideo .work .item:last-child {
    border-bottom: 0px;
  }
}
.bVideo .bProductList {
  margin-bottom: 40px;
}
.bVideo .bSubTabs {
  margin-top: 40px;
}
.bVideo .bSubTabs .GStitle2 {
  color: #4d5153;
  font-size: 20px;
}
@media (min-width: 600px) {
  .bVideo .bSubTabs .GStitle2 {
    font-size: 32px;
  }
}
.bSubTabs .nav {
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.bSubTabs .nav .GSbtn2 {
  flex: 100%;
  max-width: 400px;
  border: 3px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bSubTabs .nav .act {
  color: #4d5153;
  border: 3px solid transparent;
}
@media (min-width: 600px) {
  .bSubTabs .nav {
    border-bottom: 3px solid #f1efe9;
  }
  .bSubTabs .nav .GSbtn2 {
    flex: 1 0 250px;
  }
}
.bVideo .bSubTabs .GSbtn2 {
  box-sizing: border-box;
  padding: 13px 25px;
}
.tabs .tab {
  padding-top: 25px;
  display: none;
}
.bCamera {
  margin: 20px -20px 0;
  display: flex;
  flex-flow: row wrap;
}
.bCamera img {
  width: 100%;
}
.bCamera .col {
  width: 100%;
  padding: 0 20px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bCamera .col:last-child {
  padding-top: 15px;
}
@media (min-width: 600px) {
  .bCamera .col {
    width: 50%;
  }
  .bCamera .col:last-child {
    padding-top: 0;
  }
}
.bCamera .price {
  font-family: 'MyriadPro-Semibold', Arial;
  color: #F05213;
  font-size: 21px;
  line-height: 21px;
  text-transform: uppercase;
}
.bCamera .smprice {
  font-family: 'MyriadPro-Semibold', Arial;
  color: #F05213;
  font-size: 17px;
  text-transform: uppercase;
}
.bCamera .price.sm {
  font-size: 19px;
  line-height: 19px;
  margin-top: 10px;
}
.bCamera .GStitle2 {
  font-size: 28px !important;
  line-height: 1;
  margin-bottom: 15px;
}
.bCamera .GStitle2.nmt {
  margin-top: 0px;
}
.bCamera UL {
  list-style: none;
  padding: 0px;
  margin-top: 0px;
}
.bCamera LI {
  list-style: none;
  padding: 5px 0;
}
.bCamera LI .t {
  display: block;
  padding-left: 23px;
}
.bCamera .plus LI .ico {
  width: 16px;
  height: 16px;
  float: left;
  margin-right: 7px;
  margin-top: 3px;
  background: url('/bitrix/templates/detsys/img/plusMinus.png') no-repeat top left;
}
.bCamera .done LI .ico {
  width: 16px;
  height: 13px;
  float: left;
  margin-right: 7px;
  margin-top: 3px;
  background: url('/bitrix/templates/detsys/img/donesm.png') no-repeat top left;
}
.bServiceInfo .bst {
  border-top: 3px solid #f1efe9;
  margin-top: 30px;
  margin-bottom: 20px;
}
.bServiceInfo .ilist .item {
  margin-top: 30px;
}
.bServiceInfo .ilist .item:first-child {
  margin-top: 25px;
}
.bServiceInfo .ilist .item .aico {
  width: 40px;
  height: 40px;
  float: left;
}
.bServiceInfo .ilist .item .r {
  padding-left: 55px;
}
.bServiceInfo UL.done {
  list-style: none;
  padding: 0px;
  margin-top: 20px;
}
.bServiceInfo UL.done LI {
  list-style: none;
  padding: 5px 0;
}
.bServiceInfo UL.done LI .t {
  display: block;
  padding-left: 23px;
}
.bServiceInfo .plus LI .ico {
  width: 16px;
  height: 16px;
  float: left;
  margin-right: 7px;
  margin-top: 3px;
  background: url('/bitrix/templates/detsys/img/plusMinus.png') no-repeat top left;
}
.bServiceInfo .done LI .ico {
  width: 16px;
  height: 13px;
  float: left;
  margin-right: 7px;
  margin-top: 3px;
  background: url('/bitrix/templates/detsys/img/donesm.png') no-repeat top left;
}
#snowStorm {
  overflow: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 225px;
  pointer-events: none;
  z-index: 101;
}
@media screen and (max-width: 980px) {
  #snowStorm {
    height: 217px;
  }
}
.fTin LI SPAN {
  display: block;
}
.fTin LI SPAN:last-child {
  margin-bottom: 15px;
  margin-top: 5px;
  color: #979797;
}
.fTin .smRowC2 {
  margin: 0 -20px;
}
.fTin .smRowC2:after {
  content: " ";
  display: block;
  clear: both;
}
.fTin .smCol {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  position: relative;
  float: left;
  min-height: 1px;
  width: 50%;
  padding: 0 20px;
}
.fTin UL {
  padding: 0px;
  margin: 0px;
}
.fTin LI {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.hiddenSubmit {
  background: none;
  padding: 0px;
  margin: 0px;
  border: 0px;
  width: 1px;
  height: 1px;
  opacity: 0.01;
  position: absolute;
}
.cTable {
  border-collapse: collapse;
}
.cTable TD {
  border: 1px solid #ddd7c9;
  padding: 5px 10px;
}
.cTable .theader TD {
  font-weight: bold;
}
.bRating {
  background: #ddd7c9;
  padding: 20px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 540px;
}
.bRating .ftitle {
  font-size: 24px;
  margin-top: -5px;
}
.bRating .rating {
  margin-top: 13px;
}
.bTicket .rating {
  margin-top: 5px;
  min-width: 132px;
}
.bRating .btn {
  margin-top: 20px;
  display: none;
}
.bRating .GSinput1 {
  display: none;
}
.bRating .rating .star,
.bTicketDetail .rating .star,
.bTicket .rating .star {
  float: left;
  padding: 0 4px;
}
.bRating .rating .star:first-child,
.bTicketDetail .rating .star:first-child,
.bTicket .rating .star:first-child {
  padding-left: 0px;
}
.bRating .rating .star:last-child,
.bTicketDetail .rating .star:last-child,
.bTicket .rating .star:last-child {
  padding-right: 0px;
}
.bRating .rating .star .ico,
.bTicketDetail .rating .star .ico,
.bTicket .rating .star .ico,
.bTicket .srrate {
  display: block;
  width: 20px;
  height: 19px;
  background: url('/bitrix/templates/detsys/img/rating.png') no-repeat top left;
}
.bTicket .srrate {
  display: inline-block;
  margin-right: 0px;
  margin-bottom: -3px;
}
.bTicket .bsrrate {
  margin-top: 3px;
}
.bRating .rating .star.active .ico,
.bTicketDetail .rating .star.active .ico,
.bTicket .rating .star.active .ico {
  background-position: 0 -40px;
}
.bRating .rating .star.hover .ico {
  background-position: 0 -20px;
}
.bRating TEXTAREA {
  width: 100%;
  height: 100px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0px;
  vertical-align: top;
  margin-top: 20px;
}
.bRating .fDone {
  display: none;
}
@media (max-width: 599px) {
  .zoomContainer,
  .GSzico {
    display: none;
    width: 0;
    height: 0;
    z-index: -10;
  }
}
iframe {
  box-sizing: border-box;
  max-width: 100%;
}
@media (max-width: 599px) {
  iframe {
    width: 300px;
    height: 180px;
  }
}
@media (max-width: 299px) {
  iframe {
    max-height: 179.4px;
  }
}
@media (min-width: 600px) and (max-width: 1199px) {
  .slick-slider {
    padding: 0 41px;
  }
}
.slick-slide {
  overflow: hidden;
}
.slick-slide,
.slick-slide * {
  outline: 0;
}
.slick-dots {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots li button {
  border: 0;
  padding: 0;
  outline: 0;
  cursor: pointer;
  margin: 18px 5px 0;
  font-size: 0;
  width: 13px;
  height: 13px;
  background: #ddd7c9;
}
.slick-dots li:hover button,
.slick-dots li.slick-active button {
  background: #F05213;
}
.slick-arrow {
  position: absolute;
  top: 50%;
  margin: -26px 0 0;
  width: 41px;
  height: 51px;
  font-size: 0;
  border: 0;
  padding: 0;
  outline: 0;
  cursor: pointer;
  z-index: 10;
}
.slick-next {
  right: 0;
  background: url('/bitrix/templates/detsys/img/next.png') no-repeat top left;
}
.slick-next:hover {
  background-position: 0 -52px;
}
.slick-next:active {
  background-position: 0 -104px;
}
.slick-prev {
  left: 0;
  z-index: 1;
  background: url('/bitrix/templates/detsys/img/prev.png') no-repeat top left;
}
.slick-prev:hover {
  background-position: 0 -52px;
}
.slick-prev:active {
  background-position: 0 -104px;
}
.slick-black-arrows .slick-arrow {
  width: 21px;
  height: 32px;
  margin: -16px 0 0;
}
.slick-black-arrows .slick-next,
.slick-black-arrows .slick-next:hover {
  background: url('/bitrix/templates/detsys/img/next2.svg') no-repeat top right;
}
.slick-black-arrows .slick-prev,
.slick-black-arrows .slick-prev:hover {
  background: url('/bitrix/templates/detsys/img/prev2.svg') no-repeat top left;
}
@media (max-width: 599px) {
  .ui-datepicker {
    padding: 3 !important;
  }
}
.bFpresentation {
  width: 100%;
  margin: 0 auto;
  background: #ddd7c9;
  max-width: 580px;
  padding: 10px;
  box-sizing: border-box;
  font-family: 'MyriadPro-Cond', Arial;
  text-align: center;
}
.bFpresentation .GStitle {
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.bFpresentation p {
  font-size: 19px;
  margin: 10px 0;
}
.bFpresentation .GSbtn {
  margin: 0 auto;
  max-width: 210px;
}
.bFpresentation .wrap {
  padding: 10px;
  background: #f4f3ef;
  margin-bottom: 10px;
}
.bFpresentation .wrap p {
  margin: 0 0 10px;
  font-size: 18px;
  text-transform: uppercase;
  text-align: left;
}
.bFpresentation .wrap img {
  width: 100%;
}
@media (min-width: 600px) {
  .bFpresentation {
    padding: 25px 30px;
  }
  .bFpresentation .GStitle {
    margin-bottom: 20px;
  }
  .bFpresentation p {
    margin: 20px 0;
  }
  .bFpresentation .wrap {
    padding: 20px 30px;
    margin-bottom: 20px;
  }
  .bFpresentation .wrap p {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .bFpresentation {
    margin: 0 0 0 40px;
    float: right;
  }
}
.list-style-checkmark {
  padding: 0;
}
.list-style-checkmark li {
  background: url(/bitrix/templates/detsys/img/bCatalogDetail_li.svg) left center no-repeat;
  background-size: 19px 15px;
  margin-bottom: 10px;
  list-style: none;
  padding-left: 30px;
  min-height: 15px;
}
.catMore {
  text-align: center;
  margin-top: 30px;
}
.catMore .GSbtn2 {
  float: none !important;
}
.bDemozal {
  background: #ec521f;
  text-align: center;
  padding: 1px 20px;
}
.bDemozal H3 {
  color: #fff;
  font-size: 24px;
}
.bDemozal H3 A {
  color: #fff;
}
.bNoticeInfo {
  background: #f1efe9;
  text-align: center;
  padding: 20px 20px;
  margin-bottom: 40px;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 17px;
  line-height: 1.3;
  color: #4d5153;
}
.bAntiDrone .overflow-hidden {
  overflow: hidden;
}
.bAntiDrone .text1 {
  margin-bottom: 35px;
}
.bAntiDrone .items {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -20px;
  justify-content: space-between;
}
.bAntiDrone .items .item {
  flex: 0 100%;
  padding: 0 20px;
  box-sizing: border-box;
  border-right: 1px solid #e8e8e8;
  margin-bottom: 35px;
}
@media (min-width: 600px) {
  .bAntiDrone .items .item {
    flex: 0 50%;
  }
}
@media (min-width: 900px) {
  .bAntiDrone .items .item {
    flex: 0 25%;
  }
}
.bAntiDrone .items .item:before {
  content: '';
  display: block;
  width: 82px;
  height: 80px;
  margin: 0 auto 25px;
  background-position: center;
  background-repeat: no-repeat;
}
.bAntiDrone .items .item.item-shpionazh:before {
  background-image: url(/bitrix/templates/detsys/img/bAntiDrone/shpionazh.png);
}
.bAntiDrone .items .item.item-contrabanda:before {
  background-image: url(/bitrix/templates/detsys/img/bAntiDrone/contrabanda.png);
}
.bAntiDrone .items .item.item-napadenie:before {
  background-image: url(/bitrix/templates/detsys/img/bAntiDrone/napadenie.png);
}
.bAntiDrone .items .item.item-stolknovenie:before {
  background-image: url(/bitrix/templates/detsys/img/bAntiDrone/stolknovenie.png);
}
.bAntiDrone .items .item h3 {
  text-align: center;
}
.bAntiDrone .items .item ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  max-width: 308px;
  margin: 0 auto;
}
.bAntiDrone .items .item ul li:before {
  content: '';
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background-color: #eb5324;
  margin-right: 8px;
}
.bAntiDrone table {
  margin-bottom: 40px;
  color: #4d5153;
  font-family: 'MyriadPro-Regular', Arial;
}
.bAntiDrone table .group-label,
.bAntiDrone table .group-label-mobile {
  background: #e8e8e8;
  text-align: center;
}
.bAntiDrone table thead {
  background: #ddd7c9;
  text-align: center;
}
.bAntiDrone table .content {
  padding: 15px;
}
.bAntiDrone table .content p {
  margin: 0;
}
@media (max-width: 599px) {
  .bAntiDrone table {
    font-size: 15px;
  }
  .bAntiDrone table thead {
    font-size: 120%;
  }
  .bAntiDrone table .group-label-mobile {
    margin-top: 30px;
    font-size: 110%;
  }
  .bAntiDrone table .content {
    display: block;
  }
  .bAntiDrone table td,
  .bAntiDrone table .group-label {
    display: none;
  }
}
@media (min-width: 600px) {
  .bAntiDrone table {
    font-size: 12px;
    border-spacing: 0;
  }
  .bAntiDrone table .group-label-mobile {
    display: none;
  }
  .bAntiDrone table .spacer td {
    height: 30px;
  }
  .bAntiDrone table .spacer-thin td {
    height: 15px;
  }
  .bAntiDrone table .col-5-guide,
  .bAntiDrone table .col-6-guide {
    width: 12.5%;
  }
  .bAntiDrone table .col-4-guide,
  .bAntiDrone table .col-7-guide {
    width: 2%;
  }
  .bAntiDrone table .col-3-guide,
  .bAntiDrone table .col-8-guide {
    width: 4%;
  }
  .bAntiDrone table .col-1-guide,
  .bAntiDrone table .col-2-guide,
  .bAntiDrone table .col-9-guide,
  .bAntiDrone table .col-10-guide {
    width: 15.75%;
  }
  .bAntiDrone table td {
    vertical-align: top;
    border: 1px solid transparent;
    padding: 0;
    margin: 0;
    position: relative;
  }
  .bAntiDrone table td.border-full {
    border: 1px solid #e8e8e8;
  }
  .bAntiDrone table td.border-left {
    border-left: 1px solid #e8e8e8;
  }
  .bAntiDrone table td.border-top {
    border-top: 1px solid #e8e8e8;
  }
  .bAntiDrone table td.border-right {
    border-right: 1px solid #e8e8e8;
  }
  .bAntiDrone table td.border-bottom {
    border-bottom: 1px solid #e8e8e8;
  }
  .bAntiDrone table td.border-center-horizontal:after {
    content: '';
    position: absolute;
    top: 50%;
    left: -1px;
    right: -1px;
    height: 1px;
    background: #e8e8e8;
  }
  .bAntiDrone table td.border-center-vertical:after {
    content: '';
    position: absolute;
    left: 50%;
    top: -1px;
    bottom: -1px;
    width: 1px;
    background: #e8e8e8;
  }
  .bAntiDrone table .group-label {
    font-size: 133%;
  }
}
@media (min-width: 600px) and (min-width: 900px) {
  .bAntiDrone table {
    font-size: 18px;
  }
  .bAntiDrone table .spacer td {
    height: 55px;
  }
  .bAntiDrone table .spacer-thin td {
    height: 40px;
  }
}
.bAntiDrone .list-style-checkmark li {
  margin-bottom: 25px;
}
.bSkud .overflow-hidden {
  overflow: hidden;
}
.bSkud .list-style-checkmark li {
  margin-bottom: 20px;
}
.bSkud .photos {
  margin: 0 -28px -60px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.bSkud .photos .photo {
  margin: 0 28px 60px;
  flex: 0 1 360px;
  box-sizing: border-box;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}
.bSkud .photos .photo img {
  display: block;
  max-width: 100%;
  border: 3px solid #e8e8e8;
}
.bSkud .photos .photo .list-style-checkmark li {
  margin: 0;
  background-position: left 2px;
}
.bSkud .photos2 {
  margin: 0 -28px -20px;
  text-align: center;
}
.bSkud .photos2 .photo {
  display: inline-block;
  margin: 0 28px 60px;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}
.bSkud .photos2 .photo img {
  display: block;
  max-width: 100%;
  margin-bottom: 60px;
}
.bSkud .photos2 .photo .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  box-sizing: border-box;
  min-height: 60px;
  background: #f05213;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.bSkud .items {
  text-align: center;
  margin: 0 -30px -20px;
}
.bSkud .items .item {
  display: inline-block;
  margin: 0 30px 60px;
  width: 250px;
  height: 250px;
  box-sizing: border-box;
  padding: 58px 20px;
  border-radius: 50%;
  background: #f1efe9;
}
.bSkud .items .item img {
  display: block;
  margin: 0 auto 20px;
}
.bSkud .items2 {
  text-align: center;
  margin: 0 -20px -30px;
}
.bSkud .items2 .item {
  width: 370px;
  max-width: 100%;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  margin: 0 20px 30px;
  box-sizing: border-box;
  text-align: left;
  vertical-align: top;
}
.bSkud .items2 .item .wrap {
  display: inline-block;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 81px;
  height: 81px;
  margin-right: 20px;
}
.bSkud .items2 .item img {
  display: block;
}
.bSkud .bMarki {
  margin-bottom: 40px;
}
.bSkud .skud-slider {
  margin-bottom: 30px;
}
.bSkud .skud-slider.slick-slider {
  padding: 0;
}
.bSkud .skud-slider.slick-slider .slick-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.bSkud .skud-slider.slick-slider .slick-arrow {
  background-repeat: no-repeat;
  width: 32px;
  height: 48px;
  margin-top: -24px;
}
.bSkud .skud-slider.slick-slider .slick-prev {
  background: url(/bitrix/templates/detsys/img/bSkud/arrow-left.png);
  left: 30px;
}
.bSkud .skud-slider.slick-slider .slick-next {
  background: url(/bitrix/templates/detsys/img/bSkud/arrow-right.png);
  right: 30px;
}
@media (min-width: 900px) {
  .bSkud .skud-slider.slick-slider .slick-next {
    right: 50%;
    margin-right: 30px;
  }
}
.bSkud .skud-slider .slide {
  position: relative;
  background: #f1efe9;
}
.bSkud .skud-slider .slide:after {
  content: "";
  display: table;
  clear: both;
}
.bSkud .skud-slider .slide .img {
  background-size: cover;
}
.bSkud .skud-slider .slide .img:after {
  content: '';
  display: block;
  padding-bottom: 66%;
}
.bSkud .skud-slider .slide .slide-body {
  padding: 30px;
}
.bSkud .skud-slider .slide .slide-body h2 {
  margin-top: 0;
}
.bSkud .skud-slider .slide .slide-body p {
  line-height: 140%;
}
@media (min-width: 900px) {
  .bSkud .skud-slider .slide .img {
    float: left;
    width: 50%;
  }
  .bSkud .skud-slider .slide .slide-body {
    margin-left: 50%;
  }
}
.checkboxWrap {
  text-align: center;
}
.checkboxWrap .labelForCheckbox {
  cursor: pointer;
}
.checkboxWrap .labelForCheckbox,
.checkboxWrap .checkboxInnerWrap {
  display: inline;
}
.checkboxWrap .GScheckbox {
  display: inline-block;
}
.checkboxWrap .checkboxInnerWrap {
  margin-right: 5px;
}
.checkboxWrap a {
  color: #f05714;
}
.checkboxWrap .GScheckbox {
  width: 14px;
  height: 14px;
  margin-bottom: -2px;
  background-size: 100% auto;
  background-position: center top;
}
.checkboxWrap .GScheckbox.act {
  background-position: center bottom;
}
.checkboxWrap .text1 {
  font-size: 14px;
  line-height: 1.3;
}
.ulMinus,
.ulPlus,
.ulDone {
  list-style: none;
  padding: 0px;
  margin: 15px 0px;
}
.ulMinus LI,
.ulPlus LI,
.ulDone LI {
  list-style: none;
  padding: 0px;
  padding: 5px 0;
}
.ulMinus.ulPlus LI .ico,
.ulPlus.ulPlus LI .ico,
.ulDone.ulPlus LI .ico {
  width: 16px;
  height: 16px;
  float: left;
  margin-right: 7px;
  margin-top: 3px;
  background: url('/bitrix/templates/detsys/img/plusMinus.png') no-repeat top left;
}
.ulMinus.ulMinus LI .ico,
.ulPlus.ulMinus LI .ico,
.ulDone.ulMinus LI .ico {
  width: 16px;
  height: 16px;
  float: left;
  margin-right: 5px;
  margin-top: 3px;
  background: url('/bitrix/templates/detsys/img/plusMinus.png') no-repeat top left;
  background-position: 0 -17px;
}
.ulMinus.ulDone LI .ico,
.ulPlus.ulDone LI .ico,
.ulDone.ulDone LI .ico {
  width: 16px;
  height: 13px;
  float: left;
  margin-right: 7px;
  margin-top: 3px;
  background: url('/bitrix/templates/detsys/img/donesm.png') no-repeat top left;
}
.ulMinus .t,
.ulPlus .t,
.ulDone .t {
  display: block;
  padding-left: 23px;
}
.gTablePropertys {
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
  width: 100%;
  margin-bottom: 20px;
  text-align: left;
}
.gTablePropertys .theader TD {
  background: #ddd7c9 !important;
  color: #4d5153;
  font-family: 'MyriadPro-Semibold', Arial;
}
.gTablePropertys .theader TD.val {
  width: 65%;
}
.gTablePropertys .tsheader TD {
  font-weight: bold;
}
.gTablePropertys .tsheader:hover TD {
  background: none;
}
.gTablePropertys .clear TD {
  border: 0;
  background: none !important;
}
.gTablePropertys TD {
  border: 1px solid #d3d3d3;
  margin: 0;
  padding: 0;
  border-spacing: 0;
  padding: 15px 20px;
}
.gTablePropertys TD.val {
  text-align: center;
}
.gTablePropertys TR:hover TD {
  background: #f1efe9;
}
.b404 {
  text-align: center;
  padding-bottom: 30px;
}
.checkboxWrap a {
  color: inherit;
}
.bSale {
  color: #919395;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: -5px;
  font-family: 'MyriadPro-Regular', Arial;
}
#popupVideo {
  width: 800px;
  max-width: 100%;
}
#popupVideo .cont {
  padding-top: 45px;
}
#popupVideo .video {
  padding-bottom: 56.25%;
  position: relative;
}
#popupVideo .video IFRAME {
  position: absolute;
  width: 100%;
  height: 100%;
}
.bFContact {
  background: #ddd7c9;
  padding: 20px;
  margin-bottom: 30px;
}
.bFContact .ftitle {
  margin-bottom: 5px;
}
.bFContact .done {
  display: none;
}
.bFContact .GSbtn {
  margin: 0 auto;
  margin-top: 15px;
  max-width: 300px;
}
.bFContact .checkboxWrap {
  margin-top: 15px;
}
.bFContact .GSinput1 {
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
}
.bFContact TEXTAREA {
  height: 100px;
}
.bFContact .dbline {
  display: flex;
  margin: 0 -5px;
}
@media (max-width: 600px) {
  .bFContact .dbline {
    display: block;
    margin: 0;
  }
}
.bFContact .dbline .GSinput1 {
  width: 50%;
  margin-left: 5px;
  margin-right: 5px;
}
@media (max-width: 600px) {
  .bFContact .dbline .GSinput1 {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
  }
}
.bFContact .file {
  margin-top: 10px;
}
.bFContact .file #fileUploader {
  cursor: pointer;
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  border-bottom: 1px dashed #4d5153;
}
.bFContact .file #fileUploader:hover {
  border-color: #ddd7c9;
}
.bCheaper .GSbtn4 {
  font-size: 14px;
  margin: 0px;
}
.imageLeft,
.bArticle_img-left .imageLeft {
  max-width: 33% !important;
  float: left !important;
  margin: 0 30px 15px 0 !important;
  height: auto !important;
}
.imageRight,
.bArticle_img-left .imageRight {
  max-width: 33% !important;
  float: right !important;
  margin: 0 0 15px 30px !important;
  height: auto !important;
}
.imageCenter,
.bArticle_img-left .imageCenter {
  max-width: 100% !important;
  float: none !important;
  display: block;
  margin: 30px auto !important;
  height: auto !important;
}
.imageBorder {
  box-sizing: border-box;
  border: 15px solid #ddd7c9;
}
@media (max-width: 600px) {
  .imageLeft,
  .bArticle_img-left .imageLeft {
    max-width: 100% !important;
    margin: 20px auto !important;
  }
  .imageRight,
  .bArticle_img-left .imageRight {
    max-width: 100% !important;
    margin: 20px auto !important;
  }
  .imageCenter,
  .bArticle_img-left .imageCenter {
    margin: 20px auto !important;
  }
}
.newSearch {
  position: absolute;
  top: 60px;
  left: 295px;
  width: 400px;
  display: none;
}
@media (min-width: 1200px) {
  .newSearch {
    display: block;
  }
}
.newSearch .GSinput1 {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding-right: 40px;
}
.newSearch__submit {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 20px;
  height: 20px;
  border: 0;
  transform: translate(0,-50%);
  background: url('/bitrix/templates/detsys/img/search_dark.svg') center no-repeat;
  cursor: pointer;
}
.newSearch-mobile {
  position: absolute;
  top: 3px;
  left: 65px;
  right: 65px;
}
.newSearch-mobile_with-compare {
  right: 98px;
}
@media (min-width: 1200px) {
  .newSearch-mobile {
    display: none;
  }
}
.newSearch-mobile .GSinput1 {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding-right: 40px;
}
.newSearch-mobile__submit {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 20px;
  height: 20px;
  border: 0;
  transform: translate(0,-50%);
  background: url('/bitrix/templates/detsys/img/search_dark.svg') center no-repeat;
  cursor: pointer;
}
.searchProduct {
  display: flex !important;
  align-items: center;
}
.searchProduct__img {
  width: 50px;
  height: 50px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 10px;
}
.searchProduct__price {
  color: #F05213;
}
.searchProduct__price-request {
  color: #919395;
  font-size: 12px;
}
.searchSection {
  text-decoration: underline;
}
.searchAll {
  text-decoration: underline;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #b0b0b0 !important;
  border-top: 0 !important;
}
.fast-search {
  display: none;
  position: absolute;
  z-index: 10;
  background: #fff;
  border: 1px solid #b0b0b0;
  box-sizing: border-box;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0,0,0,0.25);
}
.fast-search__row {
  display: flex;
  flex-direction: column;
  max-height: 325px;
  overflow-y: auto;
}
@media (min-width: 1200px) {
  .fast-search__row {
    flex-direction: row;
    max-height: 320px;
    overflow: hidden;
  }
}
.fast-search__col {
  box-sizing: border-box;
  flex-grow: 0;
  flex-shrink: 0;
}
.fast-search__col_left {
  width: 100%;
  order: 2;
}
@media (min-width: 1200px) {
  .fast-search__col_left {
    width: 360px;
    order: 2;
  }
  .fast-search__col_left_full {
    width: 100%;
  }
}
.fast-search__col_right {
  max-height: 100%;
  width: 100%;
}
@media (min-width: 1200px) {
  .fast-search__col_right {
    width: 320px;
    margin-right: 10px;
  }
  .fast-search__col_right_full {
    width: 100%;
    margin-right: 0px;
  }
}
@media (min-width: 1200px) {
  .fast-search__container {
    margin-bottom: 4px;
  }
}
.fast-search__container:last-child {
  margin-bottom: 0;
}
.fast-search__container_scroll {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.fast-search__container_scroll .fast-search__heading {
  flex-grow: 0;
  flex-shrink: 0;
}
.fast-search__container_scroll .fast-search-products {
  flex-grow: 1;
  flex-shrink: 1;
  box-sizing: border-box;
}
@media (min-width: 1200px) {
  .fast-search__container_scroll .fast-search-products {
    overflow-y: auto;
  }
}
.fast-search__heading {
  font-size: 14px;
  letter-spacing: 0.08em;
  font-family: 'MyriadPro-Cond', Arial;
  color: #F05213;
  font-weight: bold;
  text-transform: uppercase;
  padding: 7px 10px 0 10px;
  border-bottom: 1px solid #e8e8e8;
}
@media (min-width: 1200px) {
  .fast-search__heading {
    padding: 7px 10px;
  }
}
.fast-search__links a {
  font-size: 14px;
  font-family: 'MyriadPro-Regular', Arial;
  color: #000000;
  font-weight: bold;
  padding: 4px 10px;
  display: none;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.fast-search__links a:nth-child(-n+2) {
  display: block;
}
@media (min-width: 1200px) {
  .fast-search__links a {
    display: block;
    padding: 7px 10px;
  }
  .fast-search__links a:hover {
    background: #ddd7c9;
  }
  .fast-search__links a:hover:after {
    background: linear-gradient(90deg,rgba(241,239,233,0) 0%,#f1efe9 75%);
  }
}
.fast-search__links a:after {
  content: '';
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px;
  background: linear-gradient(90deg,rgba(255,255,255,0) 0%,#ffffff 75%);
}
.fast-search__links_big a {
  font-size: 15px;
}
.fast-search__all {
  padding: 7px 10px;
  text-align: center;
  background: #db421e;
  font-family: 'MyriadPro-Regular', Arial;
  color: #fff;
  display: block;
  font-size: 14px;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .fast-search__all:hover {
    background: #f27754;
  }
}
.fast-search-products a {
  display: flex;
  text-decoration: none;
  padding: 4px 10px;
  border-bottom: 1px solid #e8e8e8;
}
@media (min-width: 1200px) {
  .fast-search-products a {
    padding: 10px;
  }
}
.fast-search-products a:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
@media (min-width: 1200px) {
  .fast-search-products a:hover {
    background: #ddd7c9;
  }
}
.fast-search-products__img {
  width: 50px;
  height: 50px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 10px;
}
.fast-search-products__name {
  display: block;
  font-size: 14px;
  font-family: 'MyriadPro-Regular', Arial;
  color: #000000;
}
.fast-search-products__price {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  font-family: 'MyriadPro-Regular', Arial;
  color: #F05213;
}
.fast-search-products__price_no {
  color: #979797;
}
@media (min-width: 1200px) {
  .fast-search-products__price {
    margin-top: 5px;
  }
}
.links-a1 a {
  color: #F05213;
}
.dBasket__counter {
  font-size: 12px;
  color: #fff;
  background: #db421e;
  border-radius: 50%;
  position: absolute;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 5px;
  right: 5px;
}
@media (min-width: 1200px) {
  .dBasket__counter {
    display: flex;
    top: -2px;
    right: -2px;
  }
}
.scrollToBuyProduct {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s linear;
  position: fixed;
  bottom: -50px;
  left: 0;
  right: 0;
  z-index: 10;
  border-radius: 0;
  padding: 10px;
  background: #db421e;
  font-family: 'MyriadPro-Regular', Arial;
  color: #ffffff;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0px -1px 5px 0px rgba(50,50,50,0.5);
}
.scrollToBuyProduct_active {
  bottom: 0;
}
.scrollToBuyProduct svg {
  width: 20px;
  margin-right: 15px;
}
.scrollToBuyProduct svg path {
  fill: #fff;
}
@media (max-width: 599px) {
  .bProductList.bProductList_mobile-double .top {
    min-height: auto !important;
  }
}
@media (max-width: 599px) {
  .bProductList.bProductList_mobile-double .item {
    width: 50%;
  }
  .bProductList.bProductList_mobile-double .item .img {
    width: auto;
    height: auto;
  }
  .bProductList.bProductList_mobile-double .item .vc {
    display: block;
    width: auto;
    height: auto;
    padding-bottom: 115%;
    position: relative;
    border: 1px solid #ddd7c9;
    box-sizing: border-box;
  }
  .bProductList.bProductList_mobile-double .item .iimg {
    position: absolute;
    max-width: 90%;
    max-height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .bProductList.bProductList_mobile-double .item .itext {
    max-height: none;
  }
  .bProductList.bProductList_mobile-double .item .GSbtn {
    display: none;
  }
  .bProductList.bProductList_mobile-double .item .foot {
    padding-top: 0;
  }
  .bProductList.bProductList_mobile-double .item .l {
    padding-top: 10px;
  }
  .bProductList.bProductList_mobile-double .item .ititle {
    margin-bottom: 5px;
    display: inline-block;
  }
  .bProductList.bProductList_mobile-double .item .price,
  .bProductList.bProductList_mobile-double .item .oldprice {
    text-align: left;
    font-size: 19px;
    padding-top: 5px;
  }
}
.bHeader .small-phone {
  display: none;
}
@media (max-width: 599px) {
  .bHeader .headerNav {
    display: none;
  }
  .bHeader .headerNav_mobile-show {
    display: block;
  }
  .bHeader .header {
    padding: 15px 0;
  }
  .bHeader .header .GSfixWidth {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .bHeader .header .logo {
    height: 50.4px;
    width: 120px;
    margin: -4px 0;
  }
  .bHeader .header .pmob {
    margin: 0;
  }
  .bHeader .header .GSclear {
    display: none;
  }
  .bHeader .menuNav .GSfixWidth {
    display: flex;
    align-items: center;
  }
  .bHeader .menuNav .GSfixWidth .hamburger {
    z-index: 3;
  }
  .bHeader .menuNav .GSfixWidth .hamburger-menu {
    position: fixed;
    top: 58px;
    right: 0;
    left: 0;
    background: #4d5153;
    z-index: 2;
  }
  .bHeader .menuNav .GSfixWidth .newSearch-mobile {
    position: relative;
    flex-grow: 1;
    top: 0;
    left: 0;
    right: 0;
  }
  .bHeader .menuNav .GSfixWidth .dBasket {
    position: relative;
    margin-left: 0;
    display: flex;
    align-items: center;
    height: 58px;
    flex-shrink: 0;
    order: 2;
  }
  .bHeader .menuNav .GSfixWidth .dBasket .basket {
    height: auto;
  }
  .bHeader .menuNav .GSfixWidth .small-phone {
    display: flex;
    align-items: center;
    height: 41px;
    width: 0;
    overflow: hidden;
    transition: all 0.3s linear;
    opacity: 0;
    background: #70CC7C;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
  }
  .bHeader .menuNav .GSfixWidth .small-phone_active {
    width: 41px;
    opacity: 1;
    margin: 0 7px 0 10px;
  }
  .bHeader .menuNav .GSfixWidth .small-phone__icon {
    flex-shrink: 0;
    display: block;
    width: 20px;
    margin: 0 auto;
  }
  .bHeader .menuNav .GSfixWidth .small-phone__icon path {
    fill: #fff;
  }
}
@media (max-width: 599px) {
  .popup {
    width: 94%;
  }
}
@media (max-width: 599px) {
  .mobile-slider,
  .str.mobile-slider {
    padding: 0 30px;
  }
  .mobile-slider .slick-dots,
  .str.mobile-slider .slick-dots {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .response-slider .slick-arrow {
    top: 83px;
    margin-top: 0;
  }
}
@media (max-width: 599px) {
  .bHeader .headerNav .text h1 {
    font-size: 12px;
  }
}
.small-phone {
  animation: clickMe 7s infinite ease-in-out;
}
@-webkit-keyframes clickMe {
  80% {
    transform: rotate(0deg);
  }
  85% {
    transform: scale(1.1) rotate(25deg);
  }
  90% {
    transform: rotate(0deg);
  }
  95% {
    transform: scale(1.1) rotate(25deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.article-share {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.article-share div:first-child {
  margin-right: 10px;
}
.vendor-code {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 16px;
  color: #9fa1a3;
  margin-bottom: 10px;
}
.reviews_padding {
  padding: 40px 0;
}
.reviews__heading {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 19px;
  line-height: 1.1em;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.reviews__heading b {
  margin-right: 5px;
}
.reviews__vendor-code {
  color: #9fa1a3;
  font-size: 16px;
}
.reviews__row {
  display: flex;
}
@media (max-width: 599px) {
  .reviews__row {
    flex-wrap: wrap;
  }
}
.reviews__list {
  flex-grow: 1;
  padding-right: 30px;
}
@media (max-width: 599px) {
  .reviews__list {
    width: 100%;
    margin-bottom: 40px;
  }
}
.reviews__form {
  flex-shrink: 0;
  width: 340px;
}
@media (max-width: 899px) {
  .reviews__form {
    width: 300px;
  }
}
@media (max-width: 599px) {
  .reviews__form {
    width: 100%;
  }
}
.reviews__item {
  margin-bottom: 30px;
}
.reviews__item:last-child {
  margin-bottom: 0;
}
.review__stars {
  margin-top: 7px;
}
.review__header {
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  font-size: 15px;
  line-height: 1.2em;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.review__name {
  font-weight: bold;
}
.review__date {
  margin-left: 8px;
  color: #9fa1a3;
}
.review__text {
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  font-size: 17px;
  line-height: 1.2em;
}
.stars {
  display: flex;
  align-items: center;
}
.stars__item {
  padding-right: 2px;
  width: 16px;
  height: 16px;
}
.stars__item svg {
  fill: #ddd7c9;
  width: 100%;
  height: 100%;
}
.stars__item:last-child {
  padding-right: 0;
}
.stars__item_dynamic {
  width: 22px;
  height: 22px;
  padding-right: 4px;
}
.stars__item_dynamic:last-child {
  padding-right: 0;
}
.stars__item_dynamic svg {
  fill: #4d5153;
}
.stars__item_active svg {
  fill: #F05213;
}
.stars__hr {
  height: 1px;
  background: #d3d3d3;
  flex-grow: 1;
}
.new-review {
  background: #ddd7c9;
  padding: 20px;
}
.new-review__title {
  margin-bottom: 20px;
  color: #4d5153;
  text-align: left !important;
}
.new-review__title_done {
  line-height: 1.4em;
  margin-bottom: 0px;
  display: none;
}
.new-review__input {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.new-review__textarea {
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.new-review__stars {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 17px;
  line-height: 1em;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.new-review__stars .err {
  color: #eb5324;
}
.new-review__stars-list {
  margin-left: 10px;
}
.new-review__more {
  display: none;
}
.warning {
  display: flex;
  margin-bottom: 20px;
}
.warning__icon {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 26px;
  font-size: 20px;
  flex-shrink: 0;
  margin-right: 5px;
  font-weight: bold;
  margin-top: -3px;
  color: #4d5153;
}
.warning__text {
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 1.2em;
  color: #4d5153;
  font-weight: bold;
}
@media (max-width: 1199px) {
  .overflow-table {
    overflow-x: auto;
    margin: 0 -15px;
    padding: 0 15px;
  }
}
.bHeader .header .logo-container {
  float: left;
  width: 100%;
  max-width: 200px;
  position: relative;
}
@media (max-width: 599px) {
  .bHeader .header .logo-container {
    width: auto;
  }
}
.bHeader .header .logo-container .logo {
  float: none;
}
.bHeader .header .logo-container__birthday {
  background: #db421e;
  color: #fff;
  font-size: 16px;
  line-height: 1em;
  padding: 4px 10px;
  font-family: 'MyriadPro-Cond', Arial;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  letter-spacing: 0.03em;
  border-radius: 3px;
}
@media (max-width: 599px) {
  .bHeader .header .logo-container__birthday {
    border-radius: 2px;
    font-size: 11px;
    padding: 4px 5px 2px 5px;
    top: -8px;
    left: 8px;
  }
}
.to-compare {
  margin-top: 30px;
}
.to-compare .ico {
  background-image: url('/bitrix/templates/detsys/img/compare.svg?2');
  width: 36px;
  height: 36px;
}
.to-compare .text {
  margin-top: 10px;
}
.to-compare-from-list {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 32px;
  z-index: 2;
}
@media (max-width: 899px) {
  .to-compare-from-list {
    display: block;
  }
}
.to-compare-from-list path {
  fill: #b2ada1;
}
.to-compare-from-list:hover path {
  fill: #F05213;
}
.to-compare-from-list_active {
  display: block;
}
.to-compare-from-list_active path {
  fill: #000;
}
.to-compare-from-list_active:hover path {
  fill: #000;
}
.to-compare-from-list_row {
  display: flex;
  align-items: center;
  color: #F05213;
  text-decoration: none;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 1.1em;
}
.to-compare-from-list_row path {
  fill: #F05213;
}
.to-compare-from-list_row-active {
  color: #000;
}
.to-compare-from-list_row-active path {
  fill: #000;
}
.to-compare-from-list_row-active:hover path {
  fill: #000;
}
@media (max-width: 1500px) {
  .to-compare-from-list_row {
    font-size: 1em;
  }
}
.to-compare-from-list__icon {
  flex-shrink: 0;
  margin-right: 5px;
  width: 30px;
}
.compare-btn {
  display: none;
  width: 26px;
  position: relative;
  float: right;
  margin-right: 20px;
  padding: 9px 10px 5px 10px;
}
@media (max-width: 1199px) {
  .compare-btn {
    position: absolute;
    top: 7px;
    right: 33px;
  }
}
@media (max-width: 599px) {
  .compare-btn {
    float: none;
    flex-shrink: 0;
    order: 1;
    margin-right: 5px;
    position: relative;
    top: 0;
    right: 0;
  }
}
.compare-btn:hover {
  background-color: #3d3d3d;
}
.compare-btn__counter {
  position: absolute;
  font-size: 12px;
  color: #fff;
  background: #db421e;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  top: -2px;
  right: -2px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: 'MyriadPro-Regular', Arial;
}
.compare_margin-bottom {
  margin-bottom: 100px;
}
.compare__top-scoll {
  display: none;
  height: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  margin-left: 200px;
  margin-top: -15px;
  margin-bottom: 15px;
}
@media (max-width: 599px) {
  .compare__top-scoll {
    margin-left: 0px;
  }
}
.compare__breadcrumbs-container {
  display: flex;
  align-items: center;
}
.compare__breadcrumbs-container .compare__filter-item_remove {
  margin-left: auto;
  flex-shrink: 0;
  padding-left: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 0;
}
@media (max-width: 599px) {
  .compare__breadcrumbs-container .compare__filter-item_remove {
    margin-left: 10px;
  }
  .compare__breadcrumbs-container .compare__filter-item_remove .compare__filter-item-remove-icon {
    width: 20px;
  }
  .compare__breadcrumbs-container .compare__filter-item_remove span:last-child {
    display: none;
  }
}
.compare__fixed {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: #fff;
  box-shadow: 0px -1px 10px 0px #000000;
  z-index: 100;
}
.compare__filter {
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.compare__filter-item {
  margin-right: 10px;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 1.1em;
  text-decoration: none;
  color: #000;
  padding: 5px 8px;
  display: inline-block;
}
.compare__filter-item:hover {
  color: #F05213;
}
.compare__filter-item:hover path {
  fill: #F05213;
}
.compare__filter-item:last-child {
  margin-right: 0;
}
.compare__filter-item_active {
  background: #f1efe9;
}
.compare__filter-item_active:hover {
  color: #000;
}
.compare__filter-item_active .catalog__sort-by {
  display: inline-block;
}
.compare__filter-item_remove {
  float: right;
  display: inline-flex;
}
@media (max-width: 599px) {
  .compare__filter-item_remove {
    margin-top: 10px;
    float: none;
  }
}
.compare__filter-item-remove-icon {
  width: 15px;
  margin-bottom: -2px;
  flex-shrink: 0;
  margin-right: 5px;
}
.compare__list {
  margin-bottom: 30px;
}
.compare__list:last-child {
  margin-bottom: 0;
}
.compare__table {
  display: flex;
  overflow: hidden;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 15px;
  line-height: 1.05;
  color: #4d5153;
}
.compare__table a {
  color: #F05213;
}
@media (max-width: 599px) {
  .compare__heading {
    position: absolute;
    pointer-events: none;
    left: 15px;
    right: 15px;
  }
}
.compare__heading div {
  color: #4d5153;
  font-family: 'MyriadPro-Semibold', Arial;
  border-bottom: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  padding: 12px 15px;
  width: 200px;
  text-align: right;
  box-sizing: border-box;
}
@media (max-width: 599px) {
  .compare__heading div {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid transparent;
    border-right: 0;
    padding-top: 5px;
    padding-bottom: 37px;
    line-height: 0.9em;
    padding-left: 0px;
    padding-right: 0px;
    color: #9fa1a3;
  }
  .compare__heading div:first-child {
    padding-bottom: 7px;
  }
}
.compare__heading div:last-child {
  border-bottom: 0;
}
.compare div.compare__section {
  text-transform: uppercase;
  border-right: 1px solid transparent;
  text-align: left;
}
.compare div.compare__section a {
  color: #F05213;
  font-size: 0.8em;
  text-decoration: none;
  display: flex;
  align-items: center;
  pointer-events: auto;
}
@media (max-width: 599px) {
  .compare div.compare__section a {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 599px) {
  .compare div.compare__section {
    padding-top: 18px;
    padding-bottom: 16px;
  }
}
@media (max-width: 599px) {
  .compare div.compare__section-value {
    padding-top: 18px;
    padding-bottom: 16px;
  }
}
.compare__section-icon {
  width: 11px;
  height: 12px;
  flex-shrink: 0;
  margin-left: 7px;
}
.compare__section-icon path {
  stroke: #F05213;
}
.compare__section_hidden .compare__section-icon {
  transform: rotate(45deg);
}
.compare__items {
  display: flex;
  overflow: auto;
}
.compare__item>div {
  border-bottom: 1px solid #d3d3d3;
  padding: 12px 15px;
  width: 200px;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 599px) {
  .compare__item>div {
    width: 150px;
    padding-top: 30px;
  }
  .compare__item>div:first-child {
    padding-top: 00px;
  }
}
.compare__item>div:last-child {
  border-bottom: 0;
}
.compare__item img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.compare__item a {
  text-decoration: none;
}
.compare__img {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare__img-container.slick-slide {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 599px) {
  .compare__img-container.slick-slide {
    height: 110px;
  }
}
.compare__img-container {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 599px) {
  .compare__img-container {
    height: 120px;
  }
}
.compare__img img {
  max-height: 170px;
}
@media (max-width: 599px) {
  .compare__img img {
    max-height: 120px;
  }
}
.compare__img-trash {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
}
.compare__img-trash path {
  fill: #ddd7c9;
}
.compare__img-trash:hover path {
  fill: #F05213;
}
.compare__img .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare__no-data {
  opacity: 0.5;
}
.compare-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px -1px 10px 0px #000000;
  z-index: 100;
}
.compare-popup__row {
  display: flex;
  align-items: center;
}
.compare-popup__icon {
  flex-shrink: 0;
  margin-right: 30px;
  width: 40px;
}
@media (max-width: 899px) {
  .compare-popup__icon {
    display: none;
  }
}
.compare-popup__icon path {
  fill: #4d5153;
}
.compare-popup__text {
  margin-right: auto;
}
.compare-popup__btn {
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 899px) {
  .compare-popup__btn {
    margin-left: 15px;
  }
}
.compare-popup__close {
  flex-shrink: 0;
  margin-left: 60px;
  width: 20px;
}
@media (max-width: 899px) {
  .compare-popup__close {
    width: 15px;
    margin-left: 15px;
  }
}
.compare-popup__close path {
  stroke: #a5a196;
}
.compare-popup__close:hover path {
  stroke: #4d5153;
}
.hover-pagination {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
}
@media (max-width: 899px) {
  .hover-pagination {
    display: none;
  }
}
.hover-pagination__item {
  flex-grow: 1;
}
.catalog-dropdown {
  position: absolute;
  margin-left: -15px;
  background: #f1efe9;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
  margin-top: 13px;
  padding: 0 !important;
  height: auto !important;
  max-width: 300px;
  overflow: visible !important;
  z-index: 20;
}
.catalog-dropdown__item:after {
  content: '';
  height: 1px;
  background: #fff;
  display: block;
  position: relative;
  margin-bottom: -1px;
  margin-left: 15px;
  margin-right: 15px;
  width: auto;
}
.catalog-dropdown__item:last-child:after {
  display: none;
}
.catalog-dropdown__item:hover {
  background: #fff;
}
.catalog-dropdown__item:hover .catalog-dropdown__dropdown {
  display: block;
}
.catalog-dropdown__item:hover:after {
  background: inherit;
}
.catalog-dropdown__item > a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: none !important;
  float: none !important;
  color: #3d3d3d !important;
}
.catalog-dropdown__dropdown {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
  left: 100%;
  top: 0;
  width: 900px;
}
.catalog-dropdown__row {
  display: flex;
  flex-wrap: wrap;
}
.catalog-dropdown__sub-item {
  width: 33.333333333333%;
  box-sizing: border-box;
  padding: 15px;
}
.catalog-dropdown__sub-item a {
  display: flex !important;
  padding: 0 !important;
  align-items: center;
  color: #3d3d3d !important;
}
.catalog-dropdown__sub-item a:hover {
  background: none !important;
  color: #F05213 !important;
}
.catalog-dropdown__sub-text {
  color: inherit !important;
  max-height: 56px;
  height: auto !important;
  overflow: hidden;
  padding: 0 !important;
  float: none !important;
}
.catalog-dropdown__photo {
  width: 60px;
  height: 60px !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
  padding: 0 !important;
  border: 2px solid #f1efe9;
}

/* End */


/* Start:/bitrix/templates/detsys/jquery-ui.css?15496499625635*/
/*! jQuery UI - v1.11.1 - 2014-10-15
* http://jqueryui.com
* Includes: core.css, datepicker.css
* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .9em .8em .9em;
	display: none;
	background:#ddd7c9;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top:7px;
	/*width: 1.8em;
	height: 1.8em;*/
	width:14px;
	height:22px;
	cursor:pointer;
	
}
/*
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}*/
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
	background:url('/bitrix/templates/detsys/img/ui-datepicker-prev.png') center no-repeat;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
	background:url('/bitrix/templates/detsys/img/ui-datepicker-next.png') center no-repeat;
}
/*
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}*/
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
	font-family:'MyriadPro-Cond';
	font-size:32px;
	line-height:32px;
	color:#4d5153;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .1em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
	font-family:'MyriadPro-Cond';
	font-size:24px;
	line-height:24px;
	color:#4d5153;
	text-transform:lowercase;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
	font-family:'MyriadPro-Cond';
	font-size:20px;
	line-height:20px;
	color:#4d5153;
	text-align:center;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

.ui-datepicker .ui-state-active{
	background:#d2531f;
	color:#ffffff;
}
.ui-datepicker  .ui-datepicker-unselectable{
	opacity:0.5;
}
.ui-datepicker-calendar TR TD{
	border-bottom:2px solid #ffffff;
}
.ui-datepicker  .ui-datepicker-week-end,
.ui-datepicker  .ui-datepicker-week-end A{
	color:#d2531f;
}
/* End */


/* Start:/bitrix/templates/detsys/jquery.fancybox.min.css?157174335918886*/
body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: rgb(30, 30, 30);
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform, opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform, opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
	background: #fff;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    height: 44px;
    width: 44px;
	
    height: 66px;
    width: 66px;
}
@media all and (min-width: 940px) {
	.fancybox-button {
		height: 88px;
		width: 88px;
	}
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    opacity: 0;
    position: absolute;
	
	//16 28
	height: 84px;
	top: calc(50% - 42px);
	width: 48px;
	
	height: 70px;
	top: calc(50% - 35px);
	width: 40px;
}
@media all and (min-width: 940px) {
	.fancybox-navigation .fancybox-button {
		height: 150px;
		top: calc(50% - 75px);
		width: 85px;
	}
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
	padding: 0px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    right: 0;
    right: env(safe-area-inset-right);
	padding: 0px;
}
@media all and (min-width: 940px) {
	.fancybox-navigation .fancybox-button--arrow_left {
		left: 15%;
		padding: 31px 26px 31px 6px;
	}
	.fancybox-navigation .fancybox-button--arrow_right {
		right: 15%;
		padding: 31px 6px 31px 26px;
	}
}

/* Caption */

.fancybox-caption {
    background: linear-gradient(to top,
        rgba(0, 0, 0, .85) 0%,
        rgba(0, 0, 0, .3) 50%,
        rgba(0, 0, 0, .15) 65%,
        rgba(0, 0, 0, .075) 75.5%,
        rgba(0, 0, 0, .037) 82.85%,
        rgba(0, 0, 0, .019) 88%,
        rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */

.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Transition effects */

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }

    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}
/* Share */

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}
/* Thumbs */

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}
/* End */


/* Start:/bitrix/templates/detsys/iosCheckbox.css?1633413315520*/
.ios-ui-select {
	background: #b2ada1;
	border: none;
	height: 20px;;
	border-radius: 18px;
	width: 36px;
	transition: all 0.3s ease-in-out;
	box-shadow: none;
	cursor: pointer;
	position: relative;
	display: inline-block;
}

.ios-ui-select.checked {
	background: #eb5324;
}

.ios-ui-select.checked .inner {
	left: 18px;
}

.ios-ui-select .inner {
	width: 16px;
	height: 16px;
	position: absolute;
	top: 2px;
	left: 2px;
	border-radius: 100%;
	background: white;
	transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
}

/* End */


/* Start:/bitrix/templates/detsys/filter.css?166434927315841*/
.tags {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px 15px 0;
}
@media (max-width: 599px) {
  .tags {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }
}
.tags__item {
  font-size: 14px;
  line-height: 1em;
  margin: 0 5px 5px 0;
  padding: 6px 15px;
  border-radius: 15px;
  background: #f1efe9;
  text-decoration: none;
  color: #4d5153;
  display: flex;
  align-items: center;
  order: 2;
  white-space: nowrap;
  font-family: 'MyriadPro-Regular', Arial;
}
.tags__item:hover {
  text-decoration: none;
  background: #ddd7c9;
  color: #af4328;
}
.tags__item_active {
  background: #db421e;
  color: #fff;
  order: 1;
  padding-right: 12px;
}
.tags__item_active:hover {
  background: #db421e;
  color: #fff;
}
.tags__item_active .tags__remove {
  display: block;
}
.tags__item_no-set-order {
  order: 2;
}
.tags__counter {
  opacity: 0.8;
  padding-left: 4px;
  font-size: 0.8em;
}
.tags__remove {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  margin-right: -5px;
  background: #fff;
  border-radius: 16px;
  position: relative;
  display: none;
  flex-shrink: 0;
}
.tags__remove:before,
.tags__remove:after {
  position: absolute;
  top: 3px;
  left: 7px;
  content: ' ';
  height: 10px;
  width: 2px;
  background-color: #db421e;
}
.tags__remove:before {
  transform: rotate(45deg);
}
.tags__remove:after {
  transform: rotate(-45deg);
}
.catalog {
  display: flex;
}
.catalog__filter {
  width: 300px;
  flex-shrink: 0;
  margin-right: 90px;
}
@media (max-width: 899px) {
  .catalog__filter {
    display: none;
  }
}
@media (max-width: 899px) {
  .catalog__filter_active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 100;
    width: auto;
    margin-right: 0;
    padding: 64px 15px 70px 15px;
    overflow: auto;
  }
}
.catalog__filter-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 15px 13px 15px;
  background: #fff;
  z-index: 100;
  text-align: center;
  font-family: 'MyriadPro-Cond', Arial;
  color: #3D3D3D;
  font-size: 20px;
  line-height: 1em;
  border-bottom: 1px solid #d3d3d3;
}
@media (max-width: 899px) {
  .catalog__filter-header {
    display: block;
  }
}
.catalog__filter-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: #fff;
  z-index: 100;
}
@media (max-width: 899px) {
  .catalog__filter-footer {
    display: block;
  }
}
.catalog__filter-close {
  display: none;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 18px;
  height: 18px;
  transform: translate(0,-50%);
  padding: 10px;
}
.catalog__filter-close path {
  stroke: #b2ada1;
}
@media (max-width: 899px) {
  .catalog__filter-close {
    display: block;
  }
}
.catalog__products {
  flex-grow: 1;
  overflow: hidden;
}
.catalog__products .bProductList {
  margin: -25px;
  position: relative;
  justify-content: flex-start;
}
.catalog__products .bProductList .item {
  width: 33.333333333333%;
  padding: 25px;
  box-sizing: border-box;
}
@media (max-width: 1480px) {
  .catalog__products .bProductList .item {
    width: 50%;
  }
}
@media (max-width: 1100px) {
  .catalog__products .bProductList .item {
    width: 100%;
  }
}
.catalog__products .bProductList .item .slick-slider {
  height: 100%;
}
@media (min-width: 600px) and (max-width: 1199px) {
  .catalog__products .bProductList .item .slick-slider {
    padding: 0;
  }
}
.catalog__products .bProductList .item .slick-dots {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  pointer-events: none;
  border-radius: 50%;
}
.catalog__products .bProductList .item .slick-dots li {
  width: 5px;
  height: 3px;
  margin: 1px;
  background: #ddd7c9;
  opacity: 0.8;
}
.catalog__products .bProductList .item .slick-dots li.slick-active {
  opacity: 1;
  background: #db421e;
}
.catalog__products .bProductList .item .slick-dots li button {
  display: none;
}
.catalog__products .bProductList .item .foot {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding-top: 0;
}
.catalog__products .bProductList .item .pad {
  height: 100%;
  box-sizing: border-box;
  padding-bottom: 70px;
  padding-right: 35px;
}
@media (max-width: 599px) {
  .catalog__products .bProductList .item .pad {
    padding-right: 10px;
  }
}
.catalog__products .bProductList .item .to-compare-from-list {
  display: block;
}
@media (max-width: 599px) {
  .catalog__products .bProductList .item .to-compare-from-list {
    top: 20px;
    right: 20px;
  }
}
.catalog__products .bProductList .item .to-compare-from-list_row {
  display: none;
}
.catalog__products .bProductList .item:after {
  display: none;
  content: '';
  position: absolute;
  border-bottom: 1px solid #d3d3d3;
  left: 20px;
  right: 20px;
  margin-top: 20px;
}
.catalog__products .bProductList .item:nth-child(3n):after {
  display: block;
}
@media (max-width: 1480px) {
  .catalog__products .bProductList .item:after {
    display: none;
  }
  .catalog__products .bProductList .item:nth-child(2n):after {
    display: block;
  }
}
@media (max-width: 1100px) {
  .catalog__products .bProductList .item:after {
    display: block;
  }
}
.catalog__products .bProductList .ititle {
  font-size: 18px;
  line-height: 1em;
}
.catalog__products .bProductList .itext {
  font-size: 15px;
  line-height: 1.1em;
  max-height: none;
}
.catalog__products .bProductList .foot>span .oldprice {
  margin-top: 0;
  font-size: 17px;
}
.catalog__products .bProductList .foot>span .price {
  font-size: 19px;
}
.catalog__products .bProductList .foot>span .price_newprice {
  padding-top: 0;
}
@media (min-width: 1101px) {
  .catalog__products .bProductList_row .item {
    width: 100%;
  }
  .catalog__products .bProductList_row .item .pad {
    display: flex;
    padding-bottom: 10px;
  }
  .catalog__products .bProductList_row .item:after {
    display: block;
    content: '';
    position: absolute;
    border-bottom: 1px solid #d3d3d3;
    left: 20px;
    right: 20px;
    margin-top: 20px;
  }
  .catalog__products .bProductList_row .item .pad {
    display: flex;
    padding-right: 10px;
  }
  .catalog__products .bProductList_row .item .to-compare-from-list {
    display: none;
  }
  .catalog__products .bProductList_row .item .to-compare-from-list_row {
    display: flex;
    position: static;
    margin-top: 30px;
  }
  .catalog__products .bProductList_row .item .top {
    display: flex;
    flex-grow: 1;
    margin-right: 90px;
  }
  .catalog__products .bProductList_row .item .img {
    width: 230px;
    height: 230px;
    margin-right: 90px;
    flex-shrink: 0;
  }
  .catalog__products .bProductList_row .item .img .vc {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .catalog__products .bProductList_row .item .img img {
    max-width: 230px;
    max-height: 230px;
  }
  .catalog__products .bProductList_row .item .l {
    flex-grow: 1;
    padding-left: 0;
  }
  .catalog__products .bProductList_row .item .foot {
    padding-top: 0;
    flex-shrink: 0;
    width: 230px;
    position: static;
  }
  .catalog__products .bProductList_row .item .ititle {
    font-size: 22px;
    line-height: 1em;
  }
  .catalog__products .bProductList_row .item .itext {
    font-size: 19px;
    line-height: 1.1em;
    margin-top: 15px;
  }
  .catalog__products .bProductList_row .item .foot>span {
    display: block;
    margin-top: 75px;
  }
  .catalog__products .bProductList_row .item .foot>span .oldprice {
    padding-left: 0;
  }
  .catalog__products .bProductList_row .item .foot>span .price {
    font-size: 21px;
    padding-top: 5px;
  }
}
@media (min-width: 1101px) and (max-width: 1480px) {
  .catalog__products .bProductList_row .item .top {
    margin-right: 30px;
  }
}
@media (min-width: 1101px) and (max-width: 1480px) {
  .catalog__products .bProductList_row .item .img img {
    max-width: 180px;
    max-height: 180px;
  }
}
@media (min-width: 1101px) and (max-width: 1480px) {
  .catalog__products .bProductList_row .item .img {
    margin-right: 30px;
    width: 180px;
    height: 180px;
  }
}
@media (min-width: 1101px) and (max-width: 1480px) {
  .catalog__products .bProductList_row .item .foot {
    width: 200px;
  }
}
.catalog__products .bProductList_row .img-pagination__item {
  width: 7px;
  height: 4px;
}
.catalog__products-list_loading {
  opacity: 0.75;
  filter: blur(3px);
  pointer-events: none;
}
.catalog__nav {
  display: flex;
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 30px;
  padding-bottom: 10px;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 899px) {
  .catalog__nav {
    justify-content: flex-start;
  }
}
.catalog__filter-mobile-opener {
  display: none;
  margin-right: auto;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 1.1em;
  text-decoration: none;
  color: #000;
  align-items: center;
}
@media (max-width: 899px) {
  .catalog__filter-mobile-opener {
    display: flex;
  }
}
.catalog__filter-mobile-opener-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-right: 5px;
  margin-top: -2px;
}
.catalog__sort {
  margin-right: 20px;
  font-family: 'MyriadPro-Regular', Arial;
  font-size: 16px;
  line-height: 1.1em;
  text-decoration: none;
  color: #000;
}
.catalog__sort:last-child {
  margin-right: 0;
}
@media (max-width: 899px) {
  .catalog__sort {
    margin-right: 0;
    margin-left: 15px;
  }
}
.catalog__sort_active {
  background: #f1efe9;
  padding: 5px 8px;
}
.catalog__sort_active .catalog__sort-by {
  display: inline-block;
}
.catalog__sort-text {
  display: block;
}
@media (max-width: 599px) {
  .catalog__sort-text {
    display: none;
  }
}
.catalog__sort-text-mobile {
  display: none;
}
@media (max-width: 599px) {
  .catalog__sort-text-mobile {
    display: block;
  }
}
.catalog__sort-by {
  display: none;
}
.catalog__view {
  width: 28px;
  height: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-sizing: border-box;
}
.catalog__view_active {
  background: #f1efe9;
}
.catalog__view_active .catalog__view-icon:before {
  background: #000;
}
.catalog__view-icon {
  display: block;
  padding: 1px;
}
.catalog__view-icon:before {
  content: '';
  background: #b2ada1;
  display: block;
  width: 100%;
  height: 100%;
}
.catalog__view_rows .catalog__view-icon {
  width: 100%;
  height: 2px;
}
.catalog__view_net .catalog__view-icon {
  width: 7px;
  height: 7px;
}
@media (max-width: 599px) {
  .catalog__view {
    display: none;
  }
}
.catalog__more {
  font-family: 'MyriadPro-Regular', Arial;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  color: #bc4425;
  border: 1px solid #bc4425;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  width: 100%;
  margin: 25px 25px 0 25px;
  font-size: 16px;
}
.catalog__more:last-child {
  margin-bottom: 25px;
}
.catalog__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 25px;
}
.catalog__pagination-item {
  font-family: 'MyriadPro-Regular', Arial;
  color: #bc4425;
  font-size: 30px;
  line-height: 30px;
  text-decoration: none;
  padding: 3px 10px;
  display: inline-block;
}
.catalog__pagination-item_sel {
  background: #ddd7c9;
}
.breadCrumbs_new {
  font-size: 14px;
  line-height: 1em;
  margin-top: 20px;
  margin-bottom: 10px;
}
.breadCrumbs_new a {
  color: #F05213;
  padding: 0 5px;
  display: inline-block;
}
.breadCrumbs_new a:hover {
  color: #af4328;
}
.breadCrumbs_new .breadCrumbs__sel {
  color: #9fa1a3;
  background: #f1efe9;
  padding: 3px 5px;
  margin-left: 5px;
  cursor: default;
}
.breadCrumbs_new .breadCrumbs__sel:hover {
  color: #9fa1a3;
}
.GStitle_new {
  text-transform: none;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 10px;
  margin-bottom: 15px;
}
.js-fcheckbox {
  display: none;
}
.fcheckbox {
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  border: 1px solid #b2ada1;
  position: relative;
  bottom: -1px;
  display: inline-flex;
}
.fcheckbox__icon {
  position: absolute;
  display: none;
  width: 10.769230769231px;
  height: 7.6923076923077px;
  top: -2px;
  left: 1px;
}
.fcheckbox__icon svg {
  max-width: 100%;
  max-height: 100%;
}
.fcheckbox_active {
  border-color: #db421e;
  background: #db421e;
}
.fcheckbox_active .fcheckbox__icon {
  display: block;
}
.subMenu {
  padding: 0;
}
.subMenu .GSfixWidth a {
  padding-top: 10px;
  padding-bottom: 10px;
  background: none;
}
.GSfixWidth_broad {
  max-width: 1500px;
}
.img-pagination {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  pointer-events: none;
  border-radius: 50%;
}
.img-pagination__item {
  width: 5px;
  height: 3px;
  margin: 1px;
  background: #ddd7c9;
  opacity: 0.8;
}
.img-pagination__item_active {
  opacity: 1;
  background: #db421e;
}
.hint {
  display: inline-block;
  margin-left: 8px;
  position: relative;
  z-index: 92;
}
.hint__icon {
  cursor: help;
  background: #b2ada1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1em;
  font-family: 'MyriadPro-Regular', Arial;
  font-weight: normal;
  padding-top: 2px;
  box-sizing: border-box;
  position: relative;
}
.hint__text {
  display: none;
}
.hint:hover {
  z-index: 93;
}
.hint:hover:before {
  content: '';
  height: 50px;
  width: 50px;
  position: absolute;
  top: 0;
  left: 0;
}
.hint:hover .hint__icon {
  background: #F05213;
  z-index: 2;
}
.hint:hover .hint__text {
  z-index: 2;
  display: block;
  position: absolute;
  top: 23px;
  left: 50%;
  background: #f1efe9;
  color: #4d5153;
  font-size: 14px;
  line-height: 1.1em;
  border-radius: 0 10px 10px 10px;
  font-family: 'MyriadPro-Regular', Arial;
  font-weight: normal;
  width: 200px;
  padding: 10px;
  box-sizing: border-box;
  word-wrap: break-word;
}
.hint:hover .hint__text a {
  color: #F05213;
}
.filter-no-result__header {
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  font-size: 22px;
  line-height: 1.2em;
}
.filter-no-result__text {
  font-family: 'MyriadPro-Regular', Arial;
  color: #4d5153;
  font-size: 16px;
  line-height: 1.2em;
  margin-top: 10px;
}
.filter-no-result__btn {
  max-width: 160px;
  margin-top: 20px;
}
.filter-no-result_inset {
  padding: 25px;
}
.filter-text-detail {
  display: none;
}
.filter-sets {
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  padding: 10px 0 5px 0;
  margin-bottom: 15px;
  flex-wrap: wrap;
  display: none;
}
.filter-sets_active {
  display: flex;
}
@media (max-width: 599px) {
  .filter-sets {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}
.filter-sets__item {
  font-size: 14px;
  line-height: 1em;
  margin: 0 5px 5px 0;
  padding: 6px 15px;
  border-radius: 15px;
  background: #f1efe9;
  text-decoration: none;
  color: #4d5153;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-family: 'MyriadPro-Regular', Arial;
}
.filter-sets__item_clear {
  background: #db421e;
  color: #fff;
}
.filter-sets__item_set {
  border-radius: 0;
}
.filter-sets__item_set:hover {
  text-decoration: none;
  background: #ddd7c9;
  color: #af4328;
}
.filter-sets__remove {
  width: 16px;
  height: 16px;
  margin-left: 3px;
  margin-right: -10px;
  position: relative;
  flex-shrink: 0;
}
.filter-sets__remove:before,
.filter-sets__remove:after {
  position: absolute;
  top: 3px;
  left: 7px;
  content: ' ';
  height: 10px;
  width: 2px;
  background-color: #db421e;
}
.filter-sets__remove:before {
  transform: rotate(45deg);
}
.filter-sets__remove:after {
  transform: rotate(-45deg);
}

/* End */


/* Start:/bitrix/templates/detsys/styles.css?1750929378713*/
.imageLeft {
	max-width: 33% !important;
	float: left !important;
	margin: 0 30px 15px 0 !important;
	height: auto !important;
}
.imageRight{
	max-width: 33% !important;
	float: right !important;
	margin: 0 0 15px 30px !important;
	height: auto !important;
}
.imageCenter {
	max-width: 100% !important;
	float: none !important;
	display: block;
	margin: 30px auto !important;
	height: auto !important;
}
.imageBorder {
	box-sizing: border-box;
	border: 15px solid #ddd7c9;
}
@media (max-width: 600px) {
	.imageLeft {
		max-width: 100% !important;
		margin: 20px auto !important;
	}
	.imageRight{
		max-width: 100% !important;
		margin: 20px auto !important;
	}
	.imageCenter {
		margin: 20px auto !important;
	}
}
/* End */
/* /bitrix/templates/detsys/slick.css?15496499621729 */
/* /bitrix/templates/detsys/lightbox.css?15496499624115 */
/* /bitrix/templates/detsys/styles_new.css?1744816456213045 */
/* /bitrix/templates/detsys/jquery-ui.css?15496499625635 */
/* /bitrix/templates/detsys/jquery.fancybox.min.css?157174335918886 */
/* /bitrix/templates/detsys/iosCheckbox.css?1633413315520 */
/* /bitrix/templates/detsys/filter.css?166434927315841 */
/* /bitrix/templates/detsys/styles.css?1750929378713 */
