@font-face {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/Gilroy-Medium.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/Gilroy-Bold.woff2') format('woff2');
  font-display: swap;
}

:root {
  --text-green: #739e4b;
  --text-brown: #af9982;

  --bg-green: #70a341;
  --bg-red: #ff4343;

  --ar-block: rgba(255,255,255,.03);

  --ar-button: rgba(255,255,255,.03);
  --ar-button-hover: rgba(255,255,255,.04);

  --ar-row: transparent;
  --ar-row-hover: rgba(255, 255, 255, .02);

  --ar-color-second: rgba(255, 255, 255, .3);
  --ar-color-first: #fff;

  --ar-border: rgba(255, 255, 255, .05);
  --ar-border-size: 1px;
  --ar-border-radius: 10px;

  --ar-badges: rgba(255, 255, 255, .05);
  --ar-badges-border-radius: 5px;

  --ar-checkbox: rgba(255, 255, 255, .1);
  --ar-checkbox-hover: rgba(255, 255, 255, .15);
  --ar-checkbox-checked: #fff;

  --ar-filter-dropmenu: #52473c;
  --ar-filter-shadow: rgba(0,0,0,.2);
}

/* Сброс, задание параметров */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Gilroy', sans-serif;
  outline: none;
}

body {
  position: relative;
}

body,
html {
  height: 100%;
  width: 100%
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none !important;
}

li,
ul {
  list-style: none;
}

input,
button {
  font-family: inherit;
  outline: none;
  border: none;
  color: inherit;
  background: none;
}

button {
  cursor: pointer;
}

svg {
  cursor: inherit;
}

img,
header,
footer,
main,
section,
nav,
aside,
picture {
  display: block;
}

.lazyload {
  background-color: rgba(255,255,255,.1);
  position: relative;
  backface-visibility: hidden;
  opacity: 0;
  transition: opacity .3s;
}

.lazyload.loaded {
  opacity: 1;
  transition: opacity .3s;
  background: none;
}

body {
  background: url('../images/bg.webp') #372A1D;
  color: var(--text-brown);
  font-size: 12px;
  overflow-x: hidden;
}

.clr {
  clear: both;
}

a img {
  border: 0 none;
}

.wrapper-in {
  width: 1050px;
  margin: 0 auto;
}

.article_in h1 {
  font-size: 16px;
  color: var(--text-green);
  margin-bottom: 7px;
  text-align: center;
}

.xfieldimagegallery {
  margin-top: 20px;
  max-width: 100%;
}

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

a:active {
  color: var(--text-green);
  text-decoration: none;
}

a:visited {
  color: var(--text-green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #fff;
}

.usefull-navigation {
  display: flex;
  flex-wrap: wrap;
}

.usefull-navigation__item {
  color: var(--text-brown) !important;
  height: 45px;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usefull-navigation__item:hover {
  color: #fff !important;
}

.usefull-navigation__item:nth-child(1), .usefull-navigation__item:nth-child(3) {
  border-right: 1px solid rgba(255,255,255,.05);
}

.usefull-navigation__item:nth-child(3), .usefull-navigation__item:nth-child(4) {
  border-top: 1px solid rgba(255,255,255,.05);
}

.menu {
  background: rgba(255,255,255,.1);
  height: 32px;
  font-size: 14px;
  color: #fff;
  line-height: 31px;
  text-align: center;
  font-weight: bold;
  border-radius: 3px 3px 0 0;
  border-top: 1px solid rgba(255,255,255, .1);
}

.totop {
  width: 40px;
  height: 40px;
  display: flex;
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right: 30px;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s;
  background: rgba(0, 0, 0, .8);
  color: #fff;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.totop.showed {
  visibility: visible;
  opacity: 1;
}

/*Header menu*/

#header-activity {
  max-height: 51px;
  width: 1050px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #72AF39, #4F8F13);
  border-radius: 5px 5px 0 0;
  transition: max-height .15s ease-out;
}

.header-menu__fake {
  height: 51px;
  display: none;
}

.header-menu__fake.active {
  display: block;
}

#header-activity.mobiled {
  max-height: 100vh;
  transition: max-height 0.15s ease-in;
}

#header-activity.fixed {
  position: fixed;
  top: 0;
  left: calc(50% - (1050px / 2));
  z-index: 99;
  border-radius: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

#header-activity.fixed .nav-item__addon {
  display: none;
}

#header-activity.fixed #hnav {
  border-radius: 0;
  border: none;
}

#hnav .search {
  position: relative;
  display: flex;
  align-items: center;
}

.search input {
  float: right;
  width: 233px;
  height: 35px;
  background: rgba(0, 0, 0, .6);
  border-radius: 5px;
  border: 0;
  font-size: 12px;
  color: #fff;
  vertical-align: middle;
  padding: 0 0 0 10px;
}

.search .search-submit {
  position: absolute;
  right: 4px;
  top: 4px;
  border-radius: 3px;
  background: #4F8F13;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 27px;
}

.search .search-submit:hover {
  background: #5aa019;
}

.search input::placeholder {
  color: rgba(255, 255, 255, .5)
}

.search input:focus::placeholder {
  color: transparent;
}

#hnav {
  height: 51px;
  width: 1050px;
  border-top: 1px solid rgba(255, 255, 255, .35);
  border-radius: 5px 5px 0 0;
}

.mobile-menu a {
  display: flex;
  height: 40px;
  align-items: center;
  padding: 0 20px;
  border-top: 1px solid rgba(0, 0, 0, .1);
  font-weight: bold;
  color: #fff;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, .05);
}

#hnav li {
  float: left;
  border-right: 1px solid rgba(0, 0, 0, .1);
  height: 50px;
  list-style: none;
  position: relative;
}

#hnav .search-item {
  display: flex;
  float: right;
  align-items: center;
  padding: 0 10px;
  border: none;
}

#hnav .mobile-item {
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 50px;
  float: left;
  cursor: pointer;
}

#hnav .nav-item .nav-item__addon {
  position: absolute;
  padding: 6px 10px;
  border-radius: 5px 5px 0 0;
  top: -28px;
  right: calc(50% - (71px / 2));
  font-size: 12px;
  background: var(--bg-red);
  color: #fff;
  z-index: -1;
  transform: translateY(20px);
  transition: all .2s ease-in-out;
}

#hnav .nav-item:hover .nav-item__addon {
  transform: translateY(0px);
}

#hnav li a {
  height: 100%;
  font-size: 14px;
  font-weight: bold;
  display: block;
  float: left;
  color: #FFF;
  margin: 0;
  padding: 0;
}

#hnav li a span {
  display: block;
  height: 100%;
  line-height: 50px;
  margin: 0;
  padding: 0 15px;
}

#hnav li:last-child a span {
  padding: 0 18px;
}

#hnav li:hover:not(.search-item) {
  background: rgba(255, 255, 255, .05);
}

/*Sidebar menu*/

.side_left {
  width: 219px;
  float: left;
  overflow: hidden;
  margin: 15px 0 20px;
}

.side_right {
  width: 275px;
  float: right;
  overflow: hidden;
  margin: 15px 0 20px;
}

.side_right__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.monitoring-wrapper {
  padding: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bnav {
  background: rgba(255,255,255,.02);
  border-radius: 0 0 3px 3px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.bnav .bnav-row {
  display: flex;
  width: 100%;
}

.bnav .bnav-row:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.bnav-item .bnav-icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
  color: #d3c6b6;
}

.bnav-item .bnav-icon svg {
  width: 15px;
  height: 15px;
}

.bnav-addons {
  display: flex;
  align-items: center;
  margin: 0 15px;
  gap: 7px;
}

.bnav-addon {
  border-radius: 5px;
  background: rgba(255,255,255,.05);
  white-space: nowrap;
  padding: 4px 12px;
  font-size: 14px;
  color: var(--text-brown) !important;
}

.bnav-addon:hover {
  background: rgba(255,255,255,.07);
  color: #fff !important;
}

.bnav-addon.top {
  background: #ffb7001a;
  color: #FFB800;
}

.bnav-item {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
  width: 50%;
}

.bnav-row .bnav-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.05);
}

.bnav-item.addoned {
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding-bottom: 10px;
  width: 100%;
}

.bnav-item .bnav-link {
  padding: 15px 15px;
  color: var(--text-brown);
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
  display: flex;
  border-radius: 5px;
  align-items: center;
  width: 100%;
}

.bnav-item:hover .bnav-link, .bnav-item:hover .bnav-icon {
  color: #fff;
}

.block {
  overflow: hidden;
}

/**/

.name1 {
  padding: 2px;
  margin-bottom: 4px;
  margin-left: 10px;
  width: 40%;
}

.name2 {
  margin-left: 15px;
  margin-right: 10px;
  margin-top: 4px;
}

.search-title {
  font-size: 14px;
  padding: 10px;
  border-radius: 3px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, .03);
}

.header-links {
  position: relative;
  max-width: 1050px;
  margin: 20px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-links img {
  display: block;
}

.info-block {
  background: rgba(255, 255, 255, .03);
  border-radius: 3px;
  padding: 10px;
  margin-bottom: 15px;
}

.info-block__title {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
}

.info-block__subtitle {
  color: var(--text-brown);
}

.content {
  background: rgb(61 50 39);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  padding: 0 9px;
}

.side_center {
  width: 745px;
  position: relative;
  z-index: 10;
  margin: 15px auto 30px 0;
}

.download-block {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.downloads-title {
  font-size: 18px;
}

.highslide {
  margin: 10px 0;
  display: block;
}

.navigation {
  clear: both;
  max-width: 540px;
  margin: 10px 0;
}

.navigation a:link,
.navigation a:visited,
.navigation a:active,
.navigation span {
  color: #fff;
  font-size: 12px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  padding: 10px 15px;
  display: inline-block;
}

.navigation>*:not(:last-child) {
  margin-right: 5px;
}

.navigation a,
.navigation span,
.navigation .nav_ext {
  margin-top: 5px;
}

.navigation a:hover {
  background: #70a341;
  color: #fff;
  text-decoration: none;
}

.navigation .nav_ext {
  background: rgba(255, 255, 255, .03);
}

.navigation span:not(.nav_ext) {
  background: #70a341;
}

.navigation span.nav_ext {
  border: none;
  color: #fff;
}

.speedbar {
  background: rgba(255, 255, 255, .05);
  color: var(--text-brown);
  display: block;
  border-radius: 3px;
  padding: 7px;
  font-size: 13px;
  margin-bottom: 15px;
}

.pointerss {
  cursor: pointer !important;
}

.full-block .view_top {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.02);
  padding: 15px;
  color: #fff;
  text-align: left;
  border-radius: 3px 3px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.full-block .view_top h1 {
  font-size: 20px;
}

.full-block .view_top_meta {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.full-block .view_top_meta .meta-block {
  display: flex;
  gap: 20px;
  align-items: center;
}

.full-block .view_top_meta .meta-info {
  font-size: 14px;
  font-weight: bold;
}

.full-block .view_top_meta .meta-info span {
  color: rgba(255,255,255,.4);
}

.full-block .view_top_meta .meta-info svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,.2);
}

.short-block .view_top {
  font-size: 16px;
  width: 100%;
  font-weight: bold;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.02);
  padding: 15px 20px;
  border-radius: 3px 3px 0 0;
  color: #fff;
  display: block;
  word-break: break-word;
}

.short-block .view_top h1 {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  padding: 0 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
}

.short-block .view_top a {
  font-size: 14px;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
}

.short-block img {
  width: 100%;
}

.short-block .view_cont_in {
  font-size: 14px;
  height: 100%;
}

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

.description-block {
  margin-bottom: 15px;
  background: rgba(255,255,255,.02);
  border-radius: 5px;
  padding: 0 0 10px 0;
  line-height: 1.5;
}

.description-block__cats {
  padding: 0 20px 10px 20px;
}

.description-block__cats.scrolling {
  overflow-y: scroll;
  max-height: 200px;
  position: relative;
  margin: 20px;
  padding: 0 0 20px 0;
}

.description-block__cats.scrolling::-webkit-scrollbar-track {
	border-radius: 10px;
	background: transparent;
}

.description-block__cats.scrolling::-webkit-scrollbar {
	width: 7px;
	background: rgba(255,255,255,.01);
}

.description-block__cats.scrolling::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #6c5949;
}

.description-block__cats.scrolling .childcat-item {
  white-space: nowrap;
  display: inline-flex;
}

.description-block__cats.hidden::after {
  content: 'Развернуть';
  color: #fff;
  text-align: center;
  background: linear-gradient(to top, #2e241a, transparent);
  pointer-events: none;
  bottom: 0;
  line-height: 50px;
  width: 100%;
  height: 50px;
}

.description-block.main-block {
  margin-top: 15px;
}

.category__childcats {
  margin-top: 15px;
}

.childcats__title {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.om-app__category {
  padding: 5px 12px;
  border-radius: 3px;
  font-size: 14px;
  background: rgba(255, 255, 255, .03);
  display: inline-block;
  margin-top: 10px;
  color: var(--text-brown) !important;
  cursor: pointer;
}

.om-app__category:not(.om-app__category_active):hover {
  text-decoration: none !important;
  color: #fff !important;
  background: rgba(255, 255, 255, .05);
}

.om-app__category:not(:last-child) {
  margin-right: 10px;
}

.om-app__categories {
  text-align: left;
  margin-bottom: 20px;
  padding-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, .04)
}

.om-app__category_active {
  background: #70a341;
  color: #fff !important;
}

.om-app__search {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  padding: 8px 12px;
  border-radius: 3px;
  color: #fff !important;
  font-size: 14px;
  resize: none;
  width: 100%;
  margin-bottom: 10px
}

.om-app__search::placeholder {
  color: rgba(255, 255, 255, .2)
}

.om-app__search:focus::placeholder {
  color: transparent
}

.childcat-item {
  padding: 5px 12px;
  border-radius: 3px;
  font-size: 14px;
  background: rgba(255, 255, 255, .03);
  display: inline-block;
  margin-top: 10px;
  color: var(--text-brown) !important;
}

.childcat-item:hover {
  text-decoration: none !important;
  color: #fff !important;
  background: rgba(255, 255, 255, .05);
}

.childcat-item.active {
  background: #70a341;
  color: #fff !important;
}

.childcat-item:not(:last-child) {
  margin-right: 10px;
}

.description-block__header {
  background: rgba(255,255,255,.1);
  height: 45px;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  border-top: 1px solid rgba(255,255,255, .1);
}

.description-block h1 {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
}

.description-block a:hover {
  text-decoration: underline;
}

.description-block h2 {
  font-size: 14px;
}

.description-block__body {
  padding: 20px;
  font-size: 14px;
}

.view_cont {
  overflow: hidden;
}

.short-block .view_cont {
  height: 100%;
}

.view_cont_in {
  color: rgb(255, 255, 255);
  padding: 25px;
  line-height: 1.5;
  font-size: 15px;
  text-align: center;
  word-break: break-word;
}

.view_cont_in h1,
.view_cont_in h2,
.view_cont_in h3,
.view_cont_in h4 {
  color: #fff;
}

.view_cont_in h1 b,
.view_cont_in h2 b,
.view_cont_in h3 b,
.view_cont_in h4 b {
  color: #fff;
}

.view_cont_in .mimg ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.view_cont_in li {
  padding-left: 15px;
  position: relative;
}

.view_cont_in li:before {
  content: '●';
  color: rgba(255, 255, 255, .1);
  display: block;
  font-size: 7px;
  position: absolute;
  top: calc(50% - (7px/2));
  left: 0;
}


.view_cont_in p {
  word-break: keep-all;
  font-size: 15px;
}

.view_cont_in b {
  color: rgba(255, 255, 255);
  font-weight: bold;
}

.xfieldimagegallery li {
  padding-left: 0;
}

.xfieldimagegallery a,
.xfieldimagegallery img {
  display: block !important;
}

.xfieldimagegallery li:before {
  display: none;
}

.view_cont_in2 {
  font-size: 11px;
  color: var(--text-brown);
  padding: 10px 10px 5px;
}

.iconed-block {
  display: flex;
  align-items: center;
}

.iconed-block .meta-icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.short-block img {
  border-radius: 5px;
}

.short-block__meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .3);
}

.meta-left,
.meta-right {
  display: flex;
  align-items: center;
}

.short-block__meta span.info1 {
  float: left;
  margin: 0 0 0 10px;
  padding: 0 0 0 27px;
}

.short-block__meta span.info2 {
  float: left;
  color: rgba(255, 255, 255, .3);
  padding: 0 15px;
  display: flex;
  height: 100%;
  align-items: center;
}

.short-block__meta .meta-info:not(:last-child) {
  margin-right: 15px;
}

.short-block__meta span.info2 span {
  margin-left: 10px;
}

.short-block__footer {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.02);
  padding: 15px;
  border-radius: 0 0 3px 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.short-block__cats {
  font-size: 12px;
  color: rgba(255, 255, 255, .2);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.short-block__cats a {
  color: rgba(255, 255, 255, .3);
}

.short-block__cats a:hover {
  color: #fff;
  text-decoration: none;
}

.short-block__read-button {
  position: absolute;
  right: 15px;
}

.short-block__read-button a {
  display: flex;
  font-size: 13px;
  color: #fff;
  height: 40px;
  font-weight: bold;
  border-radius: 5px;
  align-items: center;
  padding: 0 15px;
  background: rgb(90 77 67);
}

.short-block__read-button a:hover {
  background: var(--bg-green);
  text-decoration: none;
}

.short-block__cats a:not(:last-child):not(:first-child) {
  margin: 0 5px;
}

.short-block__cats a:first-child {
  margin-right: 5px;
}

.short-block__cats a:last-child {
  margin-left: 5px;
}

.short-block__cats a:hover {
  color: #fff;
  text-decoration: none;
}

.short-thumbnail {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  max-height: 300px;
}

.short-thumbnail img {
  display: block;
  height: 100%;
}

.short-thumbnail picture {
  display: flex;
  justify-content: center;
}

.short-text {
  color: #fff;
}

.view_full_cont {
  color: var(--text-brown);
  font-size: 11px;
  margin: 0 -10px 10px;
  padding: 0 10px 10px;
}

.view_full_cont ul {
  list-style: none;
  margin: 0;
}

a.dwnload {
  background: url(../images/dwnload.png);
  width: 112px;
  height: 35px;
  display: block;
  float: right;
  text-indent: -9999px;
  margin: 20px 0 0;
  padding: 0;
}

.full-block, .short-block {
  background: rgba(255, 255, 255, .05);
  border-radius: 3px;
}

.full-block img {
  display: block;
  max-width: 100%;
  border-radius: 5px;
}

.mimg img {
  margin: 30px auto;
}

.full-block .view_cont_in {
  text-align: left;
}

.view_related {
  font-size: 14px;
  margin-top: 20px;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr 1fr;
}

.related-wrap {
  margin-top: 20px;
}

.related-title {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.related-short {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  max-height: 180px;
}

.related-short__header {
  height: 30px;
  background: var(--bg-green);
  color: #fff;
  width: 100%;
  padding-left: 10px;
  line-height: 30px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.related-short__header a {
  color: #fff;
}

.related-short__thumbnail {
  width: 100%;
  background: #534537;
}

.related-short__thumbnail img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center center;
}

.footer {
  max-width: 1050px;
  margin: 0 auto;
  font-size: 14px;
  padding-bottom: 30px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(61 50 39);
  border-top: 1px solid rgba(255,255,255,.03);
  padding: 20px;
  border-radius: 0 0 5px 5px;
}

.topnews li {
  margin-bottom: 4px;
}

.view_top b {
  font-weight: 400;
}

#wrapper-in-body {
  border: 1px solid #322412;
  background-color: #2C2217;
  height: 60px;
  position: relative;
}

/*--Ссылка на скачивание--*/
.yadg {
  margin: 5px;
  text-align: center;
}

.yad a {
  padding: 3px 10px;
  background: #587E0A;
  color: #fff;
  text-shadow: 0px 1px 1px #364D08;
  border-radius: 2px;
  box-shadow: inset 0px 1px 0px #9BC446, inset 0px 3px 7px #83A739, 0px 1px 0px #fff;
  border: 1px solid #5F7E1F;
  cursor: pointer;
}

.yad a:hover {
  background: #45453D;
  color: #fff;
  text-shadow: 0px 1px 1px #000;
  box-shadow: inset 0px 1px 0px #A3A39B, inset 0px 3px 7px #848479, 0px 1px 0px #fff;
  border: 1px solid #45453D;
}

/*--Размер файла--*/
.yad1 {
  text-transform: uppercase;
  margin-left: 7px;
  background: #DBDBDB;
  padding: 3px 10px;
  color: #7C7C7C;
  text-shadow: 0px 1px 1px #fff;
  border-radius: 2px;
  box-shadow: inset 0px 1px 0px #fff, inset 0px 3px 7px #fff;
  border: 1px solid #DBDBDB;
}

.yad1 b {
  color: #597F0B;
}

/*--Количество скачиваний--*/
.yad2 {
  text-transform: uppercase;
  margin-left: 7px;
  background: #DBDBDB;
  padding: 3px 10px;
  color: #7C7C7C;
  text-shadow: 0px 1px 1px #fff;
  border-radius: 2px;
  box-shadow: inset 0px 1px 0px #fff, inset 0px 3px 7px #fff;
  border: 1px solid #DBDBDB;
}

.yad2 b {
  color: #597F0B;
}

.disp-n {
  display: none !important;
}

.dpad {
  margin-bottom: 10px;
}

.information1 {
  margin-top: 17px;
  height: 80px;
  background: rgba(138, 129, 23, 0.46);
  border-radius: 8px;
  border: 1px solid #5f4831;
}

.information1 p {
  display: block;
  padding: 2px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.bnnavi {
  display: flex;
  justify-content: center;
  width: 100%;
}

.noyscroll {
  overflow-y: hidden;
}

#gotop {
  position: fixed;
  width: 41px;
  height: 41px;
  right: 7px;
  bottom: 20px;
  display: block;
  background: url(../images/go.png) no-repeat;
  z-index: 9998;
  display: none;
}

.side_right__close {
  display: none;
  position: fixed;
  top: 30px;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background: rgba(255,255,255,.02);
  color: #fff;
  align-items: center;
  justify-content: center;
}

.side_right__close svg {
  width: 25px;
  height: 25px;
}

.category-card {
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,.03);
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.category-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.category-card__link {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.category-card__body {
  display: flex;
}

.category-card__body .slick-list {
  padding-top: 5px;

}

.category-card__body .slick-list::after {
  content: '';
  display: block;
  height: 100%;
  width: 200px;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to left,rgb(61 50 39) 0%, transparent 100%);
  pointer-events: none;
}

.category-card__body .slick-slide {
  transition: all .15s cubic-bezier(0.5,0.1,0.2,0.9);
}

.category-card__body .slick-slide:hover {
  transform: translateY(-5px);
}

.category-card__body.noslider {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.category-card__body.noslider .shortskin {
  flex: 1;
}

.content-title {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.content-title__icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.content-title__icon svg {
  fill: rgba(255,255,255,.2);
}

.category-card .slider-arrow, .gallery-for .slider-arrow {
  width: 40px;
  height: 40px;
  background: #554636;
  color: #fff;
  position: absolute;
  top: calc(50% - (40px / 2));
  box-shadow: 0 0 0px 5px rgb(61 50 39);
  display: flex;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  z-index: 60;
}

.gallery-for .slider-arrow {
  box-shadow: 0 0 0px 5px #473c32;
}

.gallery-for .slider-next {
  right: -10px;
}

.slider-next {
  right: -10px;
}

.slider-prev {
  left: -10px;
  display: none !important;
}

.gallery-for .slider-prev {
  left: -10px;
  display: flex !important;
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.category-card__title {
  font-size: 20px;
  color: #fff !important;
  font-weight: 700;
}

.side_right .block-topmenu {
  display: none;
}

.side_right .block-topmenu .bnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.side_right .block-topmenu .bnav__bg-item {
  flex: 1;
  padding: 10px 15px;
  border-radius: 5px;
  background: rgba(255,255,255,.05);
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.side_right .block-topmenu .bnav__bg-item:hover {
  background: var(--bg-green);
}

.mco-block {
  display: block;
  text-align: center;
}

.article-minicard {
  height: 100%;
}

.article-minicard__inner {
  width: 170px;
  min-height: 230px;
  background: rgba(255, 255, 255, .03);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-minicard__cover {
  width: 100%;
  display: block;
}

.article-minicard__cover img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: center top;
}

.article-minicard__meta {
  padding: 0 15px 10px 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-minicard__meta .minicard-meta__item {
  border-radius: 5px;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

.article-minicard__meta .minicard-meta__item svg {
  width: 24px;
  height: 24px;
}

.article-minicard__title {
  color: #fff !important;
  font-size: 14px;
  display: block;
  font-weight: 700;
  padding: 10px;
  word-wrap: break-word;
}

@media (max-width: 1068px) {
  .header-links {
    width: 100%;
    max-width: 860px;
  }

  #header-activity {
    width: 100%;
    max-width: 860px;
  }

  #header-activity.fixed {
    left: calc(50% - (860px / 2));
  }

  #hnav {
    width: 100%;
    max-width: 860px;
  }

  #hnav li a span {
    padding: 0 12px;
    font-size: 12px;
  }

  .wrapper-in {
    width: 100%;
    max-width: 860px;
  }

  #fast_form {
    width: 100%;
    max-width: 860px;
  }

  #fast_form li {
    padding: 13px 9px 13px 1px;
  }

  #fast_form li a {
    font-size: 12px;
  }

  #fast_form>* {
    margin: 0;
  }

  .content {
    width: 100%;
    max-width: 860px;
  }

  .side_left {
    width: 190px;
  }

  .side_right {
    width: 265px;
  }

  .side_center {
    width: 563px;
  }

  .view_cont img {
    max-width: 100%;
  }

  #footer_in {
    width: 100%;
    max-width: 860px;
  }

  .footer {
    max-width: 860px;
  }

  .top_hdr_txt ul {
    width: 100%;
    max-width: 860px;
  }
}

@media (max-width: 860px) {
  .top_hdr_txt ul li {
    margin: 4px 20px 0 15px;
  }

  .header-banner {
    display: none;
  }

  .mco-block {
    display: none;
  }

  .search input {
    float: left;
  }

  #header-activity {
    margin: 0 auto;
  }

  #header-activity.fixed {
    left: 0;
    width: 100%;
  }

  #hnav .nav-item {
    display: none;
  }

  #hnav .mobile-item {
    display: flex;
  }

  #hnav li {
    float: none;
    display: inline-block;
    vertical-align: top;
  }

  #wrapper-in-body {
    height: inherit;
  }

  #fast_form {
    position: inherit;
    left: 0;
    top: 0;
    transform: inherit;
  }

  .side_left {
    width: 100%;
    float: none;
    order: 2;
  }

  .content {
    padding: 20px 15px 0 15px;
  }

  .side_right {
    width: 100%;
    height: 100%;
    position: fixed;
    overflow-y: auto;
    left: 0;
    top: 0;
    padding: 30px;
    display: none;
    margin: 0;
    background: rgba(61, 50, 39, .9);
    backdrop-filter: blur(20px);
    z-index: 99;
  }

  .side_right .block-topmenu {
    display: block;
    margin-bottom: 20px;
  }

  .side_right .block-topmenu .bnav__bg-item {
    display: flex;
  }

  .side_right .block {
    width: 85%;
    transform: translateX(-300px);
    transition: all .15s cubic-bezier(0.5,0.1,0.2,0.9);
  }

  .side_right__close {
    display: flex;
  }

  .side_right.active .block {
    transform: translateX(0);
  }

  .side_right.active {
    display: block;
  }

  .block {
    width: 100%;
  }

  .block-cont {
    width: 100%;
  }

  .side_center {
    width: 100%;
    margin: 0;
    order: 1;
  }

  .view_bottom {
    width: 100%;
    height: inherit;
  }

  .view_bottom span.info2 {
    float: none;
  }

  .navigation a:link {
    display: inline-block;
    margin-bottom: 4px;
  }

  .comm_top {
    background: #105810;
    height: inherit;
  }

  #idAreawscomm,
  #vk_comments,
  #vk_comments>iframe {
    width: 100% !important;
  }

  .content {
    display: flex;
    flex-direction: column;
  }

  .content.main-page {
    flex-direction: column-reverse;
  }
}

@media (max-width: 660px) {
  .category-card__body.noslider .shortskin:nth-child(4) {
    display: none;
  }
}

@media (max-width: 500px) {
  .flex-video>iframe {
    width: 100% !important;
  }

  .grid-cont-buttons {
    grid-template-columns: 1fr !important;
  }

  #hnav .search input {
    max-width: 233px;
  }

  .download-minimal__filename {
    max-width: 280px;
  }

  .info-text .links>a {
    display: block;
  }

  .skin-cols-overlay {
    display: flex !important;
  }

  .header-links {
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .category-card__body.noslider .shortskin:nth-child(3) {
    display: none;
  }

  .view_related {
    grid-template-columns: 1fr;
  }
}

.leftimg {
  float: left;
  /* Выравнивание по левому краю */
  margin: 7px 7px 7px 0;
  /* Отступы вокруг картинки */
  border-radius: 5px;
}

.rightimg {
  float: right;
  /* Выравнивание по правому краю  */
  margin: 7px 0 7px 7px;
  /* Отступы вокруг картинки */
  border-radius: 5px;
}

/* Skins */

.shortskin {
  display: flex;
  position: relative;
  background: rgba(255,255,255,.05);
  border-radius: 5px;
}

.shortskin__thumbnail {
  display: block;
  width: 100px;
}

.shortskin__inner {
  width: 100%;
}

.shortskin__skinwrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  width: 100%;
}

.shortskin__categories {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  z-index: 3;
}

.shortskin__categories a {
  padding: 5px 10px;
  border-radius: 5px;
  background: #2e241abb;
  color: #fff;
  margin-right: 5px;
  white-space: nowrap;
  margin-bottom: 5px;
  display: inline-flex;
  backdrop-filter: blur(10px);
  transition: all .2s ease-in-out;
}

.shortskin__categories a:hover {
  background: var(--bg-green);
}

.shortskin__categories a:first-child {
  display: none;
}

.skin3d {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.skin3d canvas {
  display: block;
  cursor: grab;
}

.btn-skin-anim {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--bg-green);
}

.skin-cols-overlay {
  position: absolute;
  border-radius: 5px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(74,59,45,.7);
  backdrop-filter: blur(4px);
  color: #fff;
}

.grid-cont-buttons {
  display: flex;
  flex-flow: wrap;
  gap: 15px;
  margin-top: 15px;
}

.grid-cont-buttons > *:nth-child(1), .grid-cont-buttons > *:nth-child(2) {
  flex: 1;
  min-width: 10%;
}

.grid-cont-buttons > *:nth-child(3) {
  flex: 1;
  min-width: 100%;
}

.grid-cont-buttons .download-block {
  margin-top: 0;
}

.grid-cont-buttons .download-block .attachment {
  width: 100% !important;
}

/* Multiple downloads block */

.download-minimal {
  display: flex;
  align-items: center;
  margin-top: 10px;
  background: rgba(255,255,255,.05);
  border-radius: 3px;
}

.download-minimal:hover .attachment-info {
  color: #fff;
}

.download-minimal__filename {
  width: 100%;
  flex: 3;
  height: 100%;
}

.download-minimal__inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 35px;
}

.download-minimal__filename .attachment {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.download-minimal .attachment-info {
  padding: 0 10px;
  background: transparent;
  height: 100%;
  display: flex;
  color: rgba(255,255,255,.3);
  align-items: center;
  font-weight: normal;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,.05);
}

.download-minimal__inner .attachment-file {
  border: none;
  flex: 3;
  justify-content: flex-start;
  text-align: left;
  color: rgba(255,255,255,.3);
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.download-minimal__inner .attachment-info__icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.download-minimal__inner .attachment-info svg {
  width: 20px;
  height: 20px;
}

.download-minimal__meta {
  height: 100%;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,.05);
  color: rgba(255,255,255,.3);
}

.full-block__downloads {
  padding: 20px;
  margin-top: 20px;
  border-radius: 5px;
  background:rgba(255,255,255,.03);
}

.full-block__downloads-warning {
  padding: 13px;
  border-radius: 5px;
  background: #ffb7001a;
  margin-top: 15px;
  font-size: 14px;
}

.full-block__downloads-warning h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.downloads-body {
  max-height: 230px;
  overflow-y: hidden;
  transition: all .2s ease-in-out;
  font-size: 14px;
}

.downloads-body.opened {
  max-height: 1500px;
}

.downloads-button__show-more {
  display: flex;
  align-items: center;
  margin-top: 10px;
  height: 40px;
  color: #fff;
  justify-content: center;
  background: rgba(255,255,255,.07);
  border-radius: 3px;
  cursor: pointer;
}

.downloads-button__show-more:hover {
  background: rgba(255,255,255,.1);
}

/* Install block */

.install-block {
  background: rgba(255, 255, 255, .03);
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
}

.install-block__title {
  font-size: 18px;
}

.install-block__content {
  padding-top: 20px;
}

.install-block__content:not(.active) {
  display: none;
}

.install-block__launcher-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  padding-top: 15px;
}

.install-block__launcher-toggles--button {
  display: flex;
  align-items: center;
  height: 35px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .05);
  padding: 0 13px;
}

.install-block__launcher-toggles--button.active {
  background: #70a341;
  color: #fff;
}

/* Video tutorial block */

.video-tutorial {
  margin: 20px 0;
  background: rgba(255, 255, 255, .03);
  padding: 20px;
  border-radius: 5px;
}

.video-tutorial__frame {
  border-radius: 5px;
  overflow: hidden;
}

.video-tutorial__title {
  margin-bottom: 20px;
}