:root {
  --blue: #18a6d8;
  --blue-light: #5dc0e3;
  --link: #1570a9;
  --link-dark: #1793d9;
  --text: #424242;
  --muted: #717171;
  --heading: #477895;
  --orange: #bd5003;
  --orange-strong: #fb8223;
  --red: #ce3014;
  --cat-title: #004e8b;
  --side-bg: #fffff8;
  --border: #dadada;
  --font: Verdana, Tahoma, "DejaVu Sans", Arial, sans-serif;
  --font-alt: Tahoma, Verdana, Arial, sans-serif;
}

body {
  background: #ffffff;
  color: var(--text);
  font-family: var(--font);
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: break-word;
}

a {
  color: var(--link);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

img {
  height: auto;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  border-left: 5px solid #f0f0f0;
  border-right: 5px solid #f0f0f0;
}

.site-top {
  background: var(--blue) url("/assets/image/top.gif") repeat;
  border-bottom: 1px solid #cfe9f4;
}

.site-top__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  min-height: 78px;
  padding: 12px 16px;
}

.site-logo {
  flex: 0 1 auto;
  display: block;
  min-width: 0;
}

.site-logo img {
  display: block;
  max-width: 100%;
}

.site-top__promo {
  flex: 1 1 240px;
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
}

.site-top__promo a {
  color: #ffffff;
}

.main-nav {
  background: #f6f6f6 url("/assets/image/under-top.webp") repeat-x bottom;
  border-top: 1px solid #e4e0dc;
  border-bottom: 1px solid #aba6a1;
}

.main-nav__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 1px;
  background: var(--border);
}

.main-nav__item {
  flex: 1 1 auto;
  background: #fbfbfb;
  text-align: center;
}

.main-nav__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 12px;
  color: #2272b1;
  font: bold 13px/1.2 Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.main-nav__item a::before {
  content: "";
  width: 16px;
  height: 20px;
  flex: 0 0 16px;
  background: url("/assets/image/controll2.webp") no-repeat center;
}

.main-nav__item.is-current a,
.main-nav__item a:hover {
  color: var(--orange);
}

.main-nav__item.is-current a::before {
  background-image: url("/assets/image/controll.webp");
}

.brand-strip {
  background: #e9e9e9 url("/assets/image/brand-strip.webp") repeat;
  padding: 12px 8px;
}

.brand-strip__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  list-style: none;
}

.brand-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 31px;
  background: url("/assets/image/back-brand.webp") no-repeat center;
}

.brand-strip__item img {
  display: block;
}

.layout {
  flex: 1 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 240px;
  align-items: stretch;
}

.col-left {
  min-width: 0;
  padding: 8px 9px 20px 12px;
  background: var(--side-bg);
  border-right: 5px solid var(--border);
}

.col-main {
  min-width: 0;
  padding: 10px 13px 20px;
}

.col-right {
  min-width: 0;
  padding: 0 0 20px;
  background: var(--side-bg) url("/assets/image/right-menu.webp") repeat-y right;
  border-left: 5px solid var(--border);
}

.cat-box {
  margin-bottom: 15px;
}

.cat-box__title {
  padding: 6px 11px;
  background: #f5f4e6;
  color: var(--cat-title);
  font-size: 17px;
}

.cat-box__list {
  list-style: none;
}

.cat-box__list li {
  padding: 4px 0 4px 27px;
  border-bottom: 1px dotted #999999;
  background: url("/assets/image/bullet-square.webp") no-repeat 11px 9px;
  color: var(--text);
  font: bold 13px/1.4 Helvetica, Arial, sans-serif;
}

.cat-box--brands {
  margin-top: 15px;
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  padding: 8px 0 0;
  list-style: none;
}

.brand-list li {
  color: var(--text);
  font: 12px/1.4 Helvetica, Arial, sans-serif;
}

.site-top__auth {
  flex: 0 0 auto;
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  white-space: nowrap;
}

.site-top__auth a {
  color: #ffffff;
}

.side-box {
  padding: 15px 11px;
  background: ivory;
  border-bottom: 2px dotted var(--border);
}

.side-box__title {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font: bold 20px/1.2 Arial, Helvetica, sans-serif;
}

.side-box__title--press {
  color: #8e8e8e;
  font-size: 14px;
}

.side-box__tools {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
}

.side-box__tools img {
  flex: 0 0 auto;
}

.side-box__tools p {
  margin: 0;
  font-size: 12px;
  line-height: 17px;
}

.side-box__call {
  margin: 10px 0 0;
  color: var(--red);
  font-size: 16px;
}

.side-box__call a {
  color: inherit;
  text-decoration: underline;
}

.side-box__tel {
  margin: 3px 0 0;
  padding-left: 20px;
  color: var(--red);
  font-size: 18px;
  text-decoration: underline;
}

.side-list {
  list-style: none;
  margin-top: 10px;
}

.side-list li {
  margin-top: 10px;
  padding: 4px 0 5px 22px;
  background: url("/assets/image/check.webp") no-repeat 2px 6px;
  border-bottom: 1px dashed gray;
}

.side-list a {
  color: var(--link);
  text-decoration: none;
}

.side-list a:hover {
  text-decoration: underline;
}

.press-item {
  margin-top: 15px;
  padding-left: 12px;
  background: url("/assets/image/bullet-arrow.webp") no-repeat 0 6px;
  font-size: 11px;
}

.press-item p {
  margin: 4px 0 0;
}

.press-item__name {
  font-weight: bold;
  color: var(--link);
  text-decoration: underline;
}

.site-footer {
  background: var(--blue) url("/assets/image/top.gif") repeat;
  border-top: 1px solid var(--border);
  color: #ffffff;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 6px;
  min-height: 25px;
  padding: 6px 12px;
  background: var(--blue-light) url("/assets/image/bot.gif") repeat;
}

.site-footer__nav a {
  color: #ffffff;
  font: normal 11px/1.4 var(--font);
  text-decoration: none;
}

.site-footer__nav a:hover {
  text-decoration: underline;
}

.site-footer__nav strong {
  font-weight: normal;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 12px 14px;
}

.site-footer__copy {
  margin: 0;
  font-size: 11px;
  color: #ffffff;
}

.site-footer__tags {
  margin: 0;
  text-align: right;
}

.site-footer__tags a {
  color: #000000;
  text-decoration: none;
  margin-left: 6px;
}

.site-footer__tags a:hover {
  text-decoration: underline;
}

.tag-1 {
  font-size: 12px;
}

.tag-2 {
  font-size: 9px;
}

.tag-3 {
  font-size: 18px;
}

.breadcrumb {
  padding: 10px 0;
  color: var(--muted);
  font-size: 10px;
}

.breadcrumb a {
  color: var(--muted);
}

.carousel {
  padding: 10px;
  border: 1px solid #e9e9e9;
  background: #f6f6f6 url("/assets/image/back-carusel.webp") repeat;
}

.carousel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 8px;
}

.carousel__title {
  flex: 1 1 auto;
  color: #636363;
  font: bold 16px/1.3 Arial, Helvetica, sans-serif;
  text-align: center;
}

.carousel__btn {
  flex: 0 0 29px;
  width: 29px;
  height: 29px;
  padding: 0;
  border: 0;
  font-size: 0;
  background: url("/assets/image/but-prev.webp") no-repeat center;
}

.carousel__btn--next {
  background-image: url("/assets/image/but-next.webp");
}

.carousel__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.carousel__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel__viewport::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.carousel__track {
  display: flex;
  list-style: none;
  gap: 19px;
  margin-bottom: 14px;
  padding: 5px 0 0;
}

.carousel__track li {
  flex: 0 0 214px;
  width: 214px;
}

.carousel__track img {
  display: block;
  width: 214px;
  max-width: 100%;
}

.carousel__cap {
  padding: 3px 4px;
  min-height: 36px;
  background: url("/assets/image/back-li.webp") repeat-y;
  color: #055b96;
  font-size: 12px;
  line-height: 1.25;
}

.carousel__cap a {
  color: #055b96;
  text-decoration: none;
}

.carousel__cap a:hover {
  text-decoration: underline;
}

.carousel__price {
  margin: 1px 0 0;
  font-weight: bold;
}

.carousel__price span {
  color: #9d2108;
}

.article-body {
  font-size: 13px;
  line-height: 1.55;
}

.article-body h1 {
  margin: 8px 0 15px;
  color: var(--heading);
  font: bold 20px/1.3 var(--font);
}

.article-body h2 {
  margin: 18px 0 12px;
  color: var(--heading);
  font: bold 15px/1.3 var(--font);
}

.article-body h3 {
  margin: 0 0 10px;
  color: var(--heading);
  font: bold 15px/1.3 var(--font);
}

.article-body p {
  margin: 0 0 16px;
  text-align: left;
}

.article-body ul,
.article-body ol,
.home-text ul,
.home-text ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

.article-body ul,
.home-text ul {
  list-style: disc url("/assets/image/point.webp");
}

.article-body ol,
.home-text ol {
  list-style: decimal;
}

.article-body li,
.home-text li {
  padding: 3px 0 2px;
}

.article-body img,
.home-text img {
  display: block;
  margin: 20px auto;
  max-width: min(100%, 800px);
}

.col-main table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.col-main table::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.col-main thead,
.col-main tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 600px;
}

.col-main tr {
  display: flex;
  width: 100%;
}

.col-main tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}

.col-main th,
.col-main td {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 110px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 15px;
  text-align: center;
  word-break: break-word;
}

.col-main th:first-child,
.col-main td:first-child {
  justify-content: flex-start;
  text-align: left;
}

.col-main thead th {
  background: rgba(0, 0, 0, 0.06);
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
  color: var(--heading);
  font-weight: bold;
}

.col-main tbody tr:last-child th,
.col-main tbody tr:last-child td {
  border-bottom: none;
}

.article-image {
  max-width: 447px;
  margin: 5px 0 15px;
  padding: 5px;
  background: #f7f8f7;
  border-bottom: 1px solid #bebebe;
  border-right: 1px solid #cccccc;
}

.article-image img {
  display: block;
  max-width: 100%;
  margin: 0;
}

.article-image div {
  margin: 7px 10px 3px 0;
  font-size: 13px;
  font-weight: bold;
}

.contacts-map {
  max-width: 447px;
  margin: 5px 0 15px;
  padding: 5px;
  background: #f7f8f7;
  border-bottom: 1px solid #bebebe;
  border-right: 1px solid #cccccc;
}

.contacts-map a {
  display: block;
}

.contacts-map img {
  display: block;
  width: 100%;
  margin: 0;
}

.article-advise {
  margin-bottom: 16px;
  padding: 10px;
  border: 1px dashed #abadb3;
  background: #fdf3d4;
  font-size: 13px;
}

.article-body .img-left {
  float: left;
  margin: 0 12px 10px 0;
}

.article-advise .img-left,
.article-comment .img-left {
  border: 1px solid #abadb3;
}

.article-advise ul,
.article-comment ul,
.special-offer ul,
.special-list-style ul {
  padding-left: 0;
  list-style: none;
}

.article-advise ul li {
  background: url("/assets/image/wrench.webp") no-repeat 2px 8px;
  padding: 7px 0 2px 26px;
  font-size: 12px;
}

.article-comment {
  clear: both;
  margin-bottom: 16px;
  padding: 10px;
  border: 1px dashed #abadb3;
  background: #f5f4e6;
  font-size: 13px;
}

.article-comment h2,
.article-comment h3 {
  color: var(--heading);
}

.article-comment > div {
  text-align: right;
}

.special-offer {
  position: relative;
  margin-bottom: 16px;
  padding: 10px;
  border: 1px dashed #abadb3;
  background: #fffbf5;
  font-size: 13px;
  line-height: 21px;
}

.special-offer h2,
.special-offer h3 {
  margin: 0 0 10px;
  color: #d61111;
}

.special-offer .wrench-key h2 {
  margin: 0 0 7px;
  color: #555555;
  font: normal 17px/1.3 var(--font-alt);
}

.special-offer strong {
  color: #555555;
}

.special-offer ul li {
  background: url("/assets/image/wrench.webp") no-repeat 2px 8px;
  padding: 7px 0 2px 26px;
  font-style: italic;
  font-size: 12px;
}

.special-offer .wrench-key {
  margin-bottom: 5px;
  padding: 14px 0 14px 120px;
  min-height: 105px;
  background: url("/assets/image/wrench-for-offer.webp") no-repeat left center;
}

.special-offer .wrench-key strong {
  color: var(--heading);
}

.special-offer .wrench-key sup {
  font-size: 10px;
}

.special-list-style {
  float: right;
  max-width: 230px;
  margin: 0 0 10px 16px;
  padding: 8px;
  background: #ffffff;
  border: 1px dotted gold;
  text-align: right;
}

.special-list-style ul li {
  background: none;
  padding: 2px 0;
  font-style: normal;
}

.prices {
  margin: 10px 0;
  padding: 16px 10px 16px 58px;
  background: url("/assets/image/excel.webp") no-repeat 2px 6px;
  font: 17px/1.4 var(--font-alt);
}

.prices a {
  font-size: 17px;
}

.article-body .alphabet {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.article-body .alphabet li {
  padding: 0;
}

.article-body .alphabet a {
  display: block;
  min-width: 28px;
  padding: 5px 0;
  background: #f5f4e6;
  border: 1px solid var(--border);
  color: var(--link);
  font: bold 14px/1.2 var(--font);
  text-align: center;
  text-decoration: none;
}

.article-body .alphabet a:hover {
  color: var(--orange);
}

.faq-list__head {
  padding: 0 0 5px;
  border-bottom: 1px solid var(--border);
  font: bold 13px/1.3 var(--font);
}

.faq-list__item {
  padding: 12px 0 10px;
  border-bottom: 1px solid var(--border);
}

.faq-list__name {
  font-weight: bold;
}

.article-body .faq-list__item p {
  margin: 6px 0 0;
}

.press-list__item {
  margin: 0 0 16px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--border);
}

.article-body .press-list__item h2 {
  margin: 0 0 6px;
  font-size: 15px;
}

.press-list__section {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
}

.article-body .press-list__item p {
  margin: 0;
}

.cat-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 40px;
  margin: 20px 0 10px;
  background: url("/assets/image/sep.webp") repeat-y center;
}

.cat-index__col {
  min-width: 0;
}

.cat-index__group {
  padding: 10px 0 5px;
}

.cat-index__name {
  padding: 0 0 4px 3px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font: bold 15px/1.4 Arial, Helvetica, sans-serif;
}

.cat-index__sub {
  margin-bottom: 14px;
  list-style: none;
}

.cat-index__sub li {
  padding: 4px 0 0 17px;
  background: url("/assets/image/point.webp") no-repeat 2px 8px;
  color: #1688cf;
  font-size: 13px;
}

.cat-box__title a,
.cat-box__list a,
.cat-index__name a,
.cat-index__sub a {
  color: inherit;
  text-decoration: none;
}

.cat-box__title a:hover,
.cat-box__list a:hover,
.cat-index__name a:hover,
.cat-index__sub a:hover {
  text-decoration: underline;
}

.home-text {
  padding-top: 25px;
}

.home-text h1 {
  margin: 0 0 12px;
  color: #606060;
  font: bold 20px/1.3 var(--font);
}

.home-text h2 {
  margin: 20px 0 15px;
  color: #816d6d;
  font: normal 16px/1.3 var(--font);
}

.home-text h3 {
  margin: 0;
  color: #b65615;
  font: normal 16px/1.3 var(--font);
}

.home-text p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.6;
}

.home-text .entry {
  padding: 0 2px 0 7px;
  border-left: 1px solid #adadad;
  border-right: 1px solid #adadad;
  color: #4c4c4c;
  font-size: 13px;
}

.home-text .text_intro {
  padding: 15px 0;
  font-size: 13px;
}

.home-text .high_light {
  margin: 0 0 15px 15px;
  padding: 10px;
  border: 1px dashed #c1c1c1;
  border-radius: 5px;
}

.home-text .unique_features {
  margin-left: 15px;
  padding-left: 10px;
  border-left: 1px solid #c0c0c0;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
}

.two-col .txt p {
  padding-top: 3px;
  font-size: 13px;
  line-height: 17px;
}

.feature_block1,
.feature_block2 {
  margin-bottom: 15px;
  padding: 6px 8px;
}

.feature_block1 {
  background: #e2e2e2;
}

.feature_block1 h3,
.feature_block2 h3 {
  margin: 0;
  color: #004a7f;
  font: bold 13px/1.5 var(--font);
}

.feature_block1 p,
.feature_block2 p {
  margin: 0;
}

.home-text .cat_look {
  margin-bottom: 14px;
  color: #4c4c4c;
  font-size: 13px;
}

.home-text .cat_link {
  color: #3d7a9e;
  font-weight: bold;
}

.home-text .text_format1 {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  font-style: italic;
}

.home-text .spec_offer {
  margin-left: 25px;
}

.home-text .spec_offer h3 {
  margin: 0;
  color: var(--red);
  font: bold 24px/1.5 var(--font);
}

.home-text .spec_offer p {
  margin: 0;
  color: #004a7f;
  font-size: 15px;
}

.home-text .cta h3 {
  color: #816d6d;
  font-size: 16px;
}

.home-text .cta .txt_cta {
  padding-top: 6px;
  font-size: 13px;
}

.bot_pad {
  clear: both;
  height: 10px;
}

@media (max-width: 1180px) {
  .layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .col-right {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 5px solid var(--border);
    background-image: none;
  }
}

@media (max-width: 860px) {
  .layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .col-main {
    order: 1;
  }

  .col-left {
    order: 2;
    border-right: 0;
    border-top: 5px solid var(--border);
  }

  .col-right {
    order: 3;
  }

  .site-top__promo {
    text-align: left;
  }

  .special-list-style {
    float: none;
    max-width: none;
    margin: 0 0 12px;
  }

  .article-body .img-left {
    float: none;
    margin: 0 0 10px;
  }
}

@media (max-width: 620px) {
  .home-text .high_light,
  .home-text .unique_features {
    margin-left: 0;
  }

  .home-text .spec_offer {
    margin-left: 0;
  }

  .special-offer .wrench-key {
    padding: 8px 0 8px 0;
    min-height: 0;
    background: none;
  }

  .main-nav__item {
    flex: 1 1 100%;
  }

  .cat-index,
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .cat-index {
    background: none;
  }
}

@media (max-width: 380px) {
  .page {
    border-left-width: 2px;
    border-right-width: 2px;
  }

  .col-main {
    padding-left: 8px;
    padding-right: 8px;
  }
}
