@charset "UTF-8";
.flex_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex_container.fw_w {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex_container.fw_nw {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex_container.fw_wr {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.flex_container.jc_sb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex_container.jc_fs {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex_container.jc_fe {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex_container.jc_sa {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flex_container.jc_c {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex_container.ai_c {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.flex_container.ai_fs {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
}
.flex_container.ai_fe {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  -ms-grid-row-align: flex-end;
  align-items: flex-end;
}
.flex_container.ai_s {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  -ms-grid-row-align: stretch;
  align-items: stretch;
}
.flex_container.ai_b {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  -ms-grid-row-align: baseline;
  align-items: baseline;
}
.flex_container.fd_r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex_container.fd_rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex_container.fd_c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex_container.fd_cr {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.flex_container.ac_fs {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.flex_container.ac_fe {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.flex_container.ac_c {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.flex_container.ac_sb {
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}
.flex_container.ac_sa {
  -webkit-align-content: space-around;
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}
.flex_container.ac_s {
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
.flex_container > *.fl_n {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}
.flex_container > *.fl_u {
  -webkit-box-flex: unset;
  -webkit-flex: unset;
  -ms-flex: unset;
  flex: unset;
}
.flex_container > *.fl_inh {
  -webkit-box-flex: inherit;
  -webkit-flex: inherit;
  -ms-flex: inherit;
  flex: inherit;
}
.flex_container > *.fl_ini {
  -webkit-box-flex: initial;
  -webkit-flex: initial;
  -ms-flex: initial;
  flex: initial;
}
.flex_container > *.order_u {
  -webkit-box-ordinal-group: NaN;
  -webkit-order: unset;
  -ms-flex-order: unset;
  order: unset;
}
.flex_container > *.order_inh {
  -webkit-box-ordinal-group: NaN;
  -webkit-order: inherit;
  -ms-flex-order: inherit;
  order: inherit;
}
.flex_container > *.order_ini {
  -webkit-box-ordinal-group: NaN;
  -webkit-order: initial;
  -ms-flex-order: initial;
  order: initial;
}
.flex_container > *.order_0 {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
}
.flex_container > *.order_1 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
.flex_container > *.order_2 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}
.flex_container > *.order_3 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
}
.flex_container > *.order_4 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
}
.flex_container > *.order_5 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}
.flex_container > *.order_6 {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6;
}
.flex_container > *.order_7 {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
  -ms-flex-order: 7;
  order: 7;
}
.flex_container > *.order_8 {
  -webkit-box-ordinal-group: 9;
  -webkit-order: 8;
  -ms-flex-order: 8;
  order: 8;
}
.flex_container > *.order_9 {
  -webkit-box-ordinal-group: 10;
  -webkit-order: 9;
  -ms-flex-order: 9;
  order: 9;
}
.flex_container > *.order_10 {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
  -ms-flex-order: 10;
  order: 10;
}
.flex_container > *.fb_a {
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.flex_container > *.fb_25per {
  -webkit-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
.flex_container > *.fb_33per {
  -webkit-flex-basis: 33%;
  -ms-flex-preferred-size: 33%;
  flex-basis: 33%;
}
.flex_container > *.fb_50per {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.flex_container > *.fb_100per {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.flex_container > *.fg_0 {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.flex_container > *.fg_1 {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.flex_container > *.fg_2 {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
.flex_container > *.fg_3 {
  -webkit-box-flex: 3;
  -webkit-flex-grow: 3;
  -ms-flex-positive: 3;
  flex-grow: 3;
}
.flex_container > *.fg_4 {
  -webkit-box-flex: 4;
  -webkit-flex-grow: 4;
  -ms-flex-positive: 4;
  flex-grow: 4;
}
.flex_container > *.fg_5 {
  -webkit-box-flex: 5;
  -webkit-flex-grow: 5;
  -ms-flex-positive: 5;
  flex-grow: 5;
}
.flex_container > *.fg_6 {
  -webkit-box-flex: 6;
  -webkit-flex-grow: 6;
  -ms-flex-positive: 6;
  flex-grow: 6;
}
.flex_container > *.fg_7 {
  -webkit-box-flex: 7;
  -webkit-flex-grow: 7;
  -ms-flex-positive: 7;
  flex-grow: 7;
}
.flex_container > *.fg_8 {
  -webkit-box-flex: 8;
  -webkit-flex-grow: 8;
  -ms-flex-positive: 8;
  flex-grow: 8;
}
.flex_container > *.fg_9 {
  -webkit-box-flex: 9;
  -webkit-flex-grow: 9;
  -ms-flex-positive: 9;
  flex-grow: 9;
}
.flex_container > *.fg_10 {
  -webkit-box-flex: 10;
  -webkit-flex-grow: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
}
.flex_container > *.fs_0 {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.flex_container > *.fs_1 {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.flex_container > *.fs_2 {
  -webkit-flex-shrink: 2;
  -ms-flex-negative: 2;
  flex-shrink: 2;
}
.flex_container > *.fs_3 {
  -webkit-flex-shrink: 3;
  -ms-flex-negative: 3;
  flex-shrink: 3;
}
.flex_container > *.fs_4 {
  -webkit-flex-shrink: 4;
  -ms-flex-negative: 4;
  flex-shrink: 4;
}
.flex_container > *.fs_5 {
  -webkit-flex-shrink: 5;
  -ms-flex-negative: 5;
  flex-shrink: 5;
}
.flex_container > *.fs_6 {
  -webkit-flex-shrink: 6;
  -ms-flex-negative: 6;
  flex-shrink: 6;
}
.flex_container > *.fs_7 {
  -webkit-flex-shrink: 7;
  -ms-flex-negative: 7;
  flex-shrink: 7;
}
.flex_container > *.fs_8 {
  -webkit-flex-shrink: 8;
  -ms-flex-negative: 8;
  flex-shrink: 8;
}
.flex_container > *.fs_9 {
  -webkit-flex-shrink: 9;
  -ms-flex-negative: 9;
  flex-shrink: 9;
}
.flex_container > *.fs_10 {
  -webkit-flex-shrink: 10;
  -ms-flex-negative: 10;
  flex-shrink: 10;
}
.flex_container > *.as_a {
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}
.flex_container > *.as_fs {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.flex_container > *.as_fe {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.flex_container > *.as_c {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.flex_container > *.as_b {
  -webkit-align-self: baseline;
  -ms-flex-item-align: baseline;
  align-self: baseline;
}
.flex_container > *.as_s {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
html {
  overflow-y: scroll;
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}
audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden], template {
  display: none;
}
a {
  background: transparent;
}
a:active, a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b, strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub, sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code, kbd, pre, samp {
  font-size: 1em;
  font-family: monospace, monospace;
}
button, input, optgroup, select, textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}
button {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
button[disabled], html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #c0c0c0;
}
legend {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td, th {
  padding: 0;
}
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
.hide {
  display: none;
}
.show {
  display: block;
}
.invisible {
  visibility: hidden;
}
.visible {
  visibility: visible;
}
.reset-indents {
  padding: 0;
  margin: 0;
}
.reset-font {
  line-height: 0;
  font-size: 0;
}
.clear-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
  line-height: 0;
  font-size: 0;
}
.clearfix:after {
  clear: both;
}
.clear {
  visibility: hidden;
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0;
}
.clear-self:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: "";
}
.thumb, .YMaps, .ymaps-map {
  color: #000;
}
.table {
  display: table;
}
.table .tr {
  display: table-row;
}
.table .tr .td {
  display: table-cell;
}
.table0, .table1, .table2 {
  border-collapse: collapse;
}
.table0 td, .table1 td, .table2 td {
  padding: 0.5em;
}
.table1, .table2 {
  border: 1px solid #afafaf;
}
.table1 td, .table1 th, .table2 td, .table2 th {
  border: 1px solid #afafaf;
}
.table2 th {
  padding: 0.5em;
  color: #fff;
  background: #f00;
}
label {
  cursor: pointer;
}
@font-face {
  font-family: "rsb";
  font-display: swap;
  src: url("/g/fonts/roboto_slab/roboto_slab-b.eot");
  src: url("/g/fonts/roboto_slab/roboto_slab-b.eot?#iefix") format("embedded-opentype"), url("/g/fonts/roboto_slab/roboto_slab-b.woff2") format("woff2"), url("/g/fonts/roboto_slab/roboto_slab-b.woff") format("woff"), url("/g/fonts/roboto_slab/roboto_slab-b.ttf") format("truetype"), url("/g/fonts/roboto_slab/roboto_slab-b.svg#rsb") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "rsr";
  font-display: swap;
  src: url("/g/fonts/roboto_slab/roboto_slab-r.eot");
  src: url("/g/fonts/roboto_slab/roboto_slab-r.eot?#iefix") format("embedded-opentype"), url("/g/fonts/roboto_slab/roboto_slab-r.woff2") format("woff2"), url("/g/fonts/roboto_slab/roboto_slab-r.woff") format("woff"), url("/g/fonts/roboto_slab/roboto_slab-r.ttf") format("truetype"), url("/g/fonts/roboto_slab/roboto_slab-r.svg#rsr") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "rsl";
  font-display: swap;
  src: url("/g/fonts/roboto_slab/roboto_slab-l.eot");
  src: url("/g/fonts/roboto_slab/roboto_slab-l.eot?#iefix") format("embedded-opentype"), url("/g/fonts/roboto_slab/roboto_slab-l.woff2") format("woff2"), url("/g/fonts/roboto_slab/roboto_slab-l.woff") format("woff"), url("/g/fonts/roboto_slab/roboto_slab-l.ttf") format("truetype"), url("/g/fonts/roboto_slab/roboto_slab-l.svg#rsl") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* staff_id: 710, reg_id: 5140653 */
@font-face {
  font-family: "OpenSans";
  font-display: swap;
  src: url("/g/fonts/open_sans/open_sans-b-i.eot");
  src: url("/g/fonts/open_sans/open_sans-b-i.eot?#iefix") format("embedded-opentype"), url("/g/fonts/open_sans/open_sans-b-i.woff2") format("woff2"), url("/g/fonts/open_sans/open_sans-b-i.woff") format("woff"), url("/g/fonts/open_sans/open_sans-b-i.ttf") format("truetype"), url("/g/fonts/open_sans/open_sans-b-i.svg#OpenSans") format("svg");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "OpenSans";
  font-display: swap;
  src: url("/g/fonts/open_sans/open_sans-b.eot");
  src: url("/g/fonts/open_sans/open_sans-b.eot?#iefix") format("embedded-opentype"), url("/g/fonts/open_sans/open_sans-b.woff2") format("woff2"), url("/g/fonts/open_sans/open_sans-b.woff") format("woff"), url("/g/fonts/open_sans/open_sans-b.ttf") format("truetype"), url("/g/fonts/open_sans/open_sans-b.svg#OpenSans") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  font-display: swap;
  src: url("/g/fonts/open_sans/open_sans-l.eot");
  src: url("/g/fonts/open_sans/open_sans-l.eot?#iefix") format("embedded-opentype"), url("/g/fonts/open_sans/open_sans-l.woff2") format("woff2"), url("/g/fonts/open_sans/open_sans-l.woff") format("woff"), url("/g/fonts/open_sans/open_sans-l.ttf") format("truetype"), url("/g/fonts/open_sans/open_sans-l.svg#OpenSans") format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  font-display: swap;
  src: url("/g/fonts/open_sans/open_sans-l-i.eot");
  src: url("/g/fonts/open_sans/open_sans-l-i.eot?#iefix") format("embedded-opentype"), url("/g/fonts/open_sans/open_sans-l-i.woff2") format("woff2"), url("/g/fonts/open_sans/open_sans-l-i.woff") format("woff"), url("/g/fonts/open_sans/open_sans-l-i.ttf") format("truetype"), url("/g/fonts/open_sans/open_sans-l-i.svg#OpenSans") format("svg");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "OpenSans";
  font-display: swap;
  src: url("/g/fonts/open_sans/open_sans-r.eot");
  src: url("/g/fonts/open_sans/open_sans-r.eot?#iefix") format("embedded-opentype"), url("/g/fonts/open_sans/open_sans-r.woff2") format("woff2"), url("/g/fonts/open_sans/open_sans-r.woff") format("woff"), url("/g/fonts/open_sans/open_sans-r.ttf") format("truetype"), url("/g/fonts/open_sans/open_sans-r.svg#OpenSans") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  font-display: swap;
  src: url("/g/fonts/open_sans/open_sans-i.eot");
  src: url("/g/fonts/open_sans/open_sans-i.eot?#iefix") format("embedded-opentype"), url("/g/fonts/open_sans/open_sans-i.woff2") format("woff2"), url("/g/fonts/open_sans/open_sans-i.woff") format("woff"), url("/g/fonts/open_sans/open_sans-i.ttf") format("truetype"), url("/g/fonts/open_sans/open_sans-i.svg#OpenSans") format("svg");
  font-weight: normal;
  font-style: italic;
}
html, body {
  height: 100%;
}
body {
  position: relative;
  min-width: 990px;
  text-align: left;
  color: #39393b;
  font: 14px "OpenSans", Arial, Helvetica, sans-serif;
  line-height: 1;
  background: #fff;
}
h1, h2, h3, h4, h5, h6 {
  color: #6EB7D7;
  font-family: "OpenSans";
  font-weight: normal;
  font-style: normal;
}
h1 {
  margin-top: 0;
  font-size: 30px;
}
h2 {
  font-size: 26px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 19px;
}
h5, h6 {
  font-size: 18px;
}
a {
  text-decoration: underline;
  color: #2a2a2c;
}
a:hover {
  text-decoration: none;
}
a img {
  border-color: #39393b;
}
.site-path {
  font-size: 13px;
  margin-bottom: 10px;
  white-space: pre-wrap;
  line-height: 1;
  color: #333;
}
.site-path a {
  color: #6DB6D7;
}
.header a img, .sidebar a img, .footer a img {
  border: none;
}
.header p, .footer p {
  margin: 0;
}
.sidebar p:first-child {
  margin-top: 0;
}
.sidebar p:last-child {
  border-bottom: 0;
}
.site-wrapper {
  width: 100%;
  min-height: 100%;
  margin: 0 auto -118px;
}
.site-wrapper .site-wrapper-in {
  padding: 0 14px;
}
.site-wrapper:after {
  display: block;
  visibility: hidden;
  height: 118px;
  content: "";
}
.no-main .header {
  height: 169px;
  overflow: hidden;
  margin: 0 0 35px;
}
.header {
  min-height: 730px;
  font-size: 0;
  padding: 0 14px;
  position: relative;
  margin: 0 0 43px;
  background: url(../top-pic.jpg) no-repeat 50% 0 #dddcda;
}
.header .logo-top {
  float: left;
  margin: 0;
  height: 111px;
}
.header .phone-top {
  max-width: 243px;
  float: right;
  margin: 25px 2px 0 0;
  font: normal 17px/1 "OpenSans", Arial, Helvetica, sans-serif;
  color: #39393b;
  text-align: right;
}
.header .phone-top .t-div {
  padding: 0 0 11px 19px;
  display: inline-block;
  vertical-align: top;
  background: url(../tel-logo-white.png) no-repeat 0 0;
}
.header .phone-top .address-top {
  padding: 0 0 0 20px;
  background: url(../adr-logo-white.png) no-repeat 0 0;
  font: 300 12px "OpenSans", Arial, Helvetica, sans-serif;
  color: #39393b;
}
.top-but {
  position: absolute;
  top: 201px;
  left: 50%;
  width: 230px;
  height: 36px;
  text-align: center;
  font: normal 17px/36px "OpenSans", Arial, Helvetica, sans-serif;
  color: #39393b;
  background-color: #C7E5FF;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  text-decoration: none;
  margin: 0 0 0 -473px;
}
.slogan {
  position: absolute;
  top: 544px;
  left: 50%;
  margin: 0 0 0 -130px;
  font: normal 17px "OpenSans", Arial, Helvetica, sans-serif;
  color: #39393b;
  width: 245px;
  text-align: center;
}
.menu-top-wrapper {
  float: left;
  width: 100%;
  height: 58px;
  background-color: #124761;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
  border-radius: 9px;
  overflow: hidden;
}
.menu-top-wrapper .menu-top {
  margin: 0;
  padding: 7px 10px;
  list-style: none;
}
.menu-top-wrapper .menu-top li {
  display: inline-block;
  vertical-align: top;
  /*background:url(../mt-del.png) no-repeat 0 50%;*/
  margin: 0 0 0 -3px;
}
.menu-top-wrapper .menu-top li:first-child {
  background: none;
}
.menu-top-wrapper .menu-top li a {
  display: block;
  font: normal 15px/1 "OpenSans", Arial, Helvetica, sans-serif;
  color: #fff;
  padding: 14px 51px;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu-top-wrapper .menu-top li.opened > a, .menu-top-wrapper .menu-top li > a:hover {
  color: #000;
  background-color: #C7E5FF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.g-block {
  position: relative;
  z-index: 1;
  font-size: 0;
  float: left;
  margin: 25% 0 20px;
  text-align: center;
  width: 100%;
}
.g-block a {
  width: 185px;
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  text-decoration: none;
}
.g-block a:hover {
  text-decoration: underline;
}
.g-block a img {
  display: block;
  margin: 0 0 12px;
}
.g-block a .g-title {
  font: normal 17px "OpenSans", Arial, Helvetica, sans-serif;
  color: #000;
}
.content-wrapper {
  position: relative;
  padding: 20px 0 40px;
}
.main {
  float: left;
  width: 100%;
}
.content {
  line-height: 1.3;
}
.sidebar {
  position: relative;
}
.sidebar.left {
  float: left;
  width: 252px;
  /*margin-right: -100%;*/
}
.sidebar.left ~ .main > .content {
  /*margin-left: $SidebarLeft;*/
  padding-left: 47px;
}
.cort-block {
  width: 252px;
  height: 48px;
  background-color: #C7E5FF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  margin: 0 0 16px;
  position: relative;
}
.cort-block a {
  width: 252px;
  height: 48px;
  display: block;
  text-decoration: none;
}
.cort-block:after {
  content: "";
  position: absolute;
  left: 54px;
  top: 14px;
  width: 34px;
  height: 22px;
  background: url(../car-logo.png) no-repeat 0 0;
}
.cort-block:before {
  content: "";
  position: absolute;
  right: 26px;
  top: 22px;
  width: 5px;
  height: 9px;
  background: url(../car-mark.png) no-repeat 0 0;
}
.cort-block .col {
  position: absolute;
  left: 23px;
  top: 19px;
  font: bold 12px/1 Arial, Helvetica, sans-serif;
  color: #000;
}
.cort-block .sum {
  display: block;
  font: bold 15px Arial, Helvetica, sans-serif;
  color: #000000;
  padding: 14px 43px 0 103px;
}
.cort-block .sum span {
  font-weight: normal;
  font-size: 13px;
}
.folder-wrapper .folders-shared {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  background: #eeeeed;
  margin: 0 0 22px;
  padding: 17px 0;
  list-style: none;
  position: relative;
}
.folder-wrapper .folders-shared > li {
  padding: 0 4px;
}
.folder-wrapper .folders-shared > li > a {
  display: block;
  position: relative;
  padding: 6px 23px;
  font: normal 15px "OpenSans", Arial, Helvetica, sans-serif;
  color: #39393b;
  text-decoration: none;
  background: url(../ml-mark1.png) no-repeat 12px 50%;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.folder-wrapper .folders-shared > li.has-child > a:before {
  position: absolute;
  content: "";
  right: 8px;
  top: 10px;
  border-color: transparent;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-left-color: #39393b;
  border-radius: 6px;
}
.folder-wrapper .folders-shared > li.has-child > a:after {
  position: absolute;
  content: "";
  right: 11px;
  top: 10px;
  border-color: transparent;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-left-color: #eeeeed;
  border-radius: 6px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.folder-wrapper .folders-shared > li:hover > a {
  color: #000;
  background: #C7E5FF url(../ml-mark2.png) no-repeat 12px 50%;
}
.folder-wrapper .folders-shared > li:hover > a:after {
  border-left-color: #C7E5FF;
}
.folder-wrapper .folders-shared > li:hover > ul {
  display: block;
}
.folder-wrapper .folders-shared > li > ul {
  display: none;
  position: absolute;
  left: 100%;
  min-height: 100%;
  box-sizing: border-box;
  top: 0;
  width: 690px;
  margin: 0;
  list-style: none;
  padding: 35px 0 28px 15px;
  border: 2px solid #C7E5FF;
  background: #fff;
  font-size: 0;
  z-index: 100;
}
.folder-wrapper .folders-shared > li > ul ul {
  display: none;
  padding: 10px 0 2px 15px;
}
.folder-wrapper .folders-shared > li > ul ul ul {
  display: block;
}
.folder-wrapper .folders-shared > li > ul ul li {
  display: block;
}
.folder-wrapper .folders-shared > li > ul ul li + li {
  padding-top: 6px;
}
.folder-wrapper .folders-shared > li > ul ul li a {
  display: block;
  color: #666;
  font-size: 14px;
}
.folder-wrapper .folders-shared > li > ul > li {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 33.33%;
  padding: 0 20px 10px 0;
  position: relative;
}
.folder-wrapper .folders-shared > li > ul > li .s1 {
  position: absolute;
  font-size: 0;
  width: 13px;
  height: 13px;
  background: #c7e5ff;
  left: -10px;
  top: 4px;
}
.folder-wrapper .folders-shared > li > ul > li .s1:before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 6px;
  content: "";
  border-left: 1px solid #333;
}
.folder-wrapper .folders-shared > li > ul > li .s1:after {
  position: absolute;
  left: 2px;
  right: 2px;
  top: 6px;
  content: "";
  border-top: 1px solid #333;
}
.folder-wrapper .folders-shared > li > ul > li .s1.active:before {
  display: none;
}
.folder-wrapper .folders-shared > li > ul > li > a {
  display: block;
  vertical-align: top;
  font-size: 14px;
  color: #333;
  font-family: "OpenSans";
  font-weight: bold;
  padding: 4px 6px;
}
.edit-block {
  background-color: #C7E5FF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 35px;
  padding: 18px 0;
  font: normal 13px "OpenSans", Arial, Helvetica, sans-serif;
  color: #000000;
}
.edit-block img {
  max-width: 100%;
}
.edit-block .title {
  font: normal 23px "OpenSans", Arial, Helvetica, sans-serif;
  color: #39393b;
  padding: 0 14px 12px;
}
.edit-block .block-in {
  padding: 0 22px;
}
.news-block {
  min-height: 437px;
  background-color: #EEEEED;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 40px;
  font: 300 13px "OpenSans", Arial, Helvetica, sans-serif;
  color: #212121;
}
.news-block .news-name {
  padding: 23px 0 24px 39px;
  font: 300 25px "OpenSans", Arial, Helvetica, sans-serif;
  color: #2a2a2c;
  box-sizing: border-box;
}
.news-block .rtn {
  padding: 0 40px;
}
.news-block .block-in {
  margin: 0 0 24px;
  text-align: center;
}
.news-block .block-in img {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 0 12px;
}
.news-block .block-in .date {
  display: flex;
  gap: 5px;
  justify-content: flex-start;
  width: 80px;
  height: 25px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  text-align: center;
  font: normal 14px/25px "OpenSans", Arial, Helvetica, sans-serif;
  color: #fff;
}
.news-block .block-in .title {
  font: normal 18px "OpenSans", Arial, Helvetica, sans-serif;
  color: #FFA500;
  font-weight: bold;
  margin: 0 0 10px;
  display: block;
  text-decoration: none;
}
.news-block .block-in .title:hover {
  opacity: 0.5;
}
.news-block .block-in .anonce {
  font-size: 15px;
}
.news-block .news-more {
  width: max-content;
  padding: 0px 10px;
  height: 28px;
  margin: 20px auto 0 auto;
  background-color: #ffa500;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
  font: normal 14px/28px "OpenSans", Arial, Helvetica, sans-serif;
  color: #39393b;
}
.news-block .news-more a {
  display: block;
  color: #39393b;
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
}
.news-block .news-more:hover {
  background-color: #124761;
}
.news-block .news-more:hover a {
  color: white;
}
.default-news {
  position: relative;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0 50px;
}
@media (min-width: 440px) {
  .default-news {
    padding: 35px 0 50px;
  }
}
@media (min-width: 640px) {
  .default-news {
    padding: 42px 0 50px;
  }
}
@media (min-width: 768px) {
  .default-news {
    padding: 42px 0 60px;
  }
}
.default-news:before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0.8;
}
.default-news--title {
  color: #fff;
  font-size: 20px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 500;
  padding-bottom: 16px;
  padding: 0 15px 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 440px) {
  .default-news--title {
    font-size: 24px;
    padding: 0 24px 30px;
  }
}
@media (min-width: 640px) {
  .default-news--title {
    font-size: 26px;
  }
}
@media (min-width: 960px) {
  .default-news--title {
    font-size: 30px;
    padding-bottom: 50px;
  }
}
.default-news--inner {
  position: relative;
  z-index: 1;
}
.default-news--slider {
  padding: 0 40px;
}
.default-news--item {
  padding: 0 15px;
}
@media (min-width: 960px) {
  .default-news--item {
    width: 20%;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
  }
}
.default-news--item img {
  max-width: 100%;
  height: 225px;
  width: 100%;
  object-fit: contain;
}
.default-news .slick-arrow {
  position: absolute;
  width: 23px;
  height: 40px;
  top: 50%;
  margin-top: -20px;
  font-size: 0;
  border: none;
  cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22full%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aev%3D%22http%3A%2F%2Fwww.w3.org%2F2001%2Fxml-events%22%20xml%3Aspace%3D%22preserve%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2223px%22%20height%3D%2240px%22%20%20viewBox%3D%220%200%2023%2040%22%20preserveAspectRatio%3D%22none%22%20shape-rendering%3D%22geometricPrecision%22%3E%22%3Cpath%20fill%3D%22%23FFA500%22%20d%3D%22M43.618%2C6472a3.366%2C3.366%2C0%2C0%2C1-2.4-1.01l-16.235-16.57a3.472%2C3.472%2C0%2C0%2C1%2C0-4.84l16.235-16.57A3.348%2C3.348%2C0%2C0%2C1%2C46%2C6433a3.451%2C3.451%2C0%2C0%2C1%2C.016%2C4.84L32.149%2C6452l13.868%2C14.16A3.451%2C3.451%2C0%2C0%2C1%2C46%2C6471%2C3.329%2C3.329%2C0%2C0%2C1%2C43.618%2C6472Z%22%20transform%3D%22translate%28-24.031%20-6432%29%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center center no-repeat;
}
.default-news .slick-prev {
  left: 15px;
}
@media (min-width: 440px) {
  .default-news .slick-prev {
    left: 24px;
  }
}
@media (min-width: 720px) {
  .default-news .slick-prev {
    left: 15px;
  }
}
.default-news .slick-next {
  right: 15px;
  transform: rotate(180deg);
}
@media (min-width: 440px) {
  .default-news .slick-next {
    right: 24px;
  }
}
@media (min-width: 720px) {
  .default-news .slick-next {
    right: 15px;
  }
}
.default-news .slick-dots {
  margin: 20px 0 0 0;
  padding: 0;
  list-style: none;
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.default-news .slick-dots li {
  margin: 0 4px;
}
.default-news .slick-dots li button {
  background: none;
  background-color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #FFA500;
  font-size: 0;
  padding: 0;
  cursor: pointer;
}
.default-news .slick-dots li.slick-active button {
  background: #FFA500;
}
.informers-block {
  margin: 0 0 20px;
  font-size: 12px;
  text-align: center;
}
.f-block {
  min-height: 254px;
  background: #000;
}
.f-block p {
  margin: 0;
}
.f-block .f-all-div {
  padding: 0 18px;
}
.f-block .f-title {
  font: normal 25px "OpenSans", Arial, Helvetica, sans-serif;
  color: #ffffff;
  padding: 45px 16px 53px;
}
.f-block .f-all {
  display: inline-block;
  vertical-align: top;
  width: 270px;
  font: normal 15px "OpenSans", Arial, Helvetica, sans-serif;
  color: #fff;
  text-decoration: none;
}
.f-block .f-all:hover {
  text-decoration: underline;
}
.f-block .f-all img {
  float: left;
  margin: 0 28px 0 0;
}
.f-block .f-all .f-link {
  float: left;
  width: 153px;
}
.map-block {
  overflow: hidden;
  height: 356px;
  position: relative;
}
.map-block p {
  margin: 0;
}
.map-block .map-tit {
  position: absolute;
  left: 28px;
  top: 28px;
  width: 216px;
  height: 53px;
  font: normal 25px /53px Arial, Helvetica, sans-serif;
  color: #000000;
  background-color: #C7E5FF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  width: 216px;
  text-align: center;
}
.sidebar.right {
  float: right;
  width: 0;
  margin-left: 0;
}
.sidebar.right ~ .main > .content {
  margin-right: 0;
  padding-right: 20px;
}
.shop2-block {
  position: relative;
  z-index: 100;
}
.shop2-block .block-title {
  position: relative;
  cursor: pointer;
}
.shop2-block .block-title span, .shop2-block .block-title strong {
  display: block;
}
.shop2-block .block-title span {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto 0;
  line-height: 0;
  font-size: 0;
  width: 13px;
  height: 8px;
  background: url(../arrows.svg) no-repeat;
  background-size: 34px 29px;
}
.shop2-block .block-title strong {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.shop2-block .block-body {
  display: none;
}
.shop2-block.opened .block-body {
  display: block;
}
.shop2-block.login-form {
  background-color: #eee;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.shop2-block.login-form input[type="text"], .shop2-block.login-form input[type="password"] {
  background: none transparent;
  vertical-align: top;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-family: inherit;
}
.shop2-block.login-form .block-title {
  color: #fff;
  background-color: #F1632B;
  background-image: -o-linear-gradient(#f26d2f, #f1632b);
  background-image: -moz-linear-gradient(#f26d2f, #f1632b);
  background-image: -webkit-linear-gradient(#f26d2f, #f1632b);
  background-image: -ms-linear-gradient(#f26d2f, #f1632b);
  background-image: linear-gradient( #f26d2f, #f1632b);
  -pie-background: linear-gradient( #f26d2f, #f1632b);
}
.shop2-block.login-form .block-title span {
  background-position: 0 0;
}
.shop2-block.login-form.opened .block-title span {
  background-position: -21px 0;
}
.shop2-block.login-form .block-body {
  font-size: 12px;
  padding: 14px 20px;
}
.shop2-block.login-form .block-body a, .shop2-block.login-form .block-body span, .shop2-block.login-form .block-body strong {
  display: inline-block;
  vertical-align: middle;
  padding: 0 1px;
}
.shop2-block.login-form .block-body div.row {
  margin: 6px 0;
  overflow: hidden;
  font-size: 13px;
}
.shop2-block.login-form .block-body p {
  margin: 12px 0 6px;
}
.shop2-block.login-form .block-body label {
  display: block;
  cursor: text;
  padding: 0 1px;
}
.shop2-block.login-form .block-body label.field {
  background: #fff url(../icons-user.svg) no-repeat;
  border: 1px solid #cdcdcd;
  padding: 0 6px 0 24px;
  overflow: hidden;
  height: 23px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.shop2-block.login-form .block-body label.field input {
  width: 100%;
  padding: 4px 0 3px;
  outline: none;
}
.shop2-block.login-form .block-body label.field.text {
  background-position: 6px -26px;
}
.shop2-block.login-form .block-body label.field.password {
  background-position: 6px -58px;
}
.shop2-block.login-form .block-body .signin-btn {
  float: right;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  margin: 0 0 0 10px;
  outline: none;
  font-size: 13px;
  line-height: 1;
  color: #333;
  background-color: #ddd;
  -moz-box-shadow: inset 0 0 0 1px #CBCBCB;
  -webkit-box-shadow: inset 0 0 0 1px #CBCBCB;
  box-shadow: inset 0 0 0 1px #CBCBCB;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background-image: -o-linear-gradient(#f8f8f8, #ddd);
  background-image: -moz-linear-gradient(#f8f8f8, #ddd);
  background-image: -webkit-linear-gradient(#f8f8f8, #ddd);
  background-image: -ms-linear-gradient(#f8f8f8, #ddd);
  background-image: linear-gradient( #f8f8f8, #ddd);
  -pie-background: linear-gradient( #f8f8f8, #ddd);
}
.shop2-block.login-form .block-body .signin-btn:hover {
  background-color: #EDEDED;
  background-image: -o-linear-gradient(#fbfbfb, #ededed);
  background-image: -moz-linear-gradient(#fbfbfb, #ededed);
  background-image: -webkit-linear-gradient(#fbfbfb, #ededed);
  background-image: -ms-linear-gradient(#fbfbfb, #ededed);
  background-image: linear-gradient( #fbfbfb, #ededed);
  -pie-background: linear-gradient( #fbfbfb, #ededed);
}
.shop2-block.login-form .block-body .signin-btn:active {
  background-color: #ddd;
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #f1f1f1), color-stop(12.5%, #ddd));
  background-image: -o-linear-gradient(bottom, #f1f1f1, #ddd);
  background-image: -moz-linear-gradient(bottom, #f1f1f1, #ddd);
  background-image: -webkit-linear-gradient(bottom, #f1f1f1, #ddd);
  background-image: -ms-linear-gradient(bottom, #f1f1f1, #ddd);
  background-image: linear-gradient(to top, #f1f1f1, #ddd);
  -pie-background: linear-gradient(to top, #f1f1f1, #ddd);
}
.shop2-block.login-form .block-body .user-name {
  font-size: 14px;
  color: #333;
  margin-right: 10px;
  min-width: 74px;
}
.shop2-block.login-form .block-body .settings {
  line-height: 0;
  font-size: 0;
  width: 12px;
  height: 12px;
  background: url(../icons-user.svg) 0 0 no-repeat;
  text-decoration: none;
}
.shop2-block.login-form .block-body .register {
  color: #eb3c3c;
  margin-right: 4px;
}
.shop2-block.login-form .block-body .my-orders {
  margin-right: 10px;
  min-width: 74px;
}
.shop2-block.search-form, .shop2-block.login-form {
  background-color: #eeeeed;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 18px;
}
.shop2-block.search-form .search-btn, .shop2-block.login-form .search-btn {
  border: none;
  padding: 6px 12px;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1;
  color: #333;
  background-color: #ddd;
  -moz-box-shadow: inset 0 0 0 1px #CBCBCB;
  -webkit-box-shadow: inset 0 0 0 1px #CBCBCB;
  box-shadow: inset 0 0 0 1px #CBCBCB;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background-image: -o-linear-gradient(#f8f8f8, #ddd);
  background-image: -moz-linear-gradient(#f8f8f8, #ddd);
  background-image: -webkit-linear-gradient(#f8f8f8, #ddd);
  background-image: -ms-linear-gradient(#f8f8f8, #ddd);
  background-image: linear-gradient( #f8f8f8, #ddd);
  -pie-background: linear-gradient( #f8f8f8, #ddd);
}
.shop2-block.search-form .search-btn:hover, .shop2-block.login-form .search-btn:hover {
  background-color: #EDEDED;
  background-image: -o-linear-gradient(#fbfbfb, #ededed);
  background-image: -moz-linear-gradient(#fbfbfb, #ededed);
  background-image: -webkit-linear-gradient(#fbfbfb, #ededed);
  background-image: -ms-linear-gradient(#fbfbfb, #ededed);
  background-image: linear-gradient( #fbfbfb, #ededed);
  -pie-background: linear-gradient( #fbfbfb, #ededed);
}
.shop2-block.search-form .search-btn:active, .shop2-block.login-form .search-btn:active {
  background-color: #ddd;
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #f1f1f1), color-stop(12.5%, #ddd));
  background-image: -o-linear-gradient(bottom, #f1f1f1, #ddd);
  background-image: -moz-linear-gradient(bottom, #f1f1f1, #ddd);
  background-image: -webkit-linear-gradient(bottom, #f1f1f1, #ddd);
  background-image: -ms-linear-gradient(bottom, #f1f1f1, #ddd);
  background-image: linear-gradient(to top, #f1f1f1, #ddd);
  -pie-background: linear-gradient(to top, #f1f1f1, #ddd);
}
.shop2-block.search-form .block-title, .shop2-block.login-form .block-title {
  overflow: hidden;
  padding: 8px 22px;
  background-color: #eeeeed;
  color: #333;
  background-image: -o-linear-gradient(#eeeeed, #eeeeed);
  background-image: -moz-linear-gradient(#eeeeed, #eeeeed);
  background-image: -webkit-linear-gradient(#eeeeed, #eeeeed);
  background-image: -ms-linear-gradient(#eeeeed, #eeeeed);
  background-image: linear-gradient( #eeeeed, #eeeeed);
  -pie-background: linear-gradient( #eeeeed, #eeeeed);
}
.shop2-block.search-form .block-title strong, .shop2-block.login-form .block-title strong {
  font: normal 17px Arial, Helvetica, sans-serif;
  color: #101010;
}
.shop2-block.search-form .block-title span, .shop2-block.login-form .block-title span {
  width: 18px;
  height: 10px;
  background: url(../all-search-mark.png) no-repeat 0 0;
}
.shop2-block.search-form.opened .block-title span, .shop2-block.login-form.opened .block-title span {
  background: url(../all-search-mark.png) no-repeat 0 -13px;
}
.shop2-block.search-form .block-body, .shop2-block.login-form .block-body {
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -ms-border-radius: 0 10px 10px 0;
  -o-border-radius: 0 10px 10px 0;
  border-radius: 0 10px 10px 0;
  font-size: 13px;
  padding: 8px 24px 4px;
  background-color: #fff;
  border: solid #eee;
  border-width: 0 2px 2px;
  color: #333;
}
.shop2-block.search-form .block-body div.row, .shop2-block.login-form .block-body div.row {
  margin: 10px 0;
  overflow: hidden;
}
.shop2-block.search-form .block-body div.row select, .shop2-block.login-form .block-body div.row select {
  width: 100%;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  outline: none;
}
.shop2-block.search-form .block-body div.row input[type="text"], .shop2-block.login-form .block-body div.row input[type="text"] {
  width: 97%;
  font-size: 13px;
  outline: none;
}
.shop2-block.search-form .block-body div.row input[type="text"].small, .shop2-block.login-form .block-body div.row input[type="text"].small {
  width: 40px;
}
.shop2-block.search-form .block-body div.row span, .shop2-block.login-form .block-body div.row span {
  color: #333;
}
.shop2-block.search-form .block-body div.row-title, .shop2-block.search-form .block-body label.row-title, .shop2-block.login-form .block-body div.row-title, .shop2-block.login-form .block-body label.row-title {
  display: block;
  padding-bottom: 4px;
}
.shop2-block.search-form button[type="submit"], .shop2-block.login-form button[type="submit"] {
  outline: none;
}
.shop2-block.cart-preview {
  background-color: #F1632B;
  color: #fff;
}
.shop2-block.cart-preview .block-title {
  color: #fff;
  background-color: #EB3B3B;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  background-image: -o-linear-gradient(#eb3c3c, #eb3b3b);
  background-image: -moz-linear-gradient(#eb3c3c, #eb3b3b);
  background-image: -webkit-linear-gradient(#eb3c3c, #eb3b3b);
  background-image: -ms-linear-gradient(#eb3c3c, #eb3b3b);
  background-image: linear-gradient( #eb3c3c, #eb3b3b);
  -pie-background: linear-gradient( #eb3c3c, #eb3b3b);
}
.shop2-block.cart-preview .block-title span {
  background-position: 0 0;
}
.shop2-block.cart-preview.opened .block-title span {
  background-position: -22px 0;
}
.shop2-block.cart-preview .block-body {
  font-size: 12px;
  padding: 10px 20px 14px;
  cursor: default;
}
.shop2-block.cart-preview .block-body p {
  margin: 6px 0;
}
.shop2-block.cart-preview .block-body span, .shop2-block.cart-preview .block-body strong {
  display: inline-block;
}
.shop2-block.cart-preview .block-body span {
  min-width: 60px;
}
.shop2-block.cart-preview .block-body strong {
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
}
.shop2-block.cart-preview .block-body div {
  font-weight: bold;
  font-size: 14px;
  margin: 6px 0;
}
.shop2-block.cart-preview .order-btn {
  padding: 5px 11px;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  font-size: 13px;
  color: #333;
  background-color: #ddd;
  -moz-box-shadow: inset 0 0 0 1px #CBCBCB;
  -webkit-box-shadow: inset 0 0 0 1px #CBCBCB;
  box-shadow: inset 0 0 0 1px #CBCBCB;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background-image: -o-linear-gradient(#f8f8f8, #ddd);
  background-image: -moz-linear-gradient(#f8f8f8, #ddd);
  background-image: -webkit-linear-gradient(#f8f8f8, #ddd);
  background-image: -ms-linear-gradient(#f8f8f8, #ddd);
  background-image: linear-gradient( #f8f8f8, #ddd);
  -pie-background: linear-gradient( #f8f8f8, #ddd);
}
.shop2-block.cart-preview .order-btn:hover {
  background-color: #EDEDED;
  background-image: -o-linear-gradient(#fbfbfb, #ededed);
  background-image: -moz-linear-gradient(#fbfbfb, #ededed);
  background-image: -webkit-linear-gradient(#fbfbfb, #ededed);
  background-image: -ms-linear-gradient(#fbfbfb, #ededed);
  background-image: linear-gradient( #fbfbfb, #ededed);
  -pie-background: linear-gradient( #fbfbfb, #ededed);
}
.shop2-block.cart-preview .order-btn:active {
  background-color: #ddd;
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #f1f1f1), color-stop(12.5%, #ddd));
  background-image: -o-linear-gradient(bottom, #f1f1f1, #ddd);
  background-image: -moz-linear-gradient(bottom, #f1f1f1, #ddd);
  background-image: -webkit-linear-gradient(bottom, #f1f1f1, #ddd);
  background-image: -ms-linear-gradient(bottom, #f1f1f1, #ddd);
  background-image: linear-gradient(to top, #f1f1f1, #ddd);
  -pie-background: linear-gradient(to top, #f1f1f1, #ddd);
}
.shop2-block.tag-cloud .block-title {
  color: #fff;
  background-color: #08c;
  background-image: -o-linear-gradient(#0094d1, #08c);
  background-image: -moz-linear-gradient(#0094d1, #08c);
  background-image: -webkit-linear-gradient(#0094d1, #08c);
  background-image: -ms-linear-gradient(#0094d1, #08c);
  background-image: linear-gradient( #0094d1, #08c);
  -pie-background: linear-gradient( #0094d1, #08c);
}
.shop2-block.tag-cloud .block-title span {
  background: none;
}
.shop2-block.tag-cloud .block-body {
  background-color: #fff;
  border: 1px solid #ededed;
  padding: 14px;
}
.shop2-block.tag-cloud .block-body a {
  display: inline-block;
  vertical-align: top;
  margin: 0 4px 4px 6px;
  position: relative;
  padding: 0 6px 0 8px;
  background-color: #ddd;
  color: #333;
  line-height: 20px;
  font-size: 11px;
  text-decoration: none;
  white-space: pre;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  -ms-border-radius: 0 2px 2px 0;
  -o-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
}
.shop2-block.tag-cloud .block-body a span {
  position: absolute;
  left: -6px;
  top: 0;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 10px 6px 10px 0;
  border-right-color: #ddd;
}
.shop2-block.tag-cloud .block-body a ins {
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background: #fff;
  margin: -2px 0 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.shop2-block.tag-cloud .block-body a em {
  color: #08c;
  font-style: normal;
}
.footer {
  position: relative;
  width: 100%;
  min-height: 118px;
  margin: auto;
  font-size: 0;
  color: #fff;
  background: #000;
  position: relative;
}
.footer .soc-block {
  position: absolute;
  left: 50%;
  top: 52px;
  font-size: 0;
  margin: 0 0 0 -100px;
}
.footer .soc-block a {
  display: inline-block;
  vertical-align: top;
  margin: 0 4px 0 0;
}
.site-name-bottom {
  margin: 45px 0 0 23px;
  width: 270px;
  float: left;
  font-size: 12px;
  padding-top: 6px;
  font: normal 10px Arial, Helvetica, sans-serif;
  color: #fff;
}
.site-copyright {
  text-align: right;
  padding-top: 6px;
}
.site-copyright span {
  font-size: 12px !important;
}
.site-copyright a {
  color: #fff;
}
.site-counters {
  float: right;
  margin: 50px 17px 0 0;
  text-align: center;
  font-size: 12px;
}
.logo-top2 {
  /*width: 230px;*/
  margin: 13px 0 0 0;
  vertical-align: top;
}
@media (max-width: 1920px) {
  .folder-wrapper .folders-shared > li > ul > li {
    width: 25%;
  }
  .folder-wrapper .folders-shared > li > ul {
    width: 1600px;
  }
}
@media (max-width: 1680px) {
  .folder-wrapper .folders-shared > li > ul > li {
    width: 25%;
  }
  .folder-wrapper .folders-shared > li > ul {
    width: 1360px;
  }
}
@media (max-width: 1440px) {
  .folder-wrapper .folders-shared > li > ul > li {
    width: 25%;
  }
  .folder-wrapper .folders-shared > li > ul {
    width: 1120px;
  }
}
@media (max-width: 1360px) {
  .folder-wrapper .folders-shared > li > ul {
    width: 1040px;
  }
}
@media (max-width: 1280px) {
  .folder-wrapper .folders-shared > li > ul {
    width: 960px;
  }
}
@media (max-width: 1024px) {
  .folder-wrapper .folders-shared > li > ul {
    width: 704px;
  }
}
.shop2-block.login-form .block-body {
  display: block !important;
  border-radius: 10px;
  border-width: 2px;
  height: auto !important;
  padding: 0 24px 6px !important;
}
.shop2-block.login-form .block-title {
  display: none;
}
.slider {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bx-wrapper ul, .bx-wrapper .bx-controls {
  font-size: 0;
  line-height: 0;
}
.bx-wrapper .bx-controls a {
  outline: 0;
  text-indent: -9999px;
  text-align: left;
  display: block;
}
.bx-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.bx-wrapper ul img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  font-size: 12px;
}
.slider-wrap {
  /*margin: 58px auto -450px;*/
  position: relative;
}
.header {
  background-image: none;
}
.go_up {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin: 20px;
  background: #c7e5ff url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22full%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aev%3D%22http%3A%2F%2Fwww.w3.org%2F2001%2Fxml-events%22%20xml%3Aspace%3D%22preserve%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2211px%22%20height%3D%227px%22%20%20viewBox%3D%220%200%2011%207%22%20preserveAspectRatio%3D%22none%22%20shape-rendering%3D%22geometricPrecision%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M10.571%2C6.546%20C10.009%2C7.111%209.099%2C7.111%208.537%2C6.546%20C8.537%2C6.546%205.485%2C3.473%205.485%2C3.473%20C5.485%2C3.473%202.433%2C6.546%202.433%2C6.546%20C1.871%2C7.111%200.960%2C7.111%200.398%2C6.546%20C-0.164%2C5.980%20-0.164%2C5.063%200.398%2C4.497%20C0.398%2C4.497%204.467%2C0.401%204.467%2C0.401%20C5.029%2C-0.165%205.940%2C-0.165%206.502%2C0.401%20C6.502%2C0.401%2010.571%2C4.497%2010.571%2C4.497%20C11.133%2C5.063%2011.133%2C5.980%2010.571%2C6.546%20Z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") 50% 50% no-repeat;
  z-index: 10;
}
#sandbox_theme_panel_118415 {
  top: initial !important;
  bottom: 0;
}
.flex_container.jc_sb {
  margin-top: 20px;
}
.header {
  margin-bottom: 0;
  min-height: 100%;
}
.slider-wrap {
  margin-bottom: 0;
}
.new-contacts-whatsapp a {
  background-color: #29b75e;
  border-radius: 40px;
  position: relative;
  font-size: 14px;
  padding: 7px 10px 6px 30px;
  font-weight: normal;
  color: #fff !important;
  text-decoration: none;
  line-height: 26px;
}
.new-contacts-whatsapp a:before {
  content: "";
  position: absolute;
  left: 10px;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  background: url(/d/fgs16_whatsapp.svg) 50% 50% no-repeat;
  background-size: 24px;
}
@media (min-width: 1024px) and (max-width: 1100px) {
  .menu-top-wrapper .menu-top li a {
    padding: 14px 11px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .menu-top-wrapper .menu-top li a {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}
button, input, optgroup, select, textarea {
  color: #000;
}
.menu-top-wrapper {
  height: auto !important;
}
.header {
  position: relative;
}
.site-versions-wrap {
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 100;
  margin: 0 0 0 15px;
  display: flex;
  align-items: center;
}
@media (max-width: 960px) {
  .site-versions-wrap {
    margin: 0;
  }
}
.site-versions-wrap.show-list .versions-list {
  display: block;
}
.site-versions-wrap .current-version {
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
  padding: 5px 0 5px 35px;
  text-decoration: underline;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  color: #d8d8d8;
  background: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22full%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aev%3D%22http%3A%2F%2Fwww.w3.org%2F2001%2Fxml-events%22%20xml%3Aspace%3D%22preserve%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2264px%22%20height%3D%2264px%22%20%20viewBox%3D%220%200%2064%2064%22%20preserveAspectRatio%3D%22none%22%20shape-rendering%3D%22geometricPrecision%22%3E%3Cpath%20fill%3D%22%23d8d8d8%22%20d%3D%22M32%209a17%2017%200%200%200-17%2017c0%209.389%2017%2029%2017%2029s17-19.611%2017-29A17%2017%200%200%200%2032%209zm0%2025a8%208%200%201%201%208-8%208%208%200%200%201-8%208z%22%2F%3E%3Ccircle%20fill%3D%22%23d8d8d8%22%20cx%3D%2232%22%20cy%3D%2226%22%20r%3D%226%22%2F%3E%3C%2Fsvg%3E") 0 50% no-repeat;
  background-size: 30px auto;
}
@media (max-width: 480px) {
  .site-versions-wrap .current-version {
    font-size: 13px;
    padding: 10px 10px 10px 20px;
    background-size: 20px auto;
  }
}
.site-versions-wrap .current-version:hover {
  text-decoration: none;
}
.site-versions-wrap .versions-list {
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #335b75;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  display: none;
}
@media (max-width: 480px) {
  .site-versions-wrap .versions-list {
    padding: 5px 0;
  }
}
.site-versions-wrap .versions-list a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  color: #fff;
}
.site-versions-wrap .versions-list a:hover {
  background: #02284c;
}
.site-versions-wrap .versions-list .active a {
  background: #0d72b5;
}
@media (max-width: 980px) {
  .new-contacts-telegram {
    position: fixed;
    top: 5px;
    right: 80px;
    height: 40px;
    width: 40px;
    z-index: 1001;
  }
  .new-contacts-telegram .new-contacts-telegram-img {
    width: 30px;
    height: 30px;
  }
  .new-contacts-whatsapp {
    position: fixed;
    top: 8px;
    right: 130px;
    height: 40px;
    z-index: 1001;
  }
  .new-contacts-whatsapp .new-contacts-whatsapp-img {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 981px) {
  .new-contacts-telegram {
    display: none;
  }
  .new-contacts-whatsapp {
    display: none;
  }
}
#search-result[v-if="(foundsProduct + foundsFolders + foundsVendors) > 0"] {
  display: none;
}
/*.bx-wrapper .bx-viewport {
    max-height: 450px !important;
}*/
.bx-wrapper .bx-viewport img {
  height: 450px;
}
.header_in .hleft .logo-top {
  height: 71px !important;
  width: 250px !important;
}
.g-block a {
  height: 60px;
}
.folder_blocks a .image {
  height: 151.6px;
}
.shop2-group-kinds .shop2-kind-item .kind-image {
  height: 144px !important;
}
html .header {
  background-color: #02284c;
}
html .menu-top-wrapper .menu-top li.opened > a {
  color: white;
}
html .menu-top-wrapper .menu-top li.opened > a {
  font-weight: bold;
}
html .folders-product a {
  color: white;
}
.folder_blocks a span {
  display: block;
}
.folder_blocks a {
  display: flex;
  flex-wrap: wrap;
}
.folder_blocks a .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
html body {
  background-color: #02284c;
}
html .site-path {
  color: #f9f2f2;
}
html .menu-top-wrapper .menu-top li.opened > a {
  background-color: #02284c !important;
  text-decoration: none !important;
}
.folder_blocks a {
  color: #fff;
}
.phone-top .address-top, .phone-top a {
  color: #fff;
}
.folders-product-wr {
  margin: 0px 0px 0px 0px;
}
.folders-product-wr .folders-product {
  padding: 0;
  margin: 0;
  list-style: none;
}
.folders-product-wr .folders-product ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: none;
}
.folders-product-wr .folders-product > li {
  padding-bottom: 3px;
}
.folders-product-wr .folders-product li a {
  text-decoration: none;
  display: block;
  font-size: 15px;
  line-height: 16px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 14px 30px 18px 20px;
  background: #124761;
  border-radius: 6px;
}
.folders-product-wr .folders-product li a:hover {
  background: #124761;
}
.folders-product-wr .folders-product li.has > a {
  position: relative;
}
.folders-product-wr .folders-product li.has > a ins.arr-up {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -3px;
  width: 9px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22full%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aev%3D%22http%3A%2F%2Fwww.w3.org%2F2001%2Fxml-events%22%20xml%3Aspace%3D%22preserve%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%229%22%20height%3D%226%22%20%20viewBox%3D%220%200%209%206%22%20preserveAspectRatio%3D%22none%22%20shape-rendering%3D%22geometricPrecision%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20%20fill%3D%22%23fff%22%20d%3D%22M8.505%2C1.014%20C8.888%2C1.394%208.888%2C2.010%208.505%2C2.389%20L5.562%2C5.308%20C5.179%2C5.688%204.558%2C5.688%204.175%2C5.308%20L1.233%2C2.389%20C0.850%2C2.010%200.850%2C1.394%201.233%2C1.014%20C1.616%2C0.634%202.237%2C0.634%202.620%2C1.014%20L4.869%2C3.244%20L7.118%2C1.014%20C7.501%2C0.634%208.122%2C0.634%208.505%2C1.014%20Z%22%2F%3E%3C%2Fsvg%3E") 50% 50% no-repeat;
}
.folders-product-wr .folders-product li.has > a ins.arr-up:before {
  content: "";
  display: block;
  position: absolute;
  left: -12px;
  right: -12px;
  top: -12px;
  bottom: -12px;
}
.folders-product-wr .folders-product li.opened > a ins.arr-up {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.folders-product-wr .folders-product li.opened > ul {
  display: block;
}
.folders-product-wr .folders-product li.opened2 > a ins.arr-up {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.folders-product-wr .folders-product li ul.level-2 {
  padding: 10px 15px 10px;
}
.folders-product-wr .folders-product li ul li a {
  font-size: 15px;
  font-weight: 600;
  padding: 5px 20px 5px 10px;
  background: none;
}
.folders-product-wr .folders-product li ul li a:hover {
  background: none;
  color: #fff;
}
.folders-product-wr .folders-product li ul li.has > a ins.arr-up {
  right: 2px;
  top: 50%;
  width: 9px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22full%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aev%3D%22http%3A%2F%2Fwww.w3.org%2F2001%2Fxml-events%22%20xml%3Aspace%3D%22preserve%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%229%22%20height%3D%226%22%20%20viewBox%3D%220%200%209%206%22%20preserveAspectRatio%3D%22none%22%20shape-rendering%3D%22geometricPrecision%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20%20fill%3D%22%23fff%22%20d%3D%22M8.505%2C1.014%20C8.888%2C1.394%208.888%2C2.010%208.505%2C2.389%20L5.562%2C5.308%20C5.179%2C5.688%204.558%2C5.688%204.175%2C5.308%20L1.233%2C2.389%20C0.850%2C2.010%200.850%2C1.394%201.233%2C1.014%20C1.616%2C0.634%202.237%2C0.634%202.620%2C1.014%20L4.869%2C3.244%20L7.118%2C1.014%20C7.501%2C0.634%208.122%2C0.634%208.505%2C1.014%20Z%22%2F%3E%3C%2Fsvg%3E") 50% 50% no-repeat;
  margin-top: -3px;
}
.folders-product-wr .folders-product li ul li.has > a:hover ins.arr-up {
  background: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22full%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aev%3D%22http%3A%2F%2Fwww.w3.org%2F2001%2Fxml-events%22%20xml%3Aspace%3D%22preserve%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%229%22%20height%3D%226%22%20%20viewBox%3D%220%200%209%206%22%20preserveAspectRatio%3D%22none%22%20shape-rendering%3D%22geometricPrecision%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20%20fill%3D%22%23fff%22%20d%3D%22M8.505%2C1.014%20C8.888%2C1.394%208.888%2C2.010%208.505%2C2.389%20L5.562%2C5.308%20C5.179%2C5.688%204.558%2C5.688%204.175%2C5.308%20L1.233%2C2.389%20C0.850%2C2.010%200.850%2C1.394%201.233%2C1.014%20C1.616%2C0.634%202.237%2C0.634%202.620%2C1.014%20L4.869%2C3.244%20L7.118%2C1.014%20C7.501%2C0.634%208.122%2C0.634%208.505%2C1.014%20Z%22%2F%3E%3C%2Fsvg%3E") 50% 50% no-repeat;
}
.folders-product-wr .folders-product li ul li.opened > a, .folders-product-wr .folders-product li ul li.opened2 > a {
  background: none;
  color: #fff;
}
.folders-product-wr .folders-product li ul li.opened > a ins.arr-up, .folders-product-wr .folders-product li ul li.opened2 > a ins.arr-up {
  background: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22full%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aev%3D%22http%3A%2F%2Fwww.w3.org%2F2001%2Fxml-events%22%20xml%3Aspace%3D%22preserve%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%229%22%20height%3D%226%22%20%20viewBox%3D%220%200%209%206%22%20preserveAspectRatio%3D%22none%22%20shape-rendering%3D%22geometricPrecision%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20%20fill%3D%22%23fff%22%20d%3D%22M8.505%2C1.014%20C8.888%2C1.394%208.888%2C2.010%208.505%2C2.389%20L5.562%2C5.308%20C5.179%2C5.688%204.558%2C5.688%204.175%2C5.308%20L1.233%2C2.389%20C0.850%2C2.010%200.850%2C1.394%201.233%2C1.014%20C1.616%2C0.634%202.237%2C0.634%202.620%2C1.014%20L4.869%2C3.244%20L7.118%2C1.014%20C7.501%2C0.634%208.122%2C0.634%208.505%2C1.014%20Z%22%2F%3E%3C%2Fsvg%3E") 50% 50% no-repeat;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.folders-product-wr .folders-product li ul li ul {
  border-top: none;
  padding-top: 0px;
  padding-left: 15px;
  padding-right: 10px;
}
.folders-product-wr .folders-product li ul li ul li a {
  font-weight: 400;
  position: relative;
  padding-left: 15px;
}
.folders-product-wr .folders-product li ul li ul li a:before {
  content: "–";
  position: absolute;
  left: 0;
  top: 50%;
  line-height: 0;
}
.folders-product-wr .folders-product li ul li ul li.has > a ins.arr-up {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 5px;
}
.folders-product-wr .folders-product li ul li ul li.has > a:hover ins.arr-up {
  background: #59ccff;
}
.folders-product-wr .folders-product li ul li ul li.opened > a {
  color: #59ccff;
}
.folders-product-wr .folders-product li ul li ul li.opened > a ins.arr-up {
  background: #59ccff;
}
html .main h1 {
  color: white;
}
.content-wrapper {
  display: flex;
}
.folder_blocks {
  display: flex;
  flex-wrap: wrap;
}
.folder_blocks a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
  width: 25%;
  font-size: 0;
  text-decoration: none;
  position: relative;
}
.folder_blocks a:before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  border: 1px solid #fff;
}
.folder_blocks a .image {
  display: block;
  margin-bottom: 10px;
  position: relative;
}
.folder_blocks a .image img {
  max-width: 100%;
  vertical-align: top;
}
.folder_blocks a .name {
  font-size: 16px;
  position: relative;
  text-align: center;
}
.g-panel--fixed-top {
  position: static !important;
}
.g-page-gallery2--photo {
  margin: 0 !important;
}
.g-block.flex_container.jc_sb {
  height: 80px;
}
/*
.slider-wrap {
    overflow: hidden;
}

@media (min-width: 1400px) {
.slider-wrap .bx-wrapper .bx-viewport, .slider-wrap .bx-wrapper .bx-viewport a, .slider-wrap, .bx-wrapper .bx-viewport img {
    height: 400px !important;
    width: 100%;
}}

@media (min-width: 880px) and (max-width: 1400px) {
.slider-wrap .bx-wrapper .bx-viewport, .slider-wrap .bx-wrapper .bx-viewport a, .slider-wrap, .bx-wrapper .bx-viewport img {
    height: 300px !important;
    width: 100%;
}}

@media (min-width: 572px) and (max-width: 880px) {
.slider-wrap .bx-wrapper .bx-viewport, .slider-wrap .bx-wrapper .bx-viewport a, .slider-wrap, .bx-wrapper .bx-viewport img {
    height: 220px !important;
    width: 100%;
}}

@media (max-width: 572px) {
.slider-wrap .bx-wrapper .bx-viewport, .slider-wrap .bx-wrapper .bx-viewport a, .slider-wrap, .bx-wrapper .bx-viewport img {
    height: 150px !important;
    width: 100%;
}}

.bx-wrapper ul {
    display: flex;
    overflow-x: visible !important;
}



.bx-wrapper ul a {
    display: block;
}

.bx-wrapper, .slider-wrap .bx-wrapper .bx-viewport {
    display: flex;
}*/
header.header {
  display: flex;
  flex-direction: column;
}
youtube {
  height: 250px;
  width: 100%;
  margin-right: 10px;
  max-width: 550px;
  display: inline-block;
  border: 1px solid #ffa931;
  background-image: url(/d/youtube-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #2c86aca6;
}
.video-vtoroe youtube {
  height: 370px;
  max-width: 660px;
}
ul.slider li:first-child {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  text-align: center;
}
.first-bl .video-bl video {
  height: 450px;
}
html .shop2-sorting-panel {
  background-color: #124761;
}
.sides-product .right-side-product .shop2-product .product-side-l .product-image a {
  display: block !important;
  height: 360px;
}
.sides-product .right-side-product .shop2-product .product-side-l .product-image {
  width: 100%;
  height: auto;
  margin: 0px 0px 10px 0px;
}
.sides-product .right-side-product .shop2-product .product-side-l .product-thumbnails ul li {
  flex: unset !important;
}
.sides-product .right-side-product .shop2-product .product-side-l .product-thumbnails ul li a {
  width: 60px !important;
  height: 60px !important;
}
html table.shop2-product-params tr.even {
  background-color: #02284c !important;
}
html table.shop2-product-options tr.odd {
  background-color: #02284c !important;
}
.sidebar.left {
  flex-shrink: 0;
}
.product-item-thumb .product-image, .product-item-simple .product-image {
  height: 190px;
  width: 200px;
}
.shop2-sorting-panel .sorting {
  display: flex;
}
.shop2-sorting-panel .view-shop {
  display: flex;
}
html .shop2-sorting-panel {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.shop2-collection-header {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}
.shop2-group-kinds .shop2-kind-item .kind-image {
  height: auto !important;
}
div#zalazat-vyezd {
  position: fixed;
  z-index: 151;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1247616b;
  display: none;
}
div#zalazat-vyezd .forma-block {
  display: flex;
  margin: auto;
  position: relative;
  max-width: 300px;
  padding: 30px;
  border-radius: 10px;
  background: #124761;
  border: 1px solid;
}
.cross-forma {
  padding: 2px 6px;
  position: absolute;
  border-radius: 5px;
  top: 10px;
  right: 10px;
  border: 1px solid;
  cursor: pointer;
}
div#zalazat-vyezd .title {
  margin-bottom: 20px;
}
div#zalazat-vyezd .field-value {
  color: black;
  margin-bottom: 10px;
}
div#zalazat-vyezd .tpl-form-button {
  background: #124761;
  border: 1px solid;
}
.zalazat-vyezd-flex {
  display: flex !important;
}
.localbtn {
  cursor: pointer;
}
div#zalazat-vyezd .tpl-form-button:hover {
  background: #02284c;
  transition: all 0.3s;
}
.site-versions-wrap.show-list .versions-list {
  z-index: 2;
}
html .header .phone-top a {
  text-decoration: none;
}
html .header .phone-top a:hover {
  text-decoration: underline;
}
.default-news:before {
  background: transparent;
}
html .news-block .news-name {
  font-weight: bold;
}
button[aria-label="1 of 1"] {
  display: none;
}
.content-main {
  line-height: 1.3;
}
a.title {
  font-family: "OpenSans", Arial, Helvetica, sans-serif;
}
.default-news--item img {
  height: 160px;
}
.news-block .block-in .title {
  font-size: 14px;
  font-family: "OpenSans", Arial, Helvetica, sans-serif;
}
time.date, .news-more a {
  font-size: 14px !important;
}
.shop2-main-after, .shop2-main-before {
  line-height: 1.3;
}
.content-main {
  margin: 30px 0;
}
.content-main {
  line-height: 1.3;
}
a.title {
  font-family: "OpenSans", Arial, Helvetica, sans-serif;
}
.default-news--item img {
  height: 160px;
}
.news-block .block-in .title {
  font-size: 14px;
  font-family: "OpenSans", Arial, Helvetica, sans-serif;
}
time.date, .news-more a {
  font-size: 14px !important;
}
.shop2-main-after, .shop2-main-before {
  line-height: 1.3;
}
.content-main {
  margin: 30px 0;
}
.folder_blocks a {
  max-width: 280px;
}
h1 {
  max-width: 1676px;
  margin-left: auto;
  margin-right: auto;
}
.slider-wrap {
  max-width: 1676px;
  margin-left: auto;
  margin-right: auto;
}
.g-block.flex_container.jc_sb {
  max-width: 1676px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .slider-wrap {
    height: 450px;
  }
  .slider-wrap ul.slider {
    height: 450px;
    width: 100%;
  }
  .slider-wrap ul.slider a {
    height: 450px;
    width: 100%;
  }
}
.bx-wrapper .bx-viewport img {
  object-fit: contain;
}
