body > header {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000000;
  backdrop-filter: blur(5px);
  padding: 0 30px;
  right: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--ce);
}
body > header > div {
  height: 100px;
}
body > header .logo {
  transition: all 200ms linear;
  overflow: hidden;
  max-width: 200px;
}
body > header .logo a {
  display: flex;
  align-items: center;
}
body > header nav ul {
  gap: 40px;
}
body > header nav ul li a {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
}
body > header nav ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 3px;
  width: 0;
  height: 3px;
  background-color: var(--text);
  opacity: 0.5;
}
body > header nav ul li a:hover:after {
  width: 40px;
}
body > header nav ul li a:hover {
  color: var(--primary);
}
body > header nav ul li.active a:after, body > header nav ul li.current a:after {
  width: 40px;
  background-color: var(--dark-indigo);
  opacity: 1;
}
body > header nav ul li ul {
  opacity: 0;
  position: absolute;
}
body > header .right {
  display: flex;
  gap: 40px;
  align-items: center;
}
body > header .right .configurator > i.fi {
  color: var(--main-color);
  position: relative;
  top: 1px;
}
body > header .right .icon:not(.buttonLink) {
  font-size: 16px;
  color: var(--dark);
}
body > header .right .fastContact,
body > header .right .mobile {
  display: none;
}
body > header .right .searchBox .searchInit {
  font-size: 16px;
  color: var(--dark);
  display: flex;
}
body > header .right .searchBox .searchInit:hover i {
  color: var(--dark-indigo);
}
body > header .right .searchBox .searchForm {
  overflow: hidden;
  display: none;
  position: absolute;
  right: 0;
  top: 110px;
}
body > header .right .searchBox .searchForm form {
  min-width: 320px;
  background-color: var(--white);
  border: 2px solid var(--light);
  border-radius: 10px;
  display: flex;
  overflow: hidden;
}
body > header .right .searchBox .searchForm form input {
  width: 100px;
  flex: auto;
  height: 50px;
  border: none;
  padding: 0 20px;
  font-size: 16px;
}
body > header .right .searchBox .searchForm form input:focus {
  outline: none;
}
body > header .right .searchBox .searchForm form button {
  background-color: transparent;
  color: var(--dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  cursor: pointer;
}
body > header .right .searchBox .searchForm form button i {
  font-size: 18px;
}
body > header .right:has(.configuratorCode) {
  flex: auto;
  justify-content: flex-end;
}
body > header .right:has(.configuratorCode) > * {
  order: 2;
}
body > header .right .configuratorCode {
  max-width: 400px;
  order: 0;
  height: 49px;
  flex: auto;
  display: flex;
  align-items: center;
  background-color: var(--white);
  overflow: hidden;
  border-radius: 30px;
  margin-right: -15px;
  border: 1px solid var(--cd);
}
body > header .right .configuratorCode input {
  height: 100%;
  padding: 0 20px;
  border: none;
  font-size: 14px;
  flex: auto;
  width: 100px;
}
body > header .right .configuratorCode button {
  height: 49px;
  border: 2px solid var(--dark);
  background-color: transparent;
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  gap: 10px;
  border-radius: 30px;
}
body > header .right .configuratorCode button:hover {
  background-color: var(--dark);
  color: var(--white);
}
body > header .right .fastContact.buttonLink {
  order: 1;
  display: inline-flex;
}
body > header .right .prev {
  position: relative;
  top: 2px;
}
body > section .newsCategory {
  background-color: var(--light);
  padding: 40px 0;
}
body > section .newsCategory ul.nav {
  gap: 20px;
}
body > section .newsCategory ul.nav li a {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  min-width: 120px;
  border-radius: 30px;
  text-align: center;
  padding: 0 30px;
  border-width: 1px;
  gap: 11px;
  letter-spacing: 1px;
  border: 2px solid var(--dark);
  color: var(--dark);
}
body > section .newsCategory ul.nav li a:hover {
  background-color: var(--dark);
  color: var(--light);
}
body > section .newsCategory ul.nav li.current a {
  background-color: var(--dark);
  color: var(--light);
}
body > section .articles-list {
  margin-top: var(--mt120);
}
body > section .articles-list .list {
  gap: 20px;
  justify-content: flex-start;
}
body > section .articles-list .item {
  align-self: stretch;
  background-color: var(--dark);
  border-radius: 10px;
  overflow: hidden;
  max-width: 490px;
  width: 340px;
  flex: auto;
}
body > section .articles-list .item .text {
  padding: 40px 40px 50px;
}
body > section .articles-list .item .text .meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}
body > section .articles-list .item .text .meta .date,
body > section .articles-list .item .text .meta .cat {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 14px;
  opacity: 0.6;
  letter-spacing: 0.5px;
  font-weight: 300;
  color: var(--white);
}
body > section .articles-list .item .text .meta .date i,
body > section .articles-list .item .text .meta .cat i {
  font-size: 18px;
}
body > section .articles-list .item .text .meta .cat:hover {
  opacity: 1;
  color: var(--main-color);
}
body > section .articles-list .item .text .title {
  margin: 24px 0;
}
body > section .articles-list .item .text .title a {
  font-size: var(--h5);
  color: var(--white);
}
body > section .articles-list .item .text .more {
  color: var(--main-color);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
}
body > section .articles-list .item .text .more i {
  font-size: 18px;
}
body > section .articles-list .item .text:has(h3:hover) .more i, body > section .articles-list .item .text:has(a:hover) .more i {
  transform: translateX(4px);
}
body > section .article-layout-wrap {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 20px;
  margin-top: var(--mt120);
}
body > section .article-layout-wrap .leftnav {
  box-sizing: border-box;
  width: 300px;
  min-width: 360px;
  width: 360px;
  background-color: var(--dark);
  border-radius: 10px;
  overflow: hidden;
  padding: 50px 30px;
  position: sticky;
  top: 140px;
  align-self: flex-start;
}
body > section .article-layout-wrap .leftnav h3 {
  font-size: var(--h5);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
}
body > section .article-layout-wrap .leftnav.no-toc .toc-list {
  display: none;
}
body > section .article-layout-wrap .leftnav .toc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
body > section .article-layout-wrap .leftnav .toc-list li + li {
  margin-top: 6px;
}
body > section .article-layout-wrap .leftnav .toc-list a {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  color: var(--light);
  text-decoration: none;
  padding: 5px 0;
  transition: all 200ms linear;
}
body > section .article-layout-wrap .leftnav .toc-list a.sub {
  padding-left: 15px;
  font-size: 14px;
}
body > section .article-layout-wrap .leftnav .toc-list a:hover {
  opacity: 0.8;
}
body > section .article-layout-wrap .leftnav .toc-list a.active {
  color: var(--main-color);
  font-weight: 600;
  opacity: 1;
}
body > section .article-layout-wrap .leftnav .rating {
  border-top: 1px solid var(--lldark);
  padding-top: 30px;
}
body > section .article-layout-wrap .leftnav .rating .yrvote_box .info {
  font-size: 12px;
  border-radius: 6px;
  padding: 5px 10px;
  margin-bottom: 8px;
  min-height: 0;
  display: none;
  text-align: center;
}
body > section .article-layout-wrap .leftnav .rating .yrvote_box .info.visible {
  display: block;
}
body > section .article-layout-wrap .leftnav .rating .yrvote_box .info.is-success {
  background: #e2f5e2;
  color: #2eb82e;
}
body > section .article-layout-wrap .leftnav .rating .yrvote_box .info.is-error {
  background: #fde8e8;
  color: #c02b2b;
}
body > section .article-layout-wrap .leftnav .rating .yrvote_box .list {
  gap: 4px;
  text-align: center;
  justify-content: center;
}
body > section .article-layout-wrap .leftnav .rating .yrvote_box .list span {
  font-size: 20px;
  cursor: pointer;
  color: var(--light);
  transition: color 0.15s;
}
body > section .article-layout-wrap .leftnav .rating .yrvote_box .list span i {
  pointer-events: none;
}
body > section .article-layout-wrap .leftnav .rating .yrvote_box .list span.active, body > section .article-layout-wrap .leftnav .rating .yrvote_box .list span.hover {
  color: var(--main-color);
}
body > section .article-layout-wrap .leftnav .rating .yrvote_box .total {
  font-size: 12px;
  color: var(--light);
  margin-top: 3px;
}
body > section .article-layout-wrap .leftnav .rating .yrvote_box .total .rate_rate {
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
}
body > section .article-layout-wrap .com-content-article__body {
  flex: auto;
  width: 300px;
  margin-top: 0;
}/*# sourceMappingURL=template.css.map */