@charset "UTF-8";
.datepicker--cells {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.datepicker--cell {
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  position: relative;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 32px;
  z-index: 1;
}

.datepicker--cell.-focus- {
  background: #f0f0f0;
}

.datepicker--cell.-current- {
  color: #4EB5E6;
}

.datepicker--cell.-current-.-focus- {
  color: #4a4a4a;
}

.datepicker--cell.-current-.-in-range- {
  color: #4EB5E6;
}

.datepicker--cell.-in-range- {
  background: rgba(92, 196, 239, 0.1);
  color: #4a4a4a;
  border-radius: 0;
}

.datepicker--cell.-in-range-.-focus- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell.-disabled- {
  cursor: default;
  color: #aeaeae;
}

.datepicker--cell.-disabled-.-focus- {
  color: #aeaeae;
}

.datepicker--cell.-disabled-.-in-range- {
  color: #a1a1a1;
}

.datepicker--cell.-disabled-.-current-.-focus- {
  color: #aeaeae;
}

.datepicker--cell.-range-from- {
  border: 1px solid rgba(92, 196, 239, 0.5);
  background-color: rgba(92, 196, 239, 0.1);
  border-radius: 4px 0 0 4px;
}

.datepicker--cell.-range-to- {
  border: 1px solid rgba(92, 196, 239, 0.5);
  background-color: rgba(92, 196, 239, 0.1);
  border-radius: 0 4px 4px 0;
}

.datepicker--cell.-selected-, .datepicker--cell.-selected-.-current- {
  color: #fff;
  background: #5cc4ef;
}

.datepicker--cell.-range-from-.-range-to- {
  border-radius: 4px;
}

.datepicker--cell.-selected- {
  border: none;
}

.datepicker--cell.-selected-.-focus- {
  background: #45bced;
}

.datepicker--cell:empty {
  cursor: default;
}

.datepicker--days-names {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 8px 0 3px;
}

.datepicker--day-name {
  color: #FF9A19;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: .8em;
}

.-only-timepicker- .datepicker--content, .datepicker--body, .datepicker-inline .datepicker--pointer {
  display: none;
}

.datepicker--cell-day {
  width: 14.28571%;
}

.datepicker--cells-months {
  height: 170px;
}

.datepicker--cell-month {
  width: 33.33%;
  height: 25%;
}

.datepicker--cells-years, .datepicker--years {
  height: 170px;
}

.datepicker--cell-year {
  width: 25%;
  height: 33.33%;
}

.datepickers-container {
  position: absolute;
  left: 0;
  top: 0;
}

@media print {
  .datepickers-container {
    display: none;
  }
}

.datepicker {
  background: #fff;
  border: 1px solid #dbdbdb;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  font-family: Tahoma,sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  width: 250px;
  position: absolute;
  left: -100000px;
  opacity: 0;
  transition: opacity .3s ease,left 0s .3s,-webkit-transform .3s ease;
  -webkit-transition: opacity .3s ease,left 0s .3s,-webkit-transform .3s ease;
  transition: opacity .3s ease,transform .3s ease,left 0s .3s;
  transition: opacity .3s ease,transform .3s ease,left 0s .3s,-webkit-transform .3s ease;
  z-index: 100;
}

.datepicker.-from-top- {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.datepicker.-from-right- {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}

.datepicker.-from-bottom- {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

.datepicker.-from-left- {
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
}

.datepicker.active {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
  transition: opacity .3s ease,left 0s 0s,-webkit-transform .3s ease;
  -webkit-transition: opacity .3s ease,left 0s 0s,-webkit-transform .3s ease;
  transition: opacity .3s ease,transform .3s ease,left 0s 0s;
  transition: opacity .3s ease,transform .3s ease,left 0s 0s,-webkit-transform .3s ease;
}

.datepicker-inline .datepicker {
  border-color: #d7d7d7;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.datepicker--content {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 4px;
}

.datepicker--pointer {
  position: absolute;
  background: #fff;
  border-top: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
  width: 10px;
  height: 10px;
  z-index: -1;
}

.datepicker--nav-action:hover, .datepicker--nav-title:hover {
  background: #f0f0f0;
}

.-top-center- .datepicker--pointer, .-top-left- .datepicker--pointer, .-top-right- .datepicker--pointer {
  top: calc(100% - 4px);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.-right-bottom- .datepicker--pointer, .-right-center- .datepicker--pointer, .-right-top- .datepicker--pointer {
  right: calc(100% - 4px);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.-bottom-center- .datepicker--pointer, .-bottom-left- .datepicker--pointer, .-bottom-right- .datepicker--pointer {
  bottom: calc(100% - 4px);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

.-left-bottom- .datepicker--pointer, .-left-center- .datepicker--pointer, .-left-top- .datepicker--pointer {
  left: calc(100% - 4px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.-bottom-left- .datepicker--pointer, .-top-left- .datepicker--pointer {
  left: 10px;
}

.-bottom-right- .datepicker--pointer, .-top-right- .datepicker--pointer {
  right: 10px;
}

.-bottom-center- .datepicker--pointer, .-top-center- .datepicker--pointer {
  left: calc(50% - 10px / 2);
}

.-left-top- .datepicker--pointer, .-right-top- .datepicker--pointer {
  top: 10px;
}

.-left-bottom- .datepicker--pointer, .-right-bottom- .datepicker--pointer {
  bottom: 10px;
}

.-left-center- .datepicker--pointer, .-right-center- .datepicker--pointer {
  top: calc(50% - 10px / 2);
}

.datepicker--body.active {
  display: block;
}

.datepicker--nav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #efefef;
  min-height: 32px;
  padding: 4px;
}

.-only-timepicker- .datepicker--nav {
  display: none;
}

.datepicker--nav-action, .datepicker--nav-title {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  cursor: pointer;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.datepicker--nav-action {
  width: 32px;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.datepicker--nav-action.-disabled- {
  visibility: hidden;
}

.datepicker--nav-action svg {
  width: 32px;
  height: 32px;
}

.datepicker--nav-action path {
  fill: none;
  stroke: #9c9c9c;
  stroke-width: 2px;
}

.datepicker--nav-title {
  border-radius: 4px;
  padding: 0 8px;
}

.datepicker--buttons, .datepicker--time {
  border-top: 1px solid #efefef;
  padding: 4px;
}

.datepicker--nav-title i {
  font-style: normal;
  color: #9c9c9c;
  margin-left: 5px;
}

.datepicker--nav-title.-disabled- {
  cursor: default;
  background: 0 0;
}

.datepicker--buttons {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.datepicker--button {
  color: #4EB5E6;
  cursor: pointer;
  border-radius: 4px;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  height: 32px;
}

.datepicker--button:hover {
  color: #4a4a4a;
  background: #f0f0f0;
}

.datepicker--time {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
}

.datepicker--time.-am-pm- .datepicker--time-sliders {
  -ms-flex: 0 1 138px;
  -webkit-box-flex: 0;
          flex: 0 1 138px;
  max-width: 138px;
}

.-only-timepicker- .datepicker--time {
  border-top: none;
}

.datepicker--time-sliders {
  -ms-flex: 0 1 153px;
  -webkit-box-flex: 0;
          flex: 0 1 153px;
  margin-right: 10px;
  max-width: 153px;
}

.datepicker--time-label {
  display: none;
  font-size: 12px;
}

.datepicker--time-current {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  font-size: 14px;
  text-align: center;
  margin: 0 0 0 10px;
}

.datepicker--time-current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}

.datepicker--time-current-hours, .datepicker--time-current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic",CenturyGothic,AppleGothic,sans-serif;
  position: relative;
  z-index: 1;
}

.datepicker--time-current-hours:after, .datepicker--time-current-minutes:after {
  content: '';
  background: #f0f0f0;
  border-radius: 4px;
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}

.datepicker--time-current-hours.-focus-:after, .datepicker--time-current-minutes.-focus-:after {
  opacity: 1;
}

.datepicker--time-current-ampm {
  text-transform: uppercase;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  color: #9c9c9c;
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}

.datepicker--time-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  font-size: 11px;
  height: 17px;
  background: -webkit-gradient(linear, left top, right top, from(#dedede), to(#dedede)) left 50%/100% 1px no-repeat;
  background: -webkit-linear-gradient(left, #dedede, #dedede) left 50%/100% 1px no-repeat;
  background: linear-gradient(to right, #dedede, #dedede) left 50%/100% 1px no-repeat;
}

.datepicker--time-row:first-child {
  margin-bottom: 4px;
}

.datepicker--time-row input[type=range] {
  background: 0 0;
  cursor: pointer;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}

.datepicker--time-row input[type=range]::-ms-tooltip {
  display: none;
}

.datepicker--time-row input[type=range]:hover::-webkit-slider-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type=range]:hover::-moz-range-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type=range]:hover::-ms-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type=range]:focus {
  outline: 0;
}

.datepicker--time-row input[type=range]:focus::-webkit-slider-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef;
}

.datepicker--time-row input[type=range]:focus::-moz-range-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef;
}

.datepicker--time-row input[type=range]:focus::-ms-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef;
}

.datepicker--time-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -webkit-transition: background .2s;
  transition: background .2s;
  margin-top: -6px;
}

.datepicker--time-row input[type=range]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -moz-transition: background .2s;
  transition: background .2s;
}

.datepicker--time-row input[type=range]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -ms-transition: background .2s;
  transition: background .2s;
}

.datepicker--time-row input[type=range]::-webkit-slider-runnable-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: 0 0;
}

.datepicker--time-row input[type=range]::-moz-range-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: 0 0;
}

.datepicker--time-row input[type=range]::-ms-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: 0 0;
}

.datepicker--time-row input[type=range]::-ms-fill-lower {
  background: 0 0;
}

.datepicker--time-row input[type=range]::-ms-fill-upper {
  background: 0 0;
}

.datepicker--time-row span {
  padding: 0 12px;
}

.datepicker--time-icon {
  color: #9c9c9c;
  border: 1px solid;
  border-radius: 50%;
  font-size: 16px;
  position: relative;
  margin: 0 5px -1px 0;
  width: 1em;
  height: 1em;
}

.datepicker--time-icon:after, .datepicker--time-icon:before {
  content: '';
  background: currentColor;
  position: absolute;
}

.datepicker--time-icon:after {
  height: .4em;
  width: 1px;
  left: calc(50% - 1px);
  top: calc(50% + 1px);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.datepicker--time-icon:before {
  width: .4em;
  height: 1px;
  top: calc(50% + 1px);
  left: calc(50% - 1px);
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #ccc;
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
  background: 0 0;
  border: none;
}

@font-face {
  font-family: 'ALS Sector';
  src: local("ALS Sector"), url("../fonts/als/als_sector-bold.woff2") format("woff2"), url("../fonts/als/als_sector-bold.woff") format("woff"), url("../fonts/als/als_sector-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'ALS Sector';
  src: local("ALS Sector"), url("../fonts/als/als_sector.woff2") format("woff2"), url("../fonts/als/als_sector.woff") format("woff"), url("../fonts/als/als_sector.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

hr {
  margin-bottom: 28px;
  margin-top: 28px;
  border-color: #e6e6e6;
}

::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

:focus::-webkit-input-placeholder {
  opacity: 0;
}

:focus::-moz-placeholder {
  opacity: 0;
}

:focus:-moz-placeholder {
  opacity: 0;
}

:focus:-ms-input-placeholder {
  opacity: 0;
}

.error ::-webkit-input-placeholder {
  color: #f33;
}

.error ::-moz-placeholder {
  color: #f33;
}

.error :-moz-placeholder {
  color: #f33;
}

.error :-ms-input-placeholder {
  color: #f33;
}

.error input,
.error textarea {
  border-color: #f33 !important;
  color: #f33;
}

.form-group--placeholder-fix.error label.error {
  color: #f33;
}

.form-group--placeholder-fix.error label.placeholder {
  opacity: 1;
}

.aside-form-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.aside-form-box {
  padding: 20px 20px 20px 20px;
  border-bottom: 1px solid #ededed;
}

.aside-form-box .wrap-check {
  min-width: 0;
}

.aside-form-box.no-border-bottom {
  border-bottom: none;
}

@media (max-width: 1280px) {
  .news-first .image-lg {
    height: 370px;
  }
  .news-first .news-title {
    font-size: 1.8em;
    line-height: 1.1em;
  }
}

@media (max-width: 1200px) {
  .news-first .image-lg {
    height: 315px;
  }
}

@media (max-width: 991px) {
  .header-wiget-list li {
    margin-top: 6px;
  }
  .docs-preview-text {
    height: auto;
  }
  .docs-preview-text:after {
    display: none;
  }
  .header-user {
    float: left !important;
    margin-left: 15px;
    margin-bottom: 20px;
  }
}

.open-modal {
  cursor: pointer;
}

.open-modal:hover {
  color: #23527c;
}

.modal-open .modal,
.modal.in {
  z-index: 2147473677 !important;
}

.modal-backdrop {
  z-index: 2147473657 !important;
}

@media (min-width: 1700px) {
  .modal-wide .modal-dialog {
    width: 1650px;
  }
}

@media (max-width: 1700px) {
  .modal-wide .modal-dialog {
    width: 1400px;
  }
}

@media (max-width: 1500px) {
  .modal-wide .modal-dialog {
    width: 1200px;
  }
}

@media (max-width: 1300px) {
  .modal-wide .modal-dialog {
    width: 1100px;
  }
}

@media (max-width: 1120px) {
  .modal-wide .modal-dialog {
    width: 1000px;
  }
}

@media (max-width: 1020px) {
  .modal-wide .modal-dialog {
    width: 800px;
  }
}

@media (max-width: 820px) {
  .modal-wide .modal-dialog {
    width: 500px;
  }
}

@media (max-width: 520px) {
  .modal-wide .modal-dialog {
    width: 300px;
  }
}

.modal-wide .modal-body {
  overflow: auto;
}

.modal-ok {
  text-align: center;
}

.modal-ok .btn {
  padding-left: 40px;
  padding-right: 40px;
}

.modal-ok {
  font-size: 18px;
}

.modal-wrap {
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 800;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.modal-wrap.active {
  visibility: visible;
  opacity: 1;
}

.modal-wrap .modal-blok {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  max-width: 650px;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  padding: 30px;
  letter-spacing: normal;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.modal-wrap .modal-blok.active {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1;
}

.modal-blok .close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modal-blok .close-modal:hover {
  color: rgba(0, 0, 0, 0.9);
}

.modal-blok h4 {
  color: #767676;
  font-size: 16px;
  margin-top: 20px;
}

.modal {
  text-align: center;
  padding: 0 !important;
}

.modal:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.modal-content {
  padding: 25px;
  border-radius: 0;
  background: #f4f4f4;
}

.modal .close {
  background: 0 0 !important;
  text-indent: -9999px;
  width: 15px;
  height: 15px;
  position: absolute;
  opacity: 1;
  margin: 0;
  top: 18px;
  right: 18px;
  outline: 0 !important;
  border: 0 !important;
}

.modal .close:after,
.modal .close:before {
  background: url(../img/general/icon/sprite.svg) no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.modal .close:after {
  background-position: -320px -95px;
  opacity: 0;
}

.modal .close:before {
  background-position: -320px -55px;
  opacity: 1;
}

.modal .close:hover:after {
  opacity: 1;
}

.modal .close:hover:before {
  opacity: 0;
}

.modal-title {
  font-size: 24px !important;
  font-weight: 500 !important;
  color: #333;
  line-height: 1.25;
}

.modal-title--big {
  font-size: 20px;
  font-weight: 700;
}

.modal-body,
.modal-footer,
.modal-header {
  border: 0;
}

.modal-header {
  padding-bottom: 27px;
}

.datepiker-wrap {
  position: relative;
  padding: 0 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid #e5e5e5;
}

.tempust-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.tempust {
  position: relative;
  padding-bottom: 45px;
}

.tempust .dates {
  overflow: hidden;
}

.tempust .day-wrap,
.tempust .weak-wrap {
  position: relative;
  display: table;
  width: 100%;
}

.tempust .day-wrap {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.tempust .day,
.tempust .weekday {
  display: block;
  width: 14.2857142857%;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
}

.tempust .weekday {
  float: left;
  color: #b3b3b3;
  font-size: 0.8em;
}

.tempust .day {
  position: relative;
  float: left;
  padding: 10px 23px;
  color: #333;
  font-size: 1.13em;
}

.tempust .day .day-ell {
  border-radius: 50%;
}

.tempust .day[data-event] .day-ell {
  cursor: pointer;
  background-color: #0575bc;
  color: #fff;
}

.tempust .inactive {
  color: #bdbdbd;
}

.tempust .header {
  display: table;
  padding-left: 20px;
  padding-bottom: 20px;
}

.tempust .month,
.tempust .year {
  padding: 0 10px;
  float: left;
  margin-right: 40px;
}

.tempust .btn.dropdown-toggle.btn-default {
  color: #323232;
  font-size: 1.15em;
  padding: 2px 0 2px 10px;
}

.tempust .year .btn.dropdown-toggle.btn-default {
  width: 120px;
}

.tempust .month .btn.dropdown-toggle.btn-default {
  width: 150px;
}

.tempust .btn-group.bootstrap-select {
  width: auto !important;
  margin: 0;
  padding: 0;
  margin-right: 50px;
}

.tempust .btn.dropdown-toggle.btn-default:active,
.tempust .btn.dropdown-toggle.btn-default:focus,
.tempust .btn.dropdown-toggle.btn-default:hover,
.tempust .open > .dropdown-toggle.btn-default {
  background-color: rgba(255, 255, 255, 0);
  outline: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.datepiker-wrap .next-show,
.datepiker-wrap .prew-show {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  color: grey;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.datepiker-wrap .next-show i,
.datepiker-wrap .prew-show i {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.datepiker-wrap .prew-show {
  left: 5px;
}

.datepiker-wrap .next-show {
  right: 5px;
}

.datepiker-wrap .next-show:hover,
.datepiker-wrap .prew-show:hover {
  color: #fff;
  border: 1px solid #0575bc;
  background-color: #0575bc;
}

.tempust .event {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 160px;
  width: 340px;
  padding: 20px 28px;
  color: #333;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  z-index: 100;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tempust .event::after,
.tempust .event::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  border: 20px solid transparent;
  border-bottom: 20px solid #e5e5e5;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.tempust .event::after {
  border-bottom: 20px solid #fff;
  bottom: calc(100% - 2px);
}

.tempust .event .ev-date {
  color: #b2b2b2;
  margin-top: 0;
  margin-bottom: 5px;
}

.tempust .event.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 767px) {
  .datepiker-wrap {
    padding: 0 15px;
  }
  .tempust {
    padding-bottom: 65px;
  }
  .tempust .header {
    padding-left: 0;
  }
  .tempust .btn-group.bootstrap-select {
    margin-right: 20px;
  }
  .datepiker-wrap .next-show,
  .datepiker-wrap .prew-show {
    top: 85%;
  }
  .datepiker-wrap .prew-show {
    left: 25%;
  }
  .datepiker-wrap .next-show {
    right: 25%;
  }
  .tempust .day {
    padding: 10px 18px;
    font-size: 1.15em;
  }
  .tempust .event {
    top: 140px;
    left: 50% !important;
    width: 280px;
    padding: 15px 15px;
  }
  .tempust .event::after,
  .tempust .event::before {
    content: none;
  }
}

@media (max-width: 540px) {
  .tempust .day {
    padding: 8px 8px;
    font-size: 1em;
  }
}

@media (max-width: 767px) {
  .header-sub-nav h1 {
    font-size: 2em;
  }
  .header-sub-nav h2 {
    font-size: 1.6em;
  }
  .pd-top-80 {
    padding-top: 40px !important;
  }
  .pd-bottom-80 {
    padding-bottom: 40px !important;
  }
  .news-first h2 {
    font-size: 1.4em;
  }
  .news-card {
    margin-bottom: 30px;
  }
  .news-card .news-title {
    font-size: 1em;
  }
  .news-card img {
    display: none;
  }
  .beta-version {
    font-size: 0.84em;
  }
  .beta-body a {
    display: inline-block;
  }
  .friend-block h4 {
    min-height: inherit;
  }
  .menu-text {
    margin-right: 14px;
    font-size: 0.7em;
    vertical-align: text-top;
  }
  .nav-tabs-services > li {
    width: 50%;
  }
  .nav-tabs-services > li > a {
    height: 90px;
  }
}

@media (max-width: 1200px) {
  .news-image-sm {
    max-height: 103px;
  }
  .news-image-md {
    max-height: 164px;
  }
}

@media (max-width: 992px) {
  .site-map__list-link {
    margin-top: 25px;
  }
  .contacts-elem__heading.icon {
    padding-left: 30px;
  }
  .contacts-elem__heading.icon:before {
    left: 0;
  }
  .news-header .news-image {
    display: none;
  }
  .news-image-md {
    max-height: none;
  }
  .news-image-sub {
    display: none;
  }
  .top-nav {
    overflow: hidden;
  }
}

.post-content.text-dark ul li {
  margin: 0 0 10px 0;
}

.post-content .text-block p span {
  font-size: 1.6rem !important;
}

.post ul:first-of-type li::before {
  display: none;
}

.post > img {
  float: left;
  margin: 0 30px 70px 0;
}

.no-list-image li::before {
  display: none !important;
}

.margin-fix {
  margin-left: -28px;
}

.date-fix .date {
  display: block;
}

.archive-search {
  display: none;
}

.archive-search,
.keywords {
  display: none;
}

.calendar--next-arrow i,
.calendar--prev-arrow i {
  position: relative;
}

.calendar--prev-arrow i {
  right: 2px;
}

.calendar--next-arrow i {
  right: -2px;
}

.btn-calendar,
a.btn-calendar {
  font-weight: 500;
  display: inline-block;
  border-radius: 25px;
  color: #333;
  text-decoration: none;
  padding: 14px 25px;
  background-color: #e6e6e6;
}

.btn-calendar:hover,
a.btn-calendar:hover {
  background-color: #f4f4f4;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.text-error__form-control {
  word-break: break-word;
}

.text-error-modal {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

.text-error-modal .modal-header {
  margin-bottom: 25px;
  padding: 0 15px;
  padding-right: 20px;
}

.text-error-modal .modal-title {
  font-weight: 500;
  color: #333;
}

.text-error-modal .modal-body {
  padding: 0 15px;
}

.text-error-modal .control-label {
  text-align: left;
  font-weight: 500;
  color: #333;
}

.text-error-modal .close {
  top: 35px;
  right: 40px;
}

@media screen and (max-width: 1024px) {
  .friend-block h4 {
    width: auto;
    margin-bottom: 0;
  }
  #event_2.custom-tabs-content,
  .nav-tabs .custom-tab-item--calendar,
  .nav-tabs .tablet-hide {
    display: none !important;
  }
  .main-section--list-nav {
    padding-bottom: 0;
    margin-bottom: 15px;
  }
  h4.foot-head {
    margin-bottom: 25px;
  }
  footer {
    padding: 30px 0;
  }
  footer .list {
    padding-top: 0;
    margin-bottom: 0;
  }
  footer .list li {
    width: 32%;
    display: inline-block;
    vertical-align: top;
  }
}

@media screen and (max-width: 768px) {
  footer .list li {
    width: 48%;
  }
  .footer__border-bottom {
    padding-top: 25px;
  }
  .tabs-nav-wrap {
    margin-bottom: 50px;
  }
  .action-preview--main .text-img .img {
    height: 109px;
    width: auto;
  }
  .action-preview--main .text-img {
    padding-left: 144px;
  }
  .action-preview__box .text-img .h3 {
    font-size: 24px;
    line-height: 36px;
  }
  h3.section-head {
    font-size: 24px;
    line-height: 32px;
  }
  .param-search-toggle .wrap-check .placeholder {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .footer-icon-list {
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
  }
  footer .footer-icon-list li {
    margin-right: 0;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  footer .list li {
    width: 100%;
  }
  .well-lg {
    padding: 20px 20px;
    margin-bottom: 0;
  }
  footer .footer-logo-text .prime {
    font-size: 1.3em;
    line-height: 1.1em;
  }
  /* footer .footer-logo {
    width: 50px;
  } */
  .tabs-nav-wrap {
    margin-bottom: 40px;
  }
  .action-preview--main .text-img {
    padding-left: 124px;
  }
  .action-preview__box .text-img .h3 {
    font-size: 20px;
    line-height: 26px;
  }
  h3.section-head {
    font-size: 20px;
    line-height: 26px;
  }
}

.breadcrumb > li:last-of-type:after {
  content: "";
}

.sub-title-and-link__list-link li.active a:after {
  content: "";
  position: absolute;
  left: 0;
  opacity: 1;
  bottom: 0;
  background-color: #0b75ba;
  width: 100%;
  height: 4px;
}

.confirm-email__error {
  color: #f33;
  display: none;
  max-width: 100%;
  margin-bottom: 5px;
}

.confirm-email__elem label {
  display: none !important;
}

.form-group .captcha-image {
  text-align: center;
  padding-top: 6px;
}

.form-group.parent-question > label {
  width: 100%;
}

.form-group.parent-question.error > label {
  color: #f33;
}

.form .error-summary {
  color: #f33;
  font-size: 16px;
  padding-bottom: 10px;
}

.breadcrumb > li:first-child:after {
  padding: 0 10px;
  color: #767676;
  content: "/\00a0";
}

.questionnaire-result .percent-box {
  margin: 0;
  display: inline-block;
  height: 18px;
  overflow: hidden;
  width: 100%;
}

.questionnaire-result .count {
  display: inline-block;
  margin-left: 5px;
  line-height: 18px;
  position: absolute;
  color: #090;
  font-weight: 700;
}

.questionnaire-result .percent {
  background-color: #090;
  color: #fff;
  display: block;
  font-size: 1em;
  font-weight: 700;
  height: 18px;
  line-height: 18px;
  overflow: hidden;
  text-align: center;
  float: left;
}

.questionnaire .hint i {
  font-weight: 500;
}

.font-weight-select {
  font-weight: 500 !important;
}

a.fc-event:focus {
  color: #fff;
}

.fc-event.meeting {
  background-color: #f24759;
  cursor: pointer;
  border: 1px solid #f24759;
}

.fc-event.meeting.clicked {
  border: 1px solid rgba(0, 0, 0, 0.8);
}

.fileupload .error {
  font-weight: 400;
  color: red;
  display: block;
  margin: 20px 0 0 0;
}

.form-comment .sm textarea {
  min-height: 100px;
}

.hidden {
  display: none;
}

.wrap-media-video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.wrap-media-video--page,
.wrap-video-and-btn {
  width: 100%;
  height: 100%;
}

.wrap-media-video--page iframe,
.wrap-video-and-btn iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.title-for-print {
  display: none !important;
}

.audio-no-preview {
  background-color: #373737;
  width: 100%;
  height: 100%;
  z-index: 30;
}

.bootstrap-select .btn .text-muted {
  display: none;
}

.bootstrap-select.btn-group .dropdown-menu li small.text-muted {
  font-weight: 500;
  border-radius: 50%;
  color: #333;
  padding: 0.1em 0.5em;
  background-color: #e6e6e6;
  margin-left: 0.5em;
}

#info-wind .wind-text a,
.text-with-links a {
  color: #0575bc !important;
  text-decoration: none;
}

.included-event {
  background-color: #e6e6e6;
}

.header.no-gosbar {
  height: 90px !important;
}

.wrap-media-video.video-full {
  height: 684px;
}

.carousel-inner > .item {
  height: 370px;
}

.carousel-inner > .item.active {
  display: block;
}

.news-carousel-wrapper {
  border: 1px solid #dddde2;
  padding-top: 0;
  margin-top: 25px;
}

.sliderdescription {
  font-size: 14px;
  color: #858e9b;
  text-align: center;
  padding: 10px 0 20px;
  max-height: 500px;
  width: 100%;
}

.news-carousel-wrapper + .sliderdescription {
  clear: both;
}

.wrap-media-audio + .sliderdescription,
.wrap-media-video + .sliderdescription {
  clear: both;
}

.carousel-inner > .item .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 370px;
  width: 100%;
}

.news-carousel-wrapper .item img {
  max-height: 370px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .carousel-inner > .item {
    height: 210px;
  }
  .carousel-control {
    margin-top: -20px;
    width: 40px;
    height: 40px;
  }
  .news-carousel-wrapper .item img {
    max-height: 210px;
  }
}

.carousel-inner {
  background: #f1f2f2;
}

.wrap-media-video--link {
  margin-bottom: 0 !important;
}

.service-mode-outer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: auto;
  text-align: center;
}

.service-mode-inner {
  width: 80%;
  height: 250px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.section-content-zone {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.favorite-hidden {
  display: none !important;
}

.wrap-video-widget video {
  height: 200px;
}

.wrap-media-audio {
  width: 100%;
}

.wrap-media-audio .post-media audio {
  margin: 0 !important;
}

.form-group:not(.full) .form-el-hint {
  font-size: 12px;
}

.form-el-hint {
  margin-left: 7px;
}

.quiz--stat .quiz-rersult-percent.box-sm {
  padding: 20px 20px 20px 0;
}

.quiz--stat .quiz-rersult-percent__inner {
  padding-left: 0 !important;
}

.tabs-nav-wrap--noborder {
  border: 0 !important;
}

.quiz-hint {
  font-size: 0.9em;
  margin-top: -10px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.action-preview--with-link .action-preview__list li > a {
  padding-bottom: 16px !important;
  padding-top: 16px !important;
}

.text-block-sm .bg-box {
  padding: 20px 30px !important;
}

.text-block-sm p {
  margin: 10px 0 !important;
}

#sectionUsefulSites .tab-content {
  min-height: 260px;
}

.fild-error {
  color: #f33;
  font-size: 0.9em;
}

.font-weight-bold {
  font-weight: 700;
}

.post-list__img {
  width: 224px;
  height: 116px;
}

.form-voucher .help-block {
  color: #f33;
  font-size: 0.9em;
  margin-top: -5px;
  float: right;
}

.form-voucher .has-error input {
  border-color: #dde0e3;
}

.x-form .form-group.required label:after {
  content: " *";
}

.right-panel-fix {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 9999999;
}

.btn-support {
  width: 60px;
  height: 60px;
  padding: 0;
  min-width: 0 !important;
  background-color: #979ca8;
  border-color: #979ca8;
  color: #fff;
  line-height: 1;
  display: inline-block;
  padding-top: 15px;
  border-radius: 50%;
}

.btn-support:hover {
  background-color: #da2919;
  border-color: #da2919;
  color: #fff;
}

.btn-support i {
  font-size: 28px;
}

.dropdown-depth ul li label.depth {
  display: block;
  font-weight: 400;
}

button.btn label.depth {
  padding-left: 0 !important;
  font-weight: 400 !important;
}

.dropdown-depth ul li label.depth-1 {
  padding-left: 25px;
}

.dropdown-depth ul li label.depth-2 {
  padding-left: 50px;
}

.dropdown-depth ul li label.depth-3 {
  padding-left: 75px;
}

.dropdown-depth ul li label.depth-4 {
  padding-left: 100px;
}

.dropdown-depth ul li label.depth-5 {
  padding-left: 125px;
}

.structure-tree > li > ul > li > ul > li > ul > li > ul > li ul li {
  margin-top: 12px;
}

.structure-tree > li > ul > li > ul > li > ul > li > ul > li ul {
  display: block !important;
  padding-top: 0;
  padding-bottom: 15px;
  margin-left: 70px;
  font-size: 14px;
}

.structure-tree > li > ul > li > ul > li > ul > li > ul > li > div.item-wrap .big {
  font-weight: 500 !important;
}

@media (max-width: 767px) {
  .structure-tree > li > ul > li > ul > li > ul > li > ul {
    margin-left: 95px !important;
  }
  .structure-tree > li > ul > li > ul > li > ul > li > ul > li > div.item-wrap {
    padding-left: 0 !important;
    margin-left: -6px !important;
  }
  .structure-tree > li > ul > li > ul > li > ul > li > ul > li ul {
    margin-left: 25px;
  }
}

.modal-open .modal,
.modal.in {
  z-index: 10000000000 !important;
}

.Zebra_DatePicker {
  z-index: 10000000001 !important;
}

.js-wrap-video iframe {
  width: 100%;
}

.sheare-list-wrap .ya-share2__item a {
  color: #abafbb;
  border: 0 solid #c9c9c9;
  border-radius: 50%;
}

.sheare-list-wrap .ya-share2__container_size_m .ya-share2__item {
  margin: 0 !important;
  margin-right: 4px !important;
}

.sheare-list-wrap .ya-share2__container_size_m .ya-share2__item:last-child {
  margin-right: 0 !important;
}

.sheare-list-wrap .ya-share2__item a.active,
.sheare-list-wrap .ya-share2__item a:hover {
  color: #e20338;
  border: 0 solid #e20338;
}

.sheare-list-wrap .ya-share2__item a i {
  font-size: 18px;
}

.sheare-list-wrap .ya-share2__item a .icon-vk {
  font-size: 10px;
}

.sheare-list-wrap .ya-share2__item a .icon-tw {
  font-size: 14px;
}

.sheare-list-wrap ul.sheare-list .ya-share2__item {
  display: inline-block;
  width: auto;
  float: none;
  margin-right: 5px;
}

.sheare-list-wrap ul.sheare-list .ya-share2__item:last-child {
  margin-right: 0;
}

.hint {
  margin-top: -12px;
  font-size: 0.9em;
}

.soc-helper .error {
  color: #f33;
}

.js-back {
  right: 60px !important;
}

.js-back:visited {
  color: #b7bbc5;
}

.soc-helper .ui-menu-item-wrapper {
  color: #333;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon/fonts/icomoon.eot?8dmgt2");
  src: url("../fonts/icomoon/fonts/icomoon.eot?8dmgt2#iefix") format("embedded-opentype"), url("../fonts/icomoon/fonts/icomoon.ttf?8dmgt2") format("truetype"), url("../fonts/icomoon/fonts/icomoon.woff?8dmgt2") format("woff"), url("../fonts/icomoon/fonts/icomoon.svg?8dmgt2#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-gamb:before {
  content: "\e900";
}

.icon-right-arrow:before {
  content: "\e901";
}

.icon-copy:before {
  content: "\e902";
}

.icon-fb:before {
  content: "\e903";
}

.icon-glass:before {
  content: "\e904";
}

.icon-lang:before {
  content: "\e905";
}

.icon-loupe:before {
  content: "\e906";
}

.icon-map:before {
  content: "\e907";
}

.icon-menu:before {
  content: "\e908";
}

.icon-more:before {
  content: "\e909";
}

.icon-od:before {
  content: "\e90a";
}

.icon-open:before {
  content: "\e90b";
}

.icon-plus:before {
  content: "\e90c";
}

.icon-tw:before {
  content: "\e90d";
}

.icon-vk:before {
  content: "\e90e";
}

.icon-youtube:before {
  content: "\e90f";
}

.icon-close:before {
  content: "\e910";
}

.icon-play:before {
  content: "\e911";
}

.icon-rss:before {
  content: "\e912";
}

.icon-six:before {
  content: "\e913";
}

.icon-favorite:before {
  content: "\e914";
}

.icon-home:before {
  content: "\e915";
}

.icon-print:before {
  content: "\e916";
}

.icon-share:before {
  content: "\e917";
}

.icon-mark:before {
  content: "\e918";
}

.icon-link:before {
  content: "\e919";
}

.icon-date:before {
  content: "\e91a";
}

.icon-mail:before {
  content: "\e91b";
}

.icon-mail2:before {
  content: "\e91c";
}

.icon-user:before {
  content: "\e91d";
}

.icon-time:before {
  content: "\e91e";
}

.icon-delete:before {
  content: "\e91f";
}

.icon-chat:before {
  content: "\e920";
}

.icon-minus:before {
  content: "\e921";
}

.icon-favorite-full:before {
  content: "\e922";
}

.icon-faq:before {
  content: "\e923";
}

.icon-photo:before {
  content: "\e924";
}

.icon-setting:before {
  content: "\e925";
}

.icon-ok:before {
  content: "\e926";
}

.icon-eye-hide:before {
  content: "\e927";
}

.icon-eye-open:before {
  content: "\e928";
}

.icon-info:before {
  content: "\e929";
}

.icon-param:before {
  content: "\e92a";
}

.icon-left-arrow:before {
  content: "\e92b";
}

.icon-full-size:before {
  content: "\e92c";
}

.icon-size:before {
  content: "\e92d";
}

.icon-arrow-top:before {
  content: "\e92e";
}

.icon-ok-fill:before {
  content: "\e92f";
}

.icon-checked:before {
  content: "\e930";
}

.icon-mark-2:before {
  content: "\e931";
}

.icon-param-2:before {
  content: "\e932";
}

.icon-in:before {
  content: "\e933";
}

.icon-quote:before {
  content: "\e934";
}

.icon-end-doc:before {
  content: "\e935";
}

.icon-play-button:before {
  content: "\e936";
}

.icon-sl-angle-left:before {
  content: "\e937";
}

.icon-sl-angle-right:before {
  content: "\e938";
}

.icon-mail-to:before {
  content: "\e939";
}

.icon-book:before {
  content: "\e93c";
}

.icon-question:before {
  content: "\e93b";
}

.icon-logout:before {
  content: "\e93a";
}

body {
  -webkit-backface-visibility: hidden;
}

.animated {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 1.7s;
  animation-duration: 1.7s;
}

@-webkit-keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

.animated.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
  }
}

@keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

.animated.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

.animated.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
            transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
            transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
            transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
}

.animated.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes swing {
  100%,
  20%,
  40%,
  60%,
  80% {
    -webkit-transform-origin: top center;
  }
  20% {
    -webkit-transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

.animated.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
            transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
            transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
            transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
            transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
            transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.animated.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.animated.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
            transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
            transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
            transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
            transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
            transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
            transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
            transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0);
            transform: perspective(400px) rotateX(0);
    opacity: 1;
  }
}

.animated.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0);
            transform: perspective(400px) rotateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.animated.flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
            transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
            transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0);
            transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
}

.animated.flipInY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInY;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
            transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.animated.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipOutY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipOutY;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animated.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animated.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animated.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.animated.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.animated.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animated.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animated.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.animated.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.animated.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.animated.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

.animated.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

.animated.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}

.animated.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}

.animated.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
}

.animated.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
}

.animated.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}

.animated.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
}

.animated.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animated.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animated.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.animated.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.animated.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
}

.animated.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
}

.animated.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
}

.animated.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}

.animated.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
}

.animated.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(-200deg);
            transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

.animated.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

.animated.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

.animated.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

.animated.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

.animated.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(200deg);
            transform: rotate(200deg);
    opacity: 0;
  }
}

.animated.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
}

.animated.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
}

.animated.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
}

.animated.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
}

.animated.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
            transform: rotate(80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
            transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
            transform: translateY(700px);
    opacity: 0;
  }
}

.animated.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
            transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0);
            transform: translateX(0) rotate(0);
  }
}

.animated.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0);
            transform: translateX(0) rotate(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
            transform: translateX(100%) rotate(120deg);
  }
}

.animated.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) skewX(0);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
            transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
            transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0) skewX(-15deg);
            transform: translateX(0) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) skewX(0);
            transform: translateX(0) skewX(0);
    opacity: 1;
  }
}

.animated.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.animated.lightSpeedIn {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0) skewX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0) skewX(0);
            transform: translateX(0) skewX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
            transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.animated.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animated.lightSpeedOut {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
}

/*------------------- RESET -------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

sub {
  vertical-align: sub;
  font-size: 60%;
  line-height: 100%;
}

sup {
  vertical-align: super;
  font-size: 60%;
  line-height: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a:active,
a:hover {
  outline: 0;
  text-decoration: none;
}

html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

input,
textarea {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

textarea {
  overflow: auto;
  resize: none;
}

::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  color: #959595;
}

/* Firefox 19+ */
:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  color: #959595;
}

/* Firefox 18- */
:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  color: #959595;
}

:focus::-webkit-input-placeholder {
  opacity: 0;
}

:focus::-moz-placeholder {
  opacity: 0;
}

/* Firefox 19+ */
:focus:-moz-placeholder {
  opacity: 0;
}

/* Firefox 18- */
:focus:-ms-input-placeholder {
  opacity: 0;
}

/*------------------- TYPOGRAPHY -------------------*/
@font-face {
  font-family: "GOSTUI2";
  src: url("../fonts/windows/GOSTUI2.eot");
  src: url("../fonts/windows/GOSTUI2.eot?#iefix") format("embedded-opentype"), url("../fonts/windows/GOSTUI2.woff") format("woff"), url("../fonts/windows/GOSTUI2.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "GOSTUI2";
  src: url("../fonts/windows/GOSTUI2-Medium.eot");
  src: url("../fonts/windows/GOSTUI2-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/windows/GOSTUI2-Medium.woff") format("woff"), url("../fonts/windows/GOSTUI2-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "GOSTUI2";
  src: url("../fonts/windows/GOSTUI2-Bold.eot");
  src: url("../fonts/windows/GOSTUI2-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/windows/GOSTUI2-Bold.woff") format("woff"), url("../fonts/windows/GOSTUI2-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: 'Golos';
  src: local("Golos Text Bold"), local("GolosText-Bold"), url("../fonts/windows/Golostextbold.woff2") format("woff2"), url("../fonts/windows/Golostextbold.woff") format("woff"), url("../fonts/windows/Golostextbold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

.btn-green {
  background-color: #18ad54;
  border-color: #18ad54;
  color: #ffffff;
}

.btn-green:hover,
.btn-green:focus {
  background-color: #0f9143;
  border-color: #0f9143;
  color: #ffffff;
}

.btn-choice-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.btn-choice-center .btn {
  margin-left: 5px;
  margin-right: 5px;
}

.normal {
  font-weight: 400;
}

.middle {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.border-top {
  border-top: 1px solid #d5dae0;
}

.mr-bottom-0 {
  margin-bottom: 0 !important;
}

hr {
  border-color: #d5dae0;
  margin-top: 35px;
  margin-bottom: 35px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-weight: 600;
  margin-top: 0;
}

h1,
.h1 {
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.2;
  margin-bottom: 56px;
}

h1 .title-sub,
.h1 .title-sub {
  font-size: 24px;
  font-size: 2.4rem;
  margin-top: 20px;
  line-height: 1.3;
}

h1 .title-sub--small,
.h1 .title-sub--small {
  margin-top: 25px;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.8rem;
}

h1.page-title-prime,
.h1.page-title-prime {
  line-height: 1;
  padding-right: 90px;
}

h1.page-title-prime .title-sub,
.h1.page-title-prime .title-sub {
  margin-top: 25px;
}

h2,
.h2,
h1.page-title {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 40px;
  line-height: 4rem;
  margin-bottom: 40px;
}

h2.title-with-sub,
.h2.title-with-sub,
h1.page-title.title-with-sub {
  margin-bottom: 20px;
}

h3,
.h3 {
  font-size: 29px;
  font-size: 2.9rem;
  line-height: 32px;
  line-height: 3.2rem;
  margin-bottom: 32px;
}

h4,
.h4 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  line-height: 2.4rem;
  margin-bottom: 24px;
}

h4 .title-sub,
.h4 .title-sub {
  margin-top: 5px;
  font-size: 16px;
  font-size: 1.6rem;
}

h5,
.h5 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  line-height: 2.2rem;
  margin-bottom: 22px;
}

h5 .title-sub,
.h5 .title-sub {
  margin-top: 2px;
  font-size: 14px;
  font-size: 1.4rem;
}

.title-sub {
  font-weight: 400;
  display: block;
  line-height: 1.1;
}

.direction-box .title-sub {
  margin-top: 10px;
}

.border-block h3,
.border-block .h3,
.bg-box h3,
.bg-box .h3 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  line-height: 2.4rem;
  margin-bottom: 24px;
}

a,
.a {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  color: inherit;
  cursor: pointer;
}

a:hover,
.a:hover,
a:focus,
.a:focus,
a:active,
.a:active {
  text-decoration: none;
  color: inherit;
}

a:focus,
.a:focus {
  outline: 0 !important;
  outline-offset: 0;
}

a.link-color:hover,
.a.link-color:hover,
a.link-color:focus,
.a.link-color:focus,
a.link-color:active,
.a.link-color:active,
a.link-color.active,
.a.link-color.active,
a.link-color:hover i,
.a.link-color:hover i,
a.link-color:focus i,
.a.link-color:focus i,
a.link-color:active i,
.a.link-color:active i,
a.link-color.active i,
.a.link-color.active i {
  color: #0575bc;
}

.active > .link-color {
  color: #0575bc;
}

.link-gray,
.link-gray:hover,
.link-gray:focus {
  color: #939598;
}

.link-gray:hover,
.link-gray:focus {
  text-decoration: underline;
}

.big-gray-link {
  padding: 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
}

.link-border-color {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.link-border-color:hover,
.link-border-color:focus,
.link-border-color:active {
  border-color: #0575bc;
}

.link-bg-color {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.link-bg-color:hover,
.link-bg-color:focus,
.link-bg-color:active,
.link-bg-color .favorite {
  background-color: #0575bc;
  color: #ffffff;
}

.list-link li {
  margin-bottom: 10px;
}

.list-link li:last-child {
  margin-bottom: 0;
}

.link-opacity {
  opacity: 1;
}

.link-opacity:hover {
  opacity: 0.7;
}

.border-none {
  border: none !important;
}

.border-transparent {
  border-color: transparent;
}

.color-bg-block {
  background-color: #0575bc;
  color: #ffffff;
}

/* основной цвет текст */
.color {
  color: #0575bc;
}

/* цвет текст */
.text-white {
  color: #ffffff;
}

.icon-text-light {
  color: #e6e6e6;
}

.text-max-light,
.text-max-light-2 {
  color: #a9abb1;
}

.text-md {
  color: #999999;
}

.text-base {
  color: #939598;
}

.text-gray-nn {
  color: #7c8396;
}

.text-light {
  color: #494b4e;
}

.text-dark {
  color: #14171e;
}

.text-black {
  color: #000000;
}

.text-success {
  color: #689f38;
}

.color-blue {
  color: #406cdb;
}

/* цвет фон */
.bg-brown {
  background-color: #0c6e8c;
}

.bg-light-blue {
  background-color: #40cced;
}

.color-blue-bg-block {
  background-color: #0351c1;
}

.bg-base {
  background-color: #ffffff;
}

.bg-gray-light {
  background-color: #fafcff;
}

.bg-gray {
  background-color: #f1f2f2;
}

.bg-gray-2 {
  background-color: #939598;
}

.bg-gray-3 {
  background-color: #f3f6fa;
}

.bg-gray-color {
  background-color: #3b4256;
}

.bg-gray-dark {
  background-color: #202020;
}

.bg-gray-dark-2 {
  background-color: #212121;
}

.bg-gray-0 {
  background-color: #000000;
}

.hover-opacity {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.photo-wrap img {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: scale(1);
  transform: scale(1);
}

a:hover .photo-wrap img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

a:hover .hover-opacity {
  opacity: 0.7;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
  right: 20px;
}

.post-media audio,
.post-media video {
  width: 100%;
  margin-bottom: 40px;
  margin-top: 40px;
}

.post-media video {
  height: auto;
}

.smi-source {
  display: block;
  margin-top: 5px;
}

.smi-link-bottom {
  margin-top: 40px;
}

blockquote {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
}

.quote__inner {
  position: relative;
  padding-left: 130px;
  padding-right: 130px;
}

.quote i.top {
  left: 30px;
  top: 0;
}

.quote i.bottom {
  right: 30px;
  bottom: 0;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.quote i.top,
.quote i.bottom {
  position: absolute;
  font-size: 25px;
  color: #c8c8c8;
}

.big-text {
  font-size: 18px;
  font-size: 1.8rem;
}

.sm-text {
  font-size: 14px;
  font-size: 1.4rem;
}

.btn-back-desctop {
  margin-top: 60px;
  display: block;
}

.btn-back-desctop .btn {
  min-width: 260px;
}

.btn-back-mobile {
  margin-top: 40px;
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
  display: none;
}

.btn-back-mobile .btn {
  width: 100%;
}

.link-border {
  text-decoration: none;
  border-color: rgba(11, 117, 186, 0.5);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  -webkit-transition: border 0.2s linear;
  transition: border 0.2s linear;
}

.text-arrow-right i {
  margin-left: 15px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
  top: -1px;
}

.link-border:hover,
.link-border:focus {
  border-color: transparent !important;
}

.post_image {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.table-wrapper,
.table-voucher {
  width: 100%;
  overflow: auto;
}

.sub-caption-box {
  text-transform: uppercase;
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 7px 12px 5px;
  border-radius: 4px;
  line-height: 1.3;
}

.sub-caption-box--sm {
  font-weight: 400;
  text-transform: none;
  font-size: 16px;
  font-size: 1.6rem;
}

.sub-caption-box--xs {
  padding: 3px 8px 2px;
  font-weight: 400;
  text-transform: none;
  font-size: 16px;
  font-size: 1.6rem;
}

.text-block {
  /* общее */
  /* table */
  /* ol, ul */
  /* ol */
  /* ul */
  /* img */
}

.text-block h1,
.text-block .h1,
.text-block h2,
.text-block .h2,
.text-block h3,
.text-block .h3,
.text-block h4,
.text-block .h4,
.text-block h5,
.text-block .h5 {
  margin-top: 10px;
}

.text-block ol,
.text-block ul,
.text-block p,
.text-block table {
  margin: 25px 0;
  line-height: 1.4;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.text-block ol:first-child,
.text-block ul:first-child,
.text-block p:first-child,
.text-block table:first-child {
  margin-top: 0;
}

.text-block ol:last-child,
.text-block ul:last-child,
.text-block p:last-child,
.text-block table:last-child {
  margin-bottom: 0;
}

.text-block .bg-text-box {
  margin: 30px 0;
}

.text-block .bg-text-box:first-child {
  margin-top: 0;
}

.text-block .bg-text-box:last-child {
  margin-bottom: 0;
}

.text-block a:not([class]) {
  color: inherit;
  border-color: rgba(11, 117, 186, 0.4);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  text-decoration: none;
  -webkit-transition: border 0.2s linear;
  transition: border 0.2s linear;
}

.text-block a:not([class]):hover,
.text-block a:not([class]):focus {
  border-color: transparent !important;
  color: #E20338;
}

.text-block .table-wrap {
  width: 100%;
  overflow: auto;
}

.text-block table {
  width: 100%;
  border: 1px solid #bfbebe;
  border-radius: 3px;
}

.text-block table th {
  vertical-align: middle;
}

.text-block table td,
.text-block table th {
  padding: 20px 30px;
  border-bottom: 1px solid #bfbebe;
  border-right: 1px solid #bfbebe;
}

.text-block table td {
  color: #888;
}

.text-block table tr:last-child td {
  border-bottom: 0;
}

.text-block table.odd-color tr:nth-child(odd) {
  background-color: #f5f5f5;
}


.text-block ol,.text-block ul {
  list-style-type: none;
}

.text-block ol li,
.text-block ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.text-block ol > li ul,
.text-block ul > li ul,
.text-block ol > li ol,
.text-block ul > li ol {
  margin-top: 10px;
  margin-bottom: 20px;
}

.text-block ol > li ul li,
.text-block ul > li ul li,
.text-block ol > li ol li,
.text-block ul > li ol li {
  margin-bottom: 10px;
}

.text-block ol {
  counter-reset: num;
}

.text-block ol > li:before {
  content: counter(num) ". ";
  counter-increment: num;
  color: inherit;
  position: absolute;
  left: 0;
  top: auto;
}

.text-block ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: #14171e;
  display: block;
}

.text-block img,
.text-block iframe,
.text-block video {
  max-width: 100%;
}

.text-block img {
  height: auto;
}

.text-block .img-wrapper {
  position: relative;
  display: block;
  max-width: 100%;
}

.text-block .img-wrapper img {
  margin: 0 !important;
}
/*Araslanov*/

.text-block .img-wrapper:after {

  content: attr(data-title);
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 30px;
  background-color: rgba(255, 255, 255, 0.6);
}

.table-voucher table {
  width: 100%;
  border: 1px solid #bfbebe;
  border-radius: 3px;
}

.table-voucher table th {
  vertical-align: top;
}

.table-voucher table td,
.table-voucher table th {
  padding: 15px;
  border-bottom: 1px solid #bfbebe;
  border-right: 1px solid #bfbebe;
}

.table-voucher table td {
  color: #888;
}

.table-voucher table tr:last-child td {
  border-bottom: 0;
}

.text-uppercase {
  text-transform: uppercase;
}

.icon-right-arrow {
  font-size: 8px;
  font-size: 0.8rem;
}

.icon-right-arrow.down {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.icon-right-arrow.up {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.section.mr-bottom-0 {
  margin-bottom: 0 !important;
}

.mr-top-15 {
  margin-top: 15px !important;
}

.mr-top-20 {
  margin-top: 20px !important;
}

.mr-top-30 {
  margin-top: 30px !important;
}

.mr-top-40 {
  margin-top: 40px !important;
}

.mr-top-50 {
  margin-top: 50px !important;
}

.mr-top-60 {
  margin-top: 60px !important;
}

.mr-bottom-15 {
  margin-bottom: 15px !important;
}

.mr-bottom-30 {
  margin-bottom: 30px !important;
}

.mr-bottom-40 {
  margin-bottom: 40px !important;
}

.mr-bottom-50 {
  margin-bottom: 50px !important;
}

.mr-bottom-60 {
  margin-bottom: 60px !important;
}

.mr-bottom-0 {
  margin-bottom: 0px !important;
}

.no-mr-top {
  margin-top: 0 !important;
}

.no-mr-bottom {
  margin-bottom: 0 !important;
}

.pd-top-90 {
  padding-top: 90px !important;
}

.pd-top-80 {
  padding-top: 80px !important;
}

.pd-top-70 {
  padding-top: 70px !important;
}

.pd-top-60 {
  padding-top: 60px !important;
}

.pd-top-50 {
  padding-top: 50px !important;
}

.pd-top-55 {
  padding-top: 55px !important;
}

.pd-top-40 {
  padding-top: 40px !important;
}

.pd-top-45 {
  padding-top: 45px !important;
}

.pd-top-35 {
  padding-top: 35px !important;
}

.pd-top-30 {
  padding-top: 30px !important;
}

.pd-top-20 {
  padding-top: 20px !important;
}

.pd-top-25 {
  padding-top: 25px !important;
}

.pd-top-15 {
  padding-top: 15px !important;
}

.pd-top-10 {
  padding-top: 10px !important;
}

.pd-top-5 {
  padding-top: 10px !important;
}

.pd-top-0 {
  padding-top: 0px !important;
}

.pd-bottom-120 {
  padding-bottom: 120px !important;
}

.pd-bottom-95 {
  padding-bottom: 95px !important;
}

.pd-bottom-80 {
  padding-bottom: 80px !important;
}

.pd-bottom-70 {
  padding-bottom: 70px !important;
}

.pd-bottom-60 {
  padding-bottom: 60px !important;
}

.pd-bottom-50 {
  padding-bottom: 50px !important;
}

.pd-bottom-55 {
  padding-bottom: 55px !important;
}

.pd-bottom-40 {
  padding-bottom: 40px !important;
}

.pd-bottom-45 {
  padding-bottom: 45px !important;
}

.pd-bottom-35 {
  padding-bottom: 35px !important;
}

.pd-bottom-30 {
  padding-bottom: 30px !important;
}

.pd-bottom-20 {
  padding-bottom: 20px !important;
}

.pd-bottom-15 {
  padding-bottom: 15px !important;
}

.pd-bottom-10 {
  padding-bottom: 10px !important;
}

.pd-bottom-0 {
  padding-bottom: 0px !important;
}

.pd-right-0 {
  padding-right: 0 !important;
}

.link-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.link-more i {
  font-size: 8px;
  margin-left: 15px;
  margin-top: 2px;
}

.link-more i.down {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.link-more.open i.down {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.caret {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border: 0;
  outline: 0;
  font-size: 8px;
  margin-top: -3px;
}

.caret:before {
  content: "\e901";
}

/*------ Scroll ------*/
/*
* Container style
*/
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
* Scrollbar rail styles
*/
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
  z-index: 500;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps__rail-x:hover,
.ps__rail-y:hover,
.ps__rail-x:focus,
.ps__rail-y:focus {
  background-color: transparent;
  opacity: 0.9;
}

/*
* Scrollbar thumb styles
*/
.ps__thumb-x {
  background-color: rgba(59, 66, 86, 0.7);
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 8px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: rgba(59, 66, 86, 0.7);
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 8px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x {
  background-color: #3b4256;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y {
  background-color: #3b4256;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

/*------ end Scroll ------*/
.link-delete {
  width: 30px;
  height: 30px;
  display: block;
  color: #939598;
  font-size: 30px;
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-delete:before {
  content: "\e91f";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* spoiler-box */
.spoiler-box {
  border: 1px solid #e6e7e8;
  margin: 30px 0;
  border-radius: 4px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #ffffff;
}

.spoiler-box__btn,
.spoiler-box__content {
  padding-left: 35px;
  padding-left: 3.5rem;
  padding-right: 35px;
  padding-right: 3.5rem;
}

.spoiler-box__btn {
  font-weight: 500;
  padding-right: 85px;
  display: block;
  width: 100%;
  cursor: pointer;
  position: relative;
  padding-bottom: 25px;
  padding-bottom: 2.5rem;
  padding-top: 25px;
  padding-top: 2.5rem;
  color: #14171e;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.spoiler-box__content {
  display: none;
  border-top: 1px solid #d5dae0;
  padding-top: 25px;
  padding-top: 2.5rem;
  padding-bottom: 25px;
  padding-bottom: 2.5rem;
}

.spoiler-box__carret {
  position: absolute;
  display: block;
  right: -12px;
  top: 50%;
  margin-top: -11px;
  border: 2px solid #bdc2d0;
  background: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 17px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 10;
}

.spoiler-box__carret:before,
.spoiler-box__carret:after {
  content: "";
  position: absolute;
  background: #bdc2d0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.spoiler-box__carret:before {
  width: 10px;
  height: 2px;
  top: 50%;
  margin-top: -1px;
  left: 50%;
  margin-left: -5px;
}

.spoiler-box__carret:after {
  width: 2px;
  height: 10px;
  top: 50%;
  margin-top: -5px;
  left: 50%;
  margin-left: -1px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.spoiler-box.open > .spoiler-box__btn > .spoiler-box__carret:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/*------------------- FORM -------------------*/
.form h4:first-child {
  margin-top: 0;
}

textarea {
  resize: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.bootstrap-select > .dropdown-toggle {
  display: block;
  text-align: left;
  float: none !important;
}

.bootstrap-select .dropdown-menu {
  overflow: auto;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group ul {
  padding-left: 0;
  float: left;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 25px;
  border-bottom: 2px solid #e6e6e6;
}

.form-group--field-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.form-group--field-btn label.error {
  margin-left: 10px;
}

.form-group--field-btn__elem-btn {
  margin-left: 18px;
  min-width: 170px;
}

.form-group--field-btn__elem {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.form-group--field-btn__elem:last-child {
  margin-right: 0;
}

.form-group .placeholder {
  margin-bottom: 10px;
}

.form-group .wrap-check .placeholder {
  margin-bottom: 0;
}

.form-group .jq-selectbox {
  display: block !important;
}

.form-group label.error {
  color: #f9231e;
  font-weight: 300;
  font-size: 14px;
  margin-top: 5px;
}

.form-check-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 20px;
}

.form-check-list__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 40%;
  padding-top: 2px;
  padding-right: 40px;
}

.form-check-list__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 60%;
}

.form-check-list .form-group {
  margin: 0;
}

.form-check-list .wrap-check {
  margin-right: 20px;
}

.form-box-rate {
  padding-top: 30px;
  margin-bottom: 30px;
}

.form-box-rate .form-group-rate-line {
  margin-bottom: 0;
}

.form-group-rate-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.form-group-rate-line > * {
  margin: 0 !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.form-group-rate-line > *:first-child {
  margin-right: 25px !important;
}

.form-group.error,
.form-control.error {
  border-color: #f9231e;
  color: #f9231e;
}

.two-btn--ix2 .two-btn__elem:first-child {
  margin-right: 30px;
}

.error-message {
  color: #ff3333;
  font-weight: 700;
  margin-bottom: 37px;
  display: none;
  font-size: 18px;
}

.error-message.show {
  display: block;
}

.valid .help-block {
  display: none;
}

.form-control__description {
  font-size: 13px;
  margin-bottom: 15px;
}

input.form-control--sm {
  max-width: 150px;
}

input.form-control,
textarea.form-control,
.rss-link {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px 25px;
  color: #333333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #dde0e3;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 56px;
  border-radius: 4px;
}

.rss-link {
  margin-top: 20px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.rss-link > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

textarea.form-control {
  padding-top: 25px;
  padding-top: 2.5rem;
  min-height: 165px;
}

.header__search-form-wrap .form-sub-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.form-sub-title {
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 40px;
}

.form-title {
  margin-top: 0;
  font-size: 1.4em;
  color: #333333;
}

.form-description {
  margin-top: 0;
  margin-bottom: 30px;
}

.placeholder-fix-textarea label.placeholder {
  background: rgba(255, 255, 255, 0.95);
  right: 2px;
  top: 1px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-shadow: 0 3px 1px 0 rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 1px 0 rgba(255, 255, 255, 0.95);
}

.form-group--placeholder-fix {
  position: relative;
  font-weight: 400;
}

.form-group--placeholder-fix input {
  padding-top: 20px;
  padding-bottom: 0;
}

.form-group--placeholder-fix textarea {
  padding-top: 45px;
}

.form-group--placeholder-fix label.placeholder {
  color: #939598;
  z-index: 1;
  position: absolute;
  top: 17px;
  left: 25px;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  cursor: text;
  border-radius: 0;
  font-weight: 400;
}

.form-group--placeholder-fix.full label.placeholder {
  top: 10px;
  font-size: 11px;
}

.form-group--placeholder-fix i {
  font-style: normal;
}

.form-box {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 30px;
  padding-bottom: 3rem;
}

.form-box-group > .form-box:last-child {
  border-bottom: 0;
}

.form-box-group > .form-box:first-child .form-sub-title {
  margin-top: 0;
}

.form-group:not(.full) .form-el-counter {
  font-size: 12px;
}

.form-el-counter {
  margin-left: 7px;
}

.btn-and-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn-and-text .btn {
  min-width: 300px;
}

/* placeholder-email-confirm  */
.placeholder-email-confirm {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.placeholder-email-confirm .send-new-code {
  float: right;
  font-weight: 400;
  border-bottom: 1px dashed #0575bc;
  text-decoration: none;
  font-size: 14px;
}

.placeholder-email-confirm .send-new-code:hover,
.placeholder-email-confirm .send-new-code:focus,
.placeholder-email-confirm .send-new-code:active {
  border-bottom: 1px dashed transparent;
}

/* file */
.jq-file {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.jq-file input {
  position: absolute;
  top: 0;
  right: 0;
  height: auto;
  margin: 0;
  padding: 0;
  opacity: 0;
  font-size: 100px;
  line-height: 1em;
}

.jq-file__name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.file--btn .jq-file__name {
  display: none;
}

.jq-file__browse {
  width: 100%;
}

.file--btn,
.file--btn {
  cursor: pointer;
}

/* two-btn */
.two-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.two-btn__elem {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  text-align: center;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  margin-right: 15px;
}

.two-btn__elem:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .two-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .two-btn__elem {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 15px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .two-btn__elem:last-child {
    margin-bottom: 0;
  }
}

/* radio checkbox */
.check-group {
  margin-top: 25px;
}

.check-group--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.wrap-check label,
.wrap-check .placeholder {
  padding-right: 12px;
  padding-left: 12px;
}

.jq-checkbox,
.jq-radio {
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.jq-checkbox input,
.jq-radio input {
  position: absolute;
  z-index: -1;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.jq-radio__div {
  background: #ffffff;
  height: 0;
  width: 0;
  top: 50%;
  margin-top: 0;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  margin-left: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.info .wrap-check {
  margin-top: 10px;
}

.jq-radio,
.jq-checkbox {
  border: 1px solid #dde0e3;
  background: #ffffff;
  border-radius: 50%;
  height: 24px;
  width: 24px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
  top: 1px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.jq-radio.checked,
.jq-checkbox.checked {
  background: #0575bc;
  border-color: #0575bc;
}

.jq-radio.disabled,
.jq-checkbox.disabled,
.jq-radio.disabled.checked,
.jq-checkbox.disabled.checked {
  border-color: #dde0e3 !important;
  background: #dde0e3 !important;
  cursor: default;
}

.jq-checkbox {
  border-radius: 4px;
}

.jq-checkbox.checked .jq-checkbox__div {
  border-radius: 4px;
  background: url(../img/general/icon/check.svg) no-repeat center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  position: absolute;
}

.jq-radio {
  border-radius: 50%;
}

.jq-radio.checked .jq-radio__div {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
  background: #ffffff;
}

.wrap-check {
  margin-bottom: 12px;
}

.wrap-check:hover label,
.wrap-check:hover .placeholder {
  color: #0575bc;
}

.wrap-check:hover .jq-radio,
.wrap-check:hover .jq-checkbox {
  border-color: #0575bc;
}

.checked + label {
  color: #0575bc;
}

.disabled + label,
.disabled.checked + label,
.wrap-check:hover .disabled + label {
  color: #939598 !important;
  cursor: default;
}

.btn-param {
  white-space: nowrap;
  margin-left: 30px;
}

.checkbox-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.checkbox-list .wrap-check {
  width: 25%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  max-width: 280px;
}

.range-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.range-date .form-control {
  max-width: 140px;
}

.range-date .sub-title {
  margin-right: 15px;
  display: block;
}

.range-date .sub-title.center {
  margin-left: 15px;
}

.range-date,
.checkbox-list {
  margin-top: 20px;
}

.wrap-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px !important;
}

.form-group .check {
  margin-right: 15px;
}

.wrap-check label,
.wrap-check .jq-radio,
.wrap-check .jq-checkbox,
.wrap-check .placeholder {
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 0;
  vertical-align: middle;
  cursor: pointer;
}

.filter-post-list .filter-ell {
  margin-bottom: 25px;
}

/* email-accept */
.email-accept {
  padding-left: 60px;
  position: relative;
}

.email-accept i {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
  font-size: 40px;
}

/* send-code-info */
.send-code-info {
  margin-top: 20px;
}

/* password-show */
.password-show {
  width: 19px;
  height: 19px;
  font-size: 19px;
  right: 28px;
  top: 20px;
  position: absolute;
  display: block;
  cursor: pointer;
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  letter-spacing: 1px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.password-show:before {
  display: block;
  content: "\e928";
}

.password-show.show:before {
  content: "\e927";
}

/* under-btn-info */
.under-btn-info {
  font-size: 15px;
  text-align: center;
  margin-top: 7px;
  margin-bottom: 7px;
}

.under-btn-info span {
  margin: 0 9px;
}

/* confirm-email */
.send-new-code {
  display: block;
  text-decoration: underline;
}

.send-new-code,
.send-new-code:hover,
.send-new-code:focus {
  background: transparent;
  color: #0575bc;
  border: 0;
  outline: 0;
  padding: 0;
  margin: 0;
}

.send-new-code:hover,
.send-new-code:focus {
  text-decoration: none;
}

.confirm-email__elem {
  display: inline-block;
  margin-right: 10px;
}

.confirm-email__elem,
.confirm-email__elem input {
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.confirm-email__elem input {
  text-align: center;
  padding-left: 15px;
}

.confirm-email__result {
  display: none;
  color: #278d27;
}

.confirm-email__code {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
}

.confirm-email-code-info {
  margin-bottom: 30px;
}

.confirm-email__info a {
  text-decoration: underline;
}

.confirm-email__info a:hover {
  text-decoration: none;
}

.error .confirm-email__result {
  color: #ff3333;
}

.done .confirm-email__info {
  display: none;
}

.done .confirm-email__result,
.error .confirm-email__result {
  display: block;
}

.retry-verify-codes-runner.hidden {
  display: none;
}

.retry-verify-codes-runner {
  display: block;
  color: #ff3333;
}

/* field-icon-loupe */
.field-icon-loupe {
  position: relative;
  display: block;
  margin: 0;
  opacity: 0.6;
}

.field-icon-loupe .form-control {
  margin: 0;
  padding-right: 50px;
}

.field-icon-loupe i {
  position: absolute;
  top: 50%;
  right: 24px;
  font-size: 18px;
  margin-top: -8px;
}

/* block-email-or-mail */
.block-email-or-mail {
  display: none;
}

.block-email-or-mail.active {
  display: block;
}

/* two-date */
.two-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  max-width: 350px;
}

.two-date:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  z-index: -1;
  top: 0;
  bottom: 0;
}

.two-date input {
  padding-right: 50px;
  height: 64px;
}

.two-date:after {
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  background: #d2d8de;
  width: 2px;
  position: absolute;
  height: 30px;
  margin-top: -15px;
  margin-left: -1px;
}

.two-date .form-group--placeholder-fix .placeholder {
  top: 22px;
}

.two-date .two-date__elem {
  position: relative;
  width: 50%;
}

.two-date .two-date__elem:first-child input {
  border-radius: 4px 0 0 4px;
  border-right: 0;
}

.two-date .two-date__elem:last-child input {
  border-radius: 0 4px 4px 0;
  border-left: 0;
}

.wrap-division {
  padding-left: 70px;
}

/* fileupload */
.fileinput-button {
  display: block !important;
}

.btn-delete {
  outline: 0;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
}

.btn-delete i {
  color: #bdc2d0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  font-size: 16px;
}

.box-drop-style {
  background: #ffffff;
  border: 2px dashed #dde0e3;
  border-radius: 4px;
  padding: 30px;
  position: relative;
  white-space: nowrap;
  font-size: 0;
  padding-right: 80px;
  margin-bottom: 20px;
  overflow: hidden;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.box-drop-style--blue,
.box-drop-style.drop {
  background-color: #e6f0ff;
  border-color: #a6c4f0;
}

.box-drop-style--red {
  background: #fdebeb;
}

.box-drop-style .wrap-progress-bar {
  display: block;
}

.box-drop-style > * {
  display: inline-block;
  white-space: normal;
  font-size: 1.6rem;
  vertical-align: middle;
}

.box-drop-style .sub-text {
  font-size: 1.4rem;
}

.box-drop-style .sub-text .mark {
  display: inline-block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  margin-left: 7px;
  margin-right: 9px;
  position: relative;
  background: #c9ced3;
  top: -1px;
}

.box-drop-style.fileupload-list__box {
  border-style: solid;
  border-width: 1px;
  margin: 0;
  margin-bottom: -1px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.box-drop-style .sub-text.error,
.box-drop-style .name-inner.error {
  color: #ad2623;
  font-weight: 500;
}

.droptarget.fileinput-button .jq-file__browse {
  background: #f4f7fe;
  border-color: #f4f7fe;
  color: #14171e;
  cursor: pointer;
}

.droptarget.fileinput-button:hover .jq-file__browse {
  background: #e1eaff;
  border-color: #e1eaff;
}

.fileinput-button {
  padding-left: 255px;
}

.fileinput-button .jq-file input {
  cursor: pointer;
}

.fileinput-button .jq-file__name {
  display: none;
}

.fileinput-button label.error {
  display: block;
  margin: 0;
}

.fileinput-button .jq-file {
  position: absolute;
  top: 0;
  left: 30px;
  bottom: 0;
  right: 0;
}

.fileinput-button .jq-file__browse {
  width: 205px;
  font-size: 16px;
  letter-spacing: 1px;
  height: 56px;
  top: 50%;
  margin-top: -28px;
  position: absolute;
}

.fileupload-list__box .name > .name-inner {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
  overflow: hidden;
}

.fileupload-list__box .preview {
  width: 70px;
  height: 70px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #939598;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  padding-top: 2px;
}

.fileupload-list__box .preview img {
  max-width: 100%;
  display: block;
}

.fileupload-list__box .btn-delete {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -8px;
}

.fileupload-list__box .name-size {
  width: calc(100% - 90px);
}

.fileupload-list > div:last-child {
  margin-bottom: 50px;
}

.fileupload-buttonbar .progress {
  margin: none;
}

.progress {
  height: 3px;
  border: 1px solid #dde0e3;
  border-radius: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.progress-bar-success {
  background-color: #0641d9;
}

.with-progress-bar {
  position: relative;
}

.with-progress-bar .progress {
  position: absolute;
  width: auto;
  left: 110px;
  right: 0;
  top: 50%;
  margin-top: -3px;
}

.form-group > .quiz-rersult:not(.quiz-rersult-percent--top):last-child {
  padding-bottom: 0;
}

.aside input.form-control,
.aside textarea.form-control,
.aside .rss-link,
.aside .bootstrap-select .btn-default,
.aside .bootstrap-select .btn-default:focus {
  background-color: #ffffff;
}

#navbar-search {
  width: 100%;
}

/* search-line */
.form-search-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  width: 100%;
}

.form-search-line input.form-control {
  height: auto;
  padding-top: 22px;
  padding-bottom: 22px;
  padding-right: 240px;
}

.form-search-line input.form-control.focus {
  -webkit-box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
  box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
}

.form-search-line .search-btn {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: absolute;
  right: 10px;
  padding-top: 12px;
  top: 10px;
  bottom: 10px;
  height: auto;
  width: 120px;
}

.form-search-line--big {
  margin-bottom: 15px;
}

.form-search-line--big input.form-control {
  padding-top: 30px;
  padding-bottom: 30px;
}

.form-search-line--big .search-btn {
  top: 15px;
  bottom: 15px;
  right: 15px;
  padding-top: 16px;
}

.form-search-line input.form-control[name="term"].focus {
  border-color: #00cf91;
  -webkit-box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
  box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
}

.search-result strong {
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 500;
}

.header__search-form .search-form-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 35px;
}

.search__nav-bottom .nav.nav-tabs {
  text-align: left !important;
}

.search-form .form-sub-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.search-form .search-form-top {
  margin-bottom: 40px;
  margin-top: 65px;
}

.search-form-top--btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.search-form-top--btn .form-search-line {
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.search-form-top--btn .param-search {
  margin-left: 30px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  display: block;
  height: 68px;
  line-height: 68px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.param-search {
  cursor: pointer;
  font-weight: 500;
}

.param-search i {
  margin-right: 10px;
  font-size: 22px;
  position: relative;
  top: 4px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

/*---------------------- UI Autocomplete ----------------------*/
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-autocomplete {
  position: absolute;
  margin: 0;
  outline: 0;
}

.ui-menu {
  border: 1px solid #e5e8eb;
  background-color: #ffffff;
  margin-top: -1px;
  list-style: none;
  z-index: 1600;
  width: 100%;
  -webkit-box-shadow: 0 10px 20px 0px rgba(165, 187, 182, 0.25);
  box-shadow: 0 10px 20px 0px rgba(165, 187, 182, 0.25);
  padding: 0;
  max-height: 500px;
  overflow: auto;
  border-radius: 4px;
}

.ui-menu-item {
  cursor: pointer;
  padding: 15px 28px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.ui-menu-item:first-child {
  padding-top: 20px;
}

.ui-menu-item:last-child {
  padding-bottom: 20px;
}

.ui-menu-item:hover {
  background-color: #f8f8f8;
}

.ui-autocomplete.ui-menu .ui-state-focus,
.ui-autocomplete.ui-menu .ui-state-active {
  color: #000f33;
  border: 0 !important;
  margin-top: 0;
}

.form-smart-search__buttom {
  padding-top: 16px;
  padding-bottom: 16px;
}

.ui-menu div:first-of-type:after {
  background-color: #ffffff;
}

/* end */
/*---------------------- Zebra_Datepicker ----------------------*/
.Zebra_DatePicker {
  position: absolute;
  background: #ffffff;
  z-index: 777777;
  top: 0;
  border-radius: 0px;
  border: 0;
  -webkit-box-shadow: 0 5px 15px 0 rgba(7, 7, 7, 0.1);
  box-shadow: 0 5px 15px 0 rgba(7, 7, 7, 0.1);
}

.Zebra_DatePicker * {
  margin: 0;
  padding: 0;
  color: #000;
  background: transparent;
  border: none;
}

.Zebra_DatePicker.dp_visible {
  visibility: visible;
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.Zebra_DatePicker.dp_hidden {
  visibility: hidden;
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}

.Zebra_DatePicker .dp_unavailable {
  display: none;
}

.Zebra_DatePicker table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: auto;
}

.Zebra_DatePicker table th,
.Zebra_DatePicker table td {
  text-align: center;
  vertical-align: middle;
  padding: 5px;
}

.Zebra_DatePicker table td {
  cursor: pointer;
}

.Zebra_DatePicker table td.dp_disabled,
.Zebra_DatePicker table td.dp_not_in_month,
.Zebra_DatePicker table td.dp_not_in_month_selectable {
  color: #dfe1e4;
  cursor: default;
}

.Zebra_DatePicker table td.dp_disabled_current {
  color: #e38585 !important;
}

.Zebra_DatePicker table td.dp_not_in_month_selectable {
  cursor: pointer;
}

.Zebra_DatePicker table td.dp_weekend {
  background: #f8fafd;
}

.Zebra_DatePicker table td.dp_weekend_disabled {
  color: #ccc;
  cursor: default;
}

.Zebra_DatePicker table td.dp_current {
  color: #0575bc;
}

.Zebra_DatePicker table td.dp_selected {
  background: #62b0ff;
  color: #fff;
}

.Zebra_DatePicker table td.dp_hover {
  background: #3b4255;
  color: #fff;
}

.Zebra_DatePicker table td.dp_current.dp_hover {
  color: #ffffff !important;
}

.Zebra_DatePicker .dp_daypicker td,
.Zebra_DatePicker .dp_daypicker th,
.Zebra_DatePicker .dp_monthpicker td,
.Zebra_DatePicker .dp_monthpicker th,
.Zebra_DatePicker .dp_yearpicker td,
.Zebra_DatePicker .dp_yearpicker th,
.Zebra_DatePicker .dp_timepicker td,
.Zebra_DatePicker .dp_timepicker th {
  background: #ffffff;
  width: 60px;
  height: 40px;
  border: 1px solid #e4e9f0;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}

.Zebra_DatePicker .dp_daypicker th {
  background: #ffffff;
  font-weight: 500;
  color: #778ab1;
  text-transform: uppercase;
}

.Zebra_DatePicker .dp_header .dp_hover,
.Zebra_DatePicker .dp_footer .dp_hover {
  background: transparent;
}

.Zebra_DatePicker .dp_header {
  border: 1px solid #e4e9f0;
  background: #f8fafd;
  border-bottom: 0;
}

.Zebra_DatePicker .dp_header td {
  color: #939598;
  background-color: transparent !important;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.Zebra_DatePicker .dp_header .dp_previous,
.Zebra_DatePicker .dp_header .dp_next,
.Zebra_DatePicker .dp_header .dp_prev {
  width: 30px;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
}

.Zebra_DatePicker .dp_header .dp_previous span:before,
.Zebra_DatePicker .dp_header .dp_next span:before,
.Zebra_DatePicker .dp_header .dp_prev span:before {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  font-size: 14px;
  color: #939598;
}

.Zebra_DatePicker .dp_header .dp_caption {
  font-weight: 400;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 30px;
}

.Zebra_DatePicker .dp_monthpicker td,
.Zebra_DatePicker .dp_yearpicker td {
  width: 33.3333%;
}

.Zebra_DatePicker .dp_timepicker td {
  width: 25%;
}

.Zebra_DatePicker .dp_timepicker td.dp_disabled {
  color: #000;
}

.Zebra_DatePicker .dp_footer {
  border: 1px solid #e4e9f0;
  border-top: 0;
}

.Zebra_DatePicker .dp_footer td {
  color: #fff;
}

.Zebra_DatePicker .dp_footer td.dp_today,
.Zebra_DatePicker .dp_footer td.dp_clear,
.Zebra_DatePicker .dp_footer td.dp_timepicker_toggler {
  padding: 20px 5px;
}

.Zebra_DatePicker .dp_footer td.dp_today {
  color: #2e6dd6;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.Zebra_DatePicker .dp_footer td.dp_today:hover {
  background: transparent;
}

.Zebra_DatePicker .dp_footer td.dp_clear {
  color: #0575bc;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.Zebra_DatePicker .dp_footer td.dp_clear:hover {
  background: transparent;
}

.Zebra_DatePicker_Icon_Wrapper {
  width: 100% !important;
}

.Zebra_DatePicker_Icon_Wrapper .Zebra_DatePicker_Icon {
  position: absolute;
  font-size: 21px;
  right: 25px !important;
  top: 50% !important;
  margin-top: -10px;
  cursor: pointer;
  border: none !important;
  outline: 0 !important;
  padding: 0;
  line-height: 0;
  z-index: 10;
}

@media (max-width: 767px) {
  .Zebra_DatePicker,
  .dp_header,
  .dp_footer,
  .dp_monthpicker,
  .dp_yearpicker {
    max-width: 100%;
  }
}

/* jsTree default theme */
.jstree-node,
.jstree-children,
.jstree-container-ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-image: none;
}

.jstree-node {
  white-space: nowrap;
}

.jstree-anchor {
  display: inline-block;
  color: black;
  white-space: nowrap;
  padding: 0 4px 0 1px;
  margin: 0;
  vertical-align: top;
}

.jstree-anchor:focus {
  outline: 0;
}

.jstree-anchor,
.jstree-anchor:link,
.jstree-anchor:visited,
.jstree-anchor:hover,
.jstree-anchor:active {
  text-decoration: none;
  color: inherit;
}

.jstree-icon {
  display: inline-block;
  text-decoration: none;
  margin: 0;
  padding: 0;
  vertical-align: top;
  text-align: center;
}

.jstree-icon:empty {
  display: inline-block;
  text-decoration: none;
  margin: 0;
  padding: 0;
  vertical-align: top;
  text-align: center;
}

.jstree-ocl {
  cursor: pointer;
}

.jstree-leaf > .jstree-ocl {
  cursor: default;
}

.jstree .jstree-open > .jstree-children {
  display: block;
}

.jstree .jstree-closed > .jstree-children,
.jstree .jstree-leaf > .jstree-children {
  display: none;
}

.jstree-anchor > .jstree-themeicon {
  margin-right: 2px;
}

.jstree-no-icons .jstree-themeicon,
.jstree-anchor > .jstree-themeicon-hidden {
  display: none;
}

.jstree-hidden,
.jstree-node.jstree-hidden {
  display: none;
}

.jstree-rtl .jstree-anchor {
  padding: 0 1px 0 4px;
}

.jstree-rtl .jstree-anchor > .jstree-themeicon {
  margin-left: 2px;
  margin-right: 0;
}

.jstree-rtl .jstree-node {
  margin-left: 0;
}

.jstree-rtl .jstree-container-ul > .jstree-node {
  margin-right: 0;
}

.jstree-wholerow-ul {
  position: relative;
  display: inline-block;
  min-width: 100%;
}

.jstree-wholerow-ul .jstree-leaf > .jstree-ocl {
  cursor: pointer;
}

.jstree-wholerow-ul .jstree-anchor,
.jstree-wholerow-ul .jstree-icon {
  position: relative;
}

.jstree-wholerow-ul .jstree-wholerow {
  width: 100%;
  cursor: pointer;
  position: absolute;
  left: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.jstree-contextmenu .jstree-anchor {
  -webkit-user-select: none;
  /* disable selection/Copy of UIWebView */
  -webkit-touch-callout: none;
  /* disable the IOS popup when long-press on a link */
}

.vakata-context {
  display: none;
}

.vakata-context,
.vakata-context ul {
  margin: 0;
  padding: 2px;
  position: absolute;
  background: #f5f5f5;
  border: 1px solid #979797;
  -webkit-box-shadow: 2px 2px 2px #999999;
  box-shadow: 2px 2px 2px #999999;
}

.vakata-context ul {
  list-style: none;
  left: 100%;
  margin-top: -2.7em;
  margin-left: -4px;
}

.vakata-context .vakata-context-right ul {
  left: auto;
  right: 100%;
  margin-left: auto;
  margin-right: -4px;
}

.vakata-context li {
  list-style: none;
}

.vakata-context li > a {
  display: block;
  padding: 0 2em 0 2em;
  text-decoration: none;
  width: auto;
  color: black;
  white-space: nowrap;
  line-height: 2.4em;
  text-shadow: 1px 1px 0 white;
  border-radius: 1px;
}

.vakata-context li > a:hover {
  position: relative;
  background-color: #e8eff7;
  -webkit-box-shadow: 0 0 2px #0a6aa1;
  box-shadow: 0 0 2px #0a6aa1;
}

.vakata-context li > a.vakata-context-parent {
  background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw==");
  background-position: right center;
  background-repeat: no-repeat;
}

.vakata-context li > a:focus {
  outline: 0;
}

.vakata-context .vakata-context-hover > a {
  position: relative;
  background-color: #e8eff7;
  -webkit-box-shadow: 0 0 2px #0a6aa1;
  box-shadow: 0 0 2px #0a6aa1;
}

.vakata-context .vakata-context-separator > a,
.vakata-context .vakata-context-separator > a:hover {
  background: white;
  border: 0;
  border-top: 1px solid #e2e3e3;
  height: 1px;
  min-height: 1px;
  max-height: 1px;
  padding: 0;
  margin: 0 0 0 2.4em;
  border-left: 1px solid #e0e0e0;
  text-shadow: 0 0 0 transparent;
  -webkit-box-shadow: 0 0 0 transparent;
  box-shadow: 0 0 0 transparent;
  border-radius: 0;
}

.vakata-context .vakata-contextmenu-disabled a,
.vakata-context .vakata-contextmenu-disabled a:hover {
  color: silver;
  background-color: transparent;
  border: 0;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

.vakata-context li > a > i {
  text-decoration: none;
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  background: transparent;
  margin: 0 0 0 -2em;
  vertical-align: top;
  text-align: center;
  line-height: 2.4em;
}

.vakata-context li > a > i:empty {
  width: 2.4em;
  line-height: 2.4em;
}

.vakata-context li > a .vakata-contextmenu-sep {
  display: inline-block;
  width: 1px;
  height: 2.4em;
  background: white;
  margin: 0 0.5em 0 0;
  border-left: 1px solid #e2e3e3;
}

.vakata-context .vakata-contextmenu-shortcut {
  font-size: 0.8em;
  color: silver;
  opacity: 0.5;
  display: none;
}

.vakata-context-rtl ul {
  left: auto;
  right: 100%;
  margin-left: auto;
  margin-right: -4px;
}

.vakata-context-rtl li > a.vakata-context-parent {
  background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7");
  background-position: left center;
  background-repeat: no-repeat;
}

.vakata-context-rtl .vakata-context-separator > a {
  margin: 0 2.4em 0 0;
  border-left: 0;
  border-right: 1px solid #e2e3e3;
}

.vakata-context-rtl .vakata-context-left ul {
  right: auto;
  left: 100%;
  margin-left: -4px;
  margin-right: auto;
}

.vakata-context-rtl li > a > i {
  margin: 0 -2em 0 0;
}

.vakata-context-rtl li > a .vakata-contextmenu-sep {
  margin: 0 0 0 0.5em;
  border-left-color: white;
  background: #e2e3e3;
}

#jstree-marker {
  position: absolute;
  top: 0;
  left: 0;
  margin: -5px 0 0 0;
  padding: 0;
  border-right: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
}

#jstree-dnd {
  line-height: 16px;
  margin: 0;
  padding: 4px;
}

#jstree-dnd .jstree-icon,
#jstree-dnd .jstree-copy {
  display: inline-block;
  text-decoration: none;
  margin: 0 2px 0 0;
  padding: 0;
  width: 16px;
  height: 16px;
}

#jstree-dnd .jstree-ok {
  background: green;
}

#jstree-dnd .jstree-er {
  background: red;
}

#jstree-dnd .jstree-copy {
  margin: 0 2px 0 2px;
}

/*------------------- CALENDAR -------------------*/
.calendar .bootstrap-select {
  min-width: 180px;
}

.calendar .bootstrap-select.btn-group .dropdown-menu li a span.text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section.section-event {
  z-index: 10;
  position: relative;
}

/*------------------- LOADER -------------------*/
.relative {
  position: relative;
}

.loader {
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  -webkit-animation: none;
  animation: none;
  cursor: default;
  display: none;
}

.three-bounce {
  text-align: center;
  font-size: 26px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 50%;
  margin-left: -40px;
  width: 80px;
  z-index: 10;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out 0;
  transition: all 0.3s ease-in-out 0;
}

.three-bounce > div {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #e20338;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
  animation: bouncedelay 1.4s infinite ease-in-out both;
}

.three-bounce > .one {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.three-bounce > .two {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}

.flex-wrap > .col-lg-1,
.flex-wrap > .col-lg-10,
.flex-wrap > .col-lg-11,
.flex-wrap > .col-lg-12,
.flex-wrap > .col-lg-2,
.flex-wrap > .col-lg-3,
.flex-wrap > .col-lg-4,
.flex-wrap > .col-lg-5,
.flex-wrap > .col-lg-6,
.flex-wrap > .col-lg-7,
.flex-wrap > .col-lg-8,
.flex-wrap > .col-lg-9,
.flex-wrap > .col-md-1,
.flex-wrap > .col-md-10,
.flex-wrap > .col-md-11,
.flex-wrap > .col-md-12,
.flex-wrap > .col-md-2,
.flex-wrap > .col-md-3,
.flex-wrap > .col-md-4,
.flex-wrap > .col-md-5,
.flex-wrap > .col-md-6,
.flex-wrap > .col-md-7,
.flex-wrap > .col-md-8,
.flex-wrap > .col-md-9,
.flex-wrap > .col-sm-1,
.flex-wrap > .col-sm-10,
.flex-wrap > .col-sm-11,
.flex-wrap > .col-sm-12,
.flex-wrap > .col-sm-2,
.flex-wrap > .col-sm-3,
.flex-wrap > .col-sm-4,
.flex-wrap > .col-sm-5,
.flex-wrap > .col-sm-6,
.flex-wrap > .col-sm-7,
.flex-wrap > .col-sm-8,
.flex-wrap > .col-sm-9,
.flex-wrap > .col-xs-1,
.flex-wrap > .col-xs-10,
.flex-wrap > .col-xs-11,
.flex-wrap > .col-xs-12,
.flex-wrap > .col-xs-2,
.flex-wrap > .col-xs-3,
.flex-wrap > .col-xs-4,
.flex-wrap > .col-xs-5,
.flex-wrap > .col-xs-6,
.flex-wrap > .col-xs-7,
.flex-wrap > .col-xs-8,
.flex-wrap > .col-xs-9 {
  float: none;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.section.section--bg.stuck.first {
  margin-bottom: 0;
}

.section.section--bg.stuck.last {
  margin-top: 0;
}

.section-info-main {
  padding-top: 25px !important;
  margin-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 90px !important;
}

.section.section--border-top {
  margin-bottom: 40px;
  padding-bottom: 80px;
}

.section.section--border-top {
  margin-top: 40px;
  padding-top: 0;
}

.section.section--border-top .section-border {
  margin-top: 0;
  padding-top: 20px;
  border-color: #dde0e3;
}

.section.media-block {
  margin-top: 0px !important;
}

.bottom-30-minus {
  margin-bottom: -30px;
}

.custom-tabs-content,
.tab-content {
  padding-top: 0;
  padding-bottom: 0;
}

.dropdown-menu > li > a {
  white-space: normal;
}

.box-sm {
  border-radius: 4px;
  padding: 20px;
}

.bg-box,
.bg-text-box {
  padding: 45px 30px;
  border-radius: 4px;
  margin-top: 35px;
  margin-bottom: 35px;
}

.bg-box--wide {
  padding-left: 45px;
  padding-right: 45px;
}

.success-restore .btn {
  min-width: 250px;
  max-width: 100%;
}

.success-restore i {
  margin-right: 10px;
  font-size: 20px;
  position: relative;
  top: 3px;
}

.text-bold {
  font-weight: 800;
}

/* БЛОКИ */
/* list-services */
#sectionServices .tab-content {
  min-height: 260px;
}

.services-box {
  margin-bottom: 30px;
}

.services-more-btn i {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.services-more-btn.open i {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.list-services > a:last-child {
  margin-bottom: 0;
}

.list-services__item {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 30px 100px 30px 30px;
  background: #ffffff;
  border: 1px solid #ffffff;
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 4px;
}

.list-services__item .news-date {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
}

.list-services__item span {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -21px;
  right: 20px;
  font-size: 42px;
  color: #dde0e3;
  text-align: center;
}

.list-services__item span:before {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.list-services__item i {
  border: none;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  color: #8c8c8c;
  font-size: 9px;
  left: 50%;
  margin-left: -4px;
}

.list-services__item i:before {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.list-services__item:hover span,
.list-services__item:focus span,
.list-services__item:hover i,
.list-services__item:focus i {
  color: #0575bc;
}

.list-services__item .name {
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  margin-bottom: 0;
}

.list-services__item .name p,
.list-services__item .name .p {
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

/* border-block-sm and bg-block-sm */
.bg-block-sm,
.border-block-sm {
  padding: 30px;
  border-radius: 4px;
}

a.bg-block-sm,
a.border-block-sm,
.bg-block-sm,
.border-block-sm {
  display: block;
  cursor: pointer;
  color: inherit;
  height: 100%;
  border: 1px solid #e6e7e8;
}

a.border-block-sm {
  min-height: 200px;
}

.border-block {
  display: block;
  padding: 45px 30px;
  border: 1px solid #dde0e3;
}

.border-block--arrow {
  position: relative;
}

.border-block--arrow:before,
.border-block--arrow:after {
  content: "";
  position: absolute;
  right: 100%;
  top: 60px;
  border: 20px solid transparent;
  border-right: 20px solid #dde0e3;
}

.border-block--arrow:after {
  border-right: 20px solid #ffffff;
  right: calc(100% - 2px);
}

@media screen and (max-width: 991px) {
  .border-block {
    margin-bottom: -1px;
  }
  .border-block.block-arrow,
  .border-block {
    padding-bottom: 30px;
    padding-top: 30px;
  }
  .block-arrow::before,
  .block-arrow::after {
    display: none;
  }
}

/* friend */
.friend-block {
  border-radius: 4px;
  display: block;
  padding: 30px 32px 30px;
  position: relative;
  height: 100%;
}

.friend-block .inner {
  position: relative;
  padding-right: 30px;
  min-height: 60px;
}

.friend-block i {
  display: block;
  position: absolute;
  top: 5px;
  right: 0px;
  font-size: 15px;
}

.friend-block h4 {
  margin-bottom: 0;
}

.friend-block i {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.friend-block:hover i {
  color: #ffffff;
}

.beneficial-box-preview {
  margin-bottom: 30px;
}

.beneficial-box-sm {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.beneficial-box-sm > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.beneficial-box-sm > i {
  margin-top: 7px;
}

.beneficial-box-sm .beneficial-title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-right: 20px;
  margin-bottom: 0;
}

.beneficial-box .inner {
  position: relative;
  padding-top: 100px;
}

.beneficial-box > * {
  position: relative;
  z-index: 10;
}

.beneficial-box .beneficial-category {
  margin-bottom: 10px;
  display: block;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}

.beneficial-box .beneficial-title {
  margin-bottom: 0;
}

.beneficial-box .beneficial-img {
  z-index: 0;
  background-repeat: no-repeat;
  background-position: top right;
  width: 100%;
  height: 130px;
  position: absolute;
  top: 0;
  right: 0;
}

/* accordion */
.structure-tree .item-wrap,
.nav-accordion .item-wrap {
  position: relative;
}

.structure-tree .item-wrap.active .dcjq-icon:after,
.nav-accordion .item-wrap.active .dcjq-icon:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.structure-tree {
  /* 1 уровень */
  /* 2 уровень */
  /* общее у 2 и 3 и 4 */
  /* 3 уровень */
  /* 4 уровень */
  /* 4 уровень */
  /*> li > ul > li > ul > li > ul {
        padding-top: 5px;
        padding-bottom: 15px;
        margin-left: 120px;
        position: relative;
        &:after {
            content: '';
            display: block;
            width: 1px;
            border-left: 1px dashed #d8d8d8;
            position: absolute;
            left: -25px;
            top: -20px;
            bottom: 20px;
        }
    }
    > li > ul > li > ul > li.dcjq-parent-li:last-child > ul:after {
        display: none;
    }
    > li > ul > li > ul > li > ul > li > div.item-wrap {
        margin-left: 0;
        margin-bottom: 20px;
        margin-top: 10px;
        padding-left: 20px;
        .big { .font-size(1.4); font-weight: normal; }
        .name {
            padding-left: 30px;
            position: relative;
            display: block;
            .icon-link, .icon-right-arrow {
                position: absolute;
                display: block !important;
                left: 0;
                top: 6px;
            }
        }
        .wrap-span {
            padding-right: 30px;
            position: relative;
            display: inline-block;
            .icon-link {
                position: absolute;
                top: 0;
                left: auto;
                right: 0;
                bottom: auto;
            }

        }
    }*/
  /* 5 уровень */
}

.structure-tree p,
.structure-tree .h4 {
  margin: 0;
}

.structure-tree .active .name.link-color:not(:hover) {
  color: inherit;
}

.structure-tree .icon-right-arrow {
  font-size: 10px;
  font-size: 1rem;
}

.structure-tree .icon-link,
.structure-tree .icon-right-arrow {
  color: #c7c7c7;
  margin-left: 10px;
  position: relative;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.structure-tree .icon-link {
  font-size: 16px;
}

.structure-tree .name {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
}

.structure-tree .name .text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.structure-tree div.name .icon-right-arrow,
.structure-tree div.name .icon-link {
  display: none;
}

.structure-tree a.name .icon-right-arrow,
.structure-tree a.name .icon-link {
  display: inline;
}

.structure-tree a.name:hover .small {
  opacity: 0.7;
}

.structure-tree .small {
  margin-top: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  opacity: 1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.structure-tree > li > div.item-wrap {
  margin-bottom: 20px;
}

.structure-tree > li > div.item-wrap .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #e6e7e8;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 32px;
  border-radius: 4px;
  background: #ffffff;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.structure-tree > li > div.item-wrap .name .big {
  text-transform: uppercase;
}

.structure-tree > li > ul {
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}

.structure-tree > li > ul > li > div.item-wrap {
  margin-left: 60px;
  margin-bottom: 20px;
}

.structure-tree > li > ul > li > div.item-wrap .name {
  background: #f4f7fb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 32px;
  border-radius: 4px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.structure-tree li.dcjq-parent-li:last-child > ul:after {
  display: none;
}

.structure-tree > li > ul > li > ul,
.structure-tree > li > ul > li > ul > li > ul {
  position: relative;
}

.structure-tree > li > ul > li > ul:after,
.structure-tree > li > ul > li > ul > li > ul:after {
  content: "";
  display: block;
  width: 1px;
  border-left: 1px dashed #d8d8d8;
  position: absolute;
  top: -20px;
  bottom: 20px;
}

.structure-tree > li > ul > li > ul:after {
  left: 35px;
}

.structure-tree > li > ul > li > ul > li > ul:after {
  left: 95px;
}

.structure-tree > li > ul > li,
.structure-tree > li > ul > li > ul > li,
.structure-tree > li > ul > li > ul > li > ul > li {
  position: relative;
}

.structure-tree > li > ul > li > .item-wrap:after,
.structure-tree > li > ul > li > ul > li > .item-wrap:after,
.structure-tree > li > ul > li > ul > li > ul > li > .item-wrap:after {
  content: "";
  display: block;
  width: 1px;
  border-left: 1px dashed #d8d8d8;
  position: absolute;
  left: -25px;
  top: -20px;
  bottom: 0px;
}

.structure-tree > li > ul > li:last-child > .item-wrap:after,
.structure-tree > li > ul > li > ul > li:last-child > .item-wrap:after,
.structure-tree > li > ul > li > ul > li > ul > li:last-child > .item-wrap:after {
  bottom: 50%;
}

.structure-tree > li > ul > li > div.item-wrap,
.structure-tree > li > ul > li > ul > li > div.item-wrap,
.structure-tree > li > ul > li > ul > li > ul > li > div.item-wrap {
  position: relative;
}

.structure-tree > li > ul > li > div.item-wrap .line,
.structure-tree > li > ul > li > ul > li > div.item-wrap .line,
.structure-tree > li > ul > li > ul > li > ul > li > div.item-wrap .line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.structure-tree > li > ul > li > div.item-wrap .line:after,
.structure-tree > li > ul > li > ul > li > div.item-wrap .line:after,
.structure-tree > li > ul > li > ul > li > ul > li > div.item-wrap .line:after {
  content: "";
  display: block;
  width: 25px;
  border-top: 1px dashed #d8d8d8;
  position: absolute;
  left: -25px;
  top: 50%;
}

.structure-tree > li > ul > li > div.item-wrap .line:before,
.structure-tree > li > ul > li > ul > li > div.item-wrap .line:before,
.structure-tree > li > ul > li > ul > li > ul > li > div.item-wrap .line:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #d8d8d8;
  z-index: 10;
  position: absolute;
  left: -5px;
  top: 50%;
  margin-top: -5px;
}

.structure-tree > li > ul > li > ul {
  padding-top: 10px;
  padding-bottom: 10px;
}

.structure-tree > li > ul > li > ul > li > div.item-wrap {
  margin-left: 120px;
  margin-bottom: 20px;
  padding-left: 0px;
}

.structure-tree > li > ul > li > ul > li > div.item-wrap .big {
  font-weight: 600;
}

.structure-tree > li > ul > li > ul > li > div.item-wrap .line {
  left: 0px;
}

.structure-tree > li > ul > li > ul > li > div.item-wrap .name {
  background: #f4f7fb;
  padding: 30px;
  display: block;
}

.structure-tree > li > ul > li > ul > li > ul {
  padding-top: 10px;
  padding-bottom: 10px;
}

.structure-tree > li > ul > li > ul > li > ul > li > div.item-wrap {
  margin-left: 180px;
  margin-bottom: 20px;
  padding-left: 0px;
}

.structure-tree > li > ul > li > ul > li > ul > li > div.item-wrap .big {
  font-weight: 500;
}

.structure-tree > li > ul > li > ul > li > ul > li > div.item-wrap .line {
  left: 0px;
}

.structure-tree > li > ul > li > ul > li > ul > li > div.item-wrap .name {
  background: #f4f7fb;
  padding: 30px;
  display: block;
}

.structure-tree > li > ul > li > ul > li > ul > li > ul {
  padding-top: 5px;
  padding-bottom: 15px;
  margin-left: 180px;
  position: relative;
}

.structure-tree > li > ul > li > ul > li > ul > li > ul:after {
  content: "";
  display: block;
  width: 1px;
  border-left: 1px dashed #d8d8d8;
  position: absolute;
  left: -25px;
  top: -20px;
  bottom: 20px;
}

.structure-tree > li > ul > li > ul > li > ul > li > ul > li > div.item-wrap {
  margin-left: 0;
  margin-bottom: 20px;
  margin-top: 10px;
  padding-left: 20px;
}

.structure-tree > li > ul > li > ul > li > ul > li > ul > li > div.item-wrap .big {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
}

.structure-tree > li > ul > li > ul > li > ul > li > ul > li > div.item-wrap .name {
  padding-left: 30px;
  position: relative;
  display: block;
}

html[color-schema="color-brown"] .structure-tree > li > ul > li > ul > li > div.item-wrap .name {
  background: #3b2716;
  border: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .structure-tree > li > ul > li > ul > li > ul > li > div.item-wrap .name {
  background: #3b2716;
  border: 1px solid #a9e44d;
}

html[color-schema="color-blue"] .structure-tree > li > ul > li > ul > li > div.item-wrap .name {
  background: #9dd1ff;
  border: 1px solid #063462;
}

html[color-schema="color-blue"] .structure-tree > li > ul > li > ul > li > ul > li > div.item-wrap .name {
  background: #9dd1ff;
  border: 1px solid #063462;
}

html[color-schema="color-black"] .structure-tree > li > ul > li > ul > li > div.item-wrap .name {
  background: #000000;
  border: 1px solid #ffffff;
}

html[color-schema="color-black"] .structure-tree > li > ul > li > ul > li > ul > li > div.item-wrap .name {
  background: #000000;
  border: 1px solid #ffffff;
}

html[color-schema="color-beige"] .structure-tree > li > ul > li > ul > li > div.item-wrap .name {
  background: #f7f3d6;
  border: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .structure-tree > li > ul > li > ul > li > ul > li > div.item-wrap .name {
  background: #f7f3d6;
  border: 1px solid #4d4b43;
}

.structure-tree > li > ul > li > ul > li > ul > li > ul > li > div.item-wrap .name .icon-link,
.structure-tree > li > ul > li > ul > li > ul > li > ul > li > div.item-wrap .name .icon-right-arrow {
  position: absolute;
  display: block !important;
  left: 0;
  top: 6px;
}

.structure-tree > li > ul > li > ul > li > ul > li > ul > li > div.item-wrap .wrap-span {
  padding-right: 30px;
  position: relative;
  display: inline-block;
}

.structure-tree > li > ul > li > ul > li > ul > li > ul > li > div.item-wrap .wrap-span .icon-link {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
}

.structure-tree a.link-style span {
  border-color: rgba(11, 117, 186, 0.5);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  text-decoration: none;
  display: inline;
  -webkit-transition: border 0.2s linear;
  transition: border 0.2s linear;
}

.structure-tree a.link-style:hover span,
.structure-tree a.link-style:focus span {
  border-color: transparent !important;
}

.dcjq-icon,
.akk-toggle {
  position: absolute;
  display: block;
  left: 23px;
  bottom: -10px;
  border: 2px solid #bdc2d0;
  background: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 17px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 10;
}

.dcjq-icon:after,
.akk-toggle:after,
.dcjq-icon:before,
.akk-toggle:before {
  content: "";
  position: absolute;
  background: #bdc2d0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.dcjq-icon:before,
.akk-toggle:before {
  width: 10px;
  height: 2px;
  top: 50%;
  margin-top: -1px;
  left: 50%;
  margin-left: -5px;
}

.dcjq-icon:after,
.akk-toggle:after {
  width: 2px;
  height: 10px;
  top: 50%;
  margin-top: -5px;
  left: 50%;
  margin-left: -1px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.nav-accordion > li .item-wrap > a {
  font-weight: 500;
  display: block;
}

.nav-accordion > li > ul {
  padding-left: 20px;
  padding-top: 10px;
}

.nav-accordion > li > ul > li {
  padding-top: 5px;
  padding-bottom: 5px;
}

.nav-accordion > li {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.nav-accordion > li:after {
  height: 1px;
  display: block;
  position: absolute;
  bottom: 0;
  left: -15px;
  right: -15px;
  content: "";
  background: #bdc2d0;
}

.nav-accordion .item-wrap {
  padding-right: 50px;
}

.nav-accordion .dcjq-icon {
  left: auto;
  right: -3px;
  top: 50%;
  margin-top: -10px;
  bottom: auto;
}

a.border-block-sm,
.list-services__item,
.friend-block,
.spoiler-box,
.calendar#main-calendar-widget .event,
.table-tender__item,
.direction-box__wrap--1,
.a.border-block-sm,
a.bg-block-sm,
.service-pop-banner,
.action-preview__box {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-shadow: 0 0px 0px 0px rgba(165, 187, 182, 0.4);
  box-shadow: 0 0px 0px 0px rgba(165, 187, 182, 0.4);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

a.border-block-sm:hover,
.list-services__item:hover,
.friend-block:hover,
.spoiler-box:hover,
.calendar#main-calendar-widget .event:hover,
.table-tender__item:hover,
.direction-box__wrap--1:hover,
.a.border-block-sm:hover,
a.bg-block-sm:hover,
.service-pop-banner:hover,
.action-preview__box:hover {
  -webkit-box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
  box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.spoiler-box.open {
  -webkit-box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
  box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.structure-tree > li > div.item-wrap.active .name {
  -webkit-box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
  box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
}

/* mail-box */
.mail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mail-box i {
  font-size: 18px;
}

.mail-box .btn {
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-width: 0;
}

/* ссыли на фоне */
.well {
  font-weight: 500;
  border: none;
  border-radius: 4px;
}

.well .list > .list-item {
  padding: 0;
  margin-bottom: 23px;
}

.well .list > .list-item:last-child {
  margin-bottom: 0;
}

.well .list > .list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.well .list > .list-item a i {
  margin-left: 15px;
}

.well .list > .list-item a:hover {
  opacity: 0.6;
}

.well .list {
  margin-bottom: 30px;
}

.well .btn-default {
  padding: 12px;
  font-size: 16px;
  font-size: 1.6rem;
}

.well.well-lg {
  padding: 40px 50px;
}

.anim-hidden {
  opacity: 0;
}

.anim-visible {
  opacity: 1;
}

/* теги */
.tags-list .summary {
  display: none;
}

.tags-result-list .summary {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 35px;
}

.tags-result-list .title {
  display: block;
  margin-bottom: 10px;
}

.tags-list > div {
  display: inline-block;
}

.tag,
.tags-list a {
  border-radius: 4px;
  padding: 6px 15px 7px 15px;
  margin-bottom: 3px;
  margin-top: 3px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/* post */
.post-box__name.h4 {
  margin-bottom: 15px;
}

.post-list {
  margin-bottom: 25px !important;
  padding-bottom: 25px;
  border-bottom: 1px solid #dde0e3;
  display: block;
}

.post-list--img-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.post-list--img-left .media-category {
  margin-top: 0;
}

.post-list--img-left .post-list__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 30%;
  height: 140px;
  position: relative;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  overflow: hidden;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.post-list--img-left .post-list__img:after {
  content: "";
  background: rgba(0, 0, 0, 0.25);
  -webkit-transition: background 0.3s linear;
  transition: background 0.3s linear;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.post-list--img-left .post-list__img img {
  width: 100%;
  height: auto;
  display: block;
}

.post-list--img-left .post-list__info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 20px;
}

.post-list--img-left .post-list__info > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.post-list--img-left .post-list__info .post-name {
  margin-bottom: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.post-list--img-left .post-list__info .page-date,
.post-list--img-left .post-list__info .page-place {
  margin-bottom: 0;
}

.post-list--img-left:hover .post-list__img:after {
  background: rgba(0, 0, 0, 0);
}

.post-list__bottom-text {
  margin-top: 10px;
}

.post-list__text {
  margin-top: 10px;
}

.post-list__name {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 500;
}

.post-list .page-date {
  margin-top: 20px;
  margin-bottom: 10px;
}

.post-list__link-bottom {
  margin-top: 20px;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
}

.post-list--with-delete {
  padding-right: 85px;
  position: relative;
}

.post-list--with-delete .link-delete {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  right: 30px;
}

.post-list__image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 4px;
}

.post-list--top {
  margin: 0 0 30px;
}

.post-list--top .page-date {
  margin-top: 0;
  margin-bottom: 15px;
}

.post-list--top .post-list__name {
  display: inline-block;
  margin-bottom: 30px;
}

.post-list--top a.post-list__name {
  display: block;
  margin-bottom: 10px;
}

.post-list__list {
  margin-bottom: 30px;
  list-style: none;
  padding-left: 0;
}

.post-list__list .post-list {
  padding-left: 0 !important;
}

.post-list__list .post-list:before {
  display: none !important;
}

.post-list__list .post-list:last-child {
  border-bottom: 0;
}

.post-list__list a {
  font-weight: 600;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-decoration: none;
}

.post-list__list a p,
.post-list__list a .p {
  font-weight: 400;
}

.post-list.all_event_closest {
  margin-top: -26px;
  padding-top: 25px;
  padding-bottom: 40px;
  padding-left: 35px;
  padding-right: 35px;
  border-bottom: 0;
  position: relative;
  background: #f1f2f2;
}

.post-list.all_event_closest .media-category {
  margin-top: 26px;
}

.post-list.post-list--media .page-date,
.post-list.post-list--event .page-date {
  margin-top: 7px;
}

/* faq */
.faq-list {
  list-style: none !important;
  padding-left: 0;
  padding-right: 0;
  margin-top: 60px;
}

.faq-list li {
  list-style: none !important;
}

.faq-list > li {
  cursor: pointer;
  margin: 20px 0;
  padding-left: 20px;
  padding-right: 20px;
}

.faq-list > li > a {
  position: relative;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  padding-top: 20px;
}

.faq-list > li > a:before {
  content: "";
  background: url(../img/general/icon/arrow.svg) no-repeat;
  display: block;
  width: 7px;
  height: 13px;
  right: 3px;
  top: 50%;
  margin-top: -6px;
  position: absolute;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.faq-list > li > ul {
  display: none;
  padding-top: 0;
  padding-bottom: 25px;
  padding-left: 0;
  padding-right: 0;
}

.faq-list > li > ul > li {
  margin-bottom: 10px !important;
  padding-left: 0;
  padding-bottom: 1px;
}

.faq-list > li > ul > li:last-child {
  margin-bottom: 0;
}

.faq-list > li > ul > li > a {
  padding-left: 78px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  text-decoration: none;
  padding-right: 20px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.faq-list > li > ul > li > a:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  opacity: 0;
  right: 0;
  background-color: #ffffff;
}

.faq-list > li > ul > li > a i {
  height: 30px;
  line-height: 30px;
  width: 35px;
  font-size: 29px;
  display: block;
  position: absolute;
  left: 30px;
  color: #939598;
  top: 18px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.faq-list > li > ul > li > a i,
.faq-list > li > ul > li > a span {
  z-index: 10;
}

.faq-list > li > ul > li > a .name {
  position: relative;
}

.faq-list > li.open > a:before {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.faq-list > li > ul > li > a:hover:after,
.faq-list > li > ul > li.open > a:after {
  opacity: 0;
}

.faq-list > li > ul > li > a:hover:before,
.faq-list > li > ul > li.open a:before {
  opacity: 1;
}

.faq-list > li > a {
  font-weight: 500;
  padding-left: 7px;
  padding-right: 85px;
  display: block;
  width: 100%;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  padding-bottom: 20px;
}

.faq-list__item-text {
  display: none;
  margin: 0;
  padding: 30px;
}

.faq-list .item-text-title {
  color: #939598;
  margin-bottom: 10px;
}

/* structure */
.content-map,
.ya-map-container {
  border-radius: 4px;
  width: 100%;
  margin-top: 35px;
}

.ya-map-container .map,
.content-map .map {
  height: 400px;
}

/* direction */
.direction-box .h4,
.direction-box h4 {
  margin-bottom: 0;
  margin-top: 0;
}

.direction-box--1,
.direction-box--2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 45px;
}

.direction-box--3,
.direction-box--4 {
  border-top: 1px solid #dde0e3;
  padding-top: 20px;
  padding-bottom: 20px;
}

.direction-box--3 .title,
.direction-box--4 .title {
  font-weight: 500;
}

.direction-box--3 + .direction-title,
.direction-box--4 + .direction-title {
  margin-top: 20px;
}

.direction-box--small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  margin-bottom: 35px;
}

.direction-box--small .direction-box__info {
  padding-right: 130px;
}

.direction-box--small .direction-box__photo {
  width: 100px;
  height: 100px;
}

.direction-box__wrap {
  margin-top: 0;
  padding-bottom: 0 !important;
  padding-top: 40px;
}

.direction-box__wrap .text-arrow-right i {
  display: none;
}

.direction-box__wrap a .text-arrow-right i {
  display: inline-block;
}

.direction-box__wrap-small {
  margin-top: 20px;
}

.direction-box__wrap-small--4 {
  margin-left: 30px;
}

.direction-box__wrap-small > .direction-box:first-child {
  padding-top: 0;
  border-top: 0;
}

.direction-box__photo {
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-top: 5px;
  width: 140px;
  height: 140px;
  margin-right: 30px;
}

.direction-box__photo img {
  width: 100%;
  height: auto;
}

.direction-box__wrap-sub {
  padding: 20px 30px 20px 30px;
  margin-left: -30px;
  margin-right: -30px;
  position: relative;
}

.direction-box__wrap-sub:after {
  content: "";
  position: absolute;
  left: 75px;
  top: -48px;
  border: 24px solid transparent;
  border-bottom: 24px solid #f4f7fb;
}

.direction-box__wrap-sub + .direction-title,
.direction-box__wrap-sub + .direction-box {
  padding-top: 40px;
}

.direction-box .title {
  margin-bottom: 0;
  margin-top: 0;
}

.direction-box__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.direction-box__info > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.direction-title {
  font-weight: 500;
}

.direction-title--1,
.direction-title--2 {
  text-transform: uppercase;
}

.direction-title--2 + .direction-box {
  padding-top: 35px;
  border-top: 1px solid #dde0e3;
}

.direction-title--3 + .direction-box,
.direction-title--4 + .direction-box {
  border-color: #aeb0b4;
}

.direction-box__wrap-sub.bg-gray + .direction-box {
  padding-top: 35px;
}

.border-block-sm.direction-box__wrap--2 {
  border-color: #fafcff;
}

/* direction в карточке */
.direction-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-bottom: 10px;
}

.direction-card__photo {
  margin-right: 60px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  border-radius: 4px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
}

.direction-card__photo img {
  max-width: 100%;
  height: auto;
  display: block;
}

.direction-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.direction-card__info.info-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.direction-card__info.info-row > div {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.direction-card__info.info-row .info-top .direction-info-list {
  padding-right: 50px;
}

.direction-card__info.info-row .info-top {
  width: 65%;
}

.direction-card__info.info-row .info-bottom {
  width: 35%;
}

.direction-card__info.info-row .info-bottom .left {
  width: 100px;
}

.direction-info-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-bottom: 15px;
  margin-top: 15px;
}

.direction-info-list li:first-child {
  margin-top: 0;
}

.direction-info-list li:last-child {
  margin-bottom: 0;
}

.direction-info-list .left {
  width: 160px;
  padding-right: 30px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

/* rate */
.rate_row {
  text-align: center;
  margin-top: 20px;
}

.rate_star {
  display: inline-block;
  width: 23px;
  height: 23px;
  padding-left: 5px;
  padding-right: 5px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  cursor: pointer;
  text-align: center;
  position: relative;
}

.rate_star:after {
  color: #939598;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "\e914";
  font-size: 23px;
  line-height: 23px;
  display: block;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn-rate {
  margin-top: 20px;
}

.rate_star:hover:after,
.rate_star.over:after,
.rate_star.checked:after {
  content: "\e922";
}

.rate-form.send .btn-rate {
  display: none;
}

/* pagination */
.custom-pagination-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.custom-pagination-btn > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.custom-pagination-btn .custom-pagination {
  margin: 0;
  margin-right: 25px;
}

.custom-pagination-btn .btn {
  height: 54px;
  line-height: 54px;
  min-width: 180px;
  padding: 0;
  border-radius: 0;
}

.custom-pagination-btn .btn + .btn {
  margin-left: 15px;
}

.wrap-pagination {
  margin-top: 68px;
  margin-bottom: 85px;
  text-align: center;
}

.custom-pagination {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.custom-pagination li {
  display: inline-block;
  vertical-align: top;
  font-weight: 500;
  margin-right: 10px;
  margin-bottom: 10px;
}

.custom-pagination li:last-child {
  margin-right: 0px;
}

.custom-pagination li a {
  border: 1px solid rgba(255, 255, 255, 0);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  padding: 0;
  width: 54px;
  height: 54px;
  line-height: 54px;
  color: #333333;
}

.custom-pagination li.prev a,
.custom-pagination li.next a {
  border: 1px solid #f5f6f6;
}

.custom-pagination li a:hover,
.custom-pagination li.active a {
  background-color: #f1f2f2;
}

.custom-pagination li a i {
  font-weight: bold;
  top: -1px;
  position: relative;
}

.custom-pagination li.disabled a {
  color: #d5dae0;
  cursor: default;
}

.custom-pagination li.disabled a:hover {
  background-color: #ffffff;
}

.custom-pagination li .dots {
  display: inline-block;
  padding: 11px 10px;
  line-height: 1em;
}

/* блок поделиться */
.ya-share2__item .ya-share2__icon {
  display: block !important;
  background-repeat: no-repeat !important;
  width: 37px !important;
  height: 37px !important;
  border: 2px solid #c9c9c9;
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  border-radius: 50%;
  color: #c9c9c9;
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 33px;
  font-size: 20px;
  text-align: center;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: none !important;
}

.ya-share2__item .ya-share2__icon:before {
  content: "";
  display: block;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.ya-share2__item .ya-share2__badge {
  background-color: transparent !important;
}

.wrap-popover-sharp .ya-share2__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/* .wrap-popover-sharp {
    position: static !important;
} */
.wrap-popover-sharp .btn {
  width: 100%;
}

.wrap-popover-sharp .popover-sharp {
  left: 0;
  right: 0;
}

.wrap-popover-sharp .popover-sharp-list {
  padding: 5px 55px 5px 10px;
}

.wrap-popover-sharp .close {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0.5;
  font-size: 18px;
  margin-top: -8px;
}

.ya-share2__item.ya-share2__item_service_vkontakte .ya-share2__icon:before {
  content: "\e90e";
  font-size: 12px;
  line-height: 36px;
}

.ya-share2__item.ya-share2__item_service_facebook .ya-share2__icon:before {
  content: "\e903";
}

.ya-share2__item.ya-share2__item_service_odnoklassniki .ya-share2__icon:before {
  content: "\e90a";
}

.ya-share2__item.ya-share2__item_service_twitter .ya-share2__icon:before {
  content: "\e90d";
  font-size: 16px;
  line-height: 34px;
}

.ya-share2__container_size_m .ya-share2__item {
  margin: 15px 7px !important;
}

.popover {
  border-radius: 4px !important;
  border: 1px solid #efefef !important;
}

.popover.bottom > .arrow {
  border-bottom-color: #e0e0e0 !important;
}

.wrap-popover-sharp .popover.bottom {
  left: 0 !important;
  right: 0 !important;
  max-width: none;
  width: auto;
}

.wrap-popover-sharp .popover.bottom > .arrow {
  left: auto !important;
  margin-left: 0 !important;
  right: 20px !important;
}

/* table-tender */
.table-tender__item {
  width: 100%;
  min-height: 0 !important;
  margin-bottom: 10px;
}

.table-tender__item .tender-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 10px;
}

.table-tender__item .value {
  font-weight: 500;
}

.table-tender__item .format .value {
  font-size: 18px;
  font-weight: 600;
}

.table-tender__item .sum {
  font-size: 20px;
}

.table-tender__item .side-right,
.table-tender__item .side-left {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  font-size: 14px;
  font-size: 1.4rem;
}

.table-tender__item p {
  margin-bottom: 5px;
}

.table-tender__item .side-left {
  width: 65%;
  padding-right: 20px;
}

.table-tender__item .side-right {
  width: 35%;
  padding-right: 0;
  text-align: right;
}

.tender-link {
  white-space: nowrap;
}

.tender-block--footer {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* info-link-block */
.info-link-block {
  margin-top: 20px;
  margin-bottom: 20px;
}

.info-link-block p {
  padding-bottom: 15px;
}

.info-link-block a {
  padding-left: 30px;
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.info-link-block span {
  border-color: transparent;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  text-decoration: none;
  -webkit-transition: border 0.2s linear;
  transition: border 0.2s linear;
  display: inline-block;
}

.info-link-block i {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  color: #ffffff;
  font-style: normal;
  text-align: center;
  line-height: 20px;
}

/* filter in sidebar */
.filter-btn {
  -webkit-transition: color 0.3s linear, background 0.3s linear;
  transition: color 0.3s linear, background 0.3s linear;
  z-index: 999;
  bottom: 10px;
  padding: 0;
}

.filter-btn,
.filter-btn .btn-show-result {
  width: 250px;
  height: 55px;
  cursor: pointer;
  color: #ffffff;
  font-weight: 500;
  position: fixed;
  left: 50%;
  margin-left: -125px;
  right: 0;
}

.filter-btn .btn-show-result {
  bottom: 10px;
  padding: 15px 0;
}

.filter-btn.show {
  opacity: 1;
}

.filter-btn .close-filter {
  display: none;
}

.filter-btn .open-filter {
  display: block;
}

.filter-btn .btn-close-filter,
.filter-btn .btn-open-filter {
  padding: 12px 25px;
  cursor: pointer;
}

.filter-btn .btn-close-filter {
  display: none;
  margin-top: 0;
  text-align: right;
}

.filter-btn .btn-close-filter i {
  font-size: 10px;
  top: 1px;
  display: inline-block;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  text-align: center;
  margin-left: 13px;
  line-height: 29px;
  margin-right: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.filter-btn.active {
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  margin-left: 0;
  width: auto;
  z-index: 999999;
}

.filter-btn.active .open-filter {
  display: none;
}

.filter-btn.active .close-filter {
  display: block;
}

.filter-btn .inner {
  z-index: 10;
  position: relative;
}

.filter-btn i {
  margin-right: 10px;
  font-size: 20px;
  top: 4px;
  position: relative;
}

.filter-btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.8;
  z-index: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.filter-btn:hover:after {
  opacity: 1;
}

/* block-douwnload-sm */
.block-douwnload-sm.border-block {
  padding: 30px;
  font-size: 16px;
}

.block-douwnload-sm .btn-block {
  margin: 0 0 10px;
}

.block-douwnload-sm .format {
  margin-right: 10px;
}

.block-douwnload-sm .name {
  font-weight: 500;
}

.doc-text {
  padding: 40px 45px;
  margin-top: 50px;
}

/* block-douwnload-md */
.document-list__wrap {
  margin-top: 55px;
  margin-bottom: 55px;
}

.block-douwnload-md {
  position: relative;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 35px 45px 35px 185px;
  display: block;
}

.block-douwnload-md .doc-icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 135px;
  padding: 9px 7px;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.block-douwnload-md .doc-icon:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #dadede;
  width: 0;
  height: 0;
  z-index: 10;
  border: 15px solid transparent;
  border-top: 15px solid #f1f2f2;
  border-right: 15px solid #f1f2f2;
}

.block-douwnload-md .doc-icon:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  content: "";
  opacity: 1;
  background-color: #e5eaea;
}

.block-douwnload-md .doc-icon > * {
  position: relative;
  z-index: 2;
  margin: 5px 0;
}

.block-douwnload-md .format {
  font-weight: 500;
}

.block-douwnload-md .doc-icon-bg {
  position: absolute;
  display: block;
  z-index: 1;
  left: 20px;
  right: 20px;
  top: 50%;
  height: 3px;
  margin-top: -2px;
  background-color: #ffffff;
}

.block-douwnload-md .name {
  font-weight: 500;
}

.block-douwnload-md .btn.btn-block.btn-primary {
  margin: 25px 0 0;
  width: 210px;
}

/* photo-box */
.photo-box-wrap > div:nth-last-child(1),
.photo-box-wrap > div:nth-last-child(2) {
  margin-bottom: 0;
}

.photo-box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.photo-box {
  margin-bottom: 30px;
  position: relative;
}

.photo-box .icon-arrow-top {
  display: block;
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 15px;
  color: #ffffff;
  z-index: 10;
}

.photo-box .bg-box {
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  height: 135px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-top: 35px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-right: 60px;
}

.photo-box .bg-box:hover .bg {
  -webkit-transform: translateZ(0) scale(1.06, 1.06);
  transform: translateZ(0) scale(1.06, 1.06);
}

.photo-box .bg-box:hover .text i {
  opacity: 0.5;
}

.photo-box .text {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.photo-box .text i {
  font-size: 12px;
  font-size: 1.2rem;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  opacity: 1;
}

.photo-box .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1);
}

.photo-box .bg:after {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  -webkit-transition: background 0.3s linear;
  transition: background 0.3s linear;
  position: absolute;
  display: block;
  right: 0;
  left: 0;
  bottom: 0;
  height: 70%;
}

.theme-box {
  margin-bottom: 30px;
}

.theme-box .news-date {
  display: block;
  margin-bottom: 15px;
}

/* read-more-arrow */
.read-more-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}

.read-more-arrow i {
  font-size: 12px;
  font-size: 1.2rem;
  opacity: 0.5;
}

/* box-photo-boss */
.widget-mayor-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 375px;
}

.widget-mayor-btn i {
  color: inherit !important;
  position: relative;
  top: 1px;
  padding-left: 20px;
  font-size: 16px;
}

.widget-mayor-btn i:after {
  content: "";
  width: 2px;
  opacity: 0.4;
  background: #ffffff;
  display: block;
  position: absolute;
  left: 0;
  height: 30px;
  top: 50%;
  margin-top: -15px;
}

.widget-mayor-btn > span {
  margin-right: 40px;
}

.widget-mayor-btn > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.widget-mayor__wrap {
  height: 100%;
  display: block;
  margin-top: 0;
  padding-bottom: 0;
  position: relative;
  padding-bottom: 190px;
  margin-bottom: 0;
}

.widget-mayor__wrap > * {
  position: relative;
  z-index: 10;
}

.widget-mayor__name {
  font-size: 19px;
  font-weight: 500;
  margin-top: 40px;
}

.widget-mayor__name > span {
  font-size: 28px;
}

.widget-mayor__position {
  margin-top: 25px;
}

.widget-mayor__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: bottom right;
  display: block;
  z-index: 0;
}

.widget-mayor__bottom {
  background: rgba(59, 66, 86, 0.35);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  height: 160px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 0;
  left: 0;
  right: 0;
}

.widget-mayor__bottom > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.widget-minister__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.widget-minister .box-photo-boss {
  padding-bottom: 70px;
}

.widget-minister .read-more-arrow {
  position: absolute;
  bottom: 30px;
  width: auto;
  left: 30px;
  right: 30px;
}

.photo-height-fix-boss {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.box-photo-boss {
  margin-top: 0 !important;
  padding-top: 210px !important;
  padding-bottom: 30px;
  position: relative;
  margin: 0;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.box-photo-boss .bg {
  height: 180px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

.box-photo-boss .bg .img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1);
}

.box-photo-boss:hover .bg .img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
  -webkit-transform: translateZ(0) scale(1.06, 1.06);
  transform: translateZ(0) scale(1.06, 1.06);
}

/* box-photo-sub-boss */
.box-photo-sub-boss {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  margin-top: 10px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.box-photo-sub-boss .title {
  margin: 0;
}

.box-photo-sub-boss .photos {
  height: 35px;
  position: relative;
  width: 67px;
}

.box-photo-sub-boss .photos .img {
  border-radius: 50%;
  height: 35px;
  width: 35px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  position: absolute;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.box-photo-sub-boss .photos .img-1 {
  right: 0;
  z-index: 1;
}

.box-photo-sub-boss .photos .img-2 {
  right: 17px;
  z-index: 2;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.box-photo-sub-boss .photos .img-3 {
  right: 35px;
  z-index: 3;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
}

.box-photo-sub-boss .photos .img-4 {
  right: 52px;
  z-index: 4;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.box-photo-sub-boss:hover .img-2 {
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
}

.box-photo-sub-boss:hover .img-3 {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

.box-photo-sub-boss:hover .img-4 {
  -webkit-transform: translateX(-15px);
  transform: translateX(-15px);
}

/* tabs-nav-wrap */
.section-head--arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.section-head--arrow .section-head {
  margin-bottom: 0;
}

.section-head__arrow {
  font-weight: 500;
}

.section-head__arrow i {
  opacity: 0.5;
  margin-left: 10px;
  font-size: 12px;
  font-size: 1.2rem;
  position: relative;
  top: 1px;
}

.tabs-nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  clear: both;
  border-bottom: 1px solid #d5dae0;
  margin-bottom: 60px;
}

.tabs-nav-wrap.tabs-nav-wrap--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.tabs-nav-wrap.tabs-nav-wrap--column .section-head,
.tabs-nav-wrap.tabs-nav-wrap--column .page-title {
  white-space: normal !important;
  width: 100%;
}

.tabs-nav-wrap.tabs-nav-wrap--column .nav.nav-tabs {
  text-align: left;
  margin-top: 25px;
  width: 100% !important;
}

.tabs-nav-wrap.tabs-nav-wrap--map-city {
  margin-bottom: 30px;
}

.tabs-nav-wrap h3.section-head,
.tabs-nav-wrap .page-title {
  margin: 0;
  padding: 0;
  position: relative;
  top: 1px;
  white-space: nowrap;
  min-height: 45px;
  padding-right: 50px;
  min-width: 230px;
}

.tabs-nav-wrap .nav-tabs .tabs-container {
  display: none !important;
  vertical-align: middle;
  width: 30px;
  padding: 0 !important;
  float: none;
  margin-left: 10px;
}

.tabs-nav-wrap .nav-tabs .tabs-container.container-active {
  float: right;
  display: inline-block !important;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: right;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  min-width: 33px;
}

.tabs-nav-wrap .nav-tabs > li {
  padding: 0;
  float: none;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-size: 1.6rem;
}

.tabs-nav-wrap .nav-tabs > li:first-child {
  padding-left: 0;
}

.tabs-nav-wrap .nav-tabs > li > a {
  font-weight: 500;
  color: inherit;
  margin: 0;
  border: none;
  padding: 14px 0 22px;
  border-bottom: 4px solid rgba(0, 0, 0, 0);
}

.tabs-nav-wrap .nav-tabs > li > a:hover {
  border: none;
  background-color: inherit;
}

.tabs-nav-wrap .nav-tabs > li.active > a,
.tabs-nav-wrap .nav-tabs > li:hover > a {
  border: none;
  background-color: inherit;
  margin: 0;
  border-bottom: 4px solid #0575bc;
}

.tabs-nav-wrap .nav.nav-tabs {
  border: none;
  font-size: 0;
  text-align: right;
  min-width: 45px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.nav-tabs li.active > a,
.nav-tabs li.active > a:focus,
.nav-tabs li.active > a:hover {
  outline: none;
  color: inherit;
}

.nav-tabs > li.custom-tab-item {
  float: none;
  display: inline-block;
  vertical-align: middle;
}

.tabs-container__btn {
  color: #8d96a1;
  min-height: 45px;
}

.tabs-container__btn:before {
  content: "\e909";
  padding-left: 15px;
  padding-right: 0;
  cursor: pointer;
  font-size: 4px;
  position: relative;
  top: 5px;
  vertical-align: bottom;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tabs-container__content {
  width: 270px;
  border: 1px solid #ededed;
  border-radius: 0;
  padding: 0;
  background-color: #fff;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  left: 100%;
  max-height: 360px;
  overflow: auto;
}

.tabs-container__content li {
  display: block;
  width: 100%;
  text-decoration: none;
}

.tabs-container__content li a {
  padding: 15px 30px;
  color: #333333;
  display: block;
  text-decoration: none;
  background-color: #fff;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.tabs-container__content li a:hover {
  background-color: #f8f8f8;
}

/* btn-collapsed */
.btn.btn-collapsed {
  position: relative;
  border: 0;
  padding-right: 50px;
  text-align: left;
  margin-bottom: 20px;
}

.btn.btn-collapsed i {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -12px;
  font-size: 25px;
  color: #ffffff;
  display: block;
}

.btn.btn-collapsed.collapsed:hover,
.btn.btn-collapsed.collapsed:focus,
.btn.btn-collapsed.collapsed {
  background-color: #f4f4f4;
  color: #000000;
}

.btn.btn-collapsed.collapsed:hover i,
.btn.btn-collapsed.collapsed:focus i,
.btn.btn-collapsed.collapsed i {
  color: #939598;
}

.btn.btn-collapsed.collapsed:hover {
  background-color: #dbdbdb;
}

/* list-table-style */
.list-table-style {
  list-style: none;
  padding-left: 0;
  display: table;
  border-left: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
}

.list-table-style a {
  display: block;
}

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

.list-table-style li {
  display: table-row;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}

.list-table-style li:hover {
  background: #f4f4f4;
}

.list-table-style li:hover .tag {
  background-color: #ffffff;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}

.list-table-style__col {
  width: 50%;
  display: table-cell;
  padding: 18px 20px;
  line-height: 1.2;
  border: 1px solid #e6e6e6;
  border-left: 0;
  border-top: 0;
}

.list-table-style__head {
  font-weight: 600;
  background: transparent !important;
}

@media (max-width: 600px) {
  .list-table-style__col {
    width: 100%;
    display: block;
  }
  .list-table-style__col:first-child {
    border-bottom: 0;
    padding-bottom: 0;
    font-weight: 500;
  }
  .list-table-style__head {
    display: none !important;
  }
}

/* list-dataset */
.list-dataset {
  padding-left: 0;
}

.list-dataset > li {
  list-style: none;
  padding-left: 0;
  background: #f8f8f8;
  padding: 25px 35px;
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

.list-dataset__name {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 20px;
  display: block;
}

.list-dataset__name:hover,
.list-dataset__name:focus {
  color: #0575bc;
}

.list-dataset__date {
  float: left;
  padding-top: 15px;
}

.list-dataset__download {
  float: right;
}

.list-dataset__download .btn {
  min-width: 0;
}

.list-dataset__download .btn-group.bootstrap-select {
  width: 200px !important;
  margin-left: 15px;
}

.col-pd-wide {
  padding-right: 36px;
  padding-left: 36px;
}

.download-block {
  padding-left: 18px !important;
  padding-right: 18px !important;
  margin-bottom: 60px;
}

@media (max-width: 1200px) {
  .list-dataset__download,
  .list-dataset__date {
    width: 100%;
  }
  .list-dataset__download .btn-group.bootstrap-select {
    margin-left: 0;
    margin-right: 15px;
    margin-bottom: 5px;
  }
  .list-dataset__date {
    margin-bottom: 20px;
  }
}

.smi-source i {
  margin-right: 8px;
  font-size: 12px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

/* breadcrumb */
.breadcrumb > .active {
  color: #b5b5b5;
}

.breadcrumb-section {
  padding-top: 20px;
  padding-bottom: 0;
  min-height: 88px;
}

.breadcrumb {
  background-color: rgba(255, 255, 255, 0);
  padding: 0;
  padding-top: 20px;
  padding-bottom: 45px;
  padding-left: 1px;
  margin-bottom: 0;
}

.breadcrumb > li {
  display: inline;
  font-size: 14px;
  font-size: 1.4rem;
}

.breadcrumb > li + li:before {
  content: none;
}

.breadcrumb > li:after {
  padding: 0 7px 0 13px;
  color: #939598;
  content: "/\00a0";
}

.breadcrumb > li:first-child:after {
  padding: 0 7px 0 13px;
}

.breadcrumb > li a {
  color: #939598;
}

.breadcrumb .home:after {
  content: "\e915";
  font-size: 14px;
  font-size: 1.4rem;
  display: none;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  top: 0px;
  position: relative;
  padding-right: 6px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: 0;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

/* email-list */
.email-list {
  padding-left: 0;
  margin: 0;
}

.email-list li {
  list-style: none;
  padding: 28px 30px;
  border-top: 1px solid #dedede;
  font-weight: 500;
  position: relative;
  padding-right: 90px;
}

.email-list--top li {
  border-top: 0;
  border-bottom: 1px solid #dedede;
}

.email-list--top li:first-child {
  padding-top: 13px;
}

.email-list .link-delete {
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -15px;
}

.email-list__email {
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
}

/* slider-main */
.slider-main__wrap {
  position: relative;
}

.slider-main-indicator {
  width: 0;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 2px;
  background: #ffffff;
  content: "";
  display: block;
}

.slider-main .slick-next,
.slider-main .slick-prev {
  display: none !important;
}

.slider-main__item {
  height: 440px !important;
  width: 100%;
}

.slider-main__item .container {
  height: 100%;
}

.slider-main__item:hover .slider-main-img:after {
  opacity: 0.4;
}

.slider-main__sub-text {
  font-size: 16px;
}

.slider-main__nav-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-bottom: 70px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.slider-main__nav-wrap .slick-dots {
  margin: 0;
}

.slider-main__nav-wrap > .btn {
  height: 56px;
  width: auto;
  min-width: 0;
  width: 56px;
  max-width: 56px;
  padding: 0;
  margin-left: 10px;
}

.slider-main__nav-wrap > .btn i {
  font-size: 14px;
  line-height: 54px;
}

.slider-main__nav {
  display: block;
}

.slider-main__nav .slick-dots li button {
  background: #b0022c !important;
  opacity: 0.6;
}

.slider-main__nav .slick-dots li.slick-active button,
.slider-main__nav .slick-dots li button:focus,
.slider-main__nav .slick-dots li button:focus {
  opacity: 1;
}

.slider-main .inner {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 70px;
  height: 100%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 70px;
}

.slider-main .inner > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.slider-main .inner .item-caption {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  overflow: hidden;
  width: 50%;
  max-width: 550px;
  z-index: 10;
  position: relative;
}

.slider-main .inner .btn {
  min-width: 220px;
  position: relative;
  z-index: 10;
}

.slider-main .slider-main-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
}

/* banner */
.banner-slider__nav {
  left: 30px;
  bottom: 0;
}

.banner-slider .item-caption {
  position: absolute;
  top: 30px;
  bottom: 50px;
  left: 30px;
  right: 30px;
  height: auto;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  overflow: hidden;
}

.banner-slider .item-caption > span {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: inline-block;
  height: auto;
}

.banner-slider__wrap {
  height: 100%;
  position: relative;
}

.banner-slider__wrap * {
  height: 100%;
}

.banner-slider__item {
  min-height: 350px !important;
  width: 100%;
}

.banner-slider__item:hover .banner-img {
  -webkit-transform: translateZ(0) scale(1.06, 1.06);
  transform: translateZ(0) scale(1.06, 1.06);
}

.banner-slider .banner-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1);
}

.banner-slider .banner-img:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  content: "";
}

.aside .banner-slider__item {
  min-height: 360px !important;
}

.banner-slider__nav {
  position: absolute;
  height: auto;
}

/* quiz */
.widget-quiz .bg-box {
  margin: 0;
}

.widget-quiz__link {
  margin-bottom: 25px;
  display: block;
}

.widget-quiz__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.widget-quiz__inner {
  height: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-image: url(../img/general/quiz-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}

.quiz-sub-caption {
  margin-bottom: 40px;
}

/* links */
.widget-links__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-bottom: 0;
}

.widget-links__wrap {
  min-height: 400px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* map-city */
.map-city {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}

.map-city .map-city-wrap {
  position: relative;
  height: 680px;
}

.map-city .ps__rail-y {
  opacity: 0.2;
}

.map-city .ps:hover > .ps__rail-y,
.map-city .ps--focus > .ps__rail-y,
.map-city .ps--scrolling-y > .ps__rail-y {
  opacity: 0.4;
}

.map-city__group {
  margin-bottom: 20px;
  font-size: 13px;
}

.map-city__name {
  display: block;
}

.map-city__address {
  margin-bottom: 25px;
}

.map-city__content {
  height: 100%;
  padding-right: 60px;
  padding-left: 60px;
  overflow: auto;
  position: relative;
  padding-bottom: 30px;
}

.map-city__link {
  position: absolute;
  bottom: 40px;
  left: 60px;
  right: 60px;
  text-align: center !important;
}

.map-city .address-caption {
  display: block;
  margin-bottom: 10px;
}

.map-city__panel {
  width: 400px;
  z-index: 10;
  height: 560px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
  display: none;
}

.map-city .panel-inner {
  padding-top: 40px;
  padding-bottom: 120px;
  overflow: auto;
  height: 100%;
  position: relative;
}

.map-city .panel-inner:after {
  content: "";
  position: absolute;
  bottom: 120px;
  left: 0;
  right: 0;
  display: block;
  height: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

.close-map-panel {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 10;
}

.map-hint {
  position: relative;
  width: 250px;
  border-radius: 4px;
  margin-top: -100px;
  margin-left: -140px;
  -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
}

.map-hint__inner {
  padding: 20px 30px;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.map-hint__text {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}

.toggler-size {
  z-index: 5;
  -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: block;
  width: 44px;
  height: 44px;
  text-align: center !important;
  line-height: 50px;
}

.toggler-size i {
  text-align: center;
  position: relative;
  left: 1px;
}

.mark-tab {
  padding-left: 15px !important;
  position: relative;
  display: inline-block;
}

.mark-tab i.mark-tab__mark {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  height: 7px;
  width: 7px;
  margin-top: -8px;
  left: 0;
  border-radius: 50%;
}

.dropdown-menu .mark-tab {
  padding-left: 35px !important;
  display: block;
}

.dropdown-menu .mark-tab i.mark-tab__mark {
  margin-top: -4px;
  left: 20px;
}

#map-city {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
}

@media (min-width: 1280px) {
  #map-city {
    width: calc(50vw + 195px);
  }
}

@media (min-width: 991px) {
  .map-city-size.full-map {
    width: 100vw;
    height: calc(100vh - 140px);
    position: fixed;
    top: 140px;
    left: 0;
    z-index: 999;
  }
  .map-city-size.full-map .map-city-wrap {
    position: relative;
    height: calc(100vh - 140px);
  }
  .map-city-size.full-map .tabs-nav-wrap.tabs-nav-wrap--map-city {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 50;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: none;
  }
  .map-city-size.full-map .map-city-size__fix {
    width: 100%;
    max-width: 862px;
    padding: 10px 30px 0px;
    background-color: #ffffff;
    border-radius: 6px;
  }
  .map-city-size.full-map .tabs-nav-wrap.tabs-nav-wrap--column .nav.nav-tabs {
    width: 100% !important;
    margin-top: 0;
  }
  .map-city-size.full-map #map-city {
    width: 100%;
    height: 100%;
  }
  .map-city-size.full-map .toggler-size {
    position: absolute;
    right: 0px;
  }
  .map-city-size.full-map .toggler-size i:before {
    content: "\e92d";
  }
  .map-city-size.full-map .map-city__panel {
    position: absolute;
    right: 0;
    top: 64px;
    height: 420px;
  }
  .map-city-size.full-map .dropdown-menu {
    top: auto;
    bottom: 150%;
  }
  body.body-full-map {
    overflow: hidden !important;
    padding-right: 0 !important;
  }
}

/* end map-city */
/* quiz */
.quiz-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.quiz-head > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.quiz-head__start {
  padding-right: 30px;
}

.quiz-head__end .sub-caption-box {
  margin-left: 13px;
}

.quiz-box {
  min-height: 0 !important;
  margin-bottom: 10px;
}

.quiz-box .quiz-footer .btn {
  min-width: 220px;
}

.quiz-box .quiz-title {
  display: block;
}

.quiz-box .quiz-head {
  margin-bottom: 25px;
}

.quiz-ok i {
  margin-right: 10px;
  position: relative;
  top: 1px;
}

.quiz-rersult .h4 {
  font-weight: 400;
}

.quiz-rersult-percent__top {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.quiz-rersult-percent__inner {
  padding-left: 30px;
  position: relative;
}

.quiz-rersult-percent .title,
.quiz-rersult-percent .percent {
  margin: 0 !important;
}

.quiz-rersult-percent .percent {
  font-weight: 500;
}

.quiz-rersult-percent .rersult-check {
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 5px;
}

.quiz-rersult-percent .progress {
  margin-bottom: 6px;
  border: 0 !important;
  background-color: rgba(132, 142, 153, 0.2);
}

.quiz-rersult-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.quiz-rersult-num > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.quiz-rersult-num .num {
  min-width: 60px;
  min-height: 60px;
  padding: 0;
  text-align: center;
  line-height: 61px;
  margin: 0 !important;
  margin-right: 20px !important;
  display: inline-block;
  cursor: default;
}

.quiz-rersult-text .text {
  min-height: 60px;
  width: 100%;
  margin-bottom: 10px;
}

/* end quiz */
/* service-pop-preview */
.bnt-white {
  background: #ffffff;
  color: #e20338 !important;
  font-weight: 500;
  min-width: 220px;
  margin-right: 20px;
}

.service-pop-banner {
  background: #2194b5;
  margin-top: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transform: none !important;
  transform: none !important;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 55px;
}

.service-pop-banner .btn {
  min-width: 280px;
}

.service-pop-banner .h3 {
  font-size: 20px;
}

.service-pop-banner .btn-block + .btn-block {
  margin-top: 15px;
}

.service-pop-banner:hover,
.service-pop-banner:focus,
.service-pop-banner:active {
  color: #ffffff;
}

.service-pop-banner .icon-banner {
  background: url(../img/general/icon-banner.svg) no-repeat center;
  height: 85px;
  width: 106px;
  height: 112px;
  display: block;
}

.service-pop-banner .center {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-right: 60px;
}

.service-pop-banner .center .h4 {
  font-weight: 500;
}

.service-pop-banner .center .top-text {
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
}

.service-pop-banner .left {
  padding-right: 64px;
  padding-left: 15px;
  position: relative;
  margin-right: 60px;
}

.service-pop-banner .left:after {
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  display: block;
  width: 2px;
}

.service-pop-banner .left,
.service-pop-banner .right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.service-pop-banner .big,
.service-pop-banner .small {
  display: block;
  text-align: center;
}

.service-pop-banner .big {
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
}

.service-pop-banner .small {
  font-size: 13px;
  text-transform: uppercase;
}

.service-pop-banner.service-pop-banner--boss {
  background: #a81e38;
  margin-bottom: 0px;
  margin-top: 0px;
}

.service-pop-banner.service-pop-banner--boss h3 {
  font-size: 22px;
}

.service-pop-banner.service-pop-banner--boss .btn-brown:hover,
.service-pop-banner.service-pop-banner--boss .btn-brown:focus {
  color: #ffffff;
  background: #e20338;
  border-color: #e20338;
  -webkit-box-shadow: 0 4px 13px 0px rgba(148, 1, 36, 0.7);
  box-shadow: 0 4px 13px 0px rgba(148, 1, 36, 0.7);
}

.service-pop-banner.service-pop-banner--boss .btn-brown {
  color: #a81e38;
}

.service-pop-banner.service-pop-banner--child {
  background: #e20338;
  margin-bottom: 0px;
  margin-top: 0px;
  padding-top: 0;
  padding-bottom: 0;
}

.service-pop-banner.service-pop-banner--child .center {
  padding-top: 20px;
  padding-bottom: 20px;
}

.service-pop-banner.service-pop-banner--child .service-pop-banner.service-pop-banner--child .left {
  padding-top: 0;
}

.service-pop-banner.service-pop-banner--child .icon-banner {
  background-image: url(../img/general/child-banner.svg);
  height: 192px;
  width: 151px;
}

.service-pop-banner.service-pop-banner--child .left {
  margin-right: 15px;
  padding-top: 20px;
}

.service-pop-banner.service-pop-banner--child .left:after {
  display: none !important;
}

.service-pop-banner.service-pop-banner--child .bottom-text {
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.6;
  font-weight: 600;
}

.service-pop-banner.service-pop-banner--child .h3 {
  font-size: 24px !important;
  margin-bottom: 7px !important;
}

.service-pop-banner.service-pop-banner--child .btn-brown-border {
  border-color: #f9c8d3;
}

.service-pop-banner.service-pop-banner--child .btn-brown-border:hover,
.service-pop-banner.service-pop-banner--child .btn-brown-border:focus {
  border-color: #ffffff;
  -webkit-box-shadow: 0 4px 13px 0px rgba(148, 1, 36, 0.7);
  box-shadow: 0 4px 13px 0px rgba(148, 1, 36, 0.7);
}

.service-pop-banner.service-pop-banner--child .tel-box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.service-pop-banner.service-pop-banner--child .tel-box {
  white-space: nowrap;
}

.service-pop-banner.service-pop-banner--child .tel-box a {
  color: inherit;
  cursor: default;
}

.service-pop-banner.service-pop-banner--child .tel-box__big {
  font-size: 28px;
  font-weight: 600;
}

.service-pop-banner.service-pop-banner--child .tel-box__small {
  font-size: 14px;
  font-weight: 600;
}

.service-pop-preview {
  margin-bottom: 30px;
}

.service-pop-preview__box {
  padding-top: 20px;
}

.service-pop-preview .inner {
  position: relative;
}

.service-pop-preview .icon-arrow-top {
  position: absolute;
  font-size: 15px;
  top: 10px;
  right: 0;
}

.service-pop-preview .title {
  margin-bottom: 0 !important;
}

.service-pop-preview .icon {
  width: 65px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}

.service-pop-preview .icon:before {
  position: absolute;
  font-size: 70px;
  display: block;
  color: #e6e6e6 !important;
}

.service-pop-preview .icon img {
  max-width: 35px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 1px;
}

.section.section--bg .bg-block-sm--border {
  border-color: transparent;
}

/* end service-pop-preview */
/* tab-link-left */
.tab-link-left {
  overflow: hidden;
  border-radius: 4px;
}

.tab-link-left li {
  margin-bottom: 1px;
}

.tab-link-left li:last-child {
  margin-bottom: 0;
}

.tab-link-left li.active a {
  color: #000000 !important;
  background-color: #f1f2f2;
}

.tab-link-left li > a {
  position: relative;
  padding: 20px 30px;
  display: block;
  font-weight: 500;
  border-radius: 4px;
}

.tab-link-left li > a:after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  background: transparent;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: -3px;
}

.bg-gray .tab-link-left li.active a {
  background-color: #ffffff;
}

/* end tab-link-left */
.banner-wrap {
  background-color: #ffffff;
}

.banner-wrap > a {
  display: block;
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.banner-wrap .item:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  position: absolute;
  height: 100px;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  content: "";
}

.banner-wrap .banner-text {
  position: absolute;
  z-index: 10;
  width: 100%;
  color: #ffffff;
  bottom: 30px;
  left: 30px;
  margin: 0;
}

/* main-info-block */
.main-info-block {
  height: 100%;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  -webkit-box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
  box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  display: block;
  position: relative;
  padding-left: 45px;
}

.main-info-block:hover {
  -webkit-box-shadow: 0 3px 5px 0px rgba(165, 187, 182, 0.17);
  box-shadow: 0 3px 5px 0px rgba(165, 187, 182, 0.17);
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}

.main-info-block .title {
  position: relative;
  padding-left: 45px;
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.main-info-block .title .big {
  font-size: 36px;
  font-size: 3.6rem;
  color: #e20338;
}

.main-info-block .icon {
  color: #e20338;
  font-size: 28px;
  margin-right: 15px;
  position: absolute;
  display: block;
  top: -2px;
  left: 0;
}

.main-info-block__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main-info-block__text .btn {
  margin-top: 35px;
}

.main-info-block__wrap {
  position: relative;
  bottom: -50px;
  margin-top: 0;
}

/* action-preview */
.action-materials {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
  width: 100%;
}

.action-materials .amount-materials {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-left: 15px;
  border-radius: 4px;
  font-weight: 500;
  padding: 7px 10px 5px 10px;
}

.action-preview--with-info .action-preview {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.action-preview--with-info .action-preview:nth-child(2) {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.action-preview--with-info .action-preview:nth-child(3) {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.action-preview {
  margin-bottom: 30px;
}

.action-preview .action-preview__box {
  height: 100%;
  margin-top: 0px;
  margin-bottom: 0;
  display: block;
  border-radius: 4px;
  min-height: 160px;
}

.action-preview .title {
  margin-bottom: 0;
}

.action-preview .img {
  width: 75px;
  height: 65px;
  margin-bottom: 35px;
}

.action-preview .img img {
  max-height: 100%;
  width: auto;
}

.action-preview--with-link .img {
  width: 100px;
  height: 100px;
}

.action-preview--with-link .img img {
  width: 100%;
  height: auto;
}

.action-preview--with-link .title {
  font-size: 24px;
}

.action-preview--with-link .action-preview__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.action-preview--with-link .action-preview__main-link {
  padding-right: 45px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.action-preview--with-link .action-preview__main-link > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.action-preview--with-link .action-preview__main-link .img {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.action-preview--with-link .action-preview__list {
  padding-left: 15px;
  text-align: left;
}

.action-preview--with-link .action-preview__list li {
  font-weight: 500;
}

.action-preview--with-link .action-preview__list li > a {
  padding-bottom: 15px;
  padding-top: 15px;
  display: block;
  padding-right: 27px;
  position: relative;
}

.action-preview--with-link .action-preview__list li .icon-right-arrow {
  font-size: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
}

.action-preview--with-link .action-preview__list,
.action-preview--with-link .action-preview__main-link {
  width: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.action-preview--main .action-link-absolute {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
}

.action-preview--main .action-preview__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.action-preview--main .text-img {
  padding-left: 120px;
  position: relative;
  min-height: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.action-preview--main .text-img .h3 {
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .action-preview--main .text-img {
    padding-left: 110px;
  }
}

.action-preview--main .text-img .img {
  position: absolute;
  height: 93px;
  width: 90px;
  display: block;
  left: 0;
  top: 0;
}

@media (max-width: 767px) {
  .action-preview--main .text-img .img img {
    width: 100%;
    height: auto;
  }
}

.action-preview--main .text-img .img img {
  width: 100%;
  height: auto;
}

.action-preview--main .title {
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.action-preview--main .btn {
  margin-top: 10px;
}

.btn-white {
  border-color: #ffffff;
  background: #ffffff;
  color: #e20338;
  white-space: normal;
}

.btn-white:hover,
.btn-white:focus {
  background-color: #b0022c;
  border-color: #b0022c;
  color: #fff;
}

.btn-brown {
  border-color: #ffffff;
  background: #ffffff;
  color: #2194b5;
  white-space: normal;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-box-shadow: 0 0px 0px 0px rgba(24, 163, 216, 0);
  box-shadow: 0 0px 0px 0px rgba(24, 163, 216, 0);
}

.btn-brown:hover,
.btn-brown:focus {
  background: #23a3c7;
  border-color: #23a3c7;
  color: #ffffff;
  -webkit-box-shadow: 0 4px 13px 0px rgba(24, 163, 216, 0.6);
  box-shadow: 0 4px 13px 0px rgba(24, 163, 216, 0.6);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.service-pop-banner .btn-brown:hover,
.service-pop-banner .btn-brown:focus {
  background: #40cced;
  border-color: #40cced;
}

.btn-brown-border {
  border-color: #75bdd1;
  background: transparent;
  color: #ffffff;
  white-space: normal;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-box-shadow: 0 0px 0px 0px rgba(24, 163, 216, 0);
  box-shadow: 0 0px 0px 0px rgba(24, 163, 216, 0);
}

.btn-brown-border:hover,
.btn-brown-border:focus {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
  -webkit-box-shadow: 0 4px 13px 0px rgba(24, 163, 216, 0.6);
  box-shadow: 0 4px 13px 0px rgba(24, 163, 216, 0.6);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.action-preview--with-info .action-preview.action-preview--main {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.search-nav-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.param-search-toggle {
  padding-top: 20px;
}

.param-search-toggle .form-sub-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.param-link-search {
  font-weight: 500;
  cursor: pointer;
}

.param-link-search i {
  margin-right: 10px;
  font-size: 22px;
  position: relative;
  top: 4px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.param-link-search.act {
  color: #ee3d48;
}

.departament-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}

.departament-img {
  max-width: 250px;
  margin-right: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.departament-img img {
  max-width: 100%;
  height: auto;
}

.departament-text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.list-menu-page {
  padding: 25px 30px 30px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.list-menu-page .wrap-item {
  margin-bottom: 10px;
  margin-top: 10px;
}

.list-menu-page .item {
  display: block;
  padding-left: 20px;
  position: relative;
}

.list-menu-page .item > span {
  display: inline;
  text-decoration: none;
  border-color: rgba(11, 117, 186, 0.5);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  -webkit-transition: border 0.2s linear;
  transition: border 0.2s linear;
}

.list-menu-page .item i {
  position: absolute;
  top: 7px;
  left: 0px;
}

.list-menu-page .item:hover > span {
  border-color: transparent !important;
}

.post-content + .list-menu-page {
  margin-top: 40px;
}

.blue-link {
  color: #40cced;
  border: 0 !important;
}

.blue-link:hover {
  color: #1babcd;
}

.infographic-box__list i.icon-checked,
.infographic-box__list .icon-end-doc {
  background-color: #40cced;
  color: #ffffff;
  border-radius: 50%;
  height: 24px;
  width: 24px;
  font-size: 8px;
  text-align: center;
  display: block;
  line-height: 25px;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  left: 9px;
}

.infographic-box__list .icon-end-doc {
  width: 50px;
  height: 50px;
  left: -5px;
  font-size: 25px;
  line-height: 51px;
  padding-left: 2px;
  margin-top: -24px;
}

.infographic-box__list .icon-mail {
  padding-left: 2px;
  background-color: #40cced;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  display: block;
  line-height: 25px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  line-height: 51px;
  position: static;
}

.infographic-box .infographic-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 95px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.infographic-box .infographic-item.infographic-item--bottom {
  height: 50px;
  margin-bottom: 0;
}

.infographic-box .infographic-item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.infographic-box .infographic-item__text .side-center {
  position: relative;
  padding-left: 73px;
  margin-left: 25px;
  margin-right: 25px;
}

.infographic-box .infographic-item__text .side-center .dots-date {
  position: absolute;
  top: 0;
  left: 0;
}

.infographic-box .infographic-item__text .side-end {
  min-width: 215px;
}

.infographic-box .infographic-item .date {
  position: absolute;
  bottom: -40px;
  font-size: 14px;
}

.infographic-box .infographic-item .title {
  margin: 0;
  line-height: 1.2;
}

.infographic-box .infographic-item .dots-date {
  width: 55px;
  text-align: center;
}

.infographic-box .infographic-item .dots-date .date {
  position: static;
  display: inline-block;
  margin-top: 15px;
}

.infographic-box .infographic-item .dots-hor {
  position: relative;
  width: 55px;
  display: block;
}

.infographic-box .infographic-item .dots-hor i,
.infographic-box .infographic-item .dots-hor:after,
.infographic-box .infographic-item .dots-hor:before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #40cced;
  border-radius: 50%;
}

.infographic-box .infographic-item .dots-hor i {
  left: 50%;
  margin-left: -3px;
}

.infographic-box .infographic-item .dots-hor:after {
  left: 0px;
}

.infographic-box .infographic-item .dots-hor:before {
  right: 0px;
}

.infographic-box .infographic-item .dots {
  position: absolute;
  left: 17px;
  margin-top: 55px;
  top: 50%;
}

.infographic-box .infographic-item .dots,
.infographic-box .infographic-item .dots:after,
.infographic-box .infographic-item .dots:before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #40cced;
  border-radius: 50%;
}

.infographic-box .infographic-item .dots:after {
  top: -25px;
}

.infographic-box .infographic-item .dots:before {
  bottom: -25px;
}

.infographic-box__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-bottom: 1px solid #e0e1e4;
  padding-bottom: 25px;
  margin-bottom: 35px;
  position: relative;
  padding-left: 70px;
}

.infographic-box__top i {
  font-size: 30px;
  position: absolute;
  left: 5px;
  top: 0;
}

.arrow-box {
  width: 365px;
  padding: 15px 20px;
  border-radius: 4px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -45px;
  height: 90px;
  font-size: 14px;
}

.arrow-box > span {
  display: block;
  margin-top: 2px;
  margin-bottom: 2px;
}

.arrow-box > span i {
  margin-right: 5px;
  position: relative;
  top: -1px;
}

.arrow-box:after {
  border: 10px solid transparent;
  border-right: 10px solid #ffffff;
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  margin-top: -10px;
}

.date-and-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}

.date-and-view > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.date-with-i i {
  margin-right: 10px;
  position: relative;
  top: 1px;
}

.amount-view i {
  position: relative;
  top: 2px;
}

.btn,
.jq-file__browse {
  outline: none !important;
}

.box-img-link-wrap {
  margin-bottom: 15px;
  margin-top: 15px;
}

.box-img-link {
  display: block;
}

.box-img-link img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.box-img-link i {
  position: absolute;
  right: 30px;
  top: 30px;
}

.box-img-link h4 {
  margin-bottom: 0;
}

#modal-rating-ok .modal-title {
  padding-right: 0;
}

/*------------------- PUSHY -------------------*/
/*! Pushy - v1.1.0 - 2017-1-30
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
.pushy-top {
  height: 50px;
  padding: 0 30px;
  position: relative;
}

.pushy-top .title {
  line-height: 50px;
  margin-bottom: 0;
  text-transform: uppercase;
  position: relative;
  top: 1px;
}

.pushy-top .close {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 30px;
  font-size: 16px;
  opacity: 1;
}

.pushy-top .close:hover {
  opacity: 0.7;
}

.pushy-inner {
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 30px;
}

.pushy {
  position: fixed;
  width: 350px;
  height: 100%;
  top: 0;
  z-index: 9999;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-box-shadow: 0 3px 30px 0px rgba(1, 46, 154, 0.15);
  box-shadow: 0 3px 30px 0px rgba(1, 46, 154, 0.15);
  /* enables momentum scrolling in iOS overflow elements */
}

.pushy.pushy-left {
  left: 0;
}

.pushy.pushy-right {
  right: -35px;
}

.pushy-content {
  visibility: hidden;
}

/* Menu Movement */
.pushy-left {
  -webkit-transform: translate3d(-350px, 0, 0);
  transform: translate3d(-350px, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
  -webkit-transform: translate3d(350px, 0, 0);
  transform: translate3d(350px, 0, 0);
}

.pushy-right {
  -webkit-transform: translate3d(350px, 0, 0);
  transform: translate3d(350px, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
  -webkit-transform: translate3d(-350px, 0, 0);
  transform: translate3d(-350px, 0, 0);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  right: 0;
}

.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
  visibility: visible;
}

/* Menu Transitions */
#container,
.pushy,
.push {
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  transition: -webkit-transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99), -webkit-transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
  -webkit-transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Site Overlay */
.site-overlay {
  display: none;
}

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-animation: fade 500ms;
  animation: fade 500ms;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.banner-mob {
  display: none;
}

.map-panel__body .inf-card {
  padding-left: 24px;
  padding-right: 60px;
}

.inf-card__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inf-card:hover .inf-card__image svg {
  fill: #fff !important;
}

.inf-card:hover .inf-card__tag {
  color: #ffffff !important;
}

.inf-card__image {
  width: 35px;
  height: 35px;
  min-width: 35px;
  margin-right: 24px;
}

.inf-card__image svg {
  width: 100%;
  height: 100%;
  fill: #3393af;
}

.new-banner {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 5px;
  height: 200px;
  position: relative;
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
}

.new-banner__sd {
  padding-left: 12px;
  width: 210px;
  height: 20px;
  background-color: #6cb0e4;
  margin-bottom: 4px;
  color: #fff;
  font-size: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.new-banner__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 255px;
  height: 35px;
  margin-bottom: 4px;
  background-color: #6cb0e4;
}

.new-banner__rg .new-banner__top {
  background-color: #345bb2;
}

.new-banner__logo {
  padding-left: 13px;
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.new-banner__title {
  color: #fff;
  font-size: 11px;
  line-height: 12px;
}

.new-banner__td {
  text-transform: uppercase;
  padding-left: 15px;
  font-size: 24px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 32px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
  background-color: #345bb2;
}

.new-banner__opa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
}

.new-banner__number {
  color: #345bb2;
  font-size: 40px;
  font-weight: 700;
  line-height: 31px;
}

.new-banner__txt {
  padding-left: 6px;
  color: #345bb2;
  font-size: 11px;
}

.new-banner__tdx {
  color: #6cb0e4;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.new-banner__white {
  margin-top: 14px;
  background-color: #fff;
  padding-left: 6px;
  width: 156px;
  padding-top: 8px;
}

.new-banner__double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.new-banner__rg .new-banner__number {
  width: 87px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 40px;
  color: #345bb2;
  background-color: #fff;
}

.new-banner__rw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.new-banner__rg .new-banner__td {
  background-color: #6cb0e4;
}

.new-banner__lf .new-banner__rw {
  margin-bottom: 6px;
  height: 30px;
}

.new-banner__abs {
  position: absolute;
  bottom: 8px;
  right: 0;
  background-color: #345bb2;
  width: 155px;
  font-size: 11px;
  color: #fff;
  text-align: right;
  line-height: 11px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 12px;
}

@media only screen and (max-width: 767px) {
  .new-banner > .new-banner__rw > .new-banner__td {
    height: auto;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .new-banner__lf .new-banner__rw {
    height: auto;
  }
  .new-banner {
    background-image: none !important;
  }
  .new-banner__rw {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .new-banner__abs {
    width: calc(100% - 20px);
    margin-top: 20px;
    position: static;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
  }
  .new-banner__sd {
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 24px;
    width: auto;
    font-size: 20px;
  }
  .new-banner__sd {
    margin-bottom: 6px;
  }
  .new-banner__title {
    font-size: 12px;
  }
  .new-banner__logo {
    min-width: 80px;
  }
  .new-banner__tdx {
    margin-top: 6px;
  }
  .new-banner > * {
    z-index: 3;
    position: relative;
  }
  .new-banner br {
    display: none;
  }
  .new-banner__white {
    padding: 10px;
    width: 190px;
  }
  .new-banner__lf {
    background-position: center right;
  }
  .new-banner__lf:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: #6cb0e4;
    position: absolute;
    content: "";
    opacity: 0.8;
  }
  .new-banner__rg {
    background-position: center right;
  }
  .new-banner__rg:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: #345bb2;
    position: absolute;
    content: "";
    opacity: 0.8;
  }
  .new-banner__opa .new-banner__dds {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .new-banner {
    height: auto;
  }
  .col-newbanner {
    width: 100%;
  }
  .new-banner__td {
    font-size: 18px;
  }
  .new-banner {
    padding: 30px;
  }
  .new-banner__white,
  .new-banner__td,
  .new-banner__top,
  .new-banner__abs {
    width: 100%;
  }
  .new-banner__dds .new-banner__rw {
    width: 100%;
  }
  .new-banner__opa .new-banner__dds {
    width: calc(100% - 87px);
  }
  .col-newbanner {
    display: none;
  }
  .col-newbanner.banner-mob {
    display: block;
  }
  .new-banner__td {
    height: 26px;
    font-size: 16px;
    padding-left: 6px;
    padding-right: 10px;
    margin-bottom: 0;
  }
  .new-banner__lf .new-banner__rw {
    margin-bottom: 2px;
  }
  .new-banner {
    padding-left: 13px;
    padding-right: 13px;
    padding-top: 16px;
    padding-bottom: 15px;
  }
  .new-banner-dd {
    margin-bottom: 80px;
  }
  .new-banner__white {
    text-align: center;
    margin-bottom: 15px;
  }
  .new-banner__txt {
    padding-left: 0;
    text-transform: uppercase;
    font-size: 14px;
  }
  .new-banner__tdx {
    font-size: 14px;
  }
  .new-banner__lf .new-banner__td {
    width: auto;
  }
  .new-banner__lf:after {
    display: none;
  }
  .new-banner__lf {
    background-image: url(../img/general/bn1-1.jpg) !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 306px;
  }
  .new-banner__rg:after {
    display: none;
  }
  .new-banner__rg {
    background-image: url(../img/general/bn2-2.jpg) !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 306px;
    padding-top: 34px;
  }
  .new-banner__rg .new-banner__title {
    color: #6cb0e4;
  }
  .new-banner__rg .new-banner__number {
    height: 59px;
    width: 65px;
    background-color: #345bb2;
    color: #fff;
    font-size: 32px;
  }
  .new-banner__opa {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .new-banner__sd {
    width: auto;
    display: inline-block;
  }
  .new-banner__opa .new-banner__dds {
    width: 100%;
  }
  .new-banner__dds .new-banner__rw {
    margin-bottom: 2px;
  }
  .new-banner__dds .new-banner__rw .new-banner__td {
    font-size: 20px;
    font-weight: 700;
  }
  .new-banner__sd {
    height: 25px;
    font-size: 14px;
    display: inline-block;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 5px;
    padding-left: 5px;
  }
  .new-banner__td {
    width: auto;
  }
}

/* подключаем Bootstrap */
/*------------------ BLIND ----------------------*/
html[font-size="size-sm"] {
  font-size: 62.5%;
}

html[font-size="size-md"] {
  font-size: 72.5%;
}

html[font-size="size-lg"] {
  font-size: 82.5%;
}

html[font-size="size-lg"] .h2.blind-text-bg,
html[font-size="size-md"] .h2.blind-text-bg {
  font-size: 32px !important;
  line-height: 40px !important;
}

html[font-size="size-lg"] .layer-top,
html[font-size="size-md"] .layer-top {
  font-size: 16px;
}

html[font-size="size-lg"] .header__blind-btn .btn span,
html[font-size="size-md"] .header__blind-btn .btn span {
  display: none;
}

html[font-size="size-lg"] .blind-max-size,
html[font-size="size-md"] .blind-max-size {
  width: 100% !important;
}

html[font-size="size-lg"] .header-logo .name-company {
  font-size: 20px;
}

html[font-size="size-md"] .header-logo .name-company {
  font-size: 18px;
}

html[font-size="size-lg"] .media-category {
  font-size: 15px;
}

html[font-size="size-md"] .media-category {
  font-size: 13px;
}

/* html[font-size="size-lg"] .news-card__text {
  font-size: 22px;
}

html[font-size="size-md"] .news-card__text {
  font-size: 20px;
} */

/* html[font-size="size-lg"] .news-card__date {
  font-size: 18px;
}

html[font-size="size-md"] .news-card__date {
  font-size: 16px;
} */

html[font-size="size-lg"] .msce-item__title {
  font-size: 22px;
}

html[font-size="size-md"] .msce-item__title {
  font-size: 20px;
}

html[font-size="size-lg"] .msc-news-card__text {
  font-size: 22px;
}

html[font-size="size-md"] .msc-news-card__text {
  font-size: 20px;
}

html[font-size="size-lg"] .msc-news-card__date {
  font-size: 18px;
}

html[font-size="size-md"] .msc-news-card__date {
  font-size: 16px;
}

html[font-size="size-lg"] .sec-msc__title {
  font-size: 33px;
}

html[font-size="size-md"] .sec-msc__title {
  font-size: 31px;
}

html[font-size="size-lg"] .forum-news-card .forum-news-card__text,
html[font-size="size-lg"] .forum-photo-card .forum-photo-card__text,
html[font-size="size-lg"] .soc-tv-card .soc-tv-card__title {
  font-size: 22px;
}

html[font-size="size-md"] .forum-news-card .forum-news-card__text,
html[font-size="size-md"] .forum-photo-card .forum-photo-card__text,
html[font-size="size-md"] .soc-tv-card .soc-tv-card__title {
  font-size: 20px;
}

html[font-size="size-lg"] .forum-news-card .forum-news-card__date,
html[font-size="size-lg"] .forum-photo-card .forum-photo-card__date,
html[font-size="size-lg"] .soc-tv-card .soc-tv-card__date,
html[font-size="size-lg"] .show-more__btn,
html[font-size="size-lg"] .inf-card__tag {
  font-size: 19px;
}

html[font-size="size-md"] .forum-news-card .forum-news-card__date,
html[font-size="size-md"] .forum-photo-card .forum-photo-card__date,
html[font-size="size-md"] .soc-tv-card .soc-tv-card__date,
html[font-size="size-md"] .show-more__btn,
html[font-size="size-md"] .inf-card__tag {
  font-size: 17px;
}

html[font-size="size-lg"] .footer .footer-logo-text .prime,
html[font-size="size-lg"] .footer .footer-logo-text .sub {
  font-size: 22px;
}

html[font-size="size-md"] .footer .footer-logo-text .prime,
html[font-size="size-md"] .footer .footer-logo-text .sub {
  font-size: 20px;
}

html[font-size="size-md"] .header__main-nav .header-logo,
html[font-size="size-lg"] .header__main-nav .header-logo {
  max-width: 400px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

html[font-size="size-lg"] .name-company br,
html[font-size="size-md"] .name-company br {
  display: none;
}

html[font-size="size-lg"] .icons__flex,
html[font-size="size-md"] .icons__flex {
  height: 71px;
}

html[font-size="size-lg"] .cat-result__text {
  font-size: 18px;
}

html[font-size="size-md"] .cat-result__text {
  font-size: 16px;
}

html[font-size="size-lg"] .cat-result__title {
  font-size: 22px;
}

html[font-size="size-md"] .cat-result__title {
  font-size: 20px;
}

html[font-size="size-lg"] .cat-result__show-more {
  font-size: 18px;
}

html[font-size="size-md"] .cat-result__show-more {
  font-size: 20px;
}

html[font-size="size-lg"] .aside__buttons-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

html[font-size="size-lg"] .aside__buttons-top .btn {
  border-left-width: 1px;
}

html[font-size="size-lg"] .forum-news-card__content,
html[font-size="size-lg"] .forum-photo-card__content {
  height: 250px;
}

html[font-size="size-md"] .forum-news-card__content,
html[font-size="size-md"] .forum-photo-card__content {
  height: 180px;
}

html[font-size="size-lg"] .soc-tv-card__content {
  height: 140px;
}

html[font-size="size-md"] .soc-tv-card__content {
  height: 100px;
}

html[img-display="hide"] .widget-mayor__bg,
html[img-display="hide"] .beneficial-img,
html[img-display="hide"] .slider-main-img {
  background: none !important;
}

html[img-display="hide"] img,
html[img-display="hide"] div.img-md,
html[img-display="hide"] .img-hide,
html[img-display="hide"] .carousel-inner img {
  display: none !important;
}

html[img-display="hide"] .news-first .news-title {
  margin-top: 0;
}

html[img-display="hide"] .btn.img-hide {
  display: inline-block !important;
}

html[img-display="hide"] .bg-box .bg {
  background-image: none !important;
}

html[img-display="hide"] .news-box.news-box--first .news-first-img {
  display: none !important;
}

html[img-display="hide"] .news-box.news-box--first .news-first-text {
  width: 100% !important;
}

html[img-display="hide"] .main-section--list-nav {
  margin-bottom: 35px;
}

html[img-display="hide"] .smi-first__text,
html[img-display="hide"] .post-list-text {
  width: 100% !important;
}

html[img-display="hide"] .setting-btn.img-hide {
  display: inline-block;
}

html[img-display="hide"] .wrap-media-video .video-preview,
html[img-display="hide"] .media-photo-preview__img {
  background: #000000 !important;
  background-image: none !important;
}

html[img-display="hide"] .box-photo-sub-boss .photos,
html[img-display="hide"] .box-photo-boss .bg .img {
  display: none;
}

html[img-display="hide"] .media-photo-preview,
html[img-display="hide"] .wrap-media-video,
html[img-display="hide"] .news-box--style-bg .img-lg,
html[img-display="hide"] .carousel-inner .item {
  border: 1px solid;
}

html[img-display="hide"] .photo-box .bg:after {
  display: none;
}

html[img-display="hide"] .box-photo-boss {
  padding-top: 30px !important;
}

html[img-display="hide"] .media-tab-ell.media-tab-ell__box .img-bg {
  display: none;
}

html[img-display="mono"] img,
html[img-display="mono"] div.img-md,
html[img-display="mono"] .img-wrap,
html[img-display="mono"] .media-photo-preview__img,
html[img-display="mono"] .wrap-media-video .video-preview,
html[img-display="mono"] .bg,
html[img-display="mono"] .box-photo-sub-boss .photos,
html[img-display="mono"] .media-all-preview-img,
html[img-display="mono"] .map,
html[img-display="mono"] .photo-box .bg,
html[img-display="mono"] .news-box .img-wrap,
html[img-display="mono"] .widget-mayor__bg,
html[img-display="mono"] .beneficial-box .beneficial-img,
html[img-display="mono"] .slider-main .slider-main-img,
html[img-display="mono"] .covid-slider__image,
html[img-display="mono"] .covid-box__image,
html[img-display="mono"] .covid-aside-slided__image,
html[img-display="mono"] .covid-aside-video__image {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
  filter: gray;
}

html[kerning="size-md"] body,
html[kerning="size-md"] input,
html[kerning="size-md"] textarea,
html[kerning="size-md"] select,
html[kerning="size-md"] button,
html[kerning="size-md"] a,
html[kerning="size-md"] a span,
html[kerning="size-md"] .header__link-portal {
  letter-spacing: 2px;
}

html[kerning="size-lg"] body,
html[kerning="size-lg"] input,
html[kerning="size-lg"] textarea,
html[kerning="size-lg"] select,
html[kerning="size-lg"] button,
html[kerning="size-lg"] a,
html[kerning="size-lg"] a span,
html[kerning="size-lg"] .header__link-portal {
  letter-spacing: 5px;
}

/* html[kerning="size-md"] .header__main-nav .header-logo,
html[kerning="size-lg"] .header__main-nav .header-logo {
  max-width: 400px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
} */

.pushy-top

html[kerning="size-md"] .pushy-top,
html[kerning="size-lg"] .pushy-top {
  height: auto;
}

html[kerning="size-md"] .pushy-inner,
html[kerning="size-lg"] .pushy-inner {
  position: static;
}

html[kerning="size-lg"] body .main__s.main__s-new .main-news-test__buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}



html[kerning="size-md"] .navbar-logo,
html[kerning="size-lg"] .navbar-logo {
  padding-top: 0 !important;
}
html[kerning="size-lg"] .name-company br,
html[kerning="size-md"] .name-company br {
  display: none;
}

html[kerning="size-lg"] .aside__buttons-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

html[kerning="size-lg"] .aside__buttons-top .btn {
  border-left-width: 1px;
}

html[kerning="size-lg"] .forum-news-card__content,
html[kerning="size-lg"] .forum-photo-card__content {
  height: 250px;
}

html[kerning="size-md"] .forum-news-card__content,
html[kerning="size-md"] .forum-photo-card__content {
  height: 180px;
}

html[kerning="size-lg"] .soc-tv-card__content {
  height: 140px;
}

html[kerning="size-md"] .soc-tv-card__content {
  height: 100px;
}

html[kerning="size-lg"] .list-division li {
  width: 50%;
}

html[kerning="size-lg"] .tabs-container__content,
html[kerning="size-md"] .tabs-container__content {
  width: 360px;
}

/* html[kerning='size-lg'] .layer-top,
html[kerning='size-md'] .layer-top,
html[kerning='size-lg'] .name-company,
html[kerning='size-md'] .name-company,
html[kerning='size-lg'] .aside__buttons-top,
html[kerning='size-md'] .aside__buttons-top,
html[kerning='size-lg'] .widget-mayor-btn > span,
html[kerning='size-md'] .widget-mayor-btn > span {
  letter-spacing: 0;
} */
html[kerning="size-lg"] .blind-max-size,
html[kerning="size-md"] .blind-max-size {
  width: 100% !important;
}

.wrap-pagination {
  letter-spacing: 0 !important;
}

html[garniture="serif"] body,
html[garniture="serif"] .header-new-styles,
html[garniture="serif"] .new-icons-bg,
html[garniture="serif"] .main,
html[garniture="serif"] .main-news,
html[garniture="serif"] .main.main--main-page .section-head,
html[garniture="serif"] .footer,
html[garniture="serif"] .datepicker,
html[garniture="serif"] .news-page,
html[garniture="serif"] .menegement {
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif !important;
}

html[garniture="serif"] .aside-navbar4 ul > li .link-dropdown .event-button-nav::before {
  line-height: normal;
}

html[garniture="serif"] .aside-navbar4 ul > li .link-dropdown .event-button-nav[data-symbol="-"]::before {
  line-height: 0.1;
}

html[kerning="size-lg"] .btn-blind,
html[kerning="size-md"] .btn-blind,
html[font-size="size-lg"] .btn-blind,
html[font-size="size-md"] .btn-blind {
  width: auto;
  height: 50px;
  min-width: 50px;
  padding-left: 10px !important;
  padding-right: 10px !important;
  min-width: 0;
}

html[kerning="size-lg"] .btn-blind i,
html[kerning="size-md"] .btn-blind i,
html[font-size="size-lg"] .btn-blind i,
html[font-size="size-md"] .btn-blind i {
  margin: 0;
}

html[kerning="size-lg"] .btn-blind span,
html[kerning="size-md"] .btn-blind span,
html[font-size="size-lg"] .btn-blind span,
html[font-size="size-md"] .btn-blind span {
  display: none;
}

html[kerning="size-lg"] .header__link-home span,
html[kerning="size-md"] .header__link-home span,
html[font-size="size-lg"] .header__link-home span,
html[font-size="size-md"] .header__link-home span {
  display: none;
}

html[color-theme="theme-blue"] {
  /* btn */
  /* end btn */
  /* блок поделиться */
}

html[color-theme="theme-blue"] .list-menu-page .item > span {
  border-color: rgba(5, 117, 188, 0.5);
}

html[color-theme="theme-blue"] .aside__list-nav > li > a.active:after,
html[color-theme="theme-blue"] .aside__list-nav > li > .item-wrap > a.active:after,
html[color-theme="theme-blue"] .aside__list-nav > li > a.parent-active:after,
html[color-theme="theme-blue"] .aside__list-nav > li > .item-wrap > a.parent-active:after {
  background-color: #0575bc;
}

html[color-theme="theme-blue"] .aside__list-nav > li > ul a.active:before {
  color: #0575bc;
}

html[color-theme="theme-blue"] .tab-link-left li.active > a:after {
  background: #0575bc;
}

html[color-theme="theme-blue"] a:hover .link-color,
html[color-theme="theme-blue"] a:focus .link-color,
html[color-theme="theme-blue"] a:active .link-color,
html[color-theme="theme-blue"] a.active .link-color {
  color: #0575bc;
}

html[color-theme="theme-blue"] a:hover .link-color,
html[color-theme="theme-blue"] a:focus .link-color,
html[color-theme="theme-blue"] a:active .link-color,
html[color-theme="theme-blue"] a.active .link-color,
html[color-theme="theme-blue"] a:hover .link-color i,
html[color-theme="theme-blue"] a:focus .link-color i,
html[color-theme="theme-blue"] a:active .link-color i,
html[color-theme="theme-blue"] a.active .link-color i {
  color: #0575bc;
}

html[color-theme="theme-blue"] a:hover .btn-default-color,
html[color-theme="theme-blue"] a:focus .btn-default-color,
html[color-theme="theme-blue"] a:active .btn-default-color,
html[color-theme="theme-blue"] a.active .btn-default-color {
  color: #ffffff;
  background-color: #0575bc;
}

html[color-theme="theme-blue"] a:hover .btn-default,
html[color-theme="theme-blue"] a:focus .btn-default,
html[color-theme="theme-blue"] a:active .btn-default,
html[color-theme="theme-blue"] a.active .btn-default {
  color: #0575bc;
  border-color: #0575bc;
}

html[color-theme="theme-blue"] a:hover .btn-primary,
html[color-theme="theme-blue"] a:focus .btn-primary,
html[color-theme="theme-blue"] a:active .btn-primary,
html[color-theme="theme-blue"] a.active .btn-primary {
  background-color: #04568a;
  border-color: #04568a;
}

html[color-theme="theme-blue"] .two-date:after {
  background-color: #0575bc;
}

html[color-theme="theme-blue"] .search-result strong {
  background-color: #0575bc;
  color: #ffffff;
}

html[color-theme="theme-blue"] .pushy-top .close {
  color: #ffffff;
}

html[color-theme="theme-blue"] .btn-favorite.favorite {
  background-color: #0575bc;
  color: #ffffff;
}

html[color-theme="theme-blue"] .slick-dots li.slick-active button,
html[color-theme="theme-blue"] .slick-dots li button:focus,
html[color-theme="theme-blue"] .slick-dots li button:focus {
  background-color: #0575bc;
}

html[color-theme="theme-blue"] #map-svg path.active {
  fill: #0575bc !important;
}

html[color-theme="theme-blue"] .text-block a:not([class]),
html[color-theme="theme-blue"] .structure-tree a.link-style span,
html[color-theme="theme-blue"] .link-border {
  border-color: rgba(5, 117, 188, 0.5);
}

html[color-theme="theme-blue"] a.link-color:hover,
html[color-theme="theme-blue"] .a.link-color:hover,
html[color-theme="theme-blue"] a.link-color:focus,
html[color-theme="theme-blue"] .a.link-color:focus,
html[color-theme="theme-blue"] a.link-color:active,
html[color-theme="theme-blue"] .a.link-color:active,
html[color-theme="theme-blue"] a.link-color.active,
html[color-theme="theme-blue"] .a.link-color.active,
html[color-theme="theme-blue"] a.link-color:hover i,
html[color-theme="theme-blue"] .a.link-color:hover i,
html[color-theme="theme-blue"] a.link-color:focus i,
html[color-theme="theme-blue"] .a.link-color:focus i,
html[color-theme="theme-blue"] a.link-color:active i,
html[color-theme="theme-blue"] .a.link-color:active i,
html[color-theme="theme-blue"] a.link-color.active i,
html[color-theme="theme-blue"] .a.link-color.active i {
  color: #0575bc;
}

html[color-theme="theme-blue"] .btn-default:focus,
html[color-theme="theme-blue"] .btn-default.focus,
html[color-theme="theme-blue"] .btn-default:hover,
html[color-theme="theme-blue"] .btn-default:active,
html[color-theme="theme-blue"] .btn-default.active {
  color: #0575bc;
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .btn-default-color {
  color: #0575bc;
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .btn-default-color:focus,
html[color-theme="theme-blue"] .btn-default-color.focus,
html[color-theme="theme-blue"] .btn-default-color:hover,
html[color-theme="theme-blue"] .btn-default-color:active,
html[color-theme="theme-blue"] .btn-default-color.active {
  color: #ffffff;
  background-color: #0575bc;
}

html[color-theme="theme-blue"] a.table-tender__item:focus .btn-default-color,
html[color-theme="theme-blue"] a.table-tender__item.focus .btn-default-color,
html[color-theme="theme-blue"] a.table-tender__item:hover .btn-default-color,
html[color-theme="theme-blue"] a.table-tender__item:active .btn-default-color,
html[color-theme="theme-blue"] a.table-tender__item.active .btn-default-color {
  color: #ffffff;
  background-color: #0575bc;
}

html[color-theme="theme-blue"] .btn-collapsed:hover,
html[color-theme="theme-blue"] .btn-collapsed:focus {
  background-color: #0575bc;
}

html[color-theme="theme-blue"] .bootstrap-select.open .btn-default,
html[color-theme="theme-blue"] .bootstrap-select.open .btn-default:focus,
html[color-theme="theme-blue"] .bootstrap-select.open .btn-default.focus,
html[color-theme="theme-blue"] .bootstrap-select.open .btn-default:hover,
html[color-theme="theme-blue"] .bootstrap-select.open .btn-default:active,
html[color-theme="theme-blue"] .bootstrap-select.open .btn-default.active {
  background-color: #0575bc;
  border-color: #0575bc;
  color: #ffffff;
}

html[color-theme="theme-blue"] .btn-primary,
html[color-theme="theme-blue"] .jq-file__browse {
  color: #ffffff;
  background-color: #0575bc;
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .btn-primary:focus,
html[color-theme="theme-blue"] .jq-file__browse:focus,
html[color-theme="theme-blue"] .btn-primary.focus,
html[color-theme="theme-blue"] .jq-file__browse.focus {
  background-color: #0694ee;
}

html[color-theme="theme-blue"] .btn-primary:hover,
html[color-theme="theme-blue"] .jq-file__browse:hover,
html[color-theme="theme-blue"] .btn-primary:active,
html[color-theme="theme-blue"] .jq-file__browse:active,
html[color-theme="theme-blue"] .btn-primary.active,
html[color-theme="theme-blue"] .jq-file__browse.active {
  background-color: #04568a;
  border-color: #04568a;
}

html[color-theme="theme-blue"] .btn-black-border:hover,
html[color-theme="theme-blue"] .btn-black-border.focus,
html[color-theme="theme-blue"] .btn-black-border.active,
html[color-theme="theme-blue"] .btn-black-border.active:hover,
html[color-theme="theme-blue"] .btn-black-border.active:focus,
html[color-theme="theme-blue"] .btn-black-border:focus {
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .btn-black:hover,
html[color-theme="theme-blue"] .btn-black:focus,
html[color-theme="theme-blue"] .btn-black.active,
html[color-theme="theme-blue"] .btn-black.active:hover,
html[color-theme="theme-blue"] .btn-black.active:focus,
html[color-theme="theme-blue"] .btn-black:focus {
  border-color: #0575bc;
  background-color: #0575bc;
}

html[color-theme="theme-blue"] .btn-black-border:hover,
html[color-theme="theme-blue"] .btn-black:hover,
html[color-theme="theme-blue"] .btn-black-border.focus,
html[color-theme="theme-blue"] .btn-black.focus,
html[color-theme="theme-blue"] .btn-black-border.active:hover,
html[color-theme="theme-blue"] .btn-black.active:hover,
html[color-theme="theme-blue"] .btn-black-border.active:focus,
html[color-theme="theme-blue"] .btn-black.active:focus,
html[color-theme="theme-blue"] .btn-black-border:focus,
html[color-theme="theme-blue"] .btn-black:focus {
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .btn-blind:hover,
html[color-theme="theme-blue"] .btn-blind.act {
  background-color: #0575bc;
}

html[color-theme="theme-blue"] .btn-gamb span {
  background: #0575bc;
}

html[color-theme="theme-blue"] .two-date:hover input.form-control {
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .dcjq-icon:hover,
html[color-theme="theme-blue"] .structure-tree a.name:hover .icon-right-arrow,
html[color-theme="theme-blue"] .structure-tree a.name:hover .icon-link {
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .dcjq-icon:hover:after,
html[color-theme="theme-blue"] .dcjq-icon:hover:before,
html[color-theme="theme-blue"] .Zebra_DatePicker table td.dp_hover,
html[color-theme="theme-blue"] .Zebra_DatePicker table td.dp_selected {
  background-color: #0575bc;
}

html[color-theme="theme-blue"] .breadcrumb > li:hover a,
html[color-theme="theme-blue"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-theme="theme-blue"] .tabs-nav-wrap .nav-tabs > li:hover > a,
html[color-theme="theme-blue"] .Zebra_DatePicker_Icon,
html[color-theme="theme-blue"] .Zebra_DatePicker table td.dp_current,
html[color-theme="theme-blue"] .Zebra_DatePicker .dp_footer td.dp_today,
html[color-theme="theme-blue"] .Zebra_DatePicker .dp_footer td.dp_clear,
html[color-theme="theme-blue"] .Zebra_DatePicker .dp_header td.dp_hover,
html[color-theme="theme-blue"] .Zebra_DatePicker .dp_daypicker th {
  color: #0575bc;
}

html[color-theme="theme-blue"] input.form-control:hover,
html[color-theme="theme-blue"] textarea.form-control:hover {
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .faq-list > li > a:hover,
html[color-theme="theme-blue"] .faq-list > li.open > a {
  color: #0575bc;
}

html[color-theme="theme-blue"] .faq-list > li > ul > li.open a,
html[color-theme="theme-blue"] .faq-list > li > ul > li.open > a:hover {
  color: #ffffff;
}

html[color-theme="theme-blue"] .faq-list > li > ul > li.open a:after,
html[color-theme="theme-blue"] .faq-list > li > ul > li.open > a:hover:after {
  background: #0575bc;
  opacity: 1;
}

html[color-theme="theme-blue"] .faq-list > li > ul > li.open a i,
html[color-theme="theme-blue"] .faq-list > li > ul > li.open > a:hover i {
  color: #ffffff;
}

html[color-theme="theme-blue"] .faq-list > li > ul > li > a:hover,
html[color-theme="theme-blue"] .faq-list > li > ul > li > a:hover i {
  color: #0575bc;
}

html[color-theme="theme-blue"] .wrap-popover-sharp .close:hover {
  color: #0575bc;
  opacity: 1;
}

html[color-theme="theme-blue"] .filter-btn:after {
  background-color: #0575bc;
}

html[color-theme="theme-blue"] .info-link-block a {
  color: #0575bc;
}

html[color-theme="theme-blue"] .info-link-block a:hover span {
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .info-link-block i {
  background-color: #0575bc;
}

html[color-theme="theme-blue"] .ya-share2__item:hover .ya-share2__icon {
  border-color: #0575bc !important;
  color: #0575bc !important;
}

html[color-theme="theme-blue"] .jq-radio.checked,
html[color-theme="theme-blue"] .jq-checkbox.checked {
  background: #0575bc;
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .wrap-check:hover label {
  color: #0575bc;
}

html[color-theme="theme-blue"] .wrap-check:hover .jq-radio,
html[color-theme="theme-blue"] .wrap-check:hover .jq-checkbox {
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .checked + label {
  color: #0575bc;
}

html[color-theme="theme-blue"] .dropdown-menu > .active > a,
html[color-theme="theme-blue"] .dropdown-menu > .active > a:hover,
html[color-theme="theme-blue"] .dropdown-menu > .active > a:focus {
  background-color: #0575bc;
  color: #ffffff;
}

html[color-theme="theme-blue"] .dropdown-menu > .active > a:after,
html[color-theme="theme-blue"] .dropdown-menu > .active > a:hover:after,
html[color-theme="theme-blue"] .dropdown-menu > .active > a:focus:after {
  background-color: #0575bc;
}

html[color-theme="theme-blue"] .list-services__item:hover span,
html[color-theme="theme-blue"] .list-services__item:focus span,
html[color-theme="theme-blue"] .list-services__item:hover i,
html[color-theme="theme-blue"] .list-services__item:focus i {
  color: #0575bc;
}

html[color-theme="theme-blue"] .active > .link-color {
  color: #0575bc;
}

html[color-theme="theme-blue"] .link-border-color:hover,
html[color-theme="theme-blue"] .link-border-color:focus,
html[color-theme="theme-blue"] .link-border-color:active {
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .spoiler-box:hover > .spoiler-box__btn {
  color: #0575bc;
}

html[color-theme="theme-blue"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret {
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret:before,
html[color-theme="theme-blue"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret:after {
  background-color: #0575bc;
}

html[color-theme="theme-blue"] .color {
  color: #0575bc;
}

html[color-theme="theme-blue"] .color-bg-block {
  background-color: #0575bc;
}

html[color-theme="theme-blue"] .link-bg-color:hover,
html[color-theme="theme-blue"] .link-bg-color:focus,
html[color-theme="theme-blue"] .link-bg-color:active {
  background-color: #0575bc;
  color: #ffffff;
}

html[color-theme="theme-blue"] .aside__list-nav .akk-toggle:hover {
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .aside__list-nav .akk-toggle:hover:after,
html[color-theme="theme-blue"] .aside__list-nav .akk-toggle:hover:before {
  background-color: #0575bc;
}

html[color-theme="theme-blue"] .header-nav > li > a:hover,
html[color-theme="theme-blue"] .header-nav > li:hover > a,
html[color-theme="theme-blue"] .header-nav > li.active > a,
html[color-theme="theme-blue"] .header-nav > li.open > a {
  color: #0575bc;
}

html[color-theme="theme-blue"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-theme="theme-blue"] .tabs-nav-wrap .nav-tabs > li:hover > a {
  border-bottom: 4px solid #0575bc;
}

html[color-theme="theme-blue"] .ev-text:hover {
  color: #0575bc;
}

html[color-theme="theme-blue"] .footer__net-list a:hover {
  color: #0575bc;
}

html[color-theme="theme-blue"] .calendar#main-calendar-widget .day.has-event .day-content {
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .calendar#main-calendar-widget .day.has-event .day-content:hover {
  border-color: #0575bc;
  background-color: #0575bc;
  color: #fff;
}

html[color-theme="theme-blue"] .calendar#main-calendar-widget .day.active .day-content {
  background-color: #0575bc;
  border-color: #0575bc;
  color: #ffffff;
}

html[color-theme="theme-blue"] .calendar#main-calendar-widget .next-arrow:hover,
html[color-theme="theme-blue"] .calendar#main-calendar-widget .prev-arrow:hover {
  border: 1px solid #0575bc;
  background-color: #0575bc;
}

html[color-theme="theme-blue"] .media-photo-preview:after {
  background: #0575bc;
}

html[color-theme="theme-blue"] .media-photo-modal .fancybox-button.fancybox-button--close:hover,
html[color-theme="theme-blue"] .tags-result-list a:hover,
html[color-theme="theme-blue"] .calendar .event .event-close:hover {
  color: #0575bc;
}

html[color-theme="theme-blue"] .calendar--prev-arrow:hover,
html[color-theme="theme-blue"] .calendar--next-arrow:hover,
html[color-theme="theme-blue"] .calendar__current_date:hover {
  border-color: #0575bc;
  color: #0575bc;
}

html[color-theme="theme-blue"] .header-nav > li > a:after {
  background-color: #0575bc;
}

html[color-theme="theme-blue"] .bootstrap-select .dropdown-menu > li > a:hover,
html[color-theme="theme-blue"] .bootstrap-select .dropdown-menu > li > a:focus {
  color: #0575bc;
  background-color: #f7f7f7;
}

html[color-theme="theme-blue"] .bootstrap-select .dropdown-menu > li > a:hover small.text-muted,
html[color-theme="theme-blue"] .bootstrap-select .dropdown-menu > li > a:focus small.text-muted {
  color: #0575bc;
}

html[color-theme="theme-blue"] .jq-radio.checked,
html[color-theme="theme-blue"] .jq-checkbox.checked {
  background: #0575bc;
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .wrap-check:hover .jq-radio,
html[color-theme="theme-blue"] .wrap-check:hover .jq-checkbox {
  border-color: #0575bc;
}

html[color-theme="theme-blue"] .checked + label,
html[color-theme="theme-blue"] .text-prime,
html[color-theme="theme-blue"] .rate_star:hover:after,
html[color-theme="theme-blue"] .rate_star.over:after,
html[color-theme="theme-blue"] .rate_star.checked:after {
  color: #0575bc;
}

html[color-theme="theme-blue-dark"] {
  /* btn */
  /* end btn */
  /* блок поделиться */
}

html[color-theme="theme-blue-dark"] .list-menu-page .item > span {
  border-color: rgba(13, 73, 205, 0.5);
}

html[color-theme="theme-blue-dark"] .aside__list-nav > li > a.active:after,
html[color-theme="theme-blue-dark"] .aside__list-nav > li > .item-wrap > a.active:after,
html[color-theme="theme-blue-dark"] .aside__list-nav > li > a.parent-active:after,
html[color-theme="theme-blue-dark"] .aside__list-nav > li > .item-wrap > a.parent-active:after {
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .aside__list-nav > li > ul a.active:before {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .tab-link-left li.active > a:after {
  background: #0d49cd;
}

html[color-theme="theme-blue-dark"] a:hover .link-color,
html[color-theme="theme-blue-dark"] a:focus .link-color,
html[color-theme="theme-blue-dark"] a:active .link-color,
html[color-theme="theme-blue-dark"] a.active .link-color {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] a:hover .link-color,
html[color-theme="theme-blue-dark"] a:focus .link-color,
html[color-theme="theme-blue-dark"] a:active .link-color,
html[color-theme="theme-blue-dark"] a.active .link-color,
html[color-theme="theme-blue-dark"] a:hover .link-color i,
html[color-theme="theme-blue-dark"] a:focus .link-color i,
html[color-theme="theme-blue-dark"] a:active .link-color i,
html[color-theme="theme-blue-dark"] a.active .link-color i {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] a:hover .btn-default-color,
html[color-theme="theme-blue-dark"] a:focus .btn-default-color,
html[color-theme="theme-blue-dark"] a:active .btn-default-color,
html[color-theme="theme-blue-dark"] a.active .btn-default-color {
  color: #ffffff;
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] a:hover .btn-default,
html[color-theme="theme-blue-dark"] a:focus .btn-default,
html[color-theme="theme-blue-dark"] a:active .btn-default,
html[color-theme="theme-blue-dark"] a.active .btn-default {
  color: #0d49cd;
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] a:hover .btn-primary,
html[color-theme="theme-blue-dark"] a:focus .btn-primary,
html[color-theme="theme-blue-dark"] a:active .btn-primary,
html[color-theme="theme-blue-dark"] a.active .btn-primary {
  background-color: #0a389d;
  border-color: #0a389d;
}

html[color-theme="theme-blue-dark"] .two-date:after {
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .search-result strong {
  background-color: #0d49cd;
  color: #ffffff;
}

html[color-theme="theme-blue-dark"] .pushy-top .close {
  color: #ffffff;
}

html[color-theme="theme-blue-dark"] .btn-favorite.favorite {
  background-color: #0d49cd;
  color: #ffffff;
}

html[color-theme="theme-blue-dark"] .slick-dots li.slick-active button,
html[color-theme="theme-blue-dark"] .slick-dots li button:focus,
html[color-theme="theme-blue-dark"] .slick-dots li button:focus {
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] #map-svg path.active {
  fill: #0d49cd !important;
}

html[color-theme="theme-blue-dark"] .text-block a:not([class]),
html[color-theme="theme-blue-dark"] .structure-tree a.link-style span,
html[color-theme="theme-blue-dark"] .link-border {
  border-color: rgba(13, 73, 205, 0.5);
}

html[color-theme="theme-blue-dark"] a.link-color:hover,
html[color-theme="theme-blue-dark"] .a.link-color:hover,
html[color-theme="theme-blue-dark"] a.link-color:focus,
html[color-theme="theme-blue-dark"] .a.link-color:focus,
html[color-theme="theme-blue-dark"] a.link-color:active,
html[color-theme="theme-blue-dark"] .a.link-color:active,
html[color-theme="theme-blue-dark"] a.link-color.active,
html[color-theme="theme-blue-dark"] .a.link-color.active,
html[color-theme="theme-blue-dark"] a.link-color:hover i,
html[color-theme="theme-blue-dark"] .a.link-color:hover i,
html[color-theme="theme-blue-dark"] a.link-color:focus i,
html[color-theme="theme-blue-dark"] .a.link-color:focus i,
html[color-theme="theme-blue-dark"] a.link-color:active i,
html[color-theme="theme-blue-dark"] .a.link-color:active i,
html[color-theme="theme-blue-dark"] a.link-color.active i,
html[color-theme="theme-blue-dark"] .a.link-color.active i {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .btn-default:focus,
html[color-theme="theme-blue-dark"] .btn-default.focus,
html[color-theme="theme-blue-dark"] .btn-default:hover,
html[color-theme="theme-blue-dark"] .btn-default:active,
html[color-theme="theme-blue-dark"] .btn-default.active {
  color: #0d49cd;
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .btn-default-color {
  color: #0d49cd;
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .btn-default-color:focus,
html[color-theme="theme-blue-dark"] .btn-default-color.focus,
html[color-theme="theme-blue-dark"] .btn-default-color:hover,
html[color-theme="theme-blue-dark"] .btn-default-color:active,
html[color-theme="theme-blue-dark"] .btn-default-color.active {
  color: #ffffff;
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] a.table-tender__item:focus .btn-default-color,
html[color-theme="theme-blue-dark"] a.table-tender__item.focus .btn-default-color,
html[color-theme="theme-blue-dark"] a.table-tender__item:hover .btn-default-color,
html[color-theme="theme-blue-dark"] a.table-tender__item:active .btn-default-color,
html[color-theme="theme-blue-dark"] a.table-tender__item.active .btn-default-color {
  color: #ffffff;
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .btn-collapsed:hover,
html[color-theme="theme-blue-dark"] .btn-collapsed:focus {
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .bootstrap-select.open .btn-default,
html[color-theme="theme-blue-dark"] .bootstrap-select.open .btn-default:focus,
html[color-theme="theme-blue-dark"] .bootstrap-select.open .btn-default.focus,
html[color-theme="theme-blue-dark"] .bootstrap-select.open .btn-default:hover,
html[color-theme="theme-blue-dark"] .bootstrap-select.open .btn-default:active,
html[color-theme="theme-blue-dark"] .bootstrap-select.open .btn-default.active {
  background-color: #0d49cd;
  border-color: #0d49cd;
  color: #ffffff;
}

html[color-theme="theme-blue-dark"] .btn-primary,
html[color-theme="theme-blue-dark"] .jq-file__browse {
  color: #ffffff;
  background-color: #0d49cd;
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .btn-primary:focus,
html[color-theme="theme-blue-dark"] .jq-file__browse:focus,
html[color-theme="theme-blue-dark"] .btn-primary.focus,
html[color-theme="theme-blue-dark"] .jq-file__browse.focus {
  background-color: #1c5ff1;
}

html[color-theme="theme-blue-dark"] .btn-primary:hover,
html[color-theme="theme-blue-dark"] .jq-file__browse:hover,
html[color-theme="theme-blue-dark"] .btn-primary:active,
html[color-theme="theme-blue-dark"] .jq-file__browse:active,
html[color-theme="theme-blue-dark"] .btn-primary.active,
html[color-theme="theme-blue-dark"] .jq-file__browse.active {
  background-color: #0a389d;
  border-color: #0a389d;
}

html[color-theme="theme-blue-dark"] .btn-black-border:hover,
html[color-theme="theme-blue-dark"] .btn-black-border.focus,
html[color-theme="theme-blue-dark"] .btn-black-border.active,
html[color-theme="theme-blue-dark"] .btn-black-border.active:hover,
html[color-theme="theme-blue-dark"] .btn-black-border.active:focus,
html[color-theme="theme-blue-dark"] .btn-black-border:focus {
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .btn-black:hover,
html[color-theme="theme-blue-dark"] .btn-black:focus,
html[color-theme="theme-blue-dark"] .btn-black.active,
html[color-theme="theme-blue-dark"] .btn-black.active:hover,
html[color-theme="theme-blue-dark"] .btn-black.active:focus,
html[color-theme="theme-blue-dark"] .btn-black:focus {
  border-color: #0d49cd;
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .btn-black-border:hover,
html[color-theme="theme-blue-dark"] .btn-black:hover,
html[color-theme="theme-blue-dark"] .btn-black-border.focus,
html[color-theme="theme-blue-dark"] .btn-black.focus,
html[color-theme="theme-blue-dark"] .btn-black-border.active:hover,
html[color-theme="theme-blue-dark"] .btn-black.active:hover,
html[color-theme="theme-blue-dark"] .btn-black-border.active:focus,
html[color-theme="theme-blue-dark"] .btn-black.active:focus,
html[color-theme="theme-blue-dark"] .btn-black-border:focus,
html[color-theme="theme-blue-dark"] .btn-black:focus {
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .btn-blind:hover,
html[color-theme="theme-blue-dark"] .btn-blind.act {
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .btn-gamb span {
  background: #0d49cd;
}

html[color-theme="theme-blue-dark"] .two-date:hover input.form-control {
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .dcjq-icon:hover,
html[color-theme="theme-blue-dark"] .structure-tree a.name:hover .icon-right-arrow,
html[color-theme="theme-blue-dark"] .structure-tree a.name:hover .icon-link {
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .dcjq-icon:hover:after,
html[color-theme="theme-blue-dark"] .dcjq-icon:hover:before,
html[color-theme="theme-blue-dark"] .Zebra_DatePicker table td.dp_hover,
html[color-theme="theme-blue-dark"] .Zebra_DatePicker table td.dp_selected {
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .breadcrumb > li:hover a,
html[color-theme="theme-blue-dark"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-theme="theme-blue-dark"] .tabs-nav-wrap .nav-tabs > li:hover > a,
html[color-theme="theme-blue-dark"] .Zebra_DatePicker_Icon,
html[color-theme="theme-blue-dark"] .Zebra_DatePicker table td.dp_current,
html[color-theme="theme-blue-dark"] .Zebra_DatePicker .dp_footer td.dp_today,
html[color-theme="theme-blue-dark"] .Zebra_DatePicker .dp_footer td.dp_clear,
html[color-theme="theme-blue-dark"] .Zebra_DatePicker .dp_header td.dp_hover,
html[color-theme="theme-blue-dark"] .Zebra_DatePicker .dp_daypicker th {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] input.form-control:hover,
html[color-theme="theme-blue-dark"] textarea.form-control:hover {
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .faq-list > li > a:hover,
html[color-theme="theme-blue-dark"] .faq-list > li.open > a {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .faq-list > li > ul > li.open a,
html[color-theme="theme-blue-dark"] .faq-list > li > ul > li.open > a:hover {
  color: #ffffff;
}

html[color-theme="theme-blue-dark"] .faq-list > li > ul > li.open a:after,
html[color-theme="theme-blue-dark"] .faq-list > li > ul > li.open > a:hover:after {
  background: #0d49cd;
  opacity: 1;
}

html[color-theme="theme-blue-dark"] .faq-list > li > ul > li.open a i,
html[color-theme="theme-blue-dark"] .faq-list > li > ul > li.open > a:hover i {
  color: #ffffff;
}

html[color-theme="theme-blue-dark"] .faq-list > li > ul > li > a:hover,
html[color-theme="theme-blue-dark"] .faq-list > li > ul > li > a:hover i {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .wrap-popover-sharp .close:hover {
  color: #0d49cd;
  opacity: 1;
}

html[color-theme="theme-blue-dark"] .filter-btn:after {
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .info-link-block a {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .info-link-block a:hover span {
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .info-link-block i {
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .ya-share2__item:hover .ya-share2__icon {
  border-color: #0d49cd !important;
  color: #0d49cd !important;
}

html[color-theme="theme-blue-dark"] .jq-radio.checked,
html[color-theme="theme-blue-dark"] .jq-checkbox.checked {
  background: #0d49cd;
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .wrap-check:hover label {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .wrap-check:hover .jq-radio,
html[color-theme="theme-blue-dark"] .wrap-check:hover .jq-checkbox {
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .checked + label {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .dropdown-menu > .active > a,
html[color-theme="theme-blue-dark"] .dropdown-menu > .active > a:hover,
html[color-theme="theme-blue-dark"] .dropdown-menu > .active > a:focus {
  background-color: #0d49cd;
  color: #ffffff;
}

html[color-theme="theme-blue-dark"] .dropdown-menu > .active > a:after,
html[color-theme="theme-blue-dark"] .dropdown-menu > .active > a:hover:after,
html[color-theme="theme-blue-dark"] .dropdown-menu > .active > a:focus:after {
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .list-services__item:hover span,
html[color-theme="theme-blue-dark"] .list-services__item:focus span,
html[color-theme="theme-blue-dark"] .list-services__item:hover i,
html[color-theme="theme-blue-dark"] .list-services__item:focus i {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .active > .link-color {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .link-border-color:hover,
html[color-theme="theme-blue-dark"] .link-border-color:focus,
html[color-theme="theme-blue-dark"] .link-border-color:active {
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .spoiler-box:hover > .spoiler-box__btn {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret {
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret:before,
html[color-theme="theme-blue-dark"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret:after {
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .color {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .color-bg-block {
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .link-bg-color:hover,
html[color-theme="theme-blue-dark"] .link-bg-color:focus,
html[color-theme="theme-blue-dark"] .link-bg-color:active {
  background-color: #0d49cd;
  color: #ffffff;
}

html[color-theme="theme-blue-dark"] .aside__list-nav .akk-toggle:hover {
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .aside__list-nav .akk-toggle:hover:after,
html[color-theme="theme-blue-dark"] .aside__list-nav .akk-toggle:hover:before {
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .header-nav > li > a:hover,
html[color-theme="theme-blue-dark"] .header-nav > li:hover > a,
html[color-theme="theme-blue-dark"] .header-nav > li.active > a,
html[color-theme="theme-blue-dark"] .header-nav > li.open > a {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-theme="theme-blue-dark"] .tabs-nav-wrap .nav-tabs > li:hover > a {
  border-bottom: 4px solid #0d49cd;
}

html[color-theme="theme-blue-dark"] .ev-text:hover {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .footer__net-list a:hover {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .calendar#main-calendar-widget .day.has-event .day-content {
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .calendar#main-calendar-widget .day.has-event .day-content:hover {
  border-color: #0d49cd;
  background-color: #0d49cd;
  color: #fff;
}

html[color-theme="theme-blue-dark"] .calendar#main-calendar-widget .day.active .day-content {
  background-color: #0d49cd;
  border-color: #0d49cd;
  color: #ffffff;
}

html[color-theme="theme-blue-dark"] .calendar#main-calendar-widget .next-arrow:hover,
html[color-theme="theme-blue-dark"] .calendar#main-calendar-widget .prev-arrow:hover {
  border: 1px solid #0d49cd;
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .media-photo-preview:after {
  background: #0d49cd;
}

html[color-theme="theme-blue-dark"] .media-photo-modal .fancybox-button.fancybox-button--close:hover,
html[color-theme="theme-blue-dark"] .tags-result-list a:hover,
html[color-theme="theme-blue-dark"] .calendar .event .event-close:hover {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .calendar--prev-arrow:hover,
html[color-theme="theme-blue-dark"] .calendar--next-arrow:hover,
html[color-theme="theme-blue-dark"] .calendar__current_date:hover {
  border-color: #0d49cd;
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .header-nav > li > a:after {
  background-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .bootstrap-select .dropdown-menu > li > a:hover,
html[color-theme="theme-blue-dark"] .bootstrap-select .dropdown-menu > li > a:focus {
  color: #0d49cd;
  background-color: #f7f7f7;
}

html[color-theme="theme-blue-dark"] .bootstrap-select .dropdown-menu > li > a:hover small.text-muted,
html[color-theme="theme-blue-dark"] .bootstrap-select .dropdown-menu > li > a:focus small.text-muted {
  color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .jq-radio.checked,
html[color-theme="theme-blue-dark"] .jq-checkbox.checked {
  background: #0d49cd;
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .wrap-check:hover .jq-radio,
html[color-theme="theme-blue-dark"] .wrap-check:hover .jq-checkbox {
  border-color: #0d49cd;
}

html[color-theme="theme-blue-dark"] .checked + label,
html[color-theme="theme-blue-dark"] .text-prime,
html[color-theme="theme-blue-dark"] .rate_star:hover:after,
html[color-theme="theme-blue-dark"] .rate_star.over:after,
html[color-theme="theme-blue-dark"] .rate_star.checked:after {
  color: #0d49cd;
}

html[color-theme="theme-red"] {
  /* btn */
  /* end btn */
  /* блок поделиться */
}

html[color-theme="theme-red"] .list-menu-page .item > span {
  border-color: rgba(226, 3, 56, 0.5);
}

html[color-theme="theme-red"] .aside__list-nav > li > a.active:after,
html[color-theme="theme-red"] .aside__list-nav > li > .item-wrap > a.active:after,
html[color-theme="theme-red"] .aside__list-nav > li > a.parent-active:after,
html[color-theme="theme-red"] .aside__list-nav > li > .item-wrap > a.parent-active:after {
  background-color: #e20338;
}

html[color-theme="theme-red"] .aside__list-nav > li > ul a.active:before {
  color: #e20338;
}

html[color-theme="theme-red"] .tab-link-left li.active > a:after {
  background: #e20338;
}

html[color-theme="theme-red"] a:hover .link-color,
html[color-theme="theme-red"] a:focus .link-color,
html[color-theme="theme-red"] a:active .link-color,
html[color-theme="theme-red"] a.active .link-color {
  color: #e20338;
}

html[color-theme="theme-red"] a:hover .link-color,
html[color-theme="theme-red"] a:focus .link-color,
html[color-theme="theme-red"] a:active .link-color,
html[color-theme="theme-red"] a.active .link-color,
html[color-theme="theme-red"] a:hover .link-color i,
html[color-theme="theme-red"] a:focus .link-color i,
html[color-theme="theme-red"] a:active .link-color i,
html[color-theme="theme-red"] a.active .link-color i {
  color: #e20338;
}

html[color-theme="theme-red"] a:hover .btn-default-color,
html[color-theme="theme-red"] a:focus .btn-default-color,
html[color-theme="theme-red"] a:active .btn-default-color,
html[color-theme="theme-red"] a.active .btn-default-color {
  color: #ffffff;
  background-color: #e20338;
}

html[color-theme="theme-red"] a:hover .btn-default,
html[color-theme="theme-red"] a:focus .btn-default,
html[color-theme="theme-red"] a:active .btn-default,
html[color-theme="theme-red"] a.active .btn-default {
  color: #e20338;
  border-color: #e20338;
}

html[color-theme="theme-red"] a:hover .btn-primary,
html[color-theme="theme-red"] a:focus .btn-primary,
html[color-theme="theme-red"] a:active .btn-primary,
html[color-theme="theme-red"] a.active .btn-primary {
  background-color: #b0022c;
  border-color: #b0022c;
}

html[color-theme="theme-red"] .two-date:after {
  background-color: #e20338;
}

html[color-theme="theme-red"] .search-result strong {
  background-color: #e20338;
  color: #ffffff;
}

html[color-theme="theme-red"] .pushy-top .close {
  color: #ffffff;
}

html[color-theme="theme-red"] .btn-favorite.favorite {
  background-color: #e20338;
  color: #ffffff;
}

html[color-theme="theme-red"] .slick-dots li.slick-active button,
html[color-theme="theme-red"] .slick-dots li button:focus,
html[color-theme="theme-red"] .slick-dots li button:focus {
  background-color: #e20338;
}

html[color-theme="theme-red"] #map-svg path.active {
  fill: #e20338 !important;
}

html[color-theme="theme-red"] .text-block a:not([class]),
html[color-theme="theme-red"] .structure-tree a.link-style span,
html[color-theme="theme-red"] .link-border {
  border-color: rgba(226, 3, 56, 0.5);
}

html[color-theme="theme-red"] a.link-color:hover,
html[color-theme="theme-red"] .a.link-color:hover,
html[color-theme="theme-red"] a.link-color:focus,
html[color-theme="theme-red"] .a.link-color:focus,
html[color-theme="theme-red"] a.link-color:active,
html[color-theme="theme-red"] .a.link-color:active,
html[color-theme="theme-red"] a.link-color.active,
html[color-theme="theme-red"] .a.link-color.active,
html[color-theme="theme-red"] a.link-color:hover i,
html[color-theme="theme-red"] .a.link-color:hover i,
html[color-theme="theme-red"] a.link-color:focus i,
html[color-theme="theme-red"] .a.link-color:focus i,
html[color-theme="theme-red"] a.link-color:active i,
html[color-theme="theme-red"] .a.link-color:active i,
html[color-theme="theme-red"] a.link-color.active i,
html[color-theme="theme-red"] .a.link-color.active i {
  color: #e20338;
}

html[color-theme="theme-red"] .btn-default:focus,
html[color-theme="theme-red"] .btn-default.focus,
html[color-theme="theme-red"] .btn-default:hover,
html[color-theme="theme-red"] .btn-default:active,
html[color-theme="theme-red"] .btn-default.active {
  color: #e20338;
  border-color: #e20338;
}

html[color-theme="theme-red"] .btn-default-color {
  color: #e20338;
  border-color: #e20338;
}

html[color-theme="theme-red"] .btn-default-color:focus,
html[color-theme="theme-red"] .btn-default-color.focus,
html[color-theme="theme-red"] .btn-default-color:hover,
html[color-theme="theme-red"] .btn-default-color:active,
html[color-theme="theme-red"] .btn-default-color.active {
  color: #ffffff;
  background-color: #e20338;
}

html[color-theme="theme-red"] a.table-tender__item:focus .btn-default-color,
html[color-theme="theme-red"] a.table-tender__item.focus .btn-default-color,
html[color-theme="theme-red"] a.table-tender__item:hover .btn-default-color,
html[color-theme="theme-red"] a.table-tender__item:active .btn-default-color,
html[color-theme="theme-red"] a.table-tender__item.active .btn-default-color {
  color: #ffffff;
  background-color: #e20338;
}

html[color-theme="theme-red"] .btn-collapsed:hover,
html[color-theme="theme-red"] .btn-collapsed:focus {
  background-color: #e20338;
}

html[color-theme="theme-red"] .bootstrap-select.open .btn-default,
html[color-theme="theme-red"] .bootstrap-select.open .btn-default:focus,
html[color-theme="theme-red"] .bootstrap-select.open .btn-default.focus,
html[color-theme="theme-red"] .bootstrap-select.open .btn-default:hover,
html[color-theme="theme-red"] .bootstrap-select.open .btn-default:active,
html[color-theme="theme-red"] .bootstrap-select.open .btn-default.active {
  background-color: #e20338;
  border-color: #e20338;
  color: #ffffff;
}

html[color-theme="theme-red"] .btn-primary,
html[color-theme="theme-red"] .jq-file__browse {
  color: #ffffff;
  background-color: #e20338;
  border-color: #e20338;
}

html[color-theme="theme-red"] .btn-primary:focus,
html[color-theme="theme-red"] .jq-file__browse:focus,
html[color-theme="theme-red"] .btn-primary.focus,
html[color-theme="theme-red"] .jq-file__browse.focus {
  background-color: #fc1c51;
}

html[color-theme="theme-red"] .btn-primary:hover,
html[color-theme="theme-red"] .jq-file__browse:hover,
html[color-theme="theme-red"] .btn-primary:active,
html[color-theme="theme-red"] .jq-file__browse:active,
html[color-theme="theme-red"] .btn-primary.active,
html[color-theme="theme-red"] .jq-file__browse.active {
  background-color: #b0022c;
  border-color: #b0022c;
}

html[color-theme="theme-red"] .btn-black-border:hover,
html[color-theme="theme-red"] .btn-black-border.focus,
html[color-theme="theme-red"] .btn-black-border.active,
html[color-theme="theme-red"] .btn-black-border.active:hover,
html[color-theme="theme-red"] .btn-black-border.active:focus,
html[color-theme="theme-red"] .btn-black-border:focus {
  border-color: #e20338;
}

html[color-theme="theme-red"] .btn-black:hover,
html[color-theme="theme-red"] .btn-black:focus,
html[color-theme="theme-red"] .btn-black.active,
html[color-theme="theme-red"] .btn-black.active:hover,
html[color-theme="theme-red"] .btn-black.active:focus,
html[color-theme="theme-red"] .btn-black:focus {
  border-color: #e20338;
  background-color: #e20338;
}

html[color-theme="theme-red"] .btn-black-border:hover,
html[color-theme="theme-red"] .btn-black:hover,
html[color-theme="theme-red"] .btn-black-border.focus,
html[color-theme="theme-red"] .btn-black.focus,
html[color-theme="theme-red"] .btn-black-border.active:hover,
html[color-theme="theme-red"] .btn-black.active:hover,
html[color-theme="theme-red"] .btn-black-border.active:focus,
html[color-theme="theme-red"] .btn-black.active:focus,
html[color-theme="theme-red"] .btn-black-border:focus,
html[color-theme="theme-red"] .btn-black:focus {
  border-color: #e20338;
}

html[color-theme="theme-red"] .btn-blind:hover,
html[color-theme="theme-red"] .btn-blind.act {
  background-color: #e20338;
}

html[color-theme="theme-red"] .btn-gamb span {
  background: #e20338;
}

html[color-theme="theme-red"] .two-date:hover input.form-control {
  border-color: #e20338;
}

html[color-theme="theme-red"] .dcjq-icon:hover,
html[color-theme="theme-red"] .structure-tree a.name:hover .icon-right-arrow,
html[color-theme="theme-red"] .structure-tree a.name:hover .icon-link {
  border-color: #e20338;
}

html[color-theme="theme-red"] .dcjq-icon:hover:after,
html[color-theme="theme-red"] .dcjq-icon:hover:before,
html[color-theme="theme-red"] .Zebra_DatePicker table td.dp_hover,
html[color-theme="theme-red"] .Zebra_DatePicker table td.dp_selected {
  background-color: #e20338;
}

html[color-theme="theme-red"] .breadcrumb > li:hover a,
html[color-theme="theme-red"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-theme="theme-red"] .tabs-nav-wrap .nav-tabs > li:hover > a,
html[color-theme="theme-red"] .Zebra_DatePicker_Icon,
html[color-theme="theme-red"] .Zebra_DatePicker table td.dp_current,
html[color-theme="theme-red"] .Zebra_DatePicker .dp_footer td.dp_today,
html[color-theme="theme-red"] .Zebra_DatePicker .dp_footer td.dp_clear,
html[color-theme="theme-red"] .Zebra_DatePicker .dp_header td.dp_hover,
html[color-theme="theme-red"] .Zebra_DatePicker .dp_daypicker th {
  color: #e20338;
}

html[color-theme="theme-red"] input.form-control:hover,
html[color-theme="theme-red"] textarea.form-control:hover {
  border-color: #e20338;
}

html[color-theme="theme-red"] .faq-list > li > a:hover,
html[color-theme="theme-red"] .faq-list > li.open > a {
  color: #e20338;
}

html[color-theme="theme-red"] .faq-list > li > ul > li.open a,
html[color-theme="theme-red"] .faq-list > li > ul > li.open > a:hover {
  color: #ffffff;
}

html[color-theme="theme-red"] .faq-list > li > ul > li.open a:after,
html[color-theme="theme-red"] .faq-list > li > ul > li.open > a:hover:after {
  background: #e20338;
  opacity: 1;
}

html[color-theme="theme-red"] .faq-list > li > ul > li.open a i,
html[color-theme="theme-red"] .faq-list > li > ul > li.open > a:hover i {
  color: #ffffff;
}

html[color-theme="theme-red"] .faq-list > li > ul > li > a:hover,
html[color-theme="theme-red"] .faq-list > li > ul > li > a:hover i {
  color: #e20338;
}

html[color-theme="theme-red"] .wrap-popover-sharp .close:hover {
  color: #e20338;
  opacity: 1;
}

html[color-theme="theme-red"] .filter-btn:after {
  background-color: #e20338;
}

html[color-theme="theme-red"] .info-link-block a {
  color: #e20338;
}

html[color-theme="theme-red"] .info-link-block a:hover span {
  border-color: #e20338;
}

html[color-theme="theme-red"] .info-link-block i {
  background-color: #e20338;
}

html[color-theme="theme-red"] .ya-share2__item:hover .ya-share2__icon {
  border-color: #e20338 !important;
  color: #e20338 !important;
}

html[color-theme="theme-red"] .jq-radio.checked,
html[color-theme="theme-red"] .jq-checkbox.checked {
  background: #e20338;
  border-color: #e20338;
}

html[color-theme="theme-red"] .wrap-check:hover label {
  color: #e20338;
}

html[color-theme="theme-red"] .wrap-check:hover .jq-radio,
html[color-theme="theme-red"] .wrap-check:hover .jq-checkbox {
  border-color: #e20338;
}

html[color-theme="theme-red"] .checked + label {
  color: #e20338;
}

html[color-theme="theme-red"] .dropdown-menu > .active > a,
html[color-theme="theme-red"] .dropdown-menu > .active > a:hover,
html[color-theme="theme-red"] .dropdown-menu > .active > a:focus {
  background-color: #e20338;
  color: #ffffff;
}

html[color-theme="theme-red"] .dropdown-menu > .active > a:after,
html[color-theme="theme-red"] .dropdown-menu > .active > a:hover:after,
html[color-theme="theme-red"] .dropdown-menu > .active > a:focus:after {
  background-color: #e20338;
}

html[color-theme="theme-red"] .list-services__item:hover span,
html[color-theme="theme-red"] .list-services__item:focus span,
html[color-theme="theme-red"] .list-services__item:hover i,
html[color-theme="theme-red"] .list-services__item:focus i {
  color: #e20338;
}

html[color-theme="theme-red"] .active > .link-color {
  color: #e20338;
}

html[color-theme="theme-red"] .link-border-color:hover,
html[color-theme="theme-red"] .link-border-color:focus,
html[color-theme="theme-red"] .link-border-color:active {
  border-color: #e20338;
}

html[color-theme="theme-red"] .spoiler-box:hover > .spoiler-box__btn {
  color: #e20338;
}

html[color-theme="theme-red"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret {
  border-color: #e20338;
}

html[color-theme="theme-red"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret:before,
html[color-theme="theme-red"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret:after {
  background-color: #e20338;
}

html[color-theme="theme-red"] .color {
  color: #e20338;
}

html[color-theme="theme-red"] .color-bg-block {
  background-color: #e20338;
}

html[color-theme="theme-red"] .link-bg-color:hover,
html[color-theme="theme-red"] .link-bg-color:focus,
html[color-theme="theme-red"] .link-bg-color:active {
  background-color: #e20338;
  color: #ffffff;
}

html[color-theme="theme-red"] .aside__list-nav .akk-toggle:hover {
  border-color: #e20338;
}

html[color-theme="theme-red"] .aside__list-nav .akk-toggle:hover:after,
html[color-theme="theme-red"] .aside__list-nav .akk-toggle:hover:before {
  background-color: #e20338;
}

html[color-theme="theme-red"] .header-nav > li > a:hover,
html[color-theme="theme-red"] .header-nav > li:hover > a,
html[color-theme="theme-red"] .header-nav > li.active > a,
html[color-theme="theme-red"] .header-nav > li.open > a {
  color: #e20338;
}

html[color-theme="theme-red"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-theme="theme-red"] .tabs-nav-wrap .nav-tabs > li:hover > a {
  border-bottom: 4px solid #e20338;
}

html[color-theme="theme-red"] .ev-text:hover {
  color: #e20338;
}

html[color-theme="theme-red"] .footer__net-list a:hover {
  color: #e20338;
}

html[color-theme="theme-red"] .calendar#main-calendar-widget .day.has-event .day-content {
  border-color: #e20338;
}

html[color-theme="theme-red"] .calendar#main-calendar-widget .day.has-event .day-content:hover {
  border-color: #e20338;
  background-color: #e20338;
  color: #fff;
}

html[color-theme="theme-red"] .calendar#main-calendar-widget .day.active .day-content {
  background-color: #e20338;
  border-color: #e20338;
  color: #ffffff;
}

html[color-theme="theme-red"] .calendar#main-calendar-widget .next-arrow:hover,
html[color-theme="theme-red"] .calendar#main-calendar-widget .prev-arrow:hover {
  border: 1px solid #e20338;
  background-color: #e20338;
}

html[color-theme="theme-red"] .media-photo-preview:after {
  background: #e20338;
}

html[color-theme="theme-red"] .media-photo-modal .fancybox-button.fancybox-button--close:hover,
html[color-theme="theme-red"] .tags-result-list a:hover,
html[color-theme="theme-red"] .calendar .event .event-close:hover {
  color: #e20338;
}

html[color-theme="theme-red"] .calendar--prev-arrow:hover,
html[color-theme="theme-red"] .calendar--next-arrow:hover,
html[color-theme="theme-red"] .calendar__current_date:hover {
  border-color: #e20338;
  color: #e20338;
}

html[color-theme="theme-red"] .header-nav > li > a:after {
  background-color: #e20338;
}

html[color-theme="theme-red"] .bootstrap-select .dropdown-menu > li > a:hover,
html[color-theme="theme-red"] .bootstrap-select .dropdown-menu > li > a:focus {
  color: #e20338;
  background-color: #f7f7f7;
}

html[color-theme="theme-red"] .bootstrap-select .dropdown-menu > li > a:hover small.text-muted,
html[color-theme="theme-red"] .bootstrap-select .dropdown-menu > li > a:focus small.text-muted {
  color: #e20338;
}

html[color-theme="theme-red"] .jq-radio.checked,
html[color-theme="theme-red"] .jq-checkbox.checked {
  background: #e20338;
  border-color: #e20338;
}

html[color-theme="theme-red"] .wrap-check:hover .jq-radio,
html[color-theme="theme-red"] .wrap-check:hover .jq-checkbox {
  border-color: #e20338;
}

html[color-theme="theme-red"] .checked + label,
html[color-theme="theme-red"] .text-prime,
html[color-theme="theme-red"] .rate_star:hover:after,
html[color-theme="theme-red"] .rate_star.over:after,
html[color-theme="theme-red"] .rate_star.checked:after {
  color: #e20338;
}

html[color-theme="theme-emerald"] {
  /* btn */
  /* end btn */
  /* блок поделиться */
}

html[color-theme="theme-emerald"] .list-menu-page .item > span {
  border-color: rgba(0, 207, 145, 0.5);
}

html[color-theme="theme-emerald"] .aside__list-nav > li > a.active:after,
html[color-theme="theme-emerald"] .aside__list-nav > li > .item-wrap > a.active:after,
html[color-theme="theme-emerald"] .aside__list-nav > li > a.parent-active:after,
html[color-theme="theme-emerald"] .aside__list-nav > li > .item-wrap > a.parent-active:after {
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] .aside__list-nav > li > ul a.active:before {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .tab-link-left li.active > a:after {
  background: #00cf91;
}

html[color-theme="theme-emerald"] a:hover .link-color,
html[color-theme="theme-emerald"] a:focus .link-color,
html[color-theme="theme-emerald"] a:active .link-color,
html[color-theme="theme-emerald"] a.active .link-color {
  color: #00cf91;
}

html[color-theme="theme-emerald"] a:hover .link-color,
html[color-theme="theme-emerald"] a:focus .link-color,
html[color-theme="theme-emerald"] a:active .link-color,
html[color-theme="theme-emerald"] a.active .link-color,
html[color-theme="theme-emerald"] a:hover .link-color i,
html[color-theme="theme-emerald"] a:focus .link-color i,
html[color-theme="theme-emerald"] a:active .link-color i,
html[color-theme="theme-emerald"] a.active .link-color i {
  color: #00cf91;
}

html[color-theme="theme-emerald"] a:hover .btn-default-color,
html[color-theme="theme-emerald"] a:focus .btn-default-color,
html[color-theme="theme-emerald"] a:active .btn-default-color,
html[color-theme="theme-emerald"] a.active .btn-default-color {
  color: #ffffff;
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] a:hover .btn-default,
html[color-theme="theme-emerald"] a:focus .btn-default,
html[color-theme="theme-emerald"] a:active .btn-default,
html[color-theme="theme-emerald"] a.active .btn-default {
  color: #00cf91;
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] a:hover .btn-primary,
html[color-theme="theme-emerald"] a:focus .btn-primary,
html[color-theme="theme-emerald"] a:active .btn-primary,
html[color-theme="theme-emerald"] a.active .btn-primary {
  background-color: #009c6d;
  border-color: #009c6d;
}

html[color-theme="theme-emerald"] .two-date:after {
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] .search-result strong {
  background-color: #00cf91;
  color: #ffffff;
}

html[color-theme="theme-emerald"] .pushy-top .close {
  color: #ffffff;
}

html[color-theme="theme-emerald"] .btn-favorite.favorite {
  background-color: #00cf91;
  color: #ffffff;
}

html[color-theme="theme-emerald"] .slick-dots li.slick-active button,
html[color-theme="theme-emerald"] .slick-dots li button:focus,
html[color-theme="theme-emerald"] .slick-dots li button:focus {
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] #map-svg path.active {
  fill: #00cf91 !important;
}

html[color-theme="theme-emerald"] .text-block a:not([class]),
html[color-theme="theme-emerald"] .structure-tree a.link-style span,
html[color-theme="theme-emerald"] .link-border {
  border-color: rgba(0, 207, 145, 0.5);
}

html[color-theme="theme-emerald"] a.link-color:hover,
html[color-theme="theme-emerald"] .a.link-color:hover,
html[color-theme="theme-emerald"] a.link-color:focus,
html[color-theme="theme-emerald"] .a.link-color:focus,
html[color-theme="theme-emerald"] a.link-color:active,
html[color-theme="theme-emerald"] .a.link-color:active,
html[color-theme="theme-emerald"] a.link-color.active,
html[color-theme="theme-emerald"] .a.link-color.active,
html[color-theme="theme-emerald"] a.link-color:hover i,
html[color-theme="theme-emerald"] .a.link-color:hover i,
html[color-theme="theme-emerald"] a.link-color:focus i,
html[color-theme="theme-emerald"] .a.link-color:focus i,
html[color-theme="theme-emerald"] a.link-color:active i,
html[color-theme="theme-emerald"] .a.link-color:active i,
html[color-theme="theme-emerald"] a.link-color.active i,
html[color-theme="theme-emerald"] .a.link-color.active i {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .btn-default:focus,
html[color-theme="theme-emerald"] .btn-default.focus,
html[color-theme="theme-emerald"] .btn-default:hover,
html[color-theme="theme-emerald"] .btn-default:active,
html[color-theme="theme-emerald"] .btn-default.active {
  color: #00cf91;
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .btn-default-color {
  color: #00cf91;
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .btn-default-color:focus,
html[color-theme="theme-emerald"] .btn-default-color.focus,
html[color-theme="theme-emerald"] .btn-default-color:hover,
html[color-theme="theme-emerald"] .btn-default-color:active,
html[color-theme="theme-emerald"] .btn-default-color.active {
  color: #ffffff;
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] a.table-tender__item:focus .btn-default-color,
html[color-theme="theme-emerald"] a.table-tender__item.focus .btn-default-color,
html[color-theme="theme-emerald"] a.table-tender__item:hover .btn-default-color,
html[color-theme="theme-emerald"] a.table-tender__item:active .btn-default-color,
html[color-theme="theme-emerald"] a.table-tender__item.active .btn-default-color {
  color: #ffffff;
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] .btn-collapsed:hover,
html[color-theme="theme-emerald"] .btn-collapsed:focus {
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] .bootstrap-select.open .btn-default,
html[color-theme="theme-emerald"] .bootstrap-select.open .btn-default:focus,
html[color-theme="theme-emerald"] .bootstrap-select.open .btn-default.focus,
html[color-theme="theme-emerald"] .bootstrap-select.open .btn-default:hover,
html[color-theme="theme-emerald"] .bootstrap-select.open .btn-default:active,
html[color-theme="theme-emerald"] .bootstrap-select.open .btn-default.active {
  background-color: #00cf91;
  border-color: #00cf91;
  color: #ffffff;
}

html[color-theme="theme-emerald"] .btn-primary,
html[color-theme="theme-emerald"] .jq-file__browse {
  color: #ffffff;
  background-color: #00cf91;
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .btn-primary:focus,
html[color-theme="theme-emerald"] .jq-file__browse:focus,
html[color-theme="theme-emerald"] .btn-primary.focus,
html[color-theme="theme-emerald"] .jq-file__browse.focus {
  background-color: #03ffb4;
}

html[color-theme="theme-emerald"] .btn-primary:hover,
html[color-theme="theme-emerald"] .jq-file__browse:hover,
html[color-theme="theme-emerald"] .btn-primary:active,
html[color-theme="theme-emerald"] .jq-file__browse:active,
html[color-theme="theme-emerald"] .btn-primary.active,
html[color-theme="theme-emerald"] .jq-file__browse.active {
  background-color: #009c6d;
  border-color: #009c6d;
}

html[color-theme="theme-emerald"] .btn-black-border:hover,
html[color-theme="theme-emerald"] .btn-black-border.focus,
html[color-theme="theme-emerald"] .btn-black-border.active,
html[color-theme="theme-emerald"] .btn-black-border.active:hover,
html[color-theme="theme-emerald"] .btn-black-border.active:focus,
html[color-theme="theme-emerald"] .btn-black-border:focus {
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .btn-black:hover,
html[color-theme="theme-emerald"] .btn-black:focus,
html[color-theme="theme-emerald"] .btn-black.active,
html[color-theme="theme-emerald"] .btn-black.active:hover,
html[color-theme="theme-emerald"] .btn-black.active:focus,
html[color-theme="theme-emerald"] .btn-black:focus {
  border-color: #00cf91;
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] .btn-black-border:hover,
html[color-theme="theme-emerald"] .btn-black:hover,
html[color-theme="theme-emerald"] .btn-black-border.focus,
html[color-theme="theme-emerald"] .btn-black.focus,
html[color-theme="theme-emerald"] .btn-black-border.active:hover,
html[color-theme="theme-emerald"] .btn-black.active:hover,
html[color-theme="theme-emerald"] .btn-black-border.active:focus,
html[color-theme="theme-emerald"] .btn-black.active:focus,
html[color-theme="theme-emerald"] .btn-black-border:focus,
html[color-theme="theme-emerald"] .btn-black:focus {
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .btn-blind:hover,
html[color-theme="theme-emerald"] .btn-blind.act {
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] .btn-gamb span {
  background: #00cf91;
}

html[color-theme="theme-emerald"] .two-date:hover input.form-control {
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .dcjq-icon:hover,
html[color-theme="theme-emerald"] .structure-tree a.name:hover .icon-right-arrow,
html[color-theme="theme-emerald"] .structure-tree a.name:hover .icon-link {
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .dcjq-icon:hover:after,
html[color-theme="theme-emerald"] .dcjq-icon:hover:before,
html[color-theme="theme-emerald"] .Zebra_DatePicker table td.dp_hover,
html[color-theme="theme-emerald"] .Zebra_DatePicker table td.dp_selected {
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] .breadcrumb > li:hover a,
html[color-theme="theme-emerald"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-theme="theme-emerald"] .tabs-nav-wrap .nav-tabs > li:hover > a,
html[color-theme="theme-emerald"] .Zebra_DatePicker_Icon,
html[color-theme="theme-emerald"] .Zebra_DatePicker table td.dp_current,
html[color-theme="theme-emerald"] .Zebra_DatePicker .dp_footer td.dp_today,
html[color-theme="theme-emerald"] .Zebra_DatePicker .dp_footer td.dp_clear,
html[color-theme="theme-emerald"] .Zebra_DatePicker .dp_header td.dp_hover,
html[color-theme="theme-emerald"] .Zebra_DatePicker .dp_daypicker th {
  color: #00cf91;
}

html[color-theme="theme-emerald"] input.form-control:hover,
html[color-theme="theme-emerald"] textarea.form-control:hover {
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .faq-list > li > a:hover,
html[color-theme="theme-emerald"] .faq-list > li.open > a {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .faq-list > li > ul > li.open a,
html[color-theme="theme-emerald"] .faq-list > li > ul > li.open > a:hover {
  color: #ffffff;
}

html[color-theme="theme-emerald"] .faq-list > li > ul > li.open a:after,
html[color-theme="theme-emerald"] .faq-list > li > ul > li.open > a:hover:after {
  background: #00cf91;
  opacity: 1;
}

html[color-theme="theme-emerald"] .faq-list > li > ul > li.open a i,
html[color-theme="theme-emerald"] .faq-list > li > ul > li.open > a:hover i {
  color: #ffffff;
}

html[color-theme="theme-emerald"] .faq-list > li > ul > li > a:hover,
html[color-theme="theme-emerald"] .faq-list > li > ul > li > a:hover i {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .wrap-popover-sharp .close:hover {
  color: #00cf91;
  opacity: 1;
}

html[color-theme="theme-emerald"] .filter-btn:after {
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] .info-link-block a {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .info-link-block a:hover span {
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .info-link-block i {
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] .ya-share2__item:hover .ya-share2__icon {
  border-color: #00cf91 !important;
  color: #00cf91 !important;
}

html[color-theme="theme-emerald"] .jq-radio.checked,
html[color-theme="theme-emerald"] .jq-checkbox.checked {
  background: #00cf91;
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .wrap-check:hover label {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .wrap-check:hover .jq-radio,
html[color-theme="theme-emerald"] .wrap-check:hover .jq-checkbox {
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .checked + label {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .dropdown-menu > .active > a,
html[color-theme="theme-emerald"] .dropdown-menu > .active > a:hover,
html[color-theme="theme-emerald"] .dropdown-menu > .active > a:focus {
  background-color: #00cf91;
  color: #ffffff;
}

html[color-theme="theme-emerald"] .dropdown-menu > .active > a:after,
html[color-theme="theme-emerald"] .dropdown-menu > .active > a:hover:after,
html[color-theme="theme-emerald"] .dropdown-menu > .active > a:focus:after {
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] .list-services__item:hover span,
html[color-theme="theme-emerald"] .list-services__item:focus span,
html[color-theme="theme-emerald"] .list-services__item:hover i,
html[color-theme="theme-emerald"] .list-services__item:focus i {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .active > .link-color {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .link-border-color:hover,
html[color-theme="theme-emerald"] .link-border-color:focus,
html[color-theme="theme-emerald"] .link-border-color:active {
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .spoiler-box:hover > .spoiler-box__btn {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret {
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret:before,
html[color-theme="theme-emerald"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret:after {
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] .color {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .color-bg-block {
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] .link-bg-color:hover,
html[color-theme="theme-emerald"] .link-bg-color:focus,
html[color-theme="theme-emerald"] .link-bg-color:active {
  background-color: #00cf91;
  color: #ffffff;
}

html[color-theme="theme-emerald"] .aside__list-nav .akk-toggle:hover {
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .aside__list-nav .akk-toggle:hover:after,
html[color-theme="theme-emerald"] .aside__list-nav .akk-toggle:hover:before {
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] .header-nav > li > a:hover,
html[color-theme="theme-emerald"] .header-nav > li:hover > a,
html[color-theme="theme-emerald"] .header-nav > li.active > a,
html[color-theme="theme-emerald"] .header-nav > li.open > a {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-theme="theme-emerald"] .tabs-nav-wrap .nav-tabs > li:hover > a {
  border-bottom: 4px solid #00cf91;
}

html[color-theme="theme-emerald"] .ev-text:hover {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .footer__net-list a:hover {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .calendar#main-calendar-widget .day.has-event .day-content {
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .calendar#main-calendar-widget .day.has-event .day-content:hover {
  border-color: #00cf91;
  background-color: #00cf91;
  color: #fff;
}

html[color-theme="theme-emerald"] .calendar#main-calendar-widget .day.active .day-content {
  background-color: #00cf91;
  border-color: #00cf91;
  color: #ffffff;
}

html[color-theme="theme-emerald"] .calendar#main-calendar-widget .next-arrow:hover,
html[color-theme="theme-emerald"] .calendar#main-calendar-widget .prev-arrow:hover {
  border: 1px solid #00cf91;
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] .media-photo-preview:after {
  background: #00cf91;
}

html[color-theme="theme-emerald"] .media-photo-modal .fancybox-button.fancybox-button--close:hover,
html[color-theme="theme-emerald"] .tags-result-list a:hover,
html[color-theme="theme-emerald"] .calendar .event .event-close:hover {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .calendar--prev-arrow:hover,
html[color-theme="theme-emerald"] .calendar--next-arrow:hover,
html[color-theme="theme-emerald"] .calendar__current_date:hover {
  border-color: #00cf91;
  color: #00cf91;
}

html[color-theme="theme-emerald"] .header-nav > li > a:after {
  background-color: #00cf91;
}

html[color-theme="theme-emerald"] .bootstrap-select .dropdown-menu > li > a:hover,
html[color-theme="theme-emerald"] .bootstrap-select .dropdown-menu > li > a:focus {
  color: #00cf91;
  background-color: #f7f7f7;
}

html[color-theme="theme-emerald"] .bootstrap-select .dropdown-menu > li > a:hover small.text-muted,
html[color-theme="theme-emerald"] .bootstrap-select .dropdown-menu > li > a:focus small.text-muted {
  color: #00cf91;
}

html[color-theme="theme-emerald"] .jq-radio.checked,
html[color-theme="theme-emerald"] .jq-checkbox.checked {
  background: #00cf91;
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .wrap-check:hover .jq-radio,
html[color-theme="theme-emerald"] .wrap-check:hover .jq-checkbox {
  border-color: #00cf91;
}

html[color-theme="theme-emerald"] .checked + label,
html[color-theme="theme-emerald"] .text-prime,
html[color-theme="theme-emerald"] .rate_star:hover:after,
html[color-theme="theme-emerald"] .rate_star.over:after,
html[color-theme="theme-emerald"] .rate_star.checked:after {
  color: #00cf91;
}

html[color-theme="theme-green"] {
  /* btn */
  /* end btn */
  /* блок поделиться */
}

html[color-theme="theme-green"] .list-menu-page .item > span {
  border-color: rgba(104, 159, 56, 0.5);
}

html[color-theme="theme-green"] .aside__list-nav > li > a.active:after,
html[color-theme="theme-green"] .aside__list-nav > li > .item-wrap > a.active:after,
html[color-theme="theme-green"] .aside__list-nav > li > a.parent-active:after,
html[color-theme="theme-green"] .aside__list-nav > li > .item-wrap > a.parent-active:after {
  background-color: #689f38;
}

html[color-theme="theme-green"] .aside__list-nav > li > ul a.active:before {
  color: #689f38;
}

html[color-theme="theme-green"] .tab-link-left li.active > a:after {
  background: #689f38;
}

html[color-theme="theme-green"] a:hover .link-color,
html[color-theme="theme-green"] a:focus .link-color,
html[color-theme="theme-green"] a:active .link-color,
html[color-theme="theme-green"] a.active .link-color {
  color: #689f38;
}

html[color-theme="theme-green"] a:hover .link-color,
html[color-theme="theme-green"] a:focus .link-color,
html[color-theme="theme-green"] a:active .link-color,
html[color-theme="theme-green"] a.active .link-color,
html[color-theme="theme-green"] a:hover .link-color i,
html[color-theme="theme-green"] a:focus .link-color i,
html[color-theme="theme-green"] a:active .link-color i,
html[color-theme="theme-green"] a.active .link-color i {
  color: #689f38;
}

html[color-theme="theme-green"] a:hover .btn-default-color,
html[color-theme="theme-green"] a:focus .btn-default-color,
html[color-theme="theme-green"] a:active .btn-default-color,
html[color-theme="theme-green"] a.active .btn-default-color {
  color: #ffffff;
  background-color: #689f38;
}

html[color-theme="theme-green"] a:hover .btn-default,
html[color-theme="theme-green"] a:focus .btn-default,
html[color-theme="theme-green"] a:active .btn-default,
html[color-theme="theme-green"] a.active .btn-default {
  color: #689f38;
  border-color: #689f38;
}

html[color-theme="theme-green"] a:hover .btn-primary,
html[color-theme="theme-green"] a:focus .btn-primary,
html[color-theme="theme-green"] a:active .btn-primary,
html[color-theme="theme-green"] a.active .btn-primary {
  background-color: #4f792b;
  border-color: #4f792b;
}

html[color-theme="theme-green"] .two-date:after {
  background-color: #689f38;
}

html[color-theme="theme-green"] .search-result strong {
  background-color: #689f38;
  color: #ffffff;
}

html[color-theme="theme-green"] .pushy-top .close {
  color: #ffffff;
}

html[color-theme="theme-green"] .btn-favorite.favorite {
  background-color: #689f38;
  color: #ffffff;
}

html[color-theme="theme-green"] .slick-dots li.slick-active button,
html[color-theme="theme-green"] .slick-dots li button:focus,
html[color-theme="theme-green"] .slick-dots li button:focus {
  background-color: #689f38;
}

html[color-theme="theme-green"] #map-svg path.active {
  fill: #689f38 !important;
}

html[color-theme="theme-green"] .text-block a:not([class]),
html[color-theme="theme-green"] .structure-tree a.link-style span,
html[color-theme="theme-green"] .link-border {
  border-color: rgba(104, 159, 56, 0.5);
}

html[color-theme="theme-green"] a.link-color:hover,
html[color-theme="theme-green"] .a.link-color:hover,
html[color-theme="theme-green"] a.link-color:focus,
html[color-theme="theme-green"] .a.link-color:focus,
html[color-theme="theme-green"] a.link-color:active,
html[color-theme="theme-green"] .a.link-color:active,
html[color-theme="theme-green"] a.link-color.active,
html[color-theme="theme-green"] .a.link-color.active,
html[color-theme="theme-green"] a.link-color:hover i,
html[color-theme="theme-green"] .a.link-color:hover i,
html[color-theme="theme-green"] a.link-color:focus i,
html[color-theme="theme-green"] .a.link-color:focus i,
html[color-theme="theme-green"] a.link-color:active i,
html[color-theme="theme-green"] .a.link-color:active i,
html[color-theme="theme-green"] a.link-color.active i,
html[color-theme="theme-green"] .a.link-color.active i {
  color: #689f38;
}

html[color-theme="theme-green"] .btn-default:focus,
html[color-theme="theme-green"] .btn-default.focus,
html[color-theme="theme-green"] .btn-default:hover,
html[color-theme="theme-green"] .btn-default:active,
html[color-theme="theme-green"] .btn-default.active {
  color: #689f38;
  border-color: #689f38;
}

html[color-theme="theme-green"] .btn-default-color {
  color: #689f38;
  border-color: #689f38;
}

html[color-theme="theme-green"] .btn-default-color:focus,
html[color-theme="theme-green"] .btn-default-color.focus,
html[color-theme="theme-green"] .btn-default-color:hover,
html[color-theme="theme-green"] .btn-default-color:active,
html[color-theme="theme-green"] .btn-default-color.active {
  color: #ffffff;
  background-color: #689f38;
}

html[color-theme="theme-green"] a.table-tender__item:focus .btn-default-color,
html[color-theme="theme-green"] a.table-tender__item.focus .btn-default-color,
html[color-theme="theme-green"] a.table-tender__item:hover .btn-default-color,
html[color-theme="theme-green"] a.table-tender__item:active .btn-default-color,
html[color-theme="theme-green"] a.table-tender__item.active .btn-default-color {
  color: #ffffff;
  background-color: #689f38;
}

html[color-theme="theme-green"] .btn-collapsed:hover,
html[color-theme="theme-green"] .btn-collapsed:focus {
  background-color: #689f38;
}

html[color-theme="theme-green"] .bootstrap-select.open .btn-default,
html[color-theme="theme-green"] .bootstrap-select.open .btn-default:focus,
html[color-theme="theme-green"] .bootstrap-select.open .btn-default.focus,
html[color-theme="theme-green"] .bootstrap-select.open .btn-default:hover,
html[color-theme="theme-green"] .bootstrap-select.open .btn-default:active,
html[color-theme="theme-green"] .bootstrap-select.open .btn-default.active {
  background-color: #689f38;
  border-color: #689f38;
  color: #ffffff;
}

html[color-theme="theme-green"] .btn-primary,
html[color-theme="theme-green"] .jq-file__browse {
  color: #ffffff;
  background-color: #689f38;
  border-color: #689f38;
}

html[color-theme="theme-green"] .btn-primary:focus,
html[color-theme="theme-green"] .jq-file__browse:focus,
html[color-theme="theme-green"] .btn-primary.focus,
html[color-theme="theme-green"] .jq-file__browse.focus {
  background-color: #81bf4b;
}

html[color-theme="theme-green"] .btn-primary:hover,
html[color-theme="theme-green"] .jq-file__browse:hover,
html[color-theme="theme-green"] .btn-primary:active,
html[color-theme="theme-green"] .jq-file__browse:active,
html[color-theme="theme-green"] .btn-primary.active,
html[color-theme="theme-green"] .jq-file__browse.active {
  background-color: #4f792b;
  border-color: #4f792b;
}

html[color-theme="theme-green"] .btn-black-border:hover,
html[color-theme="theme-green"] .btn-black-border.focus,
html[color-theme="theme-green"] .btn-black-border.active,
html[color-theme="theme-green"] .btn-black-border.active:hover,
html[color-theme="theme-green"] .btn-black-border.active:focus,
html[color-theme="theme-green"] .btn-black-border:focus {
  border-color: #689f38;
}

html[color-theme="theme-green"] .btn-black:hover,
html[color-theme="theme-green"] .btn-black:focus,
html[color-theme="theme-green"] .btn-black.active,
html[color-theme="theme-green"] .btn-black.active:hover,
html[color-theme="theme-green"] .btn-black.active:focus,
html[color-theme="theme-green"] .btn-black:focus {
  border-color: #689f38;
  background-color: #689f38;
}

html[color-theme="theme-green"] .btn-black-border:hover,
html[color-theme="theme-green"] .btn-black:hover,
html[color-theme="theme-green"] .btn-black-border.focus,
html[color-theme="theme-green"] .btn-black.focus,
html[color-theme="theme-green"] .btn-black-border.active:hover,
html[color-theme="theme-green"] .btn-black.active:hover,
html[color-theme="theme-green"] .btn-black-border.active:focus,
html[color-theme="theme-green"] .btn-black.active:focus,
html[color-theme="theme-green"] .btn-black-border:focus,
html[color-theme="theme-green"] .btn-black:focus {
  border-color: #689f38;
}

html[color-theme="theme-green"] .btn-blind:hover,
html[color-theme="theme-green"] .btn-blind.act {
  background-color: #689f38;
}

html[color-theme="theme-green"] .btn-gamb span {
  background: #689f38;
}

html[color-theme="theme-green"] .two-date:hover input.form-control {
  border-color: #689f38;
}

html[color-theme="theme-green"] .dcjq-icon:hover,
html[color-theme="theme-green"] .structure-tree a.name:hover .icon-right-arrow,
html[color-theme="theme-green"] .structure-tree a.name:hover .icon-link {
  border-color: #689f38;
}

html[color-theme="theme-green"] .dcjq-icon:hover:after,
html[color-theme="theme-green"] .dcjq-icon:hover:before,
html[color-theme="theme-green"] .Zebra_DatePicker table td.dp_hover,
html[color-theme="theme-green"] .Zebra_DatePicker table td.dp_selected {
  background-color: #689f38;
}

html[color-theme="theme-green"] .breadcrumb > li:hover a,
html[color-theme="theme-green"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-theme="theme-green"] .tabs-nav-wrap .nav-tabs > li:hover > a,
html[color-theme="theme-green"] .Zebra_DatePicker_Icon,
html[color-theme="theme-green"] .Zebra_DatePicker table td.dp_current,
html[color-theme="theme-green"] .Zebra_DatePicker .dp_footer td.dp_today,
html[color-theme="theme-green"] .Zebra_DatePicker .dp_footer td.dp_clear,
html[color-theme="theme-green"] .Zebra_DatePicker .dp_header td.dp_hover,
html[color-theme="theme-green"] .Zebra_DatePicker .dp_daypicker th {
  color: #689f38;
}

html[color-theme="theme-green"] input.form-control:hover,
html[color-theme="theme-green"] textarea.form-control:hover {
  border-color: #689f38;
}

html[color-theme="theme-green"] .faq-list > li > a:hover,
html[color-theme="theme-green"] .faq-list > li.open > a {
  color: #689f38;
}

html[color-theme="theme-green"] .faq-list > li > ul > li.open a,
html[color-theme="theme-green"] .faq-list > li > ul > li.open > a:hover {
  color: #ffffff;
}

html[color-theme="theme-green"] .faq-list > li > ul > li.open a:after,
html[color-theme="theme-green"] .faq-list > li > ul > li.open > a:hover:after {
  background: #689f38;
  opacity: 1;
}

html[color-theme="theme-green"] .faq-list > li > ul > li.open a i,
html[color-theme="theme-green"] .faq-list > li > ul > li.open > a:hover i {
  color: #ffffff;
}

html[color-theme="theme-green"] .faq-list > li > ul > li > a:hover,
html[color-theme="theme-green"] .faq-list > li > ul > li > a:hover i {
  color: #689f38;
}

html[color-theme="theme-green"] .wrap-popover-sharp .close:hover {
  color: #689f38;
  opacity: 1;
}

html[color-theme="theme-green"] .filter-btn:after {
  background-color: #689f38;
}

html[color-theme="theme-green"] .info-link-block a {
  color: #689f38;
}

html[color-theme="theme-green"] .info-link-block a:hover span {
  border-color: #689f38;
}

html[color-theme="theme-green"] .info-link-block i {
  background-color: #689f38;
}

html[color-theme="theme-green"] .ya-share2__item:hover .ya-share2__icon {
  border-color: #689f38 !important;
  color: #689f38 !important;
}

html[color-theme="theme-green"] .jq-radio.checked,
html[color-theme="theme-green"] .jq-checkbox.checked {
  background: #689f38;
  border-color: #689f38;
}

html[color-theme="theme-green"] .wrap-check:hover label {
  color: #689f38;
}

html[color-theme="theme-green"] .wrap-check:hover .jq-radio,
html[color-theme="theme-green"] .wrap-check:hover .jq-checkbox {
  border-color: #689f38;
}

html[color-theme="theme-green"] .checked + label {
  color: #689f38;
}

html[color-theme="theme-green"] .dropdown-menu > .active > a,
html[color-theme="theme-green"] .dropdown-menu > .active > a:hover,
html[color-theme="theme-green"] .dropdown-menu > .active > a:focus {
  background-color: #689f38;
  color: #ffffff;
}

html[color-theme="theme-green"] .dropdown-menu > .active > a:after,
html[color-theme="theme-green"] .dropdown-menu > .active > a:hover:after,
html[color-theme="theme-green"] .dropdown-menu > .active > a:focus:after {
  background-color: #689f38;
}

html[color-theme="theme-green"] .list-services__item:hover span,
html[color-theme="theme-green"] .list-services__item:focus span,
html[color-theme="theme-green"] .list-services__item:hover i,
html[color-theme="theme-green"] .list-services__item:focus i {
  color: #689f38;
}

html[color-theme="theme-green"] .active > .link-color {
  color: #689f38;
}

html[color-theme="theme-green"] .link-border-color:hover,
html[color-theme="theme-green"] .link-border-color:focus,
html[color-theme="theme-green"] .link-border-color:active {
  border-color: #689f38;
}

html[color-theme="theme-green"] .spoiler-box:hover > .spoiler-box__btn {
  color: #689f38;
}

html[color-theme="theme-green"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret {
  border-color: #689f38;
}

html[color-theme="theme-green"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret:before,
html[color-theme="theme-green"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret:after {
  background-color: #689f38;
}

html[color-theme="theme-green"] .color {
  color: #689f38;
}

html[color-theme="theme-green"] .color-bg-block {
  background-color: #689f38;
}

html[color-theme="theme-green"] .link-bg-color:hover,
html[color-theme="theme-green"] .link-bg-color:focus,
html[color-theme="theme-green"] .link-bg-color:active {
  background-color: #689f38;
  color: #ffffff;
}

html[color-theme="theme-green"] .aside__list-nav .akk-toggle:hover {
  border-color: #689f38;
}

html[color-theme="theme-green"] .aside__list-nav .akk-toggle:hover:after,
html[color-theme="theme-green"] .aside__list-nav .akk-toggle:hover:before {
  background-color: #689f38;
}

html[color-theme="theme-green"] .header-nav > li > a:hover,
html[color-theme="theme-green"] .header-nav > li:hover > a,
html[color-theme="theme-green"] .header-nav > li.active > a,
html[color-theme="theme-green"] .header-nav > li.open > a {
  color: #689f38;
}

html[color-theme="theme-green"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-theme="theme-green"] .tabs-nav-wrap .nav-tabs > li:hover > a {
  border-bottom: 4px solid #689f38;
}

html[color-theme="theme-green"] .ev-text:hover {
  color: #689f38;
}

html[color-theme="theme-green"] .footer__net-list a:hover {
  color: #689f38;
}

html[color-theme="theme-green"] .calendar#main-calendar-widget .day.has-event .day-content {
  border-color: #689f38;
}

html[color-theme="theme-green"] .calendar#main-calendar-widget .day.has-event .day-content:hover {
  border-color: #689f38;
  background-color: #689f38;
  color: #fff;
}

html[color-theme="theme-green"] .calendar#main-calendar-widget .day.active .day-content {
  background-color: #689f38;
  border-color: #689f38;
  color: #ffffff;
}

html[color-theme="theme-green"] .calendar#main-calendar-widget .next-arrow:hover,
html[color-theme="theme-green"] .calendar#main-calendar-widget .prev-arrow:hover {
  border: 1px solid #689f38;
  background-color: #689f38;
}

html[color-theme="theme-green"] .media-photo-preview:after {
  background: #689f38;
}

html[color-theme="theme-green"] .media-photo-modal .fancybox-button.fancybox-button--close:hover,
html[color-theme="theme-green"] .tags-result-list a:hover,
html[color-theme="theme-green"] .calendar .event .event-close:hover {
  color: #689f38;
}

html[color-theme="theme-green"] .calendar--prev-arrow:hover,
html[color-theme="theme-green"] .calendar--next-arrow:hover,
html[color-theme="theme-green"] .calendar__current_date:hover {
  border-color: #689f38;
  color: #689f38;
}

html[color-theme="theme-green"] .header-nav > li > a:after {
  background-color: #689f38;
}

html[color-theme="theme-green"] .bootstrap-select .dropdown-menu > li > a:hover,
html[color-theme="theme-green"] .bootstrap-select .dropdown-menu > li > a:focus {
  color: #689f38;
  background-color: #f7f7f7;
}

html[color-theme="theme-green"] .bootstrap-select .dropdown-menu > li > a:hover small.text-muted,
html[color-theme="theme-green"] .bootstrap-select .dropdown-menu > li > a:focus small.text-muted {
  color: #689f38;
}

html[color-theme="theme-green"] .jq-radio.checked,
html[color-theme="theme-green"] .jq-checkbox.checked {
  background: #689f38;
  border-color: #689f38;
}

html[color-theme="theme-green"] .wrap-check:hover .jq-radio,
html[color-theme="theme-green"] .wrap-check:hover .jq-checkbox {
  border-color: #689f38;
}

html[color-theme="theme-green"] .checked + label,
html[color-theme="theme-green"] .text-prime,
html[color-theme="theme-green"] .rate_star:hover:after,
html[color-theme="theme-green"] .rate_star.over:after,
html[color-theme="theme-green"] .rate_star.checked:after {
  color: #689f38;
}

html[color-schema="color-black"] .bg-color {
  color: #ffffff;
  background-color: #000000;
}

html[color-schema="color-black"] .bg-color.header__bottom-panel {
  border-bottom: 1px solid #ffffff;
}

html[color-schema="color-black"] .bg-color .dropdown-menu-header {
  color: #ffffff;
}

html[color-schema="color-black"] .bg-color .breadcrumb > li a {
  color: #ffffff;
}

html[color-schema="color-black"] .bg-color .breadcrumb > li:after,
html[color-schema="color-black"] .press-center-container-title,
html[color-schema="color-black"] .press-center-container-tag,
html[color-schema="color-black"] .main-news-test__title p,
html[color-schema="color-black"] .press-all-theme,
html[color-schema="color-black"] .new-notes-text,
html[color-schema="color-black"] .press-center-tag-count-inner,
html[color-schema="color-black"] .new-priority-item-text,
html[color-schema="color-black"] .footer-logo-text,
html[color-schema="color-black"] .footer__contacts,
html[color-schema="color-black"] .menegement__block_title,
html[color-schema="color-black"] .soc-center__col2,
html[color-schema="color-black"] .soc-center__col3 {
  color: #ffffff !important;
}

html[color-schema="color-black"] .soc-center__col1:before {
  background-color: transparent;
}

html[color-schema="color-black"] .soc-tv-card {
  background-color: #1a1a1a;
}

/* html[color-schema="color-black"] .header-new-styles .nav-btn a {
  background-color: #000000;
  border: solid 1px #fff;
} */

html[color-schema="color-black"] .header-new-styles .nav-btn a:hover,
html[color-schema="color-black"] .btn.btn-default-color.link-division:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
  text-decoration: none;
}

html[color-schema="color-black"] .soc-tv-card:hover {
  -webkit-box-shadow: 0 6px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 10px 0px rgba(0, 0, 0, 0.1);
}

html[color-schema="color-black"] .soc-tv-card:hover .soc-tv-card__title {
  color: #e20338;
}

html[color-schema="color-black"] .soc-tv-card__content:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(241, 242, 242, 0)), to(#1a1a1a));
  background: -webkit-linear-gradient(top, rgba(241, 242, 242, 0) 0%, #1a1a1a 100%);
  background: linear-gradient(to bottom, rgba(241, 242, 242, 0) 0%, #1a1a1a 100%);
}

html[color-schema="color-black"] .seach-block {
  border-bottom: 1px solid #ffffff;
}

html[color-schema="color-black"] .seach-block .seach-block__info {
  color: #ffffff;
}

html[color-schema="color-black"] .media-category:after,
html[color-schema="color-black"] .slider-main-indicator {
  background-color: #ffffff !important;
}

html[color-schema="color-black"] .widget-mayor__bottom,
html[color-schema="color-black"] .block-douwnload-md .doc-icon:before,
html[color-schema="color-black"] .post-list.all_event_closest {
  background-color: #000000;
}

html[color-schema="color-black"] .icons__text {
  color: #ffffff;
}

html[color-schema="color-black"] .icons__box:hover .icons__text {
  color: #ffffff;
}

html[color-schema="color-black"] .quote i.top,
html[color-schema="color-black"] .quote i.bottom,
html[color-schema="color-black"] .media-category,
html[color-schema="color-black"] .header__link-home i,
html[color-schema="color-black"] .link-list-sites i,
html[color-schema="color-black"] .header__link-portal i,
html[color-schema="color-black"] .photo-box .icon-arrow-top {
  color: #ffffff !important;
}

html[color-schema="color-black"] .list-menu-page .item > span {
  border-color: #ffffff;
}

html[color-schema="color-black"] .list-menu-page {
  border: 1px solid #ffffff;
}

html[color-schema="color-black"] .block-douwnload-md .doc-icon:before {
  border-top: 15px solid #000000;
  border-right: 15px solid #000000;
}

html[color-schema="color-black"] .info-link-block a:hover span,
html[color-schema="color-black"] .faq-list > li > ul > li > a i,
html[color-schema="color-black"] .faq-list .item-text-title,
html[color-schema="color-black"] .main-info-block .title .big {
  color: #ffffff;
}

html[color-schema="color-black"] .media-category.news {
  color: #ffffff !important;
}

html[color-schema="color-black"] .media-category.news:after {
  background-color: #ffffff !important;
}

html[color-schema="color-black"] .aside__list-nav > li > a.active:after,
html[color-schema="color-black"] .aside__list-nav > li > .item-wrap > a.active:after,
html[color-schema="color-black"] .aside__list-nav > li > a.parent-active:after,
html[color-schema="color-black"] .aside__list-nav > li > .item-wrap > a.parent-active:after,
html[color-schema="color-black"] .aside__item > li > a.active:after {
  background-color: #ffffff !important;
}

html[color-schema="color-black"] .field-icon-loupe {
  opacity: 1;
}

html[color-schema="color-black"] .bg-block-sm,
html[color-schema="color-black"] .border-block-sm,
html[color-schema="color-black"] .fileupload-list__box .preview,
html[color-schema="color-black"] .post-list.all_event_closest {
  border: 1px solid #ffffff;
}

html[color-schema="color-black"] .box-drop-style,
html[color-schema="color-black"] .layer-link__title,
html[color-schema="color-black"] .spoiler-box__content,
html[color-schema="color-black"] .Zebra_DatePicker .dp_footer,
html[color-schema="color-black"] .dropdown-menu-header .list-division {
  border-color: #ffffff;
}

html[color-schema="color-black"] body,
html[color-schema="color-black"] .box-drop-style,
html[color-schema="color-black"] .fileupload-list__box .preview,
html[color-schema="color-black"] .box-drop-style .sub-text .mark,
html[color-schema="color-black"] .modal-content,
html[color-schema="color-black"] .spoiler-box,
html[color-schema="color-black"] .tab-link-left li.active a {
  background: #000000;
}

html[color-schema="color-black"] .search-result strong,
html[color-schema="color-black"] .alert-warning,
html[color-schema="color-black"] .breadcrumb-new__button_share:hover {
  background: #ffffff;
  color: #000000;
}

html[color-schema="color-black"] .breadcrumb-new__button_seal:hover span {
  color: #000000;
}

html[color-schema="color-black"] .blind-text-bg {
  background: #000000;
  display: inline;
  color: #ffffff;
}

html[color-schema="color-black"] .slider-main__sub-text {
  opacity: 1;
}

html[color-schema="color-black"] .text-block a:not([class]) {
  border-color: #ffffff;
}

html[color-schema="color-black"] .simple-list-nav li a:after,
html[color-schema="color-black"] .service-pop-banner .left:after,
html[color-schema="color-black"] .widget-quiz__inner,
html[color-schema="color-black"] .jq-checkbox.checked .jq-checkbox__div,
html[color-schema="color-black"] .spoiler-box__carret:before,
html[color-schema="color-black"] .spoiler-box__carret:after {
  background: #ffffff;
}

html[color-schema="color-black"] .breadcrumb-new__button_seal:hover {
  background: #ffffff;
  text-decoration: none;
}

html[color-schema="color-black"] .menegement__block_link:hover,
html[color-schema="color-black"] .press-center-container-item:hover,
html[color-schema="color-black"] .new-notes-item:hover,
html[color-schema="color-black"] .section-head--link:hover,
html[color-schema="color-black"] .container-inner-item-small:hover,
html[color-schema="color-black"] .container-inner-item-big:hover,
html[color-schema="color-black"] .new-site-link-block:hover,
html[color-schema="color-black"] .useful-materials-block:hover {
  text-decoration: none;
}

html[color-schema="color-black"] .menegement__block_link:hover .menegement__block_link_info_name p,
html[color-schema="color-black"] .menegement__block_link:hover .menegement__block_link_info_name i {
  color: #ffffff;
  text-decoration: underline;
}

html[color-schema="color-black"] .news-box__date {
  opacity: 0;
}

html[color-schema="color-black"] .color-bg-block,
html[color-schema="color-black"] .btn-delete i,
html[color-schema="color-black"] .modal-content,
html[color-schema="color-black"] .text-block table td,
html[color-schema="color-black"] a .link-color {
  color: #ffffff !important;
}

html[color-schema="color-black"] .news-box__bottom {
  background: #000000;
  border: 1px solid #ffffff;
  padding-top: 30px;
}

html[color-schema="color-black"] .event-box {
  border-color: #ffffff;
}

html[color-schema="color-black"] .simple-list-nav,
html[color-schema="color-black"] .service-pop-banner,
html[color-schema="color-black"] .main-news-test__type,
html[color-schema="color-black"] .main-news-item__type {
  background: #000000 !important;
}

html[color-schema="color-black"] .two-date:after,
html[color-schema="color-black"] .mark-tab i.mark-tab__mark {
  background-color: #ffffff !important;
}

html[color-schema="color-black"] .map-city .panel-inner:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#000000));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #000000 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #000000 100%);
}

html[color-schema="color-black"] .header,
html[color-schema="color-black"] .bg-brown,
html[color-schema="color-black"] .bg-light-blue {
  background: #000000 !important;
}

html[color-schema="color-black"] .btn-favorite.favorite {
  background-color: #000000;
  color: #ffffff;
}

html[color-schema="color-black"] .map {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
  filter: gray;
}

html[color-schema="color-black"] .btn-gamb span,
html[color-schema="color-black"] .nav-accordion > li:after {
  background: #ffffff !important;
}

html[color-schema="color-black"] .pushy {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-left: 1px solid #ffffff;
}

html[color-schema="color-black"] .dropdown-menu-header .dropdown-menu__inner {
  background: #000000;
  border-color: #ffffff;
}

html[color-schema="color-black"] .faq-list > li > a:hover,
html[color-schema="color-black"] .faq-list > li.open > a,
html[color-schema="color-black"] .faq-list > li > ul > li > a:hover,
html[color-schema="color-black"] .faq-list > li > ul > li > a:hover i {
  color: #ffffff;
}

html[color-schema="color-black"] .tab-link-left li.active > a:after {
  background-color: #ffffff;
}

html[color-schema="color-black"] .faq-list__category,
html[color-schema="color-black"] .tab-link-left ul {
  border: 1px solid #ffffff;
}

html[color-schema="color-black"] .text-block ul li:before,
html[color-schema="color-black"] .new-cite-tab.active::before {
  background: #ffffff;
}

html[color-schema="color-black"] .structure-tree > li > ul > li > div.item-wrap .name {
  border: 1px solid #ffffff;
  background-color: #000000;
}

html[color-schema="color-black"] .ya-share2__item:hover .ya-share2__icon {
  color: #ffffff !important;
  border-color: #ffffff !important;
}

html[color-schema="color-black"] .slick-dots li button,
html[color-schema="color-black"] .dcjq-icon,
html[color-schema="color-black"] .akk-toggle {
  background-color: #000000 !important;
  border-color: #ffffff !important;
}

html[color-schema="color-black"] .dcjq-icon:after,
html[color-schema="color-black"] .dcjq-icon:before,
html[color-schema="color-black"] .akk-toggle:before,
html[color-schema="color-black"] .akk-toggle:after {
  background-color: #ffffff !important;
}

html[color-schema="color-black"] .structure-tree > li > div.item-wrap .name {
  background-color: #000000;
  border: 1px solid #ffffff;
}

html[color-schema="color-black"] .calendar#main-calendar-widget .day.has-event .day-content,
html[color-schema="color-black"] .bootstrap-select.btn-group .dropdown-menu li small.text-muted,
html[color-schema="color-black"] .new-notes-tag,
html[color-schema="color-black"]  .new-site-link-block{
  background-color: #000000;
  border: 1px solid #ffffff;
  color: #ffffff;
}

html[color-schema="color-black"] .calendar--prev-arrow:hover,
html[color-schema="color-black"] .calendar--next-arrow:hover {
  border-color: #ffffff;
  color: #ffffff;
}

html[color-schema="color-black"] #map-svg path.active,
html[color-schema="color-black"] .press-center-popup-handler-open:hover svg {
  fill: #ffffff !important;
}

html[color-schema="color-black"] .header-nav i,
html[color-schema="color-black"] .tab-link-left li.active a,
html[color-schema="color-black"] .press-center-aside-title {
  color: #ffffff !important;
}

html[color-schema="color-black"][img-display="hide"] .wrap-media-video .video-preview,
html[color-schema="color-black"][img-display="hide"] .media-photo-preview__img {
  background: #000000 !important;
  background-image: none !important;
  opacity: 1;
}

html[color-schema="color-black"][img-display="hide"] .media-photo-preview__title {
  background: transparent;
}

html[color-schema="color-black"] .faq-list > li > ul > li {
  border: 1px solid #ffffff;
}

html[color-schema="color-black"] .layer-top.panel-full:after {
  display: none;
}

html[color-schema="color-black"] .btn-collapsed,
html[color-schema="color-black"] .well,
html[color-schema="color-black"] .bg-text-box,
html[color-schema="color-black"] .spoiler-box,
html[color-schema="color-black"] .bg-text-box.bg-gray {
  border: 1px solid #ffffff !important;
}

html[color-schema="color-black"] .faq-list > li > ul > li.open a:after,
html[color-schema="color-black"] .faq-list > li > ul > li.open > a:hover:after {
  background: #000000;
  border-bottom: 1px solid #ffffff;
}

html[color-schema="color-black"] .new-cite-tabs .new-cite-tabs-right::before {
  background: #000;
}

html[color-schema="color-black"] .press-center-first a,
html[color-schema="color-black"] .press-center-aside-button,
html[color-schema="color-black"] .new-cite-controls-btn,
html[color-schema="color-black"] .header-new-styles .nav-btn a {
  background: transparent;
  border: 2px solid #ffffff;
}

html[color-schema="color-black"] .new-help-item-bg-btn,
html[color-schema="color-black"] .btn.btn-default-color.link-division,
html[color-schema="color-black"] .new-priority-aside-btn-border,
html[color-schema="color-black"] .new-priority-aside-btn {
  border: 2px solid #ffffff;
}

html[color-schema="color-black"] .press-center-first a:hover,
html[color-schema="color-black"] .press-center-aside-button:hover,
html[color-schema="color-black"] .new-cite-controls-btn:hover,
html[color-schema="color-black"] .container-inner-item-big:hover .container-inner-item-icon,
html[color-schema="color-black"] .new-site-link-block:hover {
  background: #ffffff;
  color: #000000;
}

html[color-schema="color-black"] .press-center-container-tag:hover,
html[color-schema="color-black"] .press-center-tag:hover .press-center-tag-inner,
html[color-schema="color-black"]  .new-notes-tag:hover,
html[color-schema="color-black"] .press-center-tag .checked ~ .press-center-tag-inner {
  background: #ffffff;
  color: #000000 !important;
  border-color: #ffffff;
}

html[color-schema="color-black"] .press-center-first a:hover svg rect,
html[color-schema="color-black"] .press-center-first a:hover svg rect,
html[color-schema="color-black"] .new-cite-controls-btn:hover svg path,
html[color-schema="color-black"] .new-site-link-block:hover svg path,
html[color-schema="color-black"] .breadcrumb-new__button_share:hover svg path,
html[color-schema="color-black"] .breadcrumb-new__button_seal:hover svg path,
html[color-schema="color-black"] .press-center-tag .checked ~ .press-center-tag-inner svg rect {
  fill: #000000 !important;
}

html[color-schema="color-black"] .slick-dots .slick-active button path:last-of-type {
  stroke: #ffffff;
}

html[color-schema="color-black"] body,
html[color-schema="color-black"] .gray-section-bg,
html[color-schema="color-black"] .main-news-bg,
html[color-schema="color-black"] .new-cite-tab,
html[color-schema="color-black"] .new-help-item-bg-btn,
html[color-schema="color-black"] .new-soc-nav-text {
  color: #ffffff !important;
  background-color: #000000 !important;
}

html[color-schema="color-black"] .bg-gray-light,
html[color-schema="color-black"] .bg-base,
html[color-schema="color-black"] .icons,
html[color-schema="color-black"] .bg-gray,
html[color-schema="color-black"] .bg-gray-color,
html[color-schema="color-black"] .bg-gray-dark,
html[color-schema="color-black"] .bg-gray-0,
html[color-schema="color-black"] .page-layer,
html[color-schema="color-black"] .layer-top,
html[color-schema="color-black"] .bg-gray-dark-2,
html[color-schema="color-black"] .post-list.event_closest,
html[color-schema="color-black"] .bg-text-box.bg-gray {
  background-color: #000000 !important;
}

html[color-schema="color-black"] .docs-preview__box--inner:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#000000));
  background: -webkit-linear-gradient(top, #000000 0%, #000000 100%);
  background: linear-gradient(to bottom, #000000 0%, #000000 100%);
}

html[color-schema="color-black"] .close {
  opacity: 1;
}

html[color-schema="color-black"] .dropdown-menu,
html[color-schema="color-black"] .media-block .tabs-nav-wrap .nav-tabs > li.active:hover > a,
html[color-schema="color-black"] .media-block .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-schema="color-black"] .table-tender__item,
html[color-schema="color-black"] .email-list--top li,
html[color-schema="color-black"] .header__search-form .bootstrap-select,
html[color-schema="color-black"] .two-date:hover input.form-control {
  border-color: #ffffff !important;
}

html[color-schema="color-black"] .Zebra_DatePicker,
html[color-schema="color-black"] .Zebra_DatePicker .dp_header,
html[color-schema="color-black"] .Zebra_DatePicker .dp_daypicker td,
html[color-schema="color-black"] .Zebra_DatePicker .dp_daypicker th,
html[color-schema="color-black"] .Zebra_DatePicker .dp_monthpicker td,
html[color-schema="color-black"] .Zebra_DatePicker .dp_monthpicker th,
html[color-schema="color-black"] .Zebra_DatePicker .dp_yearpicker td,
html[color-schema="color-black"] .Zebra_DatePicker .dp_yearpicker th,
html[color-schema="color-black"] .Zebra_DatePicker .dp_timepicker td,
html[color-schema="color-black"] .Zebra_DatePicker .dp_timepicker th {
  background-color: #000000;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

html[color-schema="color-black"] .Zebra_DatePicker table td.dp_disabled,
html[color-schema="color-black"] .Zebra_DatePicker table td.dp_not_in_month,
html[color-schema="color-black"] .Zebra_DatePicker table td.dp_not_in_month_selectable {
  opacity: 0.4;
}

html[color-schema="color-black"] .Zebra_DatePicker .dp_header td,
html[color-schema="color-black"] .Zebra_DatePicker .dp_header .dp_previous span:before,
html[color-schema="color-black"] .Zebra_DatePicker .dp_header .dp_next span:before,
html[color-schema="color-black"] .Zebra_DatePicker .dp_header .dp_prev span:before {
  color: #ffffff;
}

html[color-schema="color-black"] .popover {
  color: #ffffff;
  background-color: #000000;
  border-color: #ffffff !important;
}

html[color-schema="color-black"] .popover.bottom > .arrow {
  border-bottom-color: #ffffff !important;
}

html[color-schema="color-black"] .popover.bottom > .arrow:after {
  border-bottom-color: #000000;
}

html[color-schema="color-black"] .ya-share2__item .ya-share2__icon,
html[color-schema="color-black"] .ya-share2__item:hover .ya-share2__icon {
  color: #ffffff;
  border-color: #ffffff;
}

html[color-schema="color-black"] .header__top-panel {
  border-bottom: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}

html[color-schema="color-black"] .header {
  border-bottom: 1px solid #ffffff;
}

html[color-schema="color-black"] .block-douwnload-md .doc-icon {
  border-right: 1px solid #ffffff;
}

html[color-schema="color-black"] .form-group--placeholder-fix.placeholder-fix-textarea label.placeholder {
  -webkit-box-shadow: none;
  box-shadow: none;
}

html[color-schema="color-black"] .bg-box,
html[color-schema="color-black"] .doc-text {
  border: 1px solid #ffffff;
}

html[color-schema="color-black"] .page-layer:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#000000));
  background: -webkit-linear-gradient(top, #000000 0%, #000000 100%);
  background: linear-gradient(to bottom, #000000 0%, #000000 100%);
}

html[color-schema="color-black"] .text-white,
html[color-schema="color-black"] .text-max-light,
html[color-schema="color-black"] .text-md,
html[color-schema="color-black"] .text-base,
html[color-schema="color-black"] .text-light,
html[color-schema="color-black"] .text-dark,
html[color-schema="color-black"] .text-black,
html[color-schema="color-black"] .text-gray,
html[color-schema="color-black"] .header__widget-list > li > a,
html[color-schema="color-black"] .header__widget-list > li > a i,
html[color-schema="color-black"] .header-nav > li a:hover,
html[color-schema="color-black"] .header-nav > li > a.active,
html[color-schema="color-black"] a.media-tab-ell:hover,
html[color-schema="color-black"] a.media-tab-ell:hover .media-play-btn,
html[color-schema="color-black"] a.media-tab-ell:hover .media-play-btn i,
html[color-schema="color-black"] .tabs-container__content li a,
html[color-schema="color-black"] .footer__send-wrong i,
html[color-schema="color-black"] .footer__net-list a,
html[color-schema="color-black"] .footer__net-list a:hover,
html[color-schema="color-black"] .footer .copyright i,
html[color-schema="color-black"] .header__link-home i,
html[color-schema="color-black"] .link-list-sites i,
html[color-schema="color-black"] .rate_star:after,
html[color-schema="color-black"] .rate_star.checked:after,
html[color-schema="color-black"] .header-nav > li.active a,
html[color-schema="color-black"] .rate_star.over:after,
html[color-schema="color-black"] input.form-control,
html[color-schema="color-black"] textarea.form-control,
html[color-schema="color-black"] .rss-link,
html[color-schema="color-black"] .text-prime,
html[color-schema="color-black"] .close,
html[color-schema="color-black"] .header__link-home,
html[color-schema="color-black"] .link-list-sites,
html[color-schema="color-black"] .breadcrumb .home:after,
html[color-schema="color-black"] .color,
html[color-schema="color-black"] .form-group--placeholder-fix .placeholder,
html[color-schema="color-black"] .breadcrumb > li a,
html[color-schema="color-black"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-schema="color-black"] .tabs-nav-wrap .nav-tabs > li:hover > a,
html[color-schema="color-black"] .page-content,
html[color-schema="color-black"] .header-nav > li.open > a,
html[color-schema="color-black"] .icon-text-light,
html[color-schema="color-black"] .text-max-light-2,
html[color-schema="color-black"] .color-blue {
  color: #ffffff !important;
}

html[color-schema="color-black"] .bg-box .text-white {
  background-color: #000000;
  padding: 3px;
}

html[color-schema="color-black"] a:hover,
html[color-schema="color-black"] a:focus,
html[color-schema="color-black"] a:active,
html[color-schema="color-black"] .press-center-container-item:hover  .press-center-container-title,
html[color-schema="color-black"] .new-notes-item:hover .new-notes-text,
html[color-schema="color-black"] .container-inner-item-small:hover .container-inner-item-text,
html[color-schema="color-black"] .container-inner-item-big:hover .container-inner-item-text{
  text-decoration: underline;
}

html[color-schema="color-black"] .play-button,
html[color-schema="color-black"] .play-button:hover {
  border-color: transparent transparent transparent #ffffff;
}

html[color-schema="color-black"] .color-bg-block,
html[color-schema="color-black"] .tabs-container__content,
html[color-schema="color-black"] .tabs-container__content li a,
html[color-schema="color-black"] input.form-control,
html[color-schema="color-black"] textarea.form-control,
html[color-schema="color-black"] .rss-link {
  background-color: #000000;
}

html[color-schema="color-black"] a.link-bg-color,
html[color-schema="color-black"] .border-block-sm {
  border: 1px solid #ffffff;
}

html[color-schema="color-black"] a.link-bg-color,
html[color-schema="color-black"] .border-block-sm,
html[color-schema="color-black"] a.link-bg-color:hover,
html[color-schema="color-black"] .border-block-sm:hover,
html[color-schema="color-black"] a.link-bg-color:focus,
html[color-schema="color-black"] .border-block-sm:focus,
html[color-schema="color-black"] a.link-bg-color:active,
html[color-schema="color-black"] .border-block-sm:active {
  background-color: #000000;
  color: #ffffff;
}

html[color-schema="color-black"] .wrap-media-video:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

html[color-schema="color-black"] .list-services__item,
html[color-schema="color-black"] .list-services__item:hover,
html[color-schema="color-black"] .list-services__item:focus,
html[color-schema="color-black"] .list-services__item:active {
  border-color: #ffffff;
  color: #ffffff;
}

html[color-schema="color-black"] .list-services__item span,
html[color-schema="color-black"] .list-services__item:hover span,
html[color-schema="color-black"] .list-services__item:focus span,
html[color-schema="color-black"] .list-services__item:active span {
  color: inherit;
}

html[color-schema="color-black"] .list-services__item i,
html[color-schema="color-black"] .list-services__item:hover i,
html[color-schema="color-black"] .list-services__item:focus i,
html[color-schema="color-black"] .list-services__item:active i {
  color: #ffffff;
}

html[color-schema="color-black"] a,
html[color-schema="color-black"] .a {
  color: #ffffff;
}

html[color-schema="color-black"] .aside-navbar4 a,
html[color-schema="color-black"] .breadcrumb-new__button_seal span {
  color: #848E99;
}

html[color-schema="color-black"] .new-priority-aside-btn {
  color: #2295B5;
}

html[color-schema="color-black"] body .header__main-nav .header-logo .logo-new.logo-small + .name-company {
  color: #ffffff;
}

html[color-schema="color-black"] a.link-color:not(::before):hover,
html[color-schema="color-black"] .a.link-color:hover,
html[color-schema="color-black"] a.link-color:focus,
html[color-schema="color-black"] .a.link-color:focus,
html[color-schema="color-black"] a.link-color:active,
html[color-schema="color-black"] .a.link-color:active,
html[color-schema="color-black"] a.link-color.active,
html[color-schema="color-black"] .a.link-color.active {
  text-decoration: underline;
  color: #ffffff;
}

html[color-schema="color-black"] a.link-color:hover,
html[color-schema="color-black"] .a.link-color:hover,
html[color-schema="color-black"] a.link-color:focus,
html[color-schema="color-black"] .a.link-color:focus,
html[color-schema="color-black"] a.link-color:active,
html[color-schema="color-black"] .a.link-color:active,
html[color-schema="color-black"] a.link-color.active,
html[color-schema="color-black"] .a.link-color.active,
html[color-schema="color-black"] a.link-color:hover i,
html[color-schema="color-black"] .a.link-color:hover i,
html[color-schema="color-black"] a.link-color:focus i,
html[color-schema="color-black"] .a.link-color:focus i,
html[color-schema="color-black"] a.link-color:active i,
html[color-schema="color-black"] .a.link-color:active i,
html[color-schema="color-black"] a.link-color.active i,
html[color-schema="color-black"] .a.link-color.active i,
html[color-schema="color-black"] .container-inner-item-small:hover .container-inner-item-text,
html[color-schema="color-black"] .container-inner-item-big:hover .container-inner-item-text,
html[color-schema="color-black"] .footer .list li a,
html[color-schema="color-black"] .footer__send-wrong span,
html[color-schema="color-black"] .footer .copyright {
  color: #ffffff;
}

html[color-schema="color-black"] a:hover,
html[color-schema="color-black"] .a:hover,
html[color-schema="color-black"] a:focus,
html[color-schema="color-black"] .a:focus,
html[color-schema="color-black"] a:active,
html[color-schema="color-black"] .a:active,
html[color-schema="color-black"] a.active,
html[color-schema="color-black"] .a.active {
  color: #ffffff;
  text-decoration: underline;
}


html[color-schema="color-black"] .section-head-round,
html[color-schema="color-black"] .container-inner-item-icon {
  background-color: #000000;
  border: 2px solid #ffffff;
}

html[color-schema="color-black"] .section-head--link:hover .section-head-round,
html[color-schema="color-black"] .container-inner-item-small:hover .container-inner-item-icon{
  background-color: #ffffff;
}

html[color-schema="color-black"] .section-head--link:hover svg rect {
  fill: #000000;
}

html[color-schema="color-black"] .container-inner-item-big:hover .container-inner-item-icon path,
html[color-schema="color-black"] .container-inner-item-small:hover .container-inner-item-icon path {
  stroke: #000000;
}

html[color-schema="color-black"] .new-priority-aside-btn-border:hover {
  color: #2295B5;
}

html[color-schema="color-black"] .new-help-item-large-link:hover {
  color: #231F20;
}

html[color-schema="color-black"] .new-help-item-large-link:hover svg rect{
  fill: #000000;
}

html[color-schema="color-black"] .active > .link-color,
html[color-schema="color-black"] .Zebra_DatePicker_Icon,
html[color-schema="color-black"] .Zebra_DatePicker table td.dp_current,
html[color-schema="color-black"] .Zebra_DatePicker .dp_footer td.dp_today,
html[color-schema="color-black"] .Zebra_DatePicker .dp_footer td.dp_clear,
html[color-schema="color-black"] .Zebra_DatePicker .dp_header td.dp_hover,
html[color-schema="color-black"] .Zebra_DatePicker .dp_daypicker th,
html[color-schema="color-black"] .spoiler-box:hover > .spoiler-box__btn,
html[color-schema="color-black"] .spoiler-box .spoiler-box__btn,
html[color-schema="color-black"] .spoiler-box p,
html[color-schema="color-black"] .spoiler-box,
html[color-schema="color-black"] .text-gray-nn {
  color: #ffffff;
}

html[color-schema="color-black"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret,
html[color-schema="color-black"] .spoiler-box .spoiler-box__carret,
html[color-schema="color-black"] .border-block-sm,
html[color-schema="color-black"] .bg-block-sm--border {
  border-color: #ffffff !important;
}

html[color-schema="color-black"] .border-block-sm,
html[color-schema="color-black"] .bg-block-sm--border {
  -webkit-box-shadow: none;
  box-shadow: none;
}

html[color-schema="color-black"] .Zebra_DatePicker table td.dp_hover,
html[color-schema="color-black"] .Zebra_DatePicker table td.dp_selected,
html[color-schema="color-black"] .spoiler-box .spoiler-box__carret:before,
html[color-schema="color-black"] .spoiler-box__carret:after {
  background-color: #000000 !important;
}

html[color-schema="color-black"] .btn.btn-collapsed i,
html[color-schema="color-black"] .service-pop-preview .icon:before {
  color: #ffffff !important;
}

html[color-schema="color-black"] .media-tab-ell .news-title:before {
  -webkit-box-shadow: 0 10px 30px 25px #000000;
  box-shadow: 0 10px 30px 25px #000000;
}

html[color-schema="color-black"] .header-nav > li > a:after,
html[color-schema="color-black"] .aside__list-nav > li.active > a:after,
html[color-schema="color-black"] .news-prime-blok__hr,
html[color-schema="color-black"] .new-notes-date::before {
  background-color: #ffffff;
}

html[color-schema="color-black"] .custom-pagination li a,
html[color-schema="color-black"] .custom-pagination li span {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background-color: #000000 !important;
}

html[color-schema="color-black"] .dropdown-menu > li > a {
  color: #ffffff !important;
  background-color: #000000 !important;
}

html[color-schema="color-black"] .dropdown-menu > li > a:after,
html[color-schema="color-black"] .block-douwnload-md .doc-icon-bg {
  background-color: #ffffff !important;
}

html[color-schema="color-black"] .tabs-nav-wrap,
html[color-schema="color-black"] .border-top,
html[color-schema="color-black"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-schema="color-black"] .tabs-nav-wrap .nav-tabs > li:hover > a,
html[color-schema="color-black"] .layer-link--map,
html[color-schema="color-black"] .header__bottom-panel,
html[color-schema="color-black"] #media_content_all .media-tab-ell,
html[color-schema="color-black"] .media-tab-ell,
html[color-schema="color-black"] .tabs-container__content,
html[color-schema="color-black"] .footer__send-wrong i,
html[color-schema="color-black"] input.form-control,
html[color-schema="color-black"] textarea.form-control,
html[color-schema="color-black"] .rss-link,
html[color-schema="color-black"] textarea.form-control:hover,
html[color-schema="color-black"] input.form-control:hover,
html[color-schema="color-black"] .aside__list-nav,
html[color-schema="color-black"] .border-block,
html[color-schema="color-black"] .block-douwnload-md,
html[color-schema="color-black"] .post-list {
  border-color: #ffffff !important;
}

html[color-schema="color-black"] .btn,
html[color-schema="color-black"] .jq-file__browse,
html[color-schema="color-black"] .btn:focus,
html[color-schema="color-black"] .jq-file__browse:focus,
html[color-schema="color-black"] .btn:hover,
html[color-schema="color-black"] .jq-file__browse:hover,
html[color-schema="color-black"] .btn:active,
html[color-schema="color-black"] .jq-file__browse:active,
html[color-schema="color-black"] .btn.active,
html[color-schema="color-black"] .jq-file__browse.active,
html[color-schema="color-black"] .btn.focus,
html[color-schema="color-black"] .jq-file__browse.focus {
  background-color: #000000 !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

html[color-schema="color-black"] .btn:hover,
html[color-schema="color-black"] .jq-file__browse:hover {
  text-decoration: underline;
}

html[color-schema="color-black"] .section {
  border-bottom: 1px solid #ffffff !important;
  margin: 0 !important;
  padding-bottom: 80px !important;
  padding-top: 80px !important;
}

html[color-schema="color-black"] .section.main-section--list-nav {
  padding-top: 15px !important;
}

html[color-schema="color-black"] .footer {
  border-top: 1px solid #ffffff !important;
}

html[color-schema="color-black"] ::-webkit-input-placeholder,
html[color-schema="color-black"] .custom-pagination li a:hover,
html[color-schema="color-black"] .custom-pagination li.active a {
  color: #ffffff;
}

html[color-schema="color-black"] ::-moz-placeholder,
html[color-schema="color-black"] .custom-pagination li a:hover,
html[color-schema="color-black"] .custom-pagination li.active a {
  color: #ffffff;
}

html[color-schema="color-black"] ::-webkit-input-placeholder {
  color: #ffffff;
}

html[color-schema="color-black"] ::-moz-placeholder {
  color: #ffffff;
}

html[color-schema="color-black"] :-ms-input-placeholder {
  color: #ffffff;
}

html[color-schema="color-black"] ::-ms-input-placeholder {
  color: #ffffff;
}

html[color-schema="color-black"] ::placeholder,
html[color-schema="color-black"] .custom-pagination li a:hover,
html[color-schema="color-black"] .custom-pagination li.active a {
  color: #ffffff;
}

html[color-schema="color-black"] .docs-preview__box--inner:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#000000));
  background: -webkit-linear-gradient(top, #000000 0%, #000000 100%);
  background: linear-gradient(to bottom, #000000 0%, #000000 100%);
}

html[color-schema="color-black"] .form-group--placeholder-fix.placeholder-fix-textarea label.placeholder {
  background-color: #000000;
}

html[color-schema="color-black"] .calendar--prev-arrow,
html[color-schema="color-black"] .calendar--next-arrow,
html[color-schema="color-black"] .tag,
html[color-schema="color-black"] .tags-list a,
html[color-schema="color-black"] .tag:hover,
html[color-schema="color-black"] .tags-list a:hover,
html[color-schema="color-black"] .tag:focus,
html[color-schema="color-black"] .tags-list a:focus {
  background-color: #000000;
  border-color: #ffffff;
  color: #ffffff;
}

html[color-schema="color-black"] .calendar#main-calendar-widget .event {
  background-color: #000000;
}

html[color-schema="color-black"] .dropdown-menu > li > a {
  color: #ffffff;
}

html[color-schema="color-black"] .dropdown-menu > li > a:hover,
html[color-schema="color-black"] .dropdown-menu > li > a:focus {
  background-color: #000000;
  color: #ffffff;
}

html[color-schema="color-black"] .jq-radio,
html[color-schema="color-black"] .jq-checkbox,
html[color-schema="color-black"] .jq-radio.checked,
html[color-schema="color-black"] .jq-checkbox.checked {
  background-color: #000000;
  border-color: #ffffff;
}

html[color-schema="color-black"] .jq-radio.disabled,
html[color-schema="color-black"] .jq-checkbox.disabled,
html[color-schema="color-black"] .jq-radio.disabled.checked,
html[color-schema="color-black"] .jq-checkbox.disabled.checked {
  opacity: 0.4;
}

html[color-schema="color-black"] .wrap-check:hover .jq-radio,
html[color-schema="color-black"] .wrap-check:hover .jq-checkbox,
html[color-schema="color-black"] .block-douwnload-md .doc-icon:after {
  background-color: #000000;
  border-color: #ffffff;
}

html[color-schema="color-black"] .block-douwnload-md {
  border: 1px solid #ffffff;
}

html[color-schema="color-black"] .wrap-check:hover label {
  text-decoration: underline;
  color: #ffffff;
}

html[color-schema="color-black"] .disabled + label,
html[color-schema="color-black"] .disabled.checked + label,
html[color-schema="color-black"] .wrap-check:hover .disabled + label {
  text-decoration: none;
  color: #ffffff;
  opacity: 0.6;
}

html[color-schema="color-black"] .checked + label,
html[color-schema="color-black"] .form-group.error label.error {
  color: #ffffff;
}

html[color-schema="color-blue"] .bg-color {
  color: #063462;
  background-color: #9dd1ff;
}

html[color-schema="color-blue"] .bg-color.header__bottom-panel {
  border-bottom: 1px solid #063462;
}

html[color-schema="color-blue"] .bg-color .dropdown-menu-header {
  color: #063462;
}

html[color-schema="color-blue"] .bg-color .breadcrumb > li a {
  color: #063462;
}

html[color-schema="color-blue"] .bg-color .breadcrumb > li:after {
  color: #063462;
}

html[color-schema="color-blue"] .soc-tv-card {
  background-color: #d0e9ff;
}

html[color-schema="color-blue"] .soc-tv-card:hover {
  -webkit-box-shadow: 0 6px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 10px 0px rgba(0, 0, 0, 0.1);
}

html[color-schema="color-blue"] .soc-tv-card:hover .soc-tv-card__title {
  color: #e20338;
}

html[color-schema="color-blue"] .soc-tv-card__content:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(241, 242, 242, 0)), to(#d0e9ff));
  background: -webkit-linear-gradient(top, rgba(241, 242, 242, 0) 0%, #d0e9ff 100%);
  background: linear-gradient(to bottom, rgba(241, 242, 242, 0) 0%, #d0e9ff 100%);
}

html[color-schema="color-blue"] .seach-block {
  border-bottom: 1px solid #063462;
}

html[color-schema="color-blue"] .seach-block .seach-block__info {
  color: #063462;
}

html[color-schema="color-blue"] .media-category:after,
html[color-schema="color-blue"] .slider-main-indicator {
  background-color: #063462 !important;
}

html[color-schema="color-blue"] .widget-mayor__bottom,
html[color-schema="color-blue"] .block-douwnload-md .doc-icon:before,
html[color-schema="color-blue"] .post-list.all_event_closest {
  background-color: #9dd1ff;
}

html[color-schema="color-blue"] .quote i.top,
html[color-schema="color-blue"] .quote i.bottom,
html[color-schema="color-blue"] .media-category,
html[color-schema="color-blue"] .header__link-home i,
html[color-schema="color-blue"] .link-list-sites i,
html[color-schema="color-blue"] .header__link-portal i,
html[color-schema="color-blue"] .photo-box .icon-arrow-top {
  color: #063462 !important;
}

html[color-schema="color-blue"] .list-menu-page .item > span {
  border-color: #063462;
}

html[color-schema="color-blue"] .list-menu-page {
  border: 1px solid #063462;
}

html[color-schema="color-blue"] .block-douwnload-md .doc-icon:before {
  border-top: 15px solid #9dd1ff;
  border-right: 15px solid #9dd1ff;
}

html[color-schema="color-blue"] .info-link-block a:hover span,
html[color-schema="color-blue"] .faq-list > li > ul > li > a i,
html[color-schema="color-blue"] .faq-list .item-text-title,
html[color-schema="color-blue"] .main-info-block .title .big {
  color: #063462;
}

html[color-schema="color-blue"] .media-category.news {
  color: #063462 !important;
}

html[color-schema="color-blue"] .media-category.news:after {
  background-color: #063462 !important;
}

html[color-schema="color-blue"] .aside__list-nav > li > a.active:after,
html[color-schema="color-blue"] .aside__list-nav > li > .item-wrap > a.active:after,
html[color-schema="color-blue"] .aside__list-nav > li > a.parent-active:after,
html[color-schema="color-blue"] .aside__list-nav > li > .item-wrap > a.parent-active:after {
  background-color: #063462 !important;
}

html[color-schema="color-blue"] .field-icon-loupe {
  opacity: 1;
}

html[color-schema="color-blue"] .bg-block-sm,
html[color-schema="color-blue"] .border-block-sm,
html[color-schema="color-blue"] .fileupload-list__box .preview,
html[color-schema="color-blue"] .post-list.all_event_closest {
  border: 1px solid #063462;
}

html[color-schema="color-blue"] .box-drop-style,
html[color-schema="color-blue"] .layer-link__title,
html[color-schema="color-blue"] .spoiler-box__content,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_footer,
html[color-schema="color-blue"] .dropdown-menu-header .list-division {
  border-color: #063462;
}

html[color-schema="color-blue"] body,
html[color-schema="color-blue"] .box-drop-style,
html[color-schema="color-blue"] .fileupload-list__box .preview,
html[color-schema="color-blue"] .box-drop-style .sub-text .mark,
html[color-schema="color-blue"] .modal-content,
html[color-schema="color-blue"] .spoiler-box,
html[color-schema="color-blue"] .tab-link-left li.active a {
  background: #9dd1ff;
}

html[color-schema="color-blue"] .search-result strong,
html[color-schema="color-blue"] .alert-warning {
  background: #063462;
  color: #9dd1ff;
}

html[color-schema="color-blue"] .blind-text-bg {
  background: #9dd1ff;
  display: inline;
  color: #063462;
}

html[color-schema="color-blue"] .slider-main__sub-text {
  opacity: 1;
}

html[color-schema="color-blue"] .text-block a:not([class]) {
  border-color: #063462;
}

html[color-schema="color-blue"] .simple-list-nav li a:after,
html[color-schema="color-blue"] .service-pop-banner .left:after,
html[color-schema="color-blue"] .widget-quiz__inner,
html[color-schema="color-blue"] .jq-checkbox.checked .jq-checkbox__div,
html[color-schema="color-blue"] .spoiler-box__carret:before,
html[color-schema="color-blue"] .spoiler-box__carret:after {
  background: #063462;
}

html[color-schema="color-blue"] .news-box__date {
  opacity: 0;
}

html[color-schema="color-blue"] .color-bg-block,
html[color-schema="color-blue"] .btn-delete i,
html[color-schema="color-blue"] .modal-content,
html[color-schema="color-blue"] .text-block table td,
html[color-schema="color-blue"] a .link-color,
html[color-schema="color-blue"] .new-icons-bg .icons__text {
  color: #063462 !important;
}

html[color-schema="color-blue"] .header-new-styles .nav-btn a,
html[color-schema="color-blue"] .press-center-aside-button-color,
html[color-schema="color-blue"] .press-center-aside-button,
html[color-schema="color-blue"] .new-cite-controls-btn,
html[color-schema="color-blue"] body .main__s.main__s-new .main-news-test__buttons .btn.btn-default-color {
  background: transparent;
  color: #063462 !important;
  border: 2px solid #063462 !important;
}

html[color-schema="color-blue"] .news-box__bottom {
  background: #9dd1ff;
  border: 1px solid #063462;
  padding-top: 30px;
}

html[color-schema="color-blue"] .event-box {
  border-color: #063462;
}

html[color-schema="color-blue"] .simple-list-nav,
html[color-schema="color-blue"] .service-pop-banner {
  background: #9dd1ff;
}

html[color-schema="color-blue"] .two-date:after,
html[color-schema="color-blue"] .mark-tab i.mark-tab__mark {
  background-color: #063462 !important;
}

html[color-schema="color-blue"] .map-city .panel-inner:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#9dd1ff));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #9dd1ff 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #9dd1ff 100%);
}

html[color-schema="color-blue"] .header,
html[color-schema="color-blue"] .bg-brown,
html[color-schema="color-blue"] .bg-light-blue {
  background: #9dd1ff !important;
}

html[color-schema="color-blue"] .btn-favorite.favorite {
  background-color: #9dd1ff;
  color: #063462;
}

html[color-schema="color-blue"] .map {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
  filter: gray;
}

html[color-schema="color-blue"] .btn-gamb span,
html[color-schema="color-blue"] .nav-accordion > li:after {
  background: #063462 !important;
}

html[color-schema="color-blue"] .pushy {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-left: 1px solid #063462;
}

html[color-schema="color-blue"] .dropdown-menu-header .dropdown-menu__inner {
  background: #9dd1ff;
  border-color: #063462;
}

html[color-schema="color-blue"] .faq-list > li > a:hover,
html[color-schema="color-blue"] .faq-list > li.open > a,
html[color-schema="color-blue"] .faq-list > li > ul > li > a:hover,
html[color-schema="color-blue"] .faq-list > li > ul > li > a:hover i {
  color: #063462;
}

html[color-schema="color-blue"] .tab-link-left li.active > a:after {
  background-color: #063462;
}

html[color-schema="color-blue"] .faq-list__category,
html[color-schema="color-blue"] .tab-link-left ul {
  border: 1px solid #063462;
}

html[color-schema="color-blue"] .text-block ul li:before {
  background: #063462;
}

html[color-schema="color-blue"] .structure-tree > li > ul > li > div.item-wrap .name {
  border: 1px solid #063462;
  background-color: #9dd1ff;
}

html[color-schema="color-blue"] .ya-share2__item:hover .ya-share2__icon {
  color: #063462 !important;
  border-color: #063462 !important;
}

html[color-schema="color-blue"] .slick-dots li button,
html[color-schema="color-blue"] .dcjq-icon,
html[color-schema="color-blue"] .akk-toggle {
  background-color: #9dd1ff !important;
  border-color: #063462 !important;
}

html[color-schema="color-blue"] .dcjq-icon:after,
html[color-schema="color-blue"] .dcjq-icon:before,
html[color-schema="color-blue"] .akk-toggle:before,
html[color-schema="color-blue"] .akk-toggle:after,
html[color-schema="color-blue"] .new-notes-date::before,
html[color-schema="color-blue"] .new-cite-tab.active::before,
html[color-schema="color-blue"] .event-button-nav:hover {
  background-color: #063462 !important;
}

html[color-schema="color-blue"] .structure-tree > li > div.item-wrap .name {
  background-color: #9dd1ff;
  border: 1px solid #063462;
}

html[color-schema="color-blue"] .calendar#main-calendar-widget .day.has-event .day-content,
html[color-schema="color-blue"] .bootstrap-select.btn-group .dropdown-menu li small.text-muted,
html[color-schema="color-blue"] .press-center-container-tag,
html[color-schema="color-blue"] .press-center-tag-inner,
html[color-schema="color-blue"] .new-notes-tag,
html[color-schema="color-blue"] .container-inner-item-info {
  background-color: #9dd1ff;
  border: 1px solid #063462;
  color: #063462;
}

html[color-schema="color-blue"] .calendar--prev-arrow:hover,
html[color-schema="color-blue"] .calendar--next-arrow:hover {
  border-color: #063462;
  color: #063462;
}

html[color-schema="color-blue"] #map-svg path.active {
  fill: #063462 !important;
}

html[color-schema="color-blue"] .header-nav i,
html[color-schema="color-blue"] .tab-link-left li.active a {
  color: #063462 !important;
}

html[color-schema="color-blue"][img-display="hide"] .wrap-media-video .video-preview,
html[color-schema="color-blue"][img-display="hide"] .media-photo-preview__img {
  background: #9dd1ff !important;
  background-image: none !important;
  opacity: 1;
}

html[color-schema="color-blue"][img-display="hide"] .media-photo-preview__title {
  background: transparent;
}

html[color-schema="color-blue"] .faq-list > li > ul > li {
  border: 1px solid #063462;
}

html[color-schema="color-blue"] .layer-top.panel-full:after {
  display: none;
}

html[color-schema="color-blue"] .btn-collapsed,
html[color-schema="color-blue"] .well,
html[color-schema="color-blue"] .bg-text-box,
html[color-schema="color-blue"] .spoiler-box,
html[color-schema="color-blue"] .bg-text-box.bg-gray {
  border: 1px solid #063462 !important;
}

html[color-schema="color-blue"] .faq-list > li > ul > li.open a:after,
html[color-schema="color-blue"] .faq-list > li > ul > li.open > a:hover:after {
  background: #9dd1ff;
  border-bottom: 1px solid #063462;
}

html[color-schema="color-blue"] body {
  color: #063462;
  background-color: #9dd1ff;
}

html[color-schema="color-blue"] .bg-gray-light,
html[color-schema="color-blue"] .bg-base,
html[color-schema="color-blue"] .icons,
html[color-schema="color-blue"] .bg-gray,
html[color-schema="color-blue"] .bg-gray-color,
html[color-schema="color-blue"] .bg-gray-dark,
html[color-schema="color-blue"] .bg-gray-0,
html[color-schema="color-blue"] .page-layer,
html[color-schema="color-blue"] .layer-top,
html[color-schema="color-blue"] .bg-gray-dark-2,
html[color-schema="color-blue"] .post-list.event_closest,
html[color-schema="color-blue"] .bg-text-box.bg-gray,
html[color-schema="color-blue"] .new-media-block {
  background-color: #9dd1ff !important;
}

html[color-schema="color-blue"] .docs-preview__box--inner:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#9dd1ff), to(#9dd1ff));
  background: -webkit-linear-gradient(top, #9dd1ff 0%, #9dd1ff 100%);
  background: linear-gradient(to bottom, #9dd1ff 0%, #9dd1ff 100%);
}

html[color-schema="color-blue"] .close {
  opacity: 1;
}

html[color-schema="color-blue"] .dropdown-menu,
html[color-schema="color-blue"] .media-block .tabs-nav-wrap .nav-tabs > li.active:hover > a,
html[color-schema="color-blue"] .media-block .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-schema="color-blue"] .table-tender__item,
html[color-schema="color-blue"] .email-list--top li,
html[color-schema="color-blue"] .header__search-form .bootstrap-select,
html[color-schema="color-blue"] .two-date:hover input.form-control {
  border-color: #063462 !important;
}

html[color-schema="color-blue"] .Zebra_DatePicker,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_header,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_daypicker td,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_daypicker th,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_monthpicker td,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_monthpicker th,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_yearpicker td,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_yearpicker th,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_timepicker td,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_timepicker th {
  background-color: #9dd1ff;
  color: #063462 !important;
  border-color: #063462 !important;
}

html[color-schema="color-blue"] .Zebra_DatePicker table td.dp_disabled,
html[color-schema="color-blue"] .Zebra_DatePicker table td.dp_not_in_month,
html[color-schema="color-blue"] .Zebra_DatePicker table td.dp_not_in_month_selectable {
  opacity: 0.4;
}

html[color-schema="color-blue"] .Zebra_DatePicker .dp_header td,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_header .dp_previous span:before,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_header .dp_next span:before,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_header .dp_prev span:before {
  color: #063462;
}

html[color-schema="color-blue"] .popover {
  color: #063462;
  background-color: #9dd1ff;
  border-color: #063462 !important;
}

html[color-schema="color-blue"] .popover.bottom > .arrow {
  border-bottom-color: #063462 !important;
}

html[color-schema="color-blue"] .popover.bottom > .arrow:after {
  border-bottom-color: #9dd1ff;
}

html[color-schema="color-blue"] .ya-share2__item .ya-share2__icon,
html[color-schema="color-blue"] .ya-share2__item:hover .ya-share2__icon {
  color: #063462;
  border-color: #063462;
}

html[color-schema="color-blue"] .header__top-panel {
  border-bottom: 1px solid #063462;
  border-top: 1px solid #063462;
}

html[color-schema="color-blue"] .header {
  border-bottom: 1px solid #063462;
}

html[color-schema="color-blue"] .block-douwnload-md .doc-icon {
  border-right: 1px solid #063462;
}

html[color-schema="color-blue"] .form-group--placeholder-fix.placeholder-fix-textarea label.placeholder {
  -webkit-box-shadow: none;
  box-shadow: none;
}

html[color-schema="color-blue"] .bg-box,
html[color-schema="color-blue"] .doc-text {
  border: 1px solid #063462;
}

html[color-schema="color-blue"] .page-layer:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#9dd1ff), to(#9dd1ff));
  background: -webkit-linear-gradient(top, #9dd1ff 0%, #9dd1ff 100%);
  background: linear-gradient(to bottom, #9dd1ff 0%, #9dd1ff 100%);
}

html[color-schema="color-blue"] .text-white,
html[color-schema="color-blue"] .text-max-light,
html[color-schema="color-blue"] .text-md,
html[color-schema="color-blue"] .text-base,
html[color-schema="color-blue"] .text-light,
html[color-schema="color-blue"] .text-dark,
html[color-schema="color-blue"] .text-black,
html[color-schema="color-blue"] .text-gray,
html[color-schema="color-blue"] .header__widget-list > li > a,
html[color-schema="color-blue"] .header__widget-list > li > a i,
html[color-schema="color-blue"] .header-nav > li a:hover,
html[color-schema="color-blue"] .header-nav > li > a.active,
html[color-schema="color-blue"] a.media-tab-ell:hover,
html[color-schema="color-blue"] a.media-tab-ell:hover .media-play-btn,
html[color-schema="color-blue"] a.media-tab-ell:hover .media-play-btn i,
html[color-schema="color-blue"] .tabs-container__content li a,
html[color-schema="color-blue"] .footer__send-wrong i,
html[color-schema="color-blue"] .footer__net-list a,
html[color-schema="color-blue"] .footer__net-list a:hover,
html[color-schema="color-blue"] .footer .copyright i,
html[color-schema="color-blue"] .header__link-home i,
html[color-schema="color-blue"] .link-list-sites i,
html[color-schema="color-blue"] .rate_star:after,
html[color-schema="color-blue"] .rate_star.checked:after,
html[color-schema="color-blue"] .header-nav > li.active a,
html[color-schema="color-blue"] .rate_star.over:after,
html[color-schema="color-blue"] input.form-control,
html[color-schema="color-blue"] textarea.form-control,
html[color-schema="color-blue"] .rss-link,
html[color-schema="color-blue"] .text-prime,
html[color-schema="color-blue"] .close,
html[color-schema="color-blue"] .header__link-home,
html[color-schema="color-blue"] .link-list-sites,
html[color-schema="color-blue"] .breadcrumb .home:after,
html[color-schema="color-blue"] .color,
html[color-schema="color-blue"] .form-group--placeholder-fix .placeholder,
html[color-schema="color-blue"] .breadcrumb > li a,
html[color-schema="color-blue"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-schema="color-blue"] .tabs-nav-wrap .nav-tabs > li:hover > a,
html[color-schema="color-blue"] .page-content,
html[color-schema="color-blue"] .header-nav > li.open > a,
html[color-schema="color-blue"] .icon-text-light,
html[color-schema="color-blue"] .text-max-light-2,
html[color-schema="color-blue"] .color-blue,
html[color-schema="color-blue"] .press-center-aside-title,
html[color-schema="color-blue"] .new-notes-text,
html[color-schema="color-blue"] .new-priority-item-text,
html[color-schema="color-blue"] .section-head--link.color-head-white,
html[color-schema="color-blue"] .container-inner-item-icon,
html[color-schema="color-blue"] .container-inner-item-text,
html[color-schema="color-blue"] .container-inner-item-date,
html[color-schema="color-blue"] .menegement__block_link_info_name p,
html[color-schema="color-blue"] .menegement__block_link_info_name i,
html[color-schema="color-blue"] .menegement__block_link_info_address,
html[color-schema="color-blue"] .menegement__block_link_info_position,
html[color-schema="color-blue"] .menegement__block_title,
html[color-schema="color-blue"] .menegement__content h1 {
  color: #063462 !important;
}

html[color-schema="color-blue"] .breadcrumb-new__button_seal:hover span,
html[color-schema="color-blue"] .aside-navbar4 ul > li .link-dropdown .event-button-nav:hover {
  color: #9dd1ff;
}

html[color-schema="color-blue"] .new-notes-text {
  font-weight: 500;
}

html[color-schema="color-blue"] .bg-box .text-white {
  background-color: #9dd1ff;
  padding: 3px;
}

html[color-schema="color-blue"] a:hover,
html[color-schema="color-blue"] a:focus,
html[color-schema="color-blue"] a:active,
html[color-schema="color-blue"] .press-all-theme:hover,
html[color-schema="color-blue"] .menegement__block_link:hover .menegement__block_link_info_name p,
html[color-schema="color-blue"] .menegement__block_link:hover .menegement__block_link_info_name i {
  text-decoration: underline;
}

html[color-schema="color-blue"] .play-button,
html[color-schema="color-blue"] .play-button:hover {
  border-color: transparent transparent transparent #063462;
}

html[color-schema="color-blue"] .color-bg-block,
html[color-schema="color-blue"] .tabs-container__content,
html[color-schema="color-blue"] .tabs-container__content li a,
html[color-schema="color-blue"] input.form-control,
html[color-schema="color-blue"] textarea.form-control,
html[color-schema="color-blue"] .rss-link {
  background-color: #9dd1ff;
}

html[color-schema="color-blue"] a.link-bg-color,
html[color-schema="color-blue"] .border-block-sm,
html[color-schema="color-blue"] .new-doc-link-block,
html[color-schema="color-blue"] .breadcrumb-new__button_seal,
html[color-schema="color-blue"] .breadcrumb-new__button_share {
  border: 1px solid #063462;
}

html[color-schema="color-blue"] a.link-bg-color,
html[color-schema="color-blue"] .border-block-sm,
html[color-schema="color-blue"] a.link-bg-color:hover,
html[color-schema="color-blue"] .border-block-sm:hover,
html[color-schema="color-blue"] a.link-bg-color:focus,
html[color-schema="color-blue"] .border-block-sm:focus,
html[color-schema="color-blue"] a.link-bg-color:active,
html[color-schema="color-blue"] .border-block-sm:active {
  background-color: #9dd1ff;
  color: #063462;
}

html[color-schema="color-blue"] .wrap-media-video:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#9dd1ff));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #9dd1ff 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #9dd1ff 100%);
}

html[color-schema="color-blue"] .list-services__item,
html[color-schema="color-blue"] .list-services__item:hover,
html[color-schema="color-blue"] .list-services__item:focus,
html[color-schema="color-blue"] .list-services__item:active {
  border-color: #063462;
  color: #063462;
}

html[color-schema="color-blue"] .list-services__item span,
html[color-schema="color-blue"] .list-services__item:hover span,
html[color-schema="color-blue"] .list-services__item:focus span,
html[color-schema="color-blue"] .list-services__item:active span {
  color: inherit;
}

html[color-schema="color-blue"] .list-services__item i,
html[color-schema="color-blue"] .list-services__item:hover i,
html[color-schema="color-blue"] .list-services__item:focus i,
html[color-schema="color-blue"] .list-services__item:active i {
  color: #063462;
}

html[color-schema="color-blue"] a,
html[color-schema="color-blue"] .a {
  color: #063462;
}

html[color-schema="color-blue"] a.link-color:hover,
html[color-schema="color-blue"] .a.link-color:hover,
html[color-schema="color-blue"] a.link-color:focus,
html[color-schema="color-blue"] .a.link-color:focus,
html[color-schema="color-blue"] a.link-color:active,
html[color-schema="color-blue"] .a.link-color:active,
html[color-schema="color-blue"] a.link-color.active,
html[color-schema="color-blue"] .a.link-color.active {
  text-decoration: underline;
  color: #063462;
}

html[color-schema="color-blue"] a.link-color:hover,
html[color-schema="color-blue"] .a.link-color:hover,
html[color-schema="color-blue"] a.link-color:focus,
html[color-schema="color-blue"] .a.link-color:focus,
html[color-schema="color-blue"] a.link-color:active,
html[color-schema="color-blue"] .a.link-color:active,
html[color-schema="color-blue"] a.link-color.active,
html[color-schema="color-blue"] .a.link-color.active,
html[color-schema="color-blue"] a.link-color:hover i,
html[color-schema="color-blue"] .a.link-color:hover i,
html[color-schema="color-blue"] a.link-color:focus i,
html[color-schema="color-blue"] .a.link-color:focus i,
html[color-schema="color-blue"] a.link-color:active i,
html[color-schema="color-blue"] .a.link-color:active i,
html[color-schema="color-blue"] a.link-color.active i,
html[color-schema="color-blue"] .a.link-color.active i {
  color: #063462;
}

html[color-schema="color-blue"] a:hover,
html[color-schema="color-blue"] .a:hover,
html[color-schema="color-blue"] a:focus,
html[color-schema="color-blue"] .a:focus,
html[color-schema="color-blue"] a:active,
html[color-schema="color-blue"] .a:active,
html[color-schema="color-blue"] a.active,
html[color-schema="color-blue"] .a.active,
html[color-schema="color-blue"] .press-center-container-item:hover .press-center-container-title {
  color: #063462;
  text-decoration: underline;
}

html[color-schema="color-blue"] .active > .link-color,
html[color-schema="color-blue"] .Zebra_DatePicker_Icon,
html[color-schema="color-blue"] .Zebra_DatePicker table td.dp_current,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_footer td.dp_today,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_footer td.dp_clear,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_header td.dp_hover,
html[color-schema="color-blue"] .Zebra_DatePicker .dp_daypicker th,
html[color-schema="color-blue"] .spoiler-box:hover .spoiler-box__btn,
html[color-schema="color-blue"] .spoiler-box .spoiler-box__btn,
html[color-schema="color-blue"] .spoiler-box p,
html[color-schema="color-blue"] .spoiler-box,
html[color-schema="color-blue"] .text-gray-nn,
html[color-schema="color-blue"] .press-center-container-text,
html[color-schema="color-blue"] .press-all-theme,
html[color-schema="color-blue"] .new-notes-date,
html[color-schema="color-blue"] .new-cite-tab,
html[color-schema="color-blue"] .aside-navbar4 ul > li .link-dropdown .event-button-nav {
  color: #063462;
}

html[color-schema="color-blue"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret,
html[color-schema="color-blue"] .spoiler-box .spoiler-box__carret,
html[color-schema="color-blue"] .border-block-sm,
html[color-schema="color-blue"] .bg-block-sm--border {
  border-color: #063462 !important;
}

html[color-schema="color-blue"] .border-block-sm,
html[color-schema="color-blue"] .bg-block-sm--border {
  -webkit-box-shadow: none;
  box-shadow: none;
}

html[color-schema="color-blue"] .Zebra_DatePicker table td.dp_hover,
html[color-schema="color-blue"] .Zebra_DatePicker table td.dp_selected,
html[color-schema="color-blue"] .spoiler-box .spoiler-box__carret:before,
html[color-schema="color-blue"] .spoiler-box__carret:after {
  background-color: #9dd1ff !important;
}

html[color-schema="color-blue"] .btn.btn-collapsed i,
html[color-schema="color-blue"] .service-pop-preview .icon:before {
  color: #063462 !important;
}

html[color-schema="color-blue"] .media-tab-ell .news-title:before {
  -webkit-box-shadow: 0 10px 30px 25px #9dd1ff;
  box-shadow: 0 10px 30px 25px #9dd1ff;
}

html[color-schema="color-blue"] .header-nav > li > a:after,
html[color-schema="color-blue"] .aside__list-nav > li.active > a:after,
html[color-schema="color-blue"] .news-prime-blok__hr {
  background-color: #063462;
}

html[color-schema="color-blue"] .custom-pagination li a,
html[color-schema="color-blue"] .custom-pagination li span {
  color: #063462 !important;
  border-color: #063462 !important;
  background-color: #9dd1ff !important;
}

html[color-schema="color-blue"] .dropdown-menu > li > a,
html[color-schema="color-blue"] .main-news-item__type,
html[color-schema="color-blue"] .main-news-test__type {
  color: #063462 !important;
  background-color: #9dd1ff !important;
}

html[color-schema="color-blue"] .dropdown-menu > li > a:after,
html[color-schema="color-blue"] .block-douwnload-md .doc-icon-bg,
html[color-schema="color-blue"] .progress-bar,
html[color-schema="color-blue"] .aside__item > li > a.active:after,
html[color-schema="color-blue"] .aside__item > li:after {
  background-color: #063462 !important;
}

html[color-schema="color-blue"] .tabs-nav-wrap,
html[color-schema="color-blue"] .border-top,
html[color-schema="color-blue"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-schema="color-blue"] .tabs-nav-wrap .nav-tabs > li:hover > a,
html[color-schema="color-blue"] .layer-link--map,
html[color-schema="color-blue"] .header__bottom-panel,
html[color-schema="color-blue"] #media_content_all .media-tab-ell,
html[color-schema="color-blue"] .media-tab-ell,
html[color-schema="color-blue"] .tabs-container__content,
html[color-schema="color-blue"] .footer__send-wrong i,
html[color-schema="color-blue"] input.form-control,
html[color-schema="color-blue"] textarea.form-control,
html[color-schema="color-blue"] .rss-link,
html[color-schema="color-blue"] textarea.form-control:hover,
html[color-schema="color-blue"] input.form-control:hover,
html[color-schema="color-blue"] .aside__list-nav,
html[color-schema="color-blue"] .border-block,
html[color-schema="color-blue"] .block-douwnload-md,
html[color-schema="color-blue"] .post-list,
html[color-schema="color-blue"] .press-center-tag:hover .press-center-tag-inner,
html[color-schema="color-blue"] .aside-navbar4 ul {
  border-color: #063462 !important;
}

html[color-schema="color-blue"] .btn,
html[color-schema="color-blue"] .jq-file__browse,
html[color-schema="color-blue"] .btn:focus,
html[color-schema="color-blue"] .jq-file__browse:focus,
html[color-schema="color-blue"] .btn:hover,
html[color-schema="color-blue"] .jq-file__browse:hover,
html[color-schema="color-blue"] .btn:active,
html[color-schema="color-blue"] .jq-file__browse:active,
html[color-schema="color-blue"] .btn.active,
html[color-schema="color-blue"] .jq-file__browse.active,
html[color-schema="color-blue"] .btn.focus,
html[color-schema="color-blue"] .jq-file__browse.focus {
  background-color: #9dd1ff !important;
  border-color: #063462 !important;
  color: #063462 !important;
}

html[color-schema="color-blue"] .btn:hover,
html[color-schema="color-blue"] .jq-file__browse:hover,
html[color-schema="color-blue"] .new-notes-item:hover .new-notes-text,
html[color-schema="color-blue"] .container-inner-item-big:hover .container-inner-item-text,
html[color-schema="color-blue"] .container-inner-item-small:hover .container-inner-item-text {
  text-decoration: underline;
}

html[color-schema="color-blue"] .aside .link-color,
html[color-schema="color-blue"] .breadcrumb-new__button_seal span {
  color: #848E99;
}

html[color-schema="color-blue"] .section {
  border-bottom: 1px solid #063462 !important;
  margin: 0 !important;
  padding-bottom: 80px !important;
  padding-top: 80px !important;
}

html[color-schema="color-blue"] .section.main-section--list-nav {
  padding-top: 15px !important;
}

html[color-schema="color-blue"] .footer {
  border-top: 1px solid #063462 !important;
}

html[color-schema="color-blue"] ::-webkit-input-placeholder,
html[color-schema="color-blue"] .custom-pagination li a:hover,
html[color-schema="color-blue"] .custom-pagination li.active a {
  color: #063462;
}

html[color-schema="color-blue"] ::-moz-placeholder,
html[color-schema="color-blue"] .custom-pagination li a:hover,
html[color-schema="color-blue"] .custom-pagination li.active a {
  color: #063462;
}

html[color-schema="color-blue"] .main-news-bg,
html[color-schema="color-blue"] .gray-section-bg {
  background: #9dd1ff;
}

html[color-schema="color-blue"] ::-webkit-input-placeholder {
  color: #063462;
}

html[color-schema="color-blue"] ::-moz-placeholder {
  color: #063462;
}

html[color-schema="color-blue"] :-ms-input-placeholder {
  color: #063462;
}

html[color-schema="color-blue"] ::-ms-input-placeholder {
  color: #063462;
}

html[color-schema="color-blue"] ::placeholder,
html[color-schema="color-blue"] .custom-pagination li a:hover,
html[color-schema="color-blue"] .custom-pagination li.active a {
  color: #063462;
}

html[color-schema="color-blue"] .docs-preview__box--inner:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#9dd1ff), to(#9dd1ff));
  background: -webkit-linear-gradient(top, #9dd1ff 0%, #9dd1ff 100%);
  background: linear-gradient(to bottom, #9dd1ff 0%, #9dd1ff 100%);
}

html[color-schema="color-blue"] .form-group--placeholder-fix.placeholder-fix-textarea label.placeholder {
  background-color: #9dd1ff;
}

html[color-schema="color-blue"] .calendar--prev-arrow,
html[color-schema="color-blue"] .calendar--next-arrow,
html[color-schema="color-blue"] .tag,
html[color-schema="color-blue"] .tags-list a,
html[color-schema="color-blue"] .tag:hover,
html[color-schema="color-blue"] .tags-list a:hover,
html[color-schema="color-blue"] .tag:focus,
html[color-schema="color-blue"] .tags-list a:focus {
  background-color: #9dd1ff;
  border-color: #063462;
  color: #063462;
}

html[color-schema="color-blue"] .calendar#main-calendar-widget .event {
  background-color: #9dd1ff;
}

html[color-schema="color-blue"] .dropdown-menu > li > a,
html[color-schema="color-blue"] .press-center-container-title {
  color: #063462;
}

html[color-schema="color-blue"] .dropdown-menu > li > a:hover,
html[color-schema="color-blue"] .dropdown-menu > li > a:focus {
  background-color: #9dd1ff;
  color: #063462;
}

html[color-schema="color-blue"] .jq-radio,
html[color-schema="color-blue"] .jq-checkbox,
html[color-schema="color-blue"] .jq-radio.checked,
html[color-schema="color-blue"] .jq-checkbox.checked {
  background-color: #9dd1ff;
  border-color: #063462;
}

html[color-schema="color-blue"] .jq-radio.disabled,
html[color-schema="color-blue"] .jq-checkbox.disabled,
html[color-schema="color-blue"] .jq-radio.disabled.checked,
html[color-schema="color-blue"] .jq-checkbox.disabled.checked {
  opacity: 0.4;
}

html[color-schema="color-blue"] .wrap-check:hover .jq-radio,
html[color-schema="color-blue"] .wrap-check:hover .jq-checkbox,
html[color-schema="color-blue"] .block-douwnload-md .doc-icon:after {
  background-color: #9dd1ff;
  border-color: #063462;
}

html[color-schema="color-blue"] .block-douwnload-md,
html[color-schema="color-blue"] .aside-navbar4 ul > li .link-dropdown .event-button-nav,
html[color-schema="color-blue"] .menegement__block_link {
  border: 1px solid #063462;
}

html[color-schema="color-blue"] .wrap-check:hover label {
  text-decoration: underline;
  color: #063462;
}

html[color-schema="color-blue"] .disabled + label,
html[color-schema="color-blue"] .disabled.checked + label,
html[color-schema="color-blue"] .wrap-check:hover .disabled + label {
  text-decoration: none;
  color: #063462;
  opacity: 0.6;
}

html[color-schema="color-blue"] .header-new-styles .nav-btn a:hover,
html[color-schema="color-blue"] body .main__s.main__s-new .main-news-test__buttons .main-news-test__btn:hover,
html[color-schema="color-blue"] .header-nav > li .link-division:hover, 
html[color-schema="color-blue"] .press-center-container-tag:hover,
html[color-schema="color-blue"] .press-center-aside-button-color:hover,
html[color-schema="color-blue"] .press-center-tag:hover .press-center-tag-inner,
html[color-schema="color-blue"] .press-center-aside-button:hover,
html[color-schema="color-blue"] .new-notes-tag:hover,
html[color-schema="color-blue"] .container-inner-item-big:hover .container-inner-item-icon,
html[color-schema="color-blue"] .container-inner-item-small:hover .container-inner-item-icon,
html[color-schema="color-blue"] .new-site-link-block:hover,
html[color-schema="color-blue"] .breadcrumb-new__button_seal:hover,
html[color-schema="color-blue"] .breadcrumb-new__button_share:hover {
   text-decoration: none;
   color: #9dd1ff !important;
   background-color: #063462 !important;
}

html[color-schema="color-blue"] .section-head--link:hover,
html[color-schema="color-blue"] .press-center-container-item:hover,
html[color-schema="color-blue"] .new-notes-item:hover,
html[color-schema="color-blue"] .useful-materials-block:hover,
html[color-schema="color-blue"] .container-inner-item-big:hover,
html[color-schema="color-blue"] .container-inner-item-small:hover,
html[color-schema="color-blue"] .menegement__block_link:hover {
  text-decoration: none;
}

html[color-schema="color-blue"] .section-head-round,
html[color-schema="color-blue"] .container-inner-item-icon,
html[color-schema="color-blue"] .new-site-link-block {
  background: #9dd1ff;
  border: 2px solid #063462;
}

html[color-schema="color-blue"] .section-head-round svg rect,
html[color-schema="color-blue"] .press-center-aside-button-color svg  rect,
html[color-schema="color-blue"] .press-all-theme svg,
html[color-schema="color-blue"] .new-cite-controls-btn svg path,
html[color-schema="color-blue"] .new-site-link-block-icon svg path {
  fill: #063462;
}

html[color-schema="color-blue"] .container-inner-item-icon svg path,
html[color-schema="color-blue"] .slick-dots li.slick-active button svg path:last-of-type {
  stroke: #063462;
}

html[color-schema="color-blue"] .container-inner-item-big:hover .container-inner-item-icon svg path,
html[color-schema="color-blue"] .container-inner-item-small:hover .container-inner-item-icon svg path {
  stroke: #9dd1ff;
}

html[color-schema="color-blue"] .section-head--link:hover .section-head-round,
html[color-schema="color-blue"] .new-cite-controls-btn:hover {
  background: #063462;
}

html[color-schema="color-blue"] .section-head--link:hover .section-head-round svg rect,
html[color-schema="color-blue"] .press-center-aside-button-color:hover svg rect,
html[color-schema="color-blue"] .new-cite-controls-btn:hover svg path,
html[color-schema="color-blue"] .breadcrumb-new__button_seal:hover  svg path,
html[color-schema="color-blue"] .breadcrumb-new__button_share:hover  svg path {
  fill: #9dd1ff;
}

html[color-schema="color-blue"] .new-site-link-block:hover svg path {
  fill: #9dd1ff !important;
}

html[color-schema="color-blue"] .checked + label,
html[color-schema="color-blue"] .form-group.error label.error {
  color: #063462;
}

html[color-schema="color-beige"] .bg-color {
  color: #4d4b43;
  background-color: #f7f3d6;
}

html[color-schema="color-beige"] .bg-color.header__bottom-panel {
  border-bottom: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .bg-color .dropdown-menu-header {
  color: #4d4b43;
}

html[color-schema="color-beige"] .bg-color .breadcrumb > li a {
  color: #4d4b43;
}

html[color-schema="color-beige"] .bg-color .breadcrumb > li:after {
  color: #4d4b43;
}

html[color-schema="color-beige"] .soc-tv-card {
  background-color: #ffffff;
}

html[color-schema="color-beige"] .soc-tv-card:hover {
  -webkit-box-shadow: 0 6px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 10px 0px rgba(0, 0, 0, 0.1);
}

html[color-schema="color-beige"] .soc-tv-card:hover .soc-tv-card__title {
  color: #e20338;
}

html[color-schema="color-beige"] .soc-tv-card__content:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(241, 242, 242, 0)), to(#ffffff));
  background: -webkit-linear-gradient(top, rgba(241, 242, 242, 0) 0%, #ffffff 100%);
  background: linear-gradient(to bottom, rgba(241, 242, 242, 0) 0%, #ffffff 100%);
}

html[color-schema="color-beige"] .seach-block {
  border-bottom: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .seach-block .seach-block__info {
  color: #4d4b43;
}

html[color-schema="color-beige"] .media-category:after,
html[color-schema="color-beige"] .slider-main-indicator {
  background-color: #4d4b43 !important;
}

html[color-schema="color-beige"] .widget-mayor__bottom,
html[color-schema="color-beige"] .block-douwnload-md .doc-icon:before,
html[color-schema="color-beige"] .post-list.all_event_closest {
  background-color: #f7f3d6;
}

html[color-schema="color-beige"] .quote i.top,
html[color-schema="color-beige"] .quote i.bottom,
html[color-schema="color-beige"] .media-category,
html[color-schema="color-beige"] .header__link-home i,
html[color-schema="color-beige"] .link-list-sites i,
html[color-schema="color-beige"] .header__link-portal i,
html[color-schema="color-beige"] .photo-box .icon-arrow-top {
  color: #4d4b43 !important;
}

html[color-schema="color-beige"] .list-menu-page .item > span {
  border-color: #4d4b43;
}

html[color-schema="color-beige"] .list-menu-page {
  border: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .block-douwnload-md .doc-icon:before {
  border-top: 15px solid #f7f3d6;
  border-right: 15px solid #f7f3d6;
}

html[color-schema="color-beige"] .info-link-block a:hover span,
html[color-schema="color-beige"] .faq-list > li > ul > li > a i,
html[color-schema="color-beige"] .faq-list .item-text-title,
html[color-schema="color-beige"] .main-info-block .title .big {
  color: #4d4b43;
}

html[color-schema="color-beige"] .media-category.news {
  color: #4d4b43 !important;
}

html[color-schema="color-beige"] .media-category.news:after {
  background-color: #4d4b43 !important;
}

html[color-schema="color-beige"] .aside__list-nav > li > a.active:after,
html[color-schema="color-beige"] .aside__list-nav > li > .item-wrap > a.active:after,
html[color-schema="color-beige"] .aside__list-nav > li > a.parent-active:after,
html[color-schema="color-beige"] .aside__list-nav > li > .item-wrap > a.parent-active:after {
  background-color: #4d4b43 !important;
}

html[color-schema="color-beige"] .field-icon-loupe {
  opacity: 1;
}

html[color-schema="color-beige"] .bg-block-sm,
html[color-schema="color-beige"] .border-block-sm,
html[color-schema="color-beige"] .fileupload-list__box .preview,
html[color-schema="color-beige"] .post-list.all_event_closest {
  border: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .box-drop-style,
html[color-schema="color-beige"] .layer-link__title,
html[color-schema="color-beige"] .spoiler-box__content,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_footer,
html[color-schema="color-beige"] .dropdown-menu-header .list-division {
  border-color: #4d4b43;
}

html[color-schema="color-beige"] body,
html[color-schema="color-beige"] .box-drop-style,
html[color-schema="color-beige"] .fileupload-list__box .preview,
html[color-schema="color-beige"] .box-drop-style .sub-text .mark,
html[color-schema="color-beige"] .modal-content,
html[color-schema="color-beige"] .spoiler-box,
html[color-schema="color-beige"] .tab-link-left li.active a {
  background: #f7f3d6;
}

html[color-schema="color-beige"] .search-result strong,
html[color-schema="color-beige"] .alert-warning {
  background: #4d4b43;
  color: #f7f3d6;
}

html[color-schema="color-beige"] .blind-text-bg {
  background: #f7f3d6;
  display: inline;
  color: #4d4b43;
}

html[color-schema="color-beige"] .slider-main__sub-text {
  opacity: 1;
}

html[color-schema="color-beige"] .text-block a:not([class]) {
  border-color: #4d4b43;
}

html[color-schema="color-beige"] .simple-list-nav li a:after,
html[color-schema="color-beige"] .service-pop-banner .left:after,
html[color-schema="color-beige"] .widget-quiz__inner,
html[color-schema="color-beige"] .jq-checkbox.checked .jq-checkbox__div,
html[color-schema="color-beige"] .spoiler-box__carret:before,
html[color-schema="color-beige"] .spoiler-box__carret:after {
  background: #4d4b43;
}

html[color-schema="color-beige"] .news-box__date {
  opacity: 0;
}

html[color-schema="color-beige"] .color-bg-block,
html[color-schema="color-beige"] .btn-delete i,
html[color-schema="color-beige"] .modal-content,
html[color-schema="color-beige"] .text-block table td,
html[color-schema="color-beige"] a .link-color {
  color: #4d4b43 !important;
}

html[color-schema="color-beige"] .news-box__bottom {
  background: #f7f3d6;
  border: 1px solid #4d4b43;
  padding-top: 30px;
}

html[color-schema="color-beige"] .event-box {
  border-color: #4d4b43;
}

html[color-schema="color-beige"] .simple-list-nav,
html[color-schema="color-beige"] .service-pop-banner {
  background: #f7f3d6;
}

html[color-schema="color-beige"] .two-date:after,
html[color-schema="color-beige"] .mark-tab i.mark-tab__mark {
  background-color: #4d4b43 !important;
}

html[color-schema="color-beige"] .map-city .panel-inner:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#f7f3d6));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #f7f3d6 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #f7f3d6 100%);
}

html[color-schema="color-beige"] .header,
html[color-schema="color-beige"] .bg-brown,
html[color-schema="color-beige"] .bg-light-blue {
  background: #f7f3d6 !important;
}

html[color-schema="color-beige"] .btn-favorite.favorite {
  background-color: #f7f3d6;
  color: #4d4b43;
}

html[color-schema="color-beige"] .map {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
  filter: gray;
}

html[color-schema="color-beige"] .btn-gamb span,
html[color-schema="color-beige"] .nav-accordion > li:after {
  background: #4d4b43 !important;
}

html[color-schema="color-beige"] .pushy {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-left: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .dropdown-menu-header .dropdown-menu__inner {
  background: #f7f3d6;
  border-color: #4d4b43;
}

html[color-schema="color-beige"] .faq-list > li > a:hover,
html[color-schema="color-beige"] .faq-list > li.open > a,
html[color-schema="color-beige"] .faq-list > li > ul > li > a:hover,
html[color-schema="color-beige"] .faq-list > li > ul > li > a:hover i {
  color: #4d4b43;
}

html[color-schema="color-beige"] .tab-link-left li.active > a:after {
  background-color: #4d4b43;
}

html[color-schema="color-beige"] .faq-list__category,
html[color-schema="color-beige"] .tab-link-left ul {
  border: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .text-block ul li:before {
  background: #4d4b43;
}

html[color-schema="color-beige"] .structure-tree > li > ul > li > div.item-wrap .name {
  border: 1px solid #4d4b43;
  background-color: #f7f3d6;
}

html[color-schema="color-beige"] .ya-share2__item:hover .ya-share2__icon {
  color: #4d4b43 !important;
  border-color: #4d4b43 !important;
}

html[color-schema="color-beige"] .slick-dots li button,
html[color-schema="color-beige"] .dcjq-icon,
html[color-schema="color-beige"] .akk-toggle {
  background-color: #f7f3d6 !important;
  border-color: #4d4b43 !important;
}

html[color-schema="color-beige"] .dcjq-icon:after,
html[color-schema="color-beige"] .dcjq-icon:before,
html[color-schema="color-beige"] .akk-toggle:before,
html[color-schema="color-beige"] .akk-toggle:after {
  background-color: #4d4b43 !important;
}

html[color-schema="color-beige"] .structure-tree > li > div.item-wrap .name {
  background-color: #f7f3d6;
  border: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .calendar#main-calendar-widget .day.has-event .day-content,
html[color-schema="color-beige"] .bootstrap-select.btn-group .dropdown-menu li small.text-muted {
  background-color: #f7f3d6;
  border: 1px solid #4d4b43;
  color: #4d4b43;
}

html[color-schema="color-beige"] .calendar--prev-arrow:hover,
html[color-schema="color-beige"] .calendar--next-arrow:hover {
  border-color: #4d4b43;
  color: #4d4b43;
}

html[color-schema="color-beige"] #map-svg path.active {
  fill: #4d4b43 !important;
}

html[color-schema="color-beige"] .header-nav i,
html[color-schema="color-beige"] .tab-link-left li.active a {
  color: #4d4b43 !important;
}

html[color-schema="color-beige"][img-display="hide"] .wrap-media-video .video-preview,
html[color-schema="color-beige"][img-display="hide"] .media-photo-preview__img {
  background: #f7f3d6 !important;
  background-image: none !important;
  opacity: 1;
}

html[color-schema="color-beige"][img-display="hide"] .media-photo-preview__title {
  background: transparent;
}

html[color-schema="color-beige"] .faq-list > li > ul > li {
  border: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .layer-top.panel-full:after {
  display: none;
}

html[color-schema="color-beige"] .btn-collapsed,
html[color-schema="color-beige"] .well,
html[color-schema="color-beige"] .bg-text-box,
html[color-schema="color-beige"] .spoiler-box,
html[color-schema="color-beige"] .bg-text-box.bg-gray {
  border: 1px solid #4d4b43 !important;
}

html[color-schema="color-beige"] .faq-list > li > ul > li.open a:after,
html[color-schema="color-beige"] .faq-list > li > ul > li.open > a:hover:after {
  background: #f7f3d6;
  border-bottom: 1px solid #4d4b43;
}

html[color-schema="color-beige"] body {
  color: #4d4b43;
  background-color: #f7f3d6;
}

html[color-schema="color-beige"] .bg-gray-light,
html[color-schema="color-beige"] .bg-base,
html[color-schema="color-beige"] .icons,
html[color-schema="color-beige"] .bg-gray,
html[color-schema="color-beige"] .bg-gray-color,
html[color-schema="color-beige"] .bg-gray-dark,
html[color-schema="color-beige"] .bg-gray-0,
html[color-schema="color-beige"] .page-layer,
html[color-schema="color-beige"] .layer-top,
html[color-schema="color-beige"] .bg-gray-dark-2,
html[color-schema="color-beige"] .post-list.event_closest,
html[color-schema="color-beige"] .bg-text-box.bg-gray {
  background-color: #f7f3d6 !important;
}

html[color-schema="color-beige"] .docs-preview__box--inner:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#f7f3d6), to(#f7f3d6));
  background: -webkit-linear-gradient(top, #f7f3d6 0%, #f7f3d6 100%);
  background: linear-gradient(to bottom, #f7f3d6 0%, #f7f3d6 100%);
}

html[color-schema="color-beige"] .close {
  opacity: 1;
}

html[color-schema="color-beige"] .dropdown-menu,
html[color-schema="color-beige"] .media-block .tabs-nav-wrap .nav-tabs > li.active:hover > a,
html[color-schema="color-beige"] .media-block .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-schema="color-beige"] .table-tender__item,
html[color-schema="color-beige"] .email-list--top li,
html[color-schema="color-beige"] .header__search-form .bootstrap-select,
html[color-schema="color-beige"] .two-date:hover input.form-control {
  border-color: #4d4b43 !important;
}

html[color-schema="color-beige"] .Zebra_DatePicker,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_header,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_daypicker td,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_daypicker th,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_monthpicker td,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_monthpicker th,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_yearpicker td,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_yearpicker th,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_timepicker td,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_timepicker th {
  background-color: #f7f3d6;
  color: #4d4b43 !important;
  border-color: #4d4b43 !important;
}

html[color-schema="color-beige"] .Zebra_DatePicker table td.dp_disabled,
html[color-schema="color-beige"] .Zebra_DatePicker table td.dp_not_in_month,
html[color-schema="color-beige"] .Zebra_DatePicker table td.dp_not_in_month_selectable {
  opacity: 0.4;
}

html[color-schema="color-beige"] .Zebra_DatePicker .dp_header td,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_header .dp_previous span:before,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_header .dp_next span:before,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_header .dp_prev span:before {
  color: #4d4b43;
}

html[color-schema="color-beige"] .popover {
  color: #4d4b43;
  background-color: #f7f3d6;
  border-color: #4d4b43 !important;
}

html[color-schema="color-beige"] .popover.bottom > .arrow {
  border-bottom-color: #4d4b43 !important;
}

html[color-schema="color-beige"] .popover.bottom > .arrow:after {
  border-bottom-color: #f7f3d6;
}

html[color-schema="color-beige"] .ya-share2__item .ya-share2__icon,
html[color-schema="color-beige"] .ya-share2__item:hover .ya-share2__icon {
  color: #4d4b43;
  border-color: #4d4b43;
}

html[color-schema="color-beige"] .header__top-panel {
  border-bottom: 1px solid #4d4b43;
  border-top: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .header {
  border-bottom: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .block-douwnload-md .doc-icon {
  border-right: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .form-group--placeholder-fix.placeholder-fix-textarea label.placeholder {
  -webkit-box-shadow: none;
  box-shadow: none;
}

html[color-schema="color-beige"] .bg-box,
html[color-schema="color-beige"] .doc-text {
  border: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .page-layer:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#f7f3d6), to(#f7f3d6));
  background: -webkit-linear-gradient(top, #f7f3d6 0%, #f7f3d6 100%);
  background: linear-gradient(to bottom, #f7f3d6 0%, #f7f3d6 100%);
}

html[color-schema="color-beige"] .text-white,
html[color-schema="color-beige"] .text-max-light,
html[color-schema="color-beige"] .text-md,
html[color-schema="color-beige"] .text-base,
html[color-schema="color-beige"] .text-light,
html[color-schema="color-beige"] .text-dark,
html[color-schema="color-beige"] .text-black,
html[color-schema="color-beige"] .text-gray,
html[color-schema="color-beige"] .header__widget-list > li > a,
html[color-schema="color-beige"] .header__widget-list > li > a i,
html[color-schema="color-beige"] .header-nav > li a:hover,
html[color-schema="color-beige"] .header-nav > li > a.active,
html[color-schema="color-beige"] a.media-tab-ell:hover,
html[color-schema="color-beige"] a.media-tab-ell:hover .media-play-btn,
html[color-schema="color-beige"] a.media-tab-ell:hover .media-play-btn i,
html[color-schema="color-beige"] .tabs-container__content li a,
html[color-schema="color-beige"] .footer__send-wrong i,
html[color-schema="color-beige"] .footer__net-list a,
html[color-schema="color-beige"] .footer__net-list a:hover,
html[color-schema="color-beige"] .footer .copyright i,
html[color-schema="color-beige"] .header__link-home i,
html[color-schema="color-beige"] .link-list-sites i,
html[color-schema="color-beige"] .rate_star:after,
html[color-schema="color-beige"] .rate_star.checked:after,
html[color-schema="color-beige"] .header-nav > li.active a,
html[color-schema="color-beige"] .rate_star.over:after,
html[color-schema="color-beige"] input.form-control,
html[color-schema="color-beige"] textarea.form-control,
html[color-schema="color-beige"] .rss-link,
html[color-schema="color-beige"] .text-prime,
html[color-schema="color-beige"] .close,
html[color-schema="color-beige"] .header__link-home,
html[color-schema="color-beige"] .link-list-sites,
html[color-schema="color-beige"] .breadcrumb .home:after,
html[color-schema="color-beige"] .color,
html[color-schema="color-beige"] .form-group--placeholder-fix .placeholder,
html[color-schema="color-beige"] .breadcrumb > li a,
html[color-schema="color-beige"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-schema="color-beige"] .tabs-nav-wrap .nav-tabs > li:hover > a,
html[color-schema="color-beige"] .page-content,
html[color-schema="color-beige"] .header-nav > li.open > a,
html[color-schema="color-beige"] .icon-text-light,
html[color-schema="color-beige"] .text-max-light-2,
html[color-schema="color-beige"] .color-blue {
  color: #4d4b43 !important;
}

html[color-schema="color-beige"] .bg-box .text-white {
  background-color: #f7f3d6;
  padding: 3px;
}

html[color-schema="color-beige"] a:hover,
html[color-schema="color-beige"] a:focus,
html[color-schema="color-beige"] a:active {
  text-decoration: underline;
}

html[color-schema="color-beige"] .play-button,
html[color-schema="color-beige"] .play-button:hover {
  border-color: transparent transparent transparent #4d4b43;
}

html[color-schema="color-beige"] .color-bg-block,
html[color-schema="color-beige"] .tabs-container__content,
html[color-schema="color-beige"] .tabs-container__content li a,
html[color-schema="color-beige"] input.form-control,
html[color-schema="color-beige"] textarea.form-control,
html[color-schema="color-beige"] .rss-link {
  background-color: #f7f3d6;
}

html[color-schema="color-beige"] a.link-bg-color,
html[color-schema="color-beige"] .border-block-sm {
  border: 1px solid #4d4b43;
}

html[color-schema="color-beige"] a.link-bg-color,
html[color-schema="color-beige"] .border-block-sm,
html[color-schema="color-beige"] a.link-bg-color:hover,
html[color-schema="color-beige"] .border-block-sm:hover,
html[color-schema="color-beige"] a.link-bg-color:focus,
html[color-schema="color-beige"] .border-block-sm:focus,
html[color-schema="color-beige"] a.link-bg-color:active,
html[color-schema="color-beige"] .border-block-sm:active {
  background-color: #f7f3d6;
  color: #4d4b43;
}

html[color-schema="color-beige"] .wrap-media-video:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#f7f3d6));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #f7f3d6 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #f7f3d6 100%);
}

html[color-schema="color-beige"] .list-services__item,
html[color-schema="color-beige"] .list-services__item:hover,
html[color-schema="color-beige"] .list-services__item:focus,
html[color-schema="color-beige"] .list-services__item:active {
  border-color: #4d4b43;
  color: #4d4b43;
}

html[color-schema="color-beige"] .list-services__item span,
html[color-schema="color-beige"] .list-services__item:hover span,
html[color-schema="color-beige"] .list-services__item:focus span,
html[color-schema="color-beige"] .list-services__item:active span {
  color: inherit;
}

html[color-schema="color-beige"] .list-services__item i,
html[color-schema="color-beige"] .list-services__item:hover i,
html[color-schema="color-beige"] .list-services__item:focus i,
html[color-schema="color-beige"] .list-services__item:active i {
  color: #4d4b43;
}

html[color-schema="color-beige"] a,
html[color-schema="color-beige"] .a {
  color: #4d4b43;
}

html[color-schema="color-beige"] a.link-color:hover,
html[color-schema="color-beige"] .a.link-color:hover,
html[color-schema="color-beige"] a.link-color:focus,
html[color-schema="color-beige"] .a.link-color:focus,
html[color-schema="color-beige"] a.link-color:active,
html[color-schema="color-beige"] .a.link-color:active,
html[color-schema="color-beige"] a.link-color.active,
html[color-schema="color-beige"] .a.link-color.active {
  text-decoration: underline;
  color: #4d4b43;
}

html[color-schema="color-beige"] a.link-color:hover,
html[color-schema="color-beige"] .a.link-color:hover,
html[color-schema="color-beige"] a.link-color:focus,
html[color-schema="color-beige"] .a.link-color:focus,
html[color-schema="color-beige"] a.link-color:active,
html[color-schema="color-beige"] .a.link-color:active,
html[color-schema="color-beige"] a.link-color.active,
html[color-schema="color-beige"] .a.link-color.active,
html[color-schema="color-beige"] a.link-color:hover i,
html[color-schema="color-beige"] .a.link-color:hover i,
html[color-schema="color-beige"] a.link-color:focus i,
html[color-schema="color-beige"] .a.link-color:focus i,
html[color-schema="color-beige"] a.link-color:active i,
html[color-schema="color-beige"] .a.link-color:active i,
html[color-schema="color-beige"] a.link-color.active i,
html[color-schema="color-beige"] .a.link-color.active i {
  color: #4d4b43;
}

html[color-schema="color-beige"] a:hover,
html[color-schema="color-beige"] .a:hover,
html[color-schema="color-beige"] a:focus,
html[color-schema="color-beige"] .a:focus,
html[color-schema="color-beige"] a:active,
html[color-schema="color-beige"] .a:active,
html[color-schema="color-beige"] a.active,
html[color-schema="color-beige"] .a.active {
  color: #4d4b43;
  text-decoration: underline;
}

html[color-schema="color-beige"] .active > .link-color,
html[color-schema="color-beige"] .Zebra_DatePicker_Icon,
html[color-schema="color-beige"] .Zebra_DatePicker table td.dp_current,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_footer td.dp_today,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_footer td.dp_clear,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_header td.dp_hover,
html[color-schema="color-beige"] .Zebra_DatePicker .dp_daypicker th,
html[color-schema="color-beige"] .spoiler-box:hover .spoiler-box__btn,
html[color-schema="color-beige"] .spoiler-box .spoiler-box__btn,
html[color-schema="color-beige"] .spoiler-box p,
html[color-schema="color-beige"] .spoiler-box,
html[color-schema="color-beige"] .text-gray-nn {
  color: #4d4b43;
}

html[color-schema="color-beige"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret,
html[color-schema="color-beige"] .spoiler-box .spoiler-box__carret,
html[color-schema="color-beige"] .border-block-sm,
html[color-schema="color-beige"] .bg-block-sm--border {
  border-color: #4d4b43 !important;
}

html[color-schema="color-beige"] .border-block-sm,
html[color-schema="color-beige"] .bg-block-sm--border {
  -webkit-box-shadow: none;
  box-shadow: none;
}

html[color-schema="color-beige"] .Zebra_DatePicker table td.dp_hover,
html[color-schema="color-beige"] .Zebra_DatePicker table td.dp_selected,
html[color-schema="color-beige"] .spoiler-box .spoiler-box__carret:before,
html[color-schema="color-beige"] .spoiler-box__carret:after {
  background-color: #f7f3d6 !important;
}

html[color-schema="color-beige"] .btn.btn-collapsed i,
html[color-schema="color-beige"] .service-pop-preview .icon:before {
  color: #4d4b43 !important;
}

html[color-schema="color-beige"] .media-tab-ell .news-title:before {
  -webkit-box-shadow: 0 10px 30px 25px #f7f3d6;
  box-shadow: 0 10px 30px 25px #f7f3d6;
}

html[color-schema="color-beige"] .header-nav > li > a:after,
html[color-schema="color-beige"] .aside__list-nav > li.active > a:after,
html[color-schema="color-beige"] .news-prime-blok__hr {
  background-color: #4d4b43;
}

html[color-schema="color-beige"] .custom-pagination li a,
html[color-schema="color-beige"] .custom-pagination li span {
  color: #4d4b43 !important;
  border-color: #4d4b43 !important;
  background-color: #f7f3d6 !important;
}

html[color-schema="color-beige"] .dropdown-menu > li > a {
  color: #4d4b43 !important;
  background-color: #f7f3d6 !important;
}

html[color-schema="color-beige"] .dropdown-menu > li > a:after,
html[color-schema="color-beige"] .block-douwnload-md .doc-icon-bg {
  background-color: #4d4b43 !important;
}

html[color-schema="color-beige"] .tabs-nav-wrap,
html[color-schema="color-beige"] .border-top,
html[color-schema="color-beige"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-schema="color-beige"] .tabs-nav-wrap .nav-tabs > li:hover > a,
html[color-schema="color-beige"] .layer-link--map,
html[color-schema="color-beige"] .header__bottom-panel,
html[color-schema="color-beige"] #media_content_all .media-tab-ell,
html[color-schema="color-beige"] .media-tab-ell,
html[color-schema="color-beige"] .tabs-container__content,
html[color-schema="color-beige"] .footer__send-wrong i,
html[color-schema="color-beige"] input.form-control,
html[color-schema="color-beige"] textarea.form-control,
html[color-schema="color-beige"] .rss-link,
html[color-schema="color-beige"] textarea.form-control:hover,
html[color-schema="color-beige"] input.form-control:hover,
html[color-schema="color-beige"] .aside__list-nav,
html[color-schema="color-beige"] .border-block,
html[color-schema="color-beige"] .block-douwnload-md,
html[color-schema="color-beige"] .post-list {
  border-color: #4d4b43 !important;
}

html[color-schema="color-beige"] .main-news-bg,
html[color-schema="color-beige"] .gray-section-bg {
  background: #f7f3d6;
}

html[color-schema="color-beige"] .header-new-styles .nav-btn a,
html[color-schema="color-beige"] .press-center-aside-button-color,
html[color-schema="color-beige"] .press-center-aside-button,
html[color-schema="color-beige"] .new-cite-controls-btn {
  background: transparent;
  border: 1px solid #000;
  color: #000 !important;
}

html[color-schema="color-beige"] .new-cite-controls-btn > svg path {
  fill: #000;
}

html[color-schema="color-beige"] .new-icons-bg .icons__text {
  color: #000;
}

html[color-schema="color-beige"] .btn,
html[color-schema="color-beige"] .jq-file__browse,
html[color-schema="color-beige"] .btn:focus,
html[color-schema="color-beige"] .jq-file__browse:focus,
html[color-schema="color-beige"] .btn:hover,
html[color-schema="color-beige"] .jq-file__browse:hover,
html[color-schema="color-beige"] .btn:active,
html[color-schema="color-beige"] .jq-file__browse:active,
html[color-schema="color-beige"] .btn.active,
html[color-schema="color-beige"] .jq-file__browse.active,
html[color-schema="color-beige"] .btn.focus,
html[color-schema="color-beige"] .jq-file__browse.focus {
  background-color: #f7f3d6 !important;
  border-color: #4d4b43 !important;
  color: #4d4b43 !important;
}

html[color-schema="color-beige"] .btn:hover,
html[color-schema="color-beige"] .jq-file__browse:hover {
  text-decoration: underline;
}

html[color-schema="color-beige"] .section {
  border-bottom: 1px solid #4d4b43 !important;
  margin: 0 !important;
  padding-bottom: 80px !important;
  padding-top: 80px !important;
}

html[color-schema="color-beige"] .section.main-section--list-nav {
  padding-top: 15px !important;
}

html[color-schema="color-beige"] .footer {
  border-top: 1px solid #4d4b43 !important;
}

html[color-schema="color-beige"] ::-webkit-input-placeholder,
html[color-schema="color-beige"] .custom-pagination li a:hover,
html[color-schema="color-beige"] .custom-pagination li.active a {
  color: #4d4b43;
}

html[color-schema="color-beige"] ::-moz-placeholder,
html[color-schema="color-beige"] .custom-pagination li a:hover,
html[color-schema="color-beige"] .custom-pagination li.active a {
  color: #4d4b43;
}

html[color-schema="color-beige"] ::-webkit-input-placeholder {
  color: #4d4b43;
}

html[color-schema="color-beige"] ::-moz-placeholder {
  color: #4d4b43;
}

html[color-schema="color-beige"] :-ms-input-placeholder {
  color: #4d4b43;
}

html[color-schema="color-beige"] ::-ms-input-placeholder {
  color: #4d4b43;
}

html[color-schema="color-beige"] ::placeholder,
html[color-schema="color-beige"] .custom-pagination li a:hover,
html[color-schema="color-beige"] .custom-pagination li.active a {
  color: #4d4b43;
}

html[color-schema="color-beige"] .docs-preview__box--inner:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#f7f3d6), to(#f7f3d6));
  background: -webkit-linear-gradient(top, #f7f3d6 0%, #f7f3d6 100%);
  background: linear-gradient(to bottom, #f7f3d6 0%, #f7f3d6 100%);
}

html[color-schema="color-beige"] .form-group--placeholder-fix.placeholder-fix-textarea label.placeholder {
  background-color: #f7f3d6;
}

html[color-schema="color-beige"] .calendar--prev-arrow,
html[color-schema="color-beige"] .calendar--next-arrow,
html[color-schema="color-beige"] .tag,
html[color-schema="color-beige"] .tags-list a,
html[color-schema="color-beige"] .tag:hover,
html[color-schema="color-beige"] .tags-list a:hover,
html[color-schema="color-beige"] .tag:focus,
html[color-schema="color-beige"] .tags-list a:focus {
  background-color: #f7f3d6;
  border-color: #4d4b43;
  color: #4d4b43;
}

html[color-schema="color-beige"] .calendar#main-calendar-widget .event {
  background-color: #f7f3d6;
}

html[color-schema="color-beige"] .dropdown-menu > li > a {
  color: #4d4b43;
}

html[color-schema="color-beige"] .dropdown-menu > li > a:hover,
html[color-schema="color-beige"] .dropdown-menu > li > a:focus {
  background-color: #f7f3d6;
  color: #4d4b43;
}

html[color-schema="color-beige"] .jq-radio,
html[color-schema="color-beige"] .jq-checkbox,
html[color-schema="color-beige"] .jq-radio.checked,
html[color-schema="color-beige"] .jq-checkbox.checked {
  background-color: #f7f3d6;
  border-color: #4d4b43;
}

html[color-schema="color-beige"] .jq-radio.disabled,
html[color-schema="color-beige"] .jq-checkbox.disabled,
html[color-schema="color-beige"] .jq-radio.disabled.checked,
html[color-schema="color-beige"] .jq-checkbox.disabled.checked {
  opacity: 0.4;
}

html[color-schema="color-beige"] .wrap-check:hover .jq-radio,
html[color-schema="color-beige"] .wrap-check:hover .jq-checkbox,
html[color-schema="color-beige"] .block-douwnload-md .doc-icon:after {
  background-color: #f7f3d6;
  border-color: #4d4b43;
}

html[color-schema="color-beige"] .block-douwnload-md {
  border: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .wrap-check:hover label {
  text-decoration: underline;
  color: #4d4b43;
}

html[color-schema="color-beige"] .disabled + label,
html[color-schema="color-beige"] .disabled.checked + label,
html[color-schema="color-beige"] .wrap-check:hover .disabled + label {
  text-decoration: none;
  color: #4d4b43;
  opacity: 0.6;
}

html[color-schema="color-beige"] .checked + label,
html[color-schema="color-beige"] .form-group.error label.error {
  color: #4d4b43;
}

html[color-schema="color-brown"] .bg-color {
  color: #a9e44d;
  background-color: #3b2716;
}

html[color-schema="color-brown"] .icons__text {
  color: #a9e44d;
}

html[color-schema="color-brown"] .icons__box:hover .icons__text {
  color: #a9e44d;
}

html[color-schema="color-brown"] .bg-color.header__bottom-panel {
  border-bottom: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .bg-color .dropdown-menu-header {
  color: #a9e44d;
}

html[color-schema="color-brown"] .bg-color .breadcrumb > li a {
  color: #a9e44d;
}

html[color-schema="color-brown"] .bg-color .breadcrumb > li:after {
  color: #a9e44d;
}

html[color-schema="color-brown"] .soc-tv-card {
  background-color: #604024;
}

html[color-schema="color-brown"] .soc-tv-card:hover {
  -webkit-box-shadow: 0 6px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 10px 0px rgba(0, 0, 0, 0.1);
}

html[color-schema="color-brown"] .soc-tv-card:hover .soc-tv-card__title {
  color: #e20338;
}

html[color-schema="color-brown"] .soc-tv-card__content:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(241, 242, 242, 0)), to(#604024));
  background: -webkit-linear-gradient(top, rgba(241, 242, 242, 0) 0%, #604024 100%);
  background: linear-gradient(to bottom, rgba(241, 242, 242, 0) 0%, #604024 100%);
}

html[color-schema="color-brown"] .seach-block {
  border-bottom: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .seach-block .seach-block__info {
  color: #a9e44d;
}

html[color-schema="color-brown"] .media-category:after,
html[color-schema="color-brown"] .slider-main-indicator {
  background-color: #a9e44d !important;
}

html[color-schema="color-brown"] .widget-mayor__bottom,
html[color-schema="color-brown"] .block-douwnload-md .doc-icon:before,
html[color-schema="color-brown"] .post-list.all_event_closest {
  background-color: #3b2716;
}

html[color-schema="color-brown"] .quote i.top,
html[color-schema="color-brown"] .quote i.bottom,
html[color-schema="color-brown"] .media-category,
html[color-schema="color-brown"] .header__link-home i,
html[color-schema="color-brown"] .link-list-sites i,
html[color-schema="color-brown"] .header__link-portal i,
html[color-schema="color-brown"] .photo-box .icon-arrow-top {
  color: #a9e44d !important;
}

html[color-schema="color-brown"] .list-menu-page .item > span {
  border-color: #a9e44d;
}

html[color-schema="color-brown"] .list-menu-page {
  border: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .block-douwnload-md .doc-icon:before {
  border-top: 15px solid #3b2716;
  border-right: 15px solid #3b2716;
}

html[color-schema="color-brown"] .info-link-block a:hover span,
html[color-schema="color-brown"] .faq-list > li > ul > li > a i,
html[color-schema="color-brown"] .faq-list .item-text-title,
html[color-schema="color-brown"] .main-info-block .title .big {
  color: #a9e44d;
}

html[color-schema="color-brown"] .media-category.news {
  color: #a9e44d !important;
}

html[color-schema="color-brown"] .media-category.news:after {
  background-color: #a9e44d !important;
}

html[color-schema="color-brown"] .aside__list-nav > li > a.active:after,
html[color-schema="color-brown"] .aside__list-nav > li > .item-wrap > a.active:after,
html[color-schema="color-brown"] .aside__list-nav > li > a.parent-active:after,
html[color-schema="color-brown"] .aside__list-nav > li > .item-wrap > a.parent-active:after {
  background-color: #a9e44d !important;
}

html[color-schema="color-brown"] .field-icon-loupe {
  opacity: 1;
}

html[color-schema="color-brown"] .bg-block-sm,
html[color-schema="color-brown"] .border-block-sm,
html[color-schema="color-brown"] .fileupload-list__box .preview,
html[color-schema="color-brown"] .post-list.all_event_closest {
  border: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .box-drop-style,
html[color-schema="color-brown"] .layer-link__title,
html[color-schema="color-brown"] .spoiler-box__content,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_footer,
html[color-schema="color-brown"] .dropdown-menu-header .list-division {
  border-color: #a9e44d;
}

html[color-schema="color-brown"] body,
html[color-schema="color-brown"] .box-drop-style,
html[color-schema="color-brown"] .fileupload-list__box .preview,
html[color-schema="color-brown"] .box-drop-style .sub-text .mark,
html[color-schema="color-brown"] .modal-content,
html[color-schema="color-brown"] .spoiler-box,
html[color-schema="color-brown"] .tab-link-left li.active a {
  background: #3b2716;
}

html[color-schema="color-brown"] .search-result strong,
html[color-schema="color-brown"] .alert-warning {
  background: #a9e44d;
  color: #3b2716;
}

html[color-schema="color-brown"] .blind-text-bg {
  background: #3b2716;
  display: inline;
  color: #a9e44d;
}

html[color-schema="color-brown"] .slider-main__sub-text {
  opacity: 1;
}

html[color-schema="color-brown"] .text-block a:not([class]) {
  border-color: #a9e44d;
}

html[color-schema="color-brown"] .simple-list-nav li a:after,
html[color-schema="color-brown"] .service-pop-banner .left:after,
html[color-schema="color-brown"] .widget-quiz__inner,
html[color-schema="color-brown"] .jq-checkbox.checked .jq-checkbox__div,
html[color-schema="color-brown"] .spoiler-box__carret:before,
html[color-schema="color-brown"] .spoiler-box__carret:after {
  background: #a9e44d;
}

html[color-schema="color-brown"] .news-box__date {
  opacity: 0;
}

html[color-schema="color-brown"] .color-bg-block,
html[color-schema="color-brown"] .btn-delete i,
html[color-schema="color-brown"] .modal-content,
html[color-schema="color-brown"] .text-block table td,
html[color-schema="color-brown"] a .link-color {
  color: #a9e44d !important;
}

html[color-schema="color-brown"] .news-box__bottom {
  background: #3b2716;
  border: 1px solid #a9e44d;
  padding-top: 30px;
}

html[color-schema="color-brown"] .event-box {
  border-color: #a9e44d;
}

html[color-schema="color-brown"] .simple-list-nav,
html[color-schema="color-brown"] .service-pop-banner {
  background: #3b2716;
}

html[color-schema="color-brown"] .two-date:after,
html[color-schema="color-brown"] .mark-tab i.mark-tab__mark {
  background-color: #a9e44d !important;
}

html[color-schema="color-brown"] .map-city .panel-inner:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#3b2716));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #3b2716 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #3b2716 100%);
}

html[color-schema="color-brown"] .header,
html[color-schema="color-brown"] .bg-brown,
html[color-schema="color-brown"] .bg-light-blue {
  background: #3b2716 !important;
}

html[color-schema="color-brown"] .btn-favorite.favorite {
  background-color: #3b2716;
  color: #a9e44d;
}

html[color-schema="color-brown"] .map {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
  filter: gray;
}

html[color-schema="color-brown"] .btn-gamb span,
html[color-schema="color-brown"] .nav-accordion > li:after {
  background: #a9e44d !important;
}

html[color-schema="color-brown"] .pushy {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-left: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .dropdown-menu-header .dropdown-menu__inner {
  background: #3b2716;
  border-color: #a9e44d;
}

html[color-schema="color-brown"] .faq-list > li > a:hover,
html[color-schema="color-brown"] .faq-list > li.open > a,
html[color-schema="color-brown"] .faq-list > li > ul > li > a:hover,
html[color-schema="color-brown"] .faq-list > li > ul > li > a:hover i {
  color: #a9e44d;
}

html[color-schema="color-brown"] .tab-link-left li.active > a:after {
  background-color: #a9e44d;
}

html[color-schema="color-brown"] .faq-list__category,
html[color-schema="color-brown"] .tab-link-left ul {
  border: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .text-block ul li:before {
  background: #a9e44d;
}

html[color-schema="color-brown"] .structure-tree > li > ul > li > div.item-wrap .name {
  border: 1px solid #a9e44d;
  background-color: #3b2716;
}

html[color-schema="color-brown"] .ya-share2__item:hover .ya-share2__icon {
  color: #a9e44d !important;
  border-color: #a9e44d !important;
}

html[color-schema="color-brown"] .slick-dots li button,
html[color-schema="color-brown"] .dcjq-icon,
html[color-schema="color-brown"] .akk-toggle {
  background-color: #3b2716 !important;
  border-color: #a9e44d !important;
}

html[color-schema="color-brown"] .dcjq-icon:after,
html[color-schema="color-brown"] .dcjq-icon:before,
html[color-schema="color-brown"] .akk-toggle:before,
html[color-schema="color-brown"] .akk-toggle:after {
  background-color: #a9e44d !important;
}

html[color-schema="color-brown"] .structure-tree > li > div.item-wrap .name {
  background-color: #3b2716;
  border: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .calendar#main-calendar-widget .day.has-event .day-content,
html[color-schema="color-brown"] .bootstrap-select.btn-group .dropdown-menu li small.text-muted {
  background-color: #3b2716;
  border: 1px solid #a9e44d;
  color: #a9e44d;
}

html[color-schema="color-brown"] .calendar--prev-arrow:hover,
html[color-schema="color-brown"] .calendar--next-arrow:hover {
  border-color: #a9e44d;
  color: #a9e44d;
}

html[color-schema="color-brown"] #map-svg path.active {
  fill: #a9e44d !important;
}

html[color-schema="color-brown"] .header-nav i,
html[color-schema="color-brown"] .tab-link-left li.active a {
  color: #a9e44d !important;
}

html[color-schema="color-brown"][img-display="hide"] .wrap-media-video .video-preview,
html[color-schema="color-brown"][img-display="hide"] .media-photo-preview__img {
  background: #3b2716 !important;
  background-image: none !important;
  opacity: 1;
}

html[color-schema="color-brown"][img-display="hide"] .media-photo-preview__title {
  background: transparent;
}

html[color-schema="color-brown"] .faq-list > li > ul > li {
  border: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .layer-top.panel-full:after {
  display: none;
}

html[color-schema="color-brown"] .btn-collapsed,
html[color-schema="color-brown"] .well,
html[color-schema="color-brown"] .bg-text-box,
html[color-schema="color-brown"] .spoiler-box,
html[color-schema="color-brown"] .bg-text-box.bg-gray {
  border: 1px solid #a9e44d !important;
}

html[color-schema="color-brown"] .faq-list > li > ul > li.open a:after,
html[color-schema="color-brown"] .faq-list > li > ul > li.open > a:hover:after {
  background: #3b2716;
  border-bottom: 1px solid #a9e44d;
}

html[color-schema="color-brown"] body {
  color: #a9e44d;
  background-color: #3b2716;
}

html[color-schema="color-brown"] .press-center-container-title,
html[color-schema="color-brown"] .press-center-container-tag,
html[color-schema="color-brown"] .main-news-test__title p,
html[color-schema="color-brown"] .new-notes-text,
html[color-schema="color-brown"] .new-soc-nav-text,
html[color-schema="color-brown"] .new-cite-tab,
html[color-schema="color-brown"] .footer-logo-text,
html[color-schema="color-brown"] .footer__contacts {
  color: #a9e44d;
}

html[color-schema="color-brown"] .new-notes-tag {
  background: transparent;
  border: 1px solid #fff;
  color: #a9e44d !important;
}

html[color-schema="color-brown"] .gray-section-bg .new-cite-tabs .new-cite-tabs-right::before {
  background: transparent;
}

html[color-schema="color-brown"] .header-new-styles .nav-btn a,
html[color-schema="color-brown"] .new-notes-tag,
html[color-schema="color-brown"] .new-cite-controls-btn,
html[color-schema="color-brown"] .press-center-aside-button-color,
html[color-schema="color-brown"] .press-center-aside-button {
  background: transparent;
  border: 1px solid #a9e44d;
  color: #a9e44d !important;
}

html[color-schema="color-brown"] .new-cite-controls-btn svg path {
  fill: #a9e44d;
}

html[color-schema="color-brown"] .main-news-bg,
html[color-schema="color-brown"] .gray-section-bg {
  background-color: #3b2716;
}

html[color-schema="color-brown"] .bg-gray-light,
html[color-schema="color-brown"] .bg-base,
html[color-schema="color-brown"] .icons,
html[color-schema="color-brown"] .bg-gray,
html[color-schema="color-brown"] .bg-gray-color,
html[color-schema="color-brown"] .bg-gray-dark,
html[color-schema="color-brown"] .bg-gray-0,
html[color-schema="color-brown"] .page-layer,
html[color-schema="color-brown"] .layer-top,
html[color-schema="color-brown"] .bg-gray-dark-2,
html[color-schema="color-brown"] .post-list.event_closest,
html[color-schema="color-brown"] .bg-text-box.bg-gray {
  background-color: #3b2716 !important;
}

html[color-schema="color-brown"] .docs-preview__box--inner:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#3b2716), to(#3b2716));
  background: -webkit-linear-gradient(top, #3b2716 0%, #3b2716 100%);
  background: linear-gradient(to bottom, #3b2716 0%, #3b2716 100%);
}

html[color-schema="color-brown"] .close {
  opacity: 1;
}

html[color-schema="color-brown"] .dropdown-menu,
html[color-schema="color-brown"] .media-block .tabs-nav-wrap .nav-tabs > li.active:hover > a,
html[color-schema="color-brown"] .media-block .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-schema="color-brown"] .table-tender__item,
html[color-schema="color-brown"] .email-list--top li,
html[color-schema="color-brown"] .header__search-form .bootstrap-select,
html[color-schema="color-brown"] .two-date:hover input.form-control {
  border-color: #a9e44d !important;
}

html[color-schema="color-brown"] .Zebra_DatePicker,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_header,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_daypicker td,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_daypicker th,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_monthpicker td,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_monthpicker th,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_yearpicker td,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_yearpicker th,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_timepicker td,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_timepicker th {
  background-color: #3b2716;
  color: #a9e44d !important;
  border-color: #a9e44d !important;
}

html[color-schema="color-brown"] .Zebra_DatePicker table td.dp_disabled,
html[color-schema="color-brown"] .Zebra_DatePicker table td.dp_not_in_month,
html[color-schema="color-brown"] .Zebra_DatePicker table td.dp_not_in_month_selectable {
  opacity: 0.4;
}

html[color-schema="color-brown"] .Zebra_DatePicker .dp_header td,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_header .dp_previous span:before,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_header .dp_next span:before,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_header .dp_prev span:before,
html[color-schema="color-brown"] .press-center-tag-count-inner {
  color: #a9e44d;
}

html[color-schema="color-brown"] .popover {
  color: #a9e44d;
  background-color: #3b2716;
  border-color: #a9e44d !important;
}

html[color-schema="color-brown"] .popover.bottom > .arrow {
  border-bottom-color: #a9e44d !important;
}

html[color-schema="color-brown"] .popover.bottom > .arrow:after {
  border-bottom-color: #3b2716;
}

html[color-schema="color-brown"] .ya-share2__item .ya-share2__icon,
html[color-schema="color-brown"] .ya-share2__item:hover .ya-share2__icon {
  color: #a9e44d;
  border-color: #a9e44d;
}

html[color-schema="color-brown"] .header__top-panel {
  border-bottom: 1px solid #a9e44d;
  border-top: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .header {
  border-bottom: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .block-douwnload-md .doc-icon {
  border-right: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .form-group--placeholder-fix.placeholder-fix-textarea label.placeholder {
  -webkit-box-shadow: none;
  box-shadow: none;
}

html[color-schema="color-brown"] .bg-box,
html[color-schema="color-brown"] .doc-text {
  border: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .page-layer:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#3b2716), to(#3b2716));
  background: -webkit-linear-gradient(top, #3b2716 0%, #3b2716 100%);
  background: linear-gradient(to bottom, #3b2716 0%, #3b2716 100%);
}

html[color-schema="color-brown"] .text-white,
html[color-schema="color-brown"] .text-max-light,
html[color-schema="color-brown"] .text-md,
html[color-schema="color-brown"] .text-base,
html[color-schema="color-brown"] .text-light,
html[color-schema="color-brown"] .text-dark,
html[color-schema="color-brown"] .text-black,
html[color-schema="color-brown"] .text-gray,
html[color-schema="color-brown"] .header__widget-list > li > a,
html[color-schema="color-brown"] .header__widget-list > li > a i,
html[color-schema="color-brown"] .header-nav > li a:hover,
html[color-schema="color-brown"] .header-nav > li > a.active,
html[color-schema="color-brown"] a.media-tab-ell:hover,
html[color-schema="color-brown"] a.media-tab-ell:hover .media-play-btn,
html[color-schema="color-brown"] a.media-tab-ell:hover .media-play-btn i,
html[color-schema="color-brown"] .tabs-container__content li a,
html[color-schema="color-brown"] .footer__send-wrong i,
html[color-schema="color-brown"] .footer__net-list a,
html[color-schema="color-brown"] .footer__net-list a:hover,
html[color-schema="color-brown"] .footer .copyright i,
html[color-schema="color-brown"] .header__link-home i,
html[color-schema="color-brown"] .link-list-sites i,
html[color-schema="color-brown"] .rate_star:after,
html[color-schema="color-brown"] .rate_star.checked:after,
html[color-schema="color-brown"] .header-nav > li.active a,
html[color-schema="color-brown"] .rate_star.over:after,
html[color-schema="color-brown"] input.form-control,
html[color-schema="color-brown"] textarea.form-control,
html[color-schema="color-brown"] .rss-link,
html[color-schema="color-brown"] .text-prime,
html[color-schema="color-brown"] .close,
html[color-schema="color-brown"] .header__link-home,
html[color-schema="color-brown"] .link-list-sites,
html[color-schema="color-brown"] .breadcrumb .home:after,
html[color-schema="color-brown"] .color,
html[color-schema="color-brown"] .form-group--placeholder-fix .placeholder,
html[color-schema="color-brown"] .breadcrumb > li a,
html[color-schema="color-brown"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-schema="color-brown"] .tabs-nav-wrap .nav-tabs > li:hover > a,
html[color-schema="color-brown"] .page-content,
html[color-schema="color-brown"] .header-nav > li.open > a,
html[color-schema="color-brown"] .icon-text-light,
html[color-schema="color-brown"] .text-max-light-2,
html[color-schema="color-brown"] .color-blue {
  color: #a9e44d !important;
}

html[color-schema="color-brown"] .bg-box .text-white {
  background-color: #3b2716;
  padding: 3px;
}

html[color-schema="color-brown"] a:hover,
html[color-schema="color-brown"] a:focus,
html[color-schema="color-brown"] a:active {
  text-decoration: underline;
}

html[color-schema="color-brown"] .play-button,
html[color-schema="color-brown"] .play-button:hover {
  border-color: transparent transparent transparent #a9e44d;
}

html[color-schema="color-brown"] .color-bg-block,
html[color-schema="color-brown"] .tabs-container__content,
html[color-schema="color-brown"] .tabs-container__content li a,
html[color-schema="color-brown"] input.form-control,
html[color-schema="color-brown"] textarea.form-control,
html[color-schema="color-brown"] .rss-link {
  background-color: #3b2716;
}

html[color-schema="color-brown"] a.link-bg-color,
html[color-schema="color-brown"] .border-block-sm {
  border: 1px solid #a9e44d;
}

html[color-schema="color-brown"] a.link-bg-color,
html[color-schema="color-brown"] .border-block-sm,
html[color-schema="color-brown"] a.link-bg-color:hover,
html[color-schema="color-brown"] .border-block-sm:hover,
html[color-schema="color-brown"] a.link-bg-color:focus,
html[color-schema="color-brown"] .border-block-sm:focus,
html[color-schema="color-brown"] a.link-bg-color:active,
html[color-schema="color-brown"] .border-block-sm:active {
  background-color: #3b2716;
  color: #a9e44d;
}

html[color-schema="color-brown"] .wrap-media-video:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#3b2716));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #3b2716 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #3b2716 100%);
}

html[color-schema="color-brown"] .list-services__item,
html[color-schema="color-brown"] .list-services__item:hover,
html[color-schema="color-brown"] .list-services__item:focus,
html[color-schema="color-brown"] .list-services__item:active {
  border-color: #a9e44d;
  color: #a9e44d;
}

html[color-schema="color-brown"] .list-services__item span,
html[color-schema="color-brown"] .list-services__item:hover span,
html[color-schema="color-brown"] .list-services__item:focus span,
html[color-schema="color-brown"] .list-services__item:active span {
  color: inherit;
}

html[color-schema="color-brown"] .list-services__item i,
html[color-schema="color-brown"] .list-services__item:hover i,
html[color-schema="color-brown"] .list-services__item:focus i,
html[color-schema="color-brown"] .list-services__item:active i {
  color: #a9e44d;
}

html[color-schema="color-brown"] a,
html[color-schema="color-brown"] .a {
  color: #a9e44d;
}

html[color-schema="color-brown"] a.link-color:hover,
html[color-schema="color-brown"] .a.link-color:hover,
html[color-schema="color-brown"] a.link-color:focus,
html[color-schema="color-brown"] .a.link-color:focus,
html[color-schema="color-brown"] a.link-color:active,
html[color-schema="color-brown"] .a.link-color:active,
html[color-schema="color-brown"] a.link-color.active,
html[color-schema="color-brown"] .a.link-color.active {
  text-decoration: underline;
  color: #a9e44d;
}

html[color-schema="color-brown"] a.link-color:hover,
html[color-schema="color-brown"] .a.link-color:hover,
html[color-schema="color-brown"] a.link-color:focus,
html[color-schema="color-brown"] .a.link-color:focus,
html[color-schema="color-brown"] a.link-color:active,
html[color-schema="color-brown"] .a.link-color:active,
html[color-schema="color-brown"] a.link-color.active,
html[color-schema="color-brown"] .a.link-color.active,
html[color-schema="color-brown"] a.link-color:hover i,
html[color-schema="color-brown"] .a.link-color:hover i,
html[color-schema="color-brown"] a.link-color:focus i,
html[color-schema="color-brown"] .a.link-color:focus i,
html[color-schema="color-brown"] a.link-color:active i,
html[color-schema="color-brown"] .a.link-color:active i,
html[color-schema="color-brown"] a.link-color.active i,
html[color-schema="color-brown"] .a.link-color.active i {
  color: #a9e44d;
}

html[color-schema="color-brown"] a:hover,
html[color-schema="color-brown"] .a:hover,
html[color-schema="color-brown"] a:focus,
html[color-schema="color-brown"] .a:focus,
html[color-schema="color-brown"] a:active,
html[color-schema="color-brown"] .a:active,
html[color-schema="color-brown"] a.active,
html[color-schema="color-brown"] .a.active {
  color: #a9e44d;
  text-decoration: underline;
}

html[color-schema="color-brown"] .active > .link-color,
html[color-schema="color-brown"] .Zebra_DatePicker_Icon,
html[color-schema="color-brown"] .Zebra_DatePicker table td.dp_current,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_footer td.dp_today,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_footer td.dp_clear,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_header td.dp_hover,
html[color-schema="color-brown"] .Zebra_DatePicker .dp_daypicker th,
html[color-schema="color-brown"] .spoiler-box:hover .spoiler-box__btn,
html[color-schema="color-brown"] .spoiler-box .spoiler-box__btn,
html[color-schema="color-brown"] .spoiler-box p,
html[color-schema="color-brown"] .spoiler-box,
html[color-schema="color-brown"] .text-gray-nn {
  color: #a9e44d;
}

html[color-schema="color-brown"] .spoiler-box:hover > .spoiler-box__btn > .spoiler-box__carret,
html[color-schema="color-brown"] .spoiler-box .spoiler-box__carret,
html[color-schema="color-brown"] .border-block-sm,
html[color-schema="color-brown"] .bg-block-sm--border {
  border-color: #a9e44d !important;
}

html[color-schema="color-brown"] .border-block-sm,
html[color-schema="color-brown"] .bg-block-sm--border {
  -webkit-box-shadow: none;
  box-shadow: none;
}

html[color-schema="color-brown"] .Zebra_DatePicker table td.dp_hover,
html[color-schema="color-brown"] .Zebra_DatePicker table td.dp_selected,
html[color-schema="color-brown"] .spoiler-box .spoiler-box__carret:before,
html[color-schema="color-brown"] .spoiler-box__carret:after {
  background-color: #3b2716 !important;
}

html[color-schema="color-brown"] .btn.btn-collapsed i,
html[color-schema="color-brown"] .service-pop-preview .icon:before {
  color: #a9e44d !important;
}

html[color-schema="color-brown"] .media-tab-ell .news-title:before {
  -webkit-box-shadow: 0 10px 30px 25px #3b2716;
  box-shadow: 0 10px 30px 25px #3b2716;
}

html[color-schema="color-brown"] .header-nav > li > a:after,
html[color-schema="color-brown"] .aside__list-nav > li.active > a:after,
html[color-schema="color-brown"] .news-prime-blok__hr {
  background-color: #a9e44d;
}

html[color-schema="color-brown"] .custom-pagination li a,
html[color-schema="color-brown"] .custom-pagination li span {
  color: #a9e44d !important;
  border-color: #a9e44d !important;
  background-color: #3b2716 !important;
}

html[color-schema="color-brown"] .dropdown-menu > li > a {
  color: #a9e44d !important;
  background-color: #3b2716 !important;
}

html[color-schema="color-brown"] .dropdown-menu > li > a:after,
html[color-schema="color-brown"] .block-douwnload-md .doc-icon-bg {
  background-color: #a9e44d !important;
}

html[color-schema="color-brown"] .tabs-nav-wrap,
html[color-schema="color-brown"] .border-top,
html[color-schema="color-brown"] .tabs-nav-wrap .nav-tabs > li.active > a,
html[color-schema="color-brown"] .tabs-nav-wrap .nav-tabs > li:hover > a,
html[color-schema="color-brown"] .layer-link--map,
html[color-schema="color-brown"] .header__bottom-panel,
html[color-schema="color-brown"] #media_content_all .media-tab-ell,
html[color-schema="color-brown"] .media-tab-ell,
html[color-schema="color-brown"] .tabs-container__content,
html[color-schema="color-brown"] .footer__send-wrong i,
html[color-schema="color-brown"] input.form-control,
html[color-schema="color-brown"] textarea.form-control,
html[color-schema="color-brown"] .rss-link,
html[color-schema="color-brown"] textarea.form-control:hover,
html[color-schema="color-brown"] input.form-control:hover,
html[color-schema="color-brown"] .aside__list-nav,
html[color-schema="color-brown"] .border-block,
html[color-schema="color-brown"] .block-douwnload-md,
html[color-schema="color-brown"] .post-list {
  border-color: #a9e44d !important;
}

html[color-schema="color-brown"] .btn,
html[color-schema="color-brown"] .jq-file__browse,
html[color-schema="color-brown"] .btn:focus,
html[color-schema="color-brown"] .jq-file__browse:focus,
html[color-schema="color-brown"] .btn:hover,
html[color-schema="color-brown"] .jq-file__browse:hover,
html[color-schema="color-brown"] .btn:active,
html[color-schema="color-brown"] .jq-file__browse:active,
html[color-schema="color-brown"] .btn.active,
html[color-schema="color-brown"] .jq-file__browse.active,
html[color-schema="color-brown"] .btn.focus,
html[color-schema="color-brown"] .jq-file__browse.focus {
  background-color: #3b2716 !important;
  border-color: #a9e44d !important;
  color: #a9e44d !important;
}

html[color-schema="color-brown"] .btn:hover,
html[color-schema="color-brown"] .jq-file__browse:hover {
  text-decoration: underline;
}

html[color-schema="color-brown"] .section {
  border-bottom: 1px solid #a9e44d !important;
  margin: 0 !important;
  padding-bottom: 80px !important;
  padding-top: 80px !important;
}

html[color-schema="color-brown"] .section.main-section--list-nav {
  padding-top: 15px !important;
}

html[color-schema="color-brown"] .footer {
  border-top: 1px solid #a9e44d !important;
}

html[color-schema="color-brown"] ::-webkit-input-placeholder,
html[color-schema="color-brown"] .custom-pagination li a:hover,
html[color-schema="color-brown"] .custom-pagination li.active a {
  color: #a9e44d;
}

html[color-schema="color-brown"] ::-moz-placeholder,
html[color-schema="color-brown"] .custom-pagination li a:hover,
html[color-schema="color-brown"] .custom-pagination li.active a {
  color: #a9e44d;
}

html[color-schema="color-brown"] ::-webkit-input-placeholder {
  color: #a9e44d;
}

html[color-schema="color-brown"] ::-moz-placeholder {
  color: #a9e44d;
}

html[color-schema="color-brown"] :-ms-input-placeholder {
  color: #a9e44d;
}

html[color-schema="color-brown"] ::-ms-input-placeholder {
  color: #a9e44d;
}

html[color-schema="color-brown"] ::placeholder,
html[color-schema="color-brown"] .custom-pagination li a:hover,
html[color-schema="color-brown"] .custom-pagination li.active a {
  color: #a9e44d;
}

html[color-schema="color-brown"] .docs-preview__box--inner:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#3b2716), to(#3b2716));
  background: -webkit-linear-gradient(top, #3b2716 0%, #3b2716 100%);
  background: linear-gradient(to bottom, #3b2716 0%, #3b2716 100%);
}

html[color-schema="color-brown"] .form-group--placeholder-fix.placeholder-fix-textarea label.placeholder {
  background-color: #3b2716;
}

html[color-schema="color-brown"] .calendar--prev-arrow,
html[color-schema="color-brown"] .calendar--next-arrow,
html[color-schema="color-brown"] .tag,
html[color-schema="color-brown"] .tags-list a,
html[color-schema="color-brown"] .tag:hover,
html[color-schema="color-brown"] .tags-list a:hover,
html[color-schema="color-brown"] .tag:focus,
html[color-schema="color-brown"] .tags-list a:focus {
  background-color: #3b2716;
  border-color: #a9e44d;
  color: #a9e44d;
}

html[color-schema="color-brown"] .calendar#main-calendar-widget .event {
  background-color: #3b2716;
}

html[color-schema="color-brown"] .dropdown-menu > li > a {
  color: #a9e44d;
}

html[color-schema="color-brown"] .dropdown-menu > li > a:hover,
html[color-schema="color-brown"] .dropdown-menu > li > a:focus {
  background-color: #3b2716;
  color: #a9e44d;
}

html[color-schema="color-brown"] .jq-radio,
html[color-schema="color-brown"] .jq-checkbox,
html[color-schema="color-brown"] .jq-radio.checked,
html[color-schema="color-brown"] .jq-checkbox.checked {
  background-color: #3b2716;
  border-color: #a9e44d;
}

html[color-schema="color-brown"] .jq-radio.disabled,
html[color-schema="color-brown"] .jq-checkbox.disabled,
html[color-schema="color-brown"] .jq-radio.disabled.checked,
html[color-schema="color-brown"] .jq-checkbox.disabled.checked {
  opacity: 0.4;
}

html[color-schema="color-brown"] .wrap-check:hover .jq-radio,
html[color-schema="color-brown"] .wrap-check:hover .jq-checkbox,
html[color-schema="color-brown"] .block-douwnload-md .doc-icon:after {
  background-color: #3b2716;
  border-color: #a9e44d;
}

html[color-schema="color-brown"] .block-douwnload-md {
  border: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .wrap-check:hover label {
  text-decoration: underline;
  color: #a9e44d;
}

html[color-schema="color-brown"] .disabled + label,
html[color-schema="color-brown"] .disabled.checked + label,
html[color-schema="color-brown"] .wrap-check:hover .disabled + label {
  text-decoration: none;
  color: #a9e44d;
  opacity: 0.6;
}

html[color-schema="color-brown"] .checked + label,
html[color-schema="color-brown"] .form-group.error label.error {
  color: #a9e44d;
}

/* миксин для шрифта в rem */
.indent-col-9 {
  padding-left: 7px;
  padding-right: 7px;
}

.indent-col-9 .col-lg-1,
.indent-col-9 .col-lg-10,
.indent-col-9 .col-lg-11,
.indent-col-9 .col-lg-12,
.indent-col-9 .col-lg-2,
.indent-col-9 .col-lg-3,
.indent-col-9 .col-lg-4,
.indent-col-9 .col-lg-5,
.indent-col-9 .col-lg-6,
.indent-col-9 .col-lg-7,
.indent-col-9 .col-lg-8,
.indent-col-9 .col-lg-9,
.indent-col-9 .col-md-1,
.indent-col-9 .col-md-10,
.indent-col-9 .col-md-11,
.indent-col-9 .col-md-12,
.indent-col-9 .col-md-2,
.indent-col-9 .col-md-3,
.indent-col-9 .col-md-4,
.indent-col-9 .col-md-5,
.indent-col-9 .col-md-6,
.indent-col-9 .col-md-7,
.indent-col-9 .col-md-8,
.indent-col-9 .col-md-9,
.indent-col-9 .col-sm-1,
.indent-col-9 .col-sm-10,
.indent-col-9 .col-sm-11,
.indent-col-9 .col-sm-12,
.indent-col-9 .col-sm-2,
.indent-col-9 .col-sm-3,
.indent-col-9 .col-sm-4,
.indent-col-9 .col-sm-5,
.indent-col-9 .col-sm-6,
.indent-col-9 .col-sm-7,
.indent-col-9 .col-sm-8,
.indent-col-9 .col-sm-9,
.indent-col-9 .col-xs-1,
.indent-col-9 .col-xs-10,
.indent-col-9 .col-xs-11,
.indent-col-9 .col-xs-12,
.indent-col-9 .col-xs-2,
.indent-col-9 .col-xs-3,
.indent-col-9 .col-xs-4,
.indent-col-9 .col-xs-5,
.indent-col-9 .col-xs-6,
.indent-col-9 .col-xs-7,
.indent-col-9 .col-xs-8,
.indent-col-9 .col-xs-9 {
  padding-left: 9px;
  padding-right: 9px;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: none;
}

body {
  font-family: "GOSTUI2";
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  color: #231f20;
  padding: 0;
  line-height: 1.31;
  overflow-y: scroll;
  background-color: #ffffff;
}

.main {
  float: left;
  width: 66.66666667%;
}

.main.main--main-page {
  float: none;
  padding-right: 0;
  padding-top: 0px;
  width: 100%;
}

.main--no-aside {
  width: 100%;
  padding-right: 0;
}

@media (min-width: 768px) {
  .main {
    padding-right: 0px;
  }
}

@media (min-width: 992px) {
  .main {
    padding-right: 50px;
  }
}

@media (min-width: 1280px) {
  .main {
    padding-right: 0px;
  }
}

.main-section--list-nav {
  margin-bottom: 15px;
}

/* aside */
.main-aside {
  float: right;
}

.aside {
  position: relative;
  max-width: 320px;
  float: right;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 33.33333333%;
}

.aside__buttons-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.aside__buttons-top > .btn,
.aside__buttons-top > div {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.aside__buttons-top > div:last-child {
  width: auto;
}

.aside__buttons-top .btn {
  min-width: 0;
  border-left-width: 0;
  border-radius: 0;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 0 !important;
}

.aside__buttons-top .btn.btn-favorite {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 54px;
}

.aside__buttons-top .btn i {
  font-size: 20px;
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.aside__buttons-top .btn-favorite i {
  margin-right: 0;
}

.aside__buttons-top > .btn:first-child {
  border-left-width: 1px;
}

.aside p {
  margin-bottom: 5px;
}

.aside__box {
  margin-bottom: 28px;
}

.aside__box > p:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.aside__box.aside__buttons-top {
  margin-bottom: 27px;
}

.aside .aside-link-photo {
  display: block;
}

.aside .aside-link-photo .name {
  font-weight: 500;
}

.aside div.aside-link-photo .text-arrow-right i {
  display: none;
}

.aside__box-photo {
  position: relative;
  margin-left: -30px;
  margin-right: -30px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.aside__box-photo .photo-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  overflow: hidden;
}

.aside__box-photo .photo-wrap img {
  width: 100%;
  height: auto;
}

.aside__list-nav {
  padding: 0;
  border-left: 1px solid #d5dae0;
  list-style: none;
}

.aside__list-nav,
.aside__list-nav ul {
  padding-left: 25px;
}

.aside__list-nav ul {
  display: none;
}

.aside__list-nav a {
  position: relative;
  display: block;
  padding: 12px 0 12px;
  line-height: 1.2;
}

.aside__list-nav > li > ul > li > ul a {
  font-weight: 400;
  padding: 8px 0 8px;
}

.aside__list-nav > li > ul a:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  letter-spacing: 1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  color: #c7c7c7;
  font-size: 10px;
  position: absolute;
  left: -25px;
  top: 14px;
}

.aside__list-nav > li > ul > li > ul a:before {
  top: 10px;
}

.aside__list-nav > li > ul a {
  font-weight: 500;
}

.aside__list-nav > li > a,
.aside__list-nav > li > .item-wrap a {
  padding: 18px 0 18px;
  font-weight: 500;
}

.aside__list-nav > li > ul {
  font-size: 15px;
  font-size: 1.5rem;
  padding-bottom: 25px;
}

.aside__list-nav > li > ul a {
  display: block;
}

.aside__list-nav .item-wrap {
  position: relative;
  padding-right: 50px;
}

.aside__list-nav .active > .item-wrap > .akk-toggle:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.aside__list-nav > li {
  position: relative;
  width: 100%;
  display: block;
}

.aside__list-nav > li:after {
  height: 1px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  content: "";
  background: #e6e7e8;
}

.aside__list-nav > li:last-child:after {
  display: none;
}

.aside__list-nav .akk-toggle {
  left: auto;
  right: 0px;
  top: 50%;
  margin-top: -12px;
  bottom: auto;
}

.aside__list-nav > li > a.active:after,
.aside__list-nav > li > .item-wrap > a.active:after,
.aside__list-nav > li > a.parent-active:after,
.aside__list-nav > li > .item-wrap > a.parent-active:after {
  content: "";
  position: absolute;
  left: -25px;
  top: 0;
  background-color: #0575bc;
  height: 100%;
  width: 4px;
}

.aside-nav__title {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 30px;
  font-weight: 500;
  display: none;
}

.post-content {
  margin-bottom: 30px;
}

/* img-favorite (aside) */
.img-favorite {
  position: relative;
  margin-bottom: 48px;
  margin-top: 25px;
}

.img-favorite:after {
  content: "";
  bottom: 0;
  width: 100%;
  position: absolute;
  left: 0;
  display: block;
  height: 50px;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
}

/* aside-user-header */
.aside-user-header {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.aside-user-header__inner {
  padding-top: 17px;
  padding-bottom: 18px;
  position: relative;
  min-height: 20px;
  padding-left: 40px;
  display: block;
  font-weight: 600;
}

.aside-user-header i {
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  margin-top: -13px;
  height: 26px;
  width: 26px;
  font-size: 26px;
}

/* Выездные слои */
body.page-layer-open {
  overflow: hidden;
  background-color: #f1f2f2;
}

.page-layer {
  position: fixed;
  z-index: 800000000;
  top: -120%;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  background: #ffffff;
  z-index: 1000;
}

.page-layer:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 100;
  height: 50px;
  left: 0;
  right: 0;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
}

.page-layer__inner {
  opacity: 0;
  padding-bottom: 40px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  width: 100%;
  position: absolute;
  top: 151px;
  overflow-y: scroll;
  left: 0;
  bottom: 10px;
  right: 0;
  padding-bottom: 30px;
  padding-top: 70px;
}

.page-layer.open {
  pointer-events: auto;
  -webkit-transform: translate3d(0, 120%, 0);
  transform: translate3d(0, 120%, 0);
}

.page-layer.open .page-layer__inner {
  opacity: 1;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  z-index: 10;
}

.page-layer__header {
  background-color: #f8f8f8;
  padding: 60px 0;
  margin-bottom: 100px;
}

.page-layer__title {
  font-size: 1.5em;
  padding-right: 50px;
  position: relative;
  min-height: 26px;
  font-weight: 500;
}

.layer-top__header {
  position: relative;
  z-index: 1;
}

.layer-top__header .header__search-form-wrap {
  margin-top: 42px;
}

.search__nav-top .tabs-nav-wrap {
  display: none;
}

.search__nav-top .header__search-form-header {
  padding-right: 0 !important;
}

/* выездные слои */
.layer-top {
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f1f2f2;
  padding-top: 20px;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.layer-top.panel-search {
  overflow: visible;
}

.layer-top.panel-search .title {
  min-height: 45px;
}

.layer-top.panel-search.open {
  z-index: 50;
}

.layer-top.panel-search .tabs-nav-wrap {
  display: none;
}

.layer-top.panel-full {
  height: calc(100vh - 140px);
  padding-top: 0px;
}

.layer-top.panel-full .layer-top__bottom {
  margin-top: 60px;
}

.layer-top__inner {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  right: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}

.layer-top__header {
  position: relative;
  padding-right: 115px;
}

.layer-top__header .close-top-layer {
  top: 0;
}

.layer-top__header .title {
  margin-top: 0;
  margin-bottom: 0;
}

.layer-top__bottom {
  margin-top: 25px;
}

.layer-top.panel-small {
  height: 385px;
}

.layer-top.panel-full:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 100;
  height: 50px;
  left: 0;
  right: 0;
  background: -webkit-linear-gradient(top, rgba(247, 249, 252, 0) 0%, #f7f9fc 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 249, 252, 0)), to(#f7f9fc));
  background: linear-gradient(to bottom, rgba(247, 249, 252, 0) 0%, #f7f9fc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00f7f9fc', endColorstr='#f1f2f2', GradientType=0);
}

.layer-top .part-anim {
  opacity: 0;
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-transition: -webkit-transform 0.3s ease-out 0.8s, opacity 0.2s linear 0s;
  -webkit-transition: opacity 0.2s linear 0s, -webkit-transform 0.3s ease-out 0.8s;
  transition: opacity 0.2s linear 0s, -webkit-transform 0.3s ease-out 0.8s;
  transition: transform 0.3s ease-out 0.8s, opacity 0.2s linear 0s;
  transition: transform 0.3s ease-out 0.8s, opacity 0.2s linear 0s, -webkit-transform 0.3s ease-out 0.8s;
}

.layer-top.open {
  z-index: 2;
  display: block;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.layer-top.open .part-anim {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.4s linear;
  -webkit-transition: opacity 0.4s linear, -webkit-transform 0.3s ease-out;
  transition: opacity 0.4s linear, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.4s linear;
  transition: transform 0.3s ease-out, opacity 0.4s linear, -webkit-transform 0.3s ease-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.layer-top.open .part-anim.part-anim-1 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.layer-top.open .part-anim.part-anim-2 {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.layer-top.open .part-anim.part-anim-3 {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.layer-top.open .part-anim.part-anim-4 {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.layer-top.open .part-anim.part-anim-5 {
  -webkit-transition-delay: 0.12s;
  transition-delay: 0.12s;
}

.layer-top-open {
  overflow: hidden;
}

.layer-top-open:not(.open-panel-small) {
  background-color: #f1f2f2;
}

.layer-top-open .header {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  margin-bottom: 0px;
  padding-top: calc(100vh - 140px);
}

.layer-top-open.open-panel-small {
  overflow: auto;
}

.layer-top-open.open-panel-small .header {
  padding-top: 385px;
}

/* panel-blind */
.panel-blind .layer-top__bottom {
  margin-top: 40px;
}

.panel-blind__tablet-info {
  display: none;
  margin-top: 20px;
}

.panel-blind__setting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 25px;
}

.panel-blind__box {
  margin-right: 85px;
}

.panel-blind__box:last-child {
  margin-right: 0;
}

.panel-blind .setting-box {
  font-size: 0;
  margin-bottom: 30px;
}

.panel-blind .setting-box .btn:last-child {
  margin-right: 0;
}

.panel-blind .setting-box .title {
  font-size: 18px;
  font-size: 1.8rem;
  min-height: 35px;
}

.panel-blind .setting-box .btn.color-black {
  background-color: #000000 !important;
  color: #ffffff !important;
}

.panel-blind .setting-box .btn.color-white {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.panel-blind .setting-box .btn.color-blue {
  background-color: #9dd1ff !important;
  color: #063462 !important;
}

.panel-blind .setting-box .btn.color-beige {
  background-color: #f7f3d6 !important;
  color: #4d4b43 !important;
}

.panel-blind .setting-box .btn.color-brown {
  background-color: #3b2716 !important;
  color: #a9e44d !important;
}

.panel-blind .setting-box .btn-font.size-sm {
  font-size: 16px;
}

.panel-blind .setting-box .btn-font.size-md {
  font-size: 22px;
}

.panel-blind .setting-box .btn-font.size-lg {
  font-size: 30px;
}

.panel-blind .setting-box .btn-kerning.size-sm {
  letter-spacing: 0;
}

.panel-blind .setting-box .btn-kerning.size-md {
  letter-spacing: 2px;
}

.panel-blind .setting-box .btn-kerning.size-lg {
  letter-spacing: 5px;
}

.panel-blind .setting-box .btn {
  height: 50px;
  padding: 5px 18px;
  line-height: 35px;
  white-space: nowrap;
  border-width: 3px;
  min-width: 50px;
  margin-right: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}

.panel-blind .setting-box .btn-garniture,
.panel-blind .setting-box .btn-kerning,
.panel-blind .setting-box .btn-img {
  min-width: 140px;
}

.panel-blind .setting-box .btn-color,
.panel-blind .setting-box .btn-font {
  width: 50px;
  min-width: 0;
  padding-right: 5px;
  padding-left: 5px;
}

.panel-blind .setting-box .default-site-version {
  width: 100%;
  min-width: 250px;
}

.btn-black-border {
  border: 3px solid #000000;
  color: #000000;
}

.btn-black-border:hover,
.btn-black-border.focus,
.btn-black-border.active,
.btn-black-border.active:hover,
.btn-black-border.active:focus,
.btn-black-border:focus {
  border-color: #0575bc;
  color: #000000;
}

.btn-black {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn-black:hover,
.btn-black:focus,
.btn-black.active,
.btn-black.active:hover,
.btn-black.active:focus,
.btn-black:focus {
  border-color: #0575bc;
  background-color: #0575bc;
  color: #ffffff;
}

.btn-icon i {
  font-size: 14px;
  font-size: 1.4rem;
}

.spoiler-box-list .spoiler-box {
  margin: 0;
  margin-bottom: 15px;
}

/* svg-map */
.map-section {
  position: relative;
  z-index: 10;
}

.map-wrap {
  position: relative;
  width: 100%;
  margin: 0;
  top: -40px;
  margin-bottom: -40px;
}

.map-svg svg {
  max-width: 100%;
  overflow: hidden;
}

#map-bubble {
  position: absolute;
}

@media (max-width: 767px) {
  #map-bubble {
    left: 50% !important;
    right: auto !important;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

#map-bubble .regiontitle {
  font-weight: 500;
}

#map-bubble .regiontitle {
  padding: 8px 25px 10px;
}

.map-wrap #info-wind {
  visibility: hidden;
  opacity: 0;
  border-radius: 4px;
  position: absolute;
  right: 50px;
  top: 140px;
  width: 100%;
  max-width: 480px;
  padding: 45px 50px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 3px 30px 0px rgba(1, 46, 154, 0.15);
  box-shadow: 0 3px 30px 0px rgba(1, 46, 154, 0.15);
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.map-wrap #info-wind .wind-sub {
  font-weight: 500;
  margin-top: 20px;
}

.map-wrap #info-wind .wind-link {
  margin-top: 30px;
  min-width: 250px;
}

.map-wrap #info-wind .close {
  position: relative;
  top: 4px;
}

.map-wrap #info-wind .wind-name {
  padding-right: 25px;
}

.map-wrap #info-wind.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.region-list li {
  padding-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.buy-list {
  margin-bottom: 50px;
  margin-bottom: 5rem;
}

/* layer-link */
.layer-link {
  padding-right: 40px;
  margin-bottom: 65px;
}

.layer-link__title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 20px;
  display: block;
}

.layer-link__list li {
  padding-top: 25px;
}

.layer-link--map {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.layer-link--map .layer-link__title {
  border: 0;
  padding-bottom: 30px;
  font-size: 24px;
  font-size: 2.4rem;
}

.layer-link--map .layer-link__list {
  padding-top: 4px;
}

.layer-link--map li {
  padding-top: 5px;
  padding-bottom: 15px;
}

.last-no-border > div:last-child {
  border: 0 !important;
}

.sitemap-full {
  margin-top: 70px;
}

.sitemap-full .layer-link__list {
  margin-top: 0;
  padding-top: 35px;
  padding-bottom: 35px;
}

.sitemap-full .layer-link__list > li:last-child {
  padding-bottom: 10px;
}

.sitemap-full .layer-link--map > ul > li ul {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 0;
}

.sitemap-full .layer-link--map > ul > li > ul > li a:before {
  content: "—";
  display: inline-block;
  margin-right: 5px;
}

.sitemap-full .layer-link--map > ul > li ul:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.sitemap-full .layer-link--map .layer-link__list .layer-link__list {
  border: none !important;
  background: transparent !important;
}

.sitemap-full .layer-link {
  padding-right: 0;
}

/* HEADER */
.header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1500;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  position: relative;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding-top: 0;
  height: 156px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  background: #ffffff;
}

.header__link-lang .dropdown-menu > li a {
  padding: 8px 20px;
}

.header__link-lang .dropdown-menu > li:first-child a {
  padding-top: 10px;
}

.header__link-lang .dropdown-menu {
  margin-top: 10px;
}

.header__link-lang .dropdown-menu > li:last-child a {
  padding-bottom: 10px;
}

.header__link-lang .btn-lang.dropdown-toggle {
  padding-right: 25px;
}

.header__link-lang .icon-right-arrow {
  font-size: 9px;
  position: absolute;
  right: 0;
  top: auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
  margin: 0;
}

.header__link-lang.open .btn-lang .icon-right-arrow {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.header__bottom-panel {
  z-index: 4;
  position: relative;
  height: 106px;
  border-bottom: 1px solid #e6e7e8;
}

.header .wiget-list {
  font-size: 14px;
  height: 50px;
}

.header__search-form-header {
  padding-right: 200px;
  position: relative;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__search-form-header .tabs-nav-wrap {
  border: 0;
  margin-bottom: 0;
}

.header__search-form-header .tabs-nav-wrap .nav-tabs {
  width: auto !important;
}

.header__main-nav {
  position: relative;
  margin-right: -15px;
  height: 105px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 0 !important;
}

.header__main-nav .header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 380px;
}

.header__widget-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
}

.header__widget-list > li {
  display: block;
  margin-left: 40px;
  position: relative;
  vertical-align: top;
}

.header__widget-list > li img {
  height: 20px;
  margin-right: 10px;
  top: 2px;
  position: relative;
  max-height: 15px;
  width: auto;
}

.header__widget-list > li > a {
  color: #ffffff;
  white-space: nowrap;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__widget-list > li > a i {
  color: #ffffff;
  margin-right: 10px;
  display: block;
  position: relative;
  top: -1px;
  font-size: 18px;
}

.header__widget-list > li > a:hover,
.header__widget-list > li > a.act {
  opacity: 0.7;
  color: #ffffff;
}

.header__widget-list > li > a:hover i,
.header__widget-list > li > a.act i {
  color: #ffffff;
}

.header__widget-list .dropdown-menu {
  min-width: 80px;
  font-size: inherit;
}

.header__top-panel {
  text-align: right;
  position: relative;
  z-index: 99999;
}

.header__blind-btn .btn span {
  position: relative;
  top: 1px;
}

.header-wrap {
  position: relative;
}

.header-wrap.topbar-align-window .header__top-panel > .container,
.header-wrap.topbar-align-window .header__bottom-panel > .container {
  width: 100%;
}

.header-wrap.anim .header-fix {
  top: -100px;
  bottom: auto;
  position: fixed;
}

.header-wrap.fix .header-fix {
  top: 0;
  bottom: auto;
  position: fixed;
}

.header-wrap.fix.shadow .header-fix {
  -webkit-box-shadow: 0 0px 20px 0px rgba(19, 31, 42, 0.2);
  box-shadow: 0 0px 20px 0px rgba(19, 31, 42, 0.2);
}

.header-wrap .header-fix {
  -webkit-transition: top 0.2s linear, -webkit-box-shadow 0.5s linear;
  transition: top 0.2s linear, -webkit-box-shadow 0.5s linear;
  transition: top 0.2s linear, box-shadow 0.5s linear;
  transition: top 0.2s linear, box-shadow 0.5s linear, -webkit-box-shadow 0.5s linear;
  position: absolute;
  bottom: 0;
  left: 0;
  top: auto;
  width: 100%;
  z-index: 9999;
  -webkit-box-shadow: 0 0px 0px 0px rgba(19, 31, 42, 0);
  box-shadow: 0 0px 0px 0px rgba(19, 31, 42, 0);
}

.paymentsB {
  border-bottom: 1px solid #D5DAE0;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.paymentsB p {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #231F20;
}

@media (max-width: 1270px) {
  .paymentsB p {
    font-size: 16px;
    line-height: 22px;
  }
}

.paymentsB__text {
  margin-bottom: 40px !important;
}

.paymentsB__block {
  width: 100%;
  padding: 30px 30px 50px 30px;
  background: #F2F2F2;
}

@media (max-width: 1270px) {
  .paymentsB__block {
    padding: 20px 20px 35px 20px;
  }
}

.paymentsB__info {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #e0efee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 1650px) {
  .paymentsB__info {
    width: 90px;
    height: 90px;
  }
  .paymentsB__info svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 1270px) {
  .paymentsB__info {
    width: 60px;
    height: 60px;
  }
  .paymentsB__info svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 991px) {
  .paymentsB__info {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }
  .paymentsB__info svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 469px) {
  .paymentsB__info {
    width: 90px;
    height: 90px;
  }
}

.paymentsB__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 1270px) {
  .paymentsB__item br {
    display: none;
  }
}

@media (max-width: 991px) {
  .paymentsB__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 740px) {
  .paymentsB__item {
    width: 60%;
  }
}

@media (max-width: 568px) {
  .paymentsB__item {
    width: 80%;
  }
}

@media (max-width: 380px) {
  .paymentsB__item {
    width: 83%;
  }
}

.paymentsB__content {
  width: 18.8%;
  position: relative;
  z-index: 10;
}

@media (max-width: 991px) {
  .paymentsB__content {
    width: 45%;
    margin-bottom: 30px;
  }
  .paymentsB__content:nth-child(5) {
    margin-bottom: 0 !important;
  }
}

.paymentsB__content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #231F20;
}

@media (max-width: 1270px) {
  .paymentsB__content p {
    font-size: 12px;
    line-height: 22px;
  }
}

@media (max-width: 991px) {
  .paymentsB__content p {
    font-size: 12px;
    line-height: 18px;
  }
}

.paymentsB__line {
  width: 90%;
  position: absolute;
  border: 1px dashed #0C6E8C;
  top: 27%;
  right: 8%;
  z-index: 1;
}

@media (max-width: 1650px) {
  .paymentsB__line {
    top: 22%;
  }
}

@media (max-width: 1270px) {
  .paymentsB__line {
    top: 14%;
  }
}

@media (max-width: 992px) {
  .paymentsB__line {
    display: none;
  }
}

.paymentsB__lineMob {
  position: absolute;
  width: 113%;
  top: 6%;
  height: 78%;
  left: -15%;
  display: none;
}

@media (max-width: 991px) {
  .paymentsB__lineMob {
    width: 110%;
    height: 73%;
    display: block;
    left: -5%;
    top: 20px;
  }
}

@media (max-width: 469px) {
  .paymentsB__lineMob {
    width: 115%;
    top: 4%;
    height: 78%;
    left: -10%;
  }
}

@media (max-width: 401px) {
  .paymentsB__lineMob {
    width: 130%;
    top: 2%;
    height: 78%;
    left: -14%;
  }
}

@media (max-width: 361px) {
  .paymentsB__lineMob {
    width: 131%;
    top: 2%;
    height: 79%;
    left: -16%;
  }
  .main-news-bg .main-news-m-banner {
    height: 330px !important;
  }
}

.paymentsB__lineMob svg {
  width: 100%;
  height: 100%;
}

.navbar-logo {
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  color: inherit;
}

.navbar-logo:hover {
  color: inherit;
}

.logo {
  display: block;
  max-width: 50px;
  margin-right: 20px;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-logo .name-company {
  font-size: 16px;
  line-height: 1;
  top: -1px;
  position: relative;
}

.page-title-prime .name-company {
  line-height: 1;
  font-size: 4.8rem;
}

.footer .footer-logo-text .name-company {
  padding-right: 20px;
  line-height: 1;
  font-size: 16px;
}

.btn-blind {
  background: #21272b;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  line-height: 50px;
  width: 320px;
  text-align: center;
  white-space: nowrap;
  border-radius: 0;
  border: 0 !important;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0 10px !important;
}

.btn-blind i {
  margin-right: 10px;
  font-size: 13px;
  line-height: 14px;
}

.btn-blind:hover,
.btn-blind.act {
  background-color: #0575bc;
  color: #ffffff;
}

.header__link-home,
.link-list-sites {
  padding-left: 30px;
}

.header__link-home i,
.link-list-sites i {
  left: 1px;
}

.header__link-home,
.link-list-sites,
.header__link-portal {
  position: relative;
  color: #ffffff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: 14px;
  font-size: 1.4rem;
  float: left;
  line-height: 50px;
  height: 50px;
  white-space: nowrap;
}

.header__link-home.act i,
.link-list-sites.act i,
.header__link-portal.act i {
  color: #ffffff;
}

.header__link-home i,
.link-list-sites i,
.header__link-portal i {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  font-size: 16px;
  display: block;
  font-style: normal;
  color: #ffffff;
}

.header__link-home:hover,
.link-list-sites:hover,
.header__link-portal:hover,
.header__link-home:focus,
.link-list-sites:focus,
.header__link-portal:focus {
  color: #ffffff;
  opacity: 0.7;
}

.header__link-home:hover i,
.link-list-sites:hover i,
.header__link-portal:hover i,
.header__link-home:focus i,
.link-list-sites:focus i,
.header__link-portal:focus i {
  color: #ffffff;
}

.header__link-portal {
  padding-right: 30px;
}

.header__link-portal i {
  right: 0;
  font-size: 14px;
  margin-top: -7px;
}

.link-list-sites.act .icon-menu:before {
  content: "\e910";
}

.header__link-home i {
  font-size: 15px;
}

.header-nav {
  text-align: right;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: static;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  max-width: 100%;
}

.header-nav > li {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 17px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  text-align: center;
  cursor: pointer;
  margin-left: 47px;
}

@media (max-width: 1367px) {
  .header-nav > li {
    margin-left: 35px;
  }
}

@media (max-width: 1025px) {
  .header-nav > li {
    margin-left: 25px;
  }
}

/* @media (max-width: 769px) {
  .header-nav > li:nth-child(3) {
    margin-right: 30px;
  }
} */

.header-nav > li:nth-last-child(-n+2) > a {
  padding-right: 0;
}

/* .header-nav>li:nth-last-child(-n+2)>a:after {
    width: -webkit-calc(100% - 15px);
    width: calc(100% - 15px);
} */
.header-nav > li.dropdown-hover {
  position: relative;
}

.header-nav > li.dropdown-hover--wide {
  position: static;
}

.header-nav > li.dropdown-hover .dropdown-menu {
  left: 15px;
  right: auto;
  min-width: 300px;
  border-top: 0;
}

.header-nav > li.dropdown-click {
  position: static;
}

.header-nav > li.dropdown-click .dropdown-menu-header {
  width: 100%;
  border-top: 0;
}

.header-nav > li > a {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 600;
  height: 105px;
  line-height: 105px;
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
}

@media (max-width: 1367px) {
  .header-nav > li > a {
    font-size: 14px;
  }
}

@media (max-width: 769px) {
  .header-nav > li > a {
    font-size: 12px;
  }
}

.header-nav > li > a:after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 0px;
  bottom: 0px;
  background-color: #0575bc;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.header-nav > li.active > a:after,
.header-nav > li:hover > a:after,
.header-nav > li.open > a:after {
  height: 4px;
}

.dropdown-menu-header .dropdown-menu__inner {
  padding-bottom: 30px;
}

.dropdown-menu-header,
.dropdown-hover-box {
  display: none;
}

.topbar-align-default .dropdown-menu-header .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}

.header-nav-more {
  font-size: 4px;
  color: #8d96a1;
  display: none;
  width: 30px;
  height: 105px;
  position: relative;
  margin-left: 50px;
}

.header-nav-more.active {
  display: block;
  min-width: 25px;
}

.list-division {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
  width: 100%;
  margin-bottom: 25px;
}

.list-division li {
  width: 20%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 30px;
}

.list-division li a {
  display: block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu-header .list-division {
  margin-bottom: 30px;
  border-bottom: 1px solid #d5dae0;
  padding-bottom: 15px;
}

.link-division {
  min-width: 280px;
}

/* btn-gamb */
.btn-gamb {
  width: 18px;
  height: 18px;
  position: absolute;
  display: block;
  top: 50%;
  right: 17%;
  margin-top: -9px;
}

.btn-gamb span {
  display: block;
  position: absolute;
  height: 4px;
  width: 4px;
  background: #006fba;
  border-radius: 50%;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  top: 50%;
  margin-top: -2px;
}

.btn-gamb span:nth-child(1) {
  left: 0;
}

.btn-gamb span:nth-child(2),
.btn-gamb span:nth-child(3) {
  left: 8px;
}

.btn-gamb span:nth-child(4) {
  left: 16px;
}

.act .btn-gamb span {
  width: 100%;
  border-radius: 4px;
  height: 3px;
  margin-top: 0;
}

.act .btn-gamb span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.act .btn-gamb span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 0;
}

.act .btn-gamb span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 0;
}

.act .btn-gamb span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.moblile-close-layer {
  display: none !important;
}

/* panel search */
.close-page-layer i,
.close-top-layer i {
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.close-page-layer,
.close-top-layer {
  color: #3b4255;
  position: absolute;
  right: 0;
  padding-top: 8px;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: 16px;
  font-size: 1.6rem;
}

/* END HEADER */
/* ==== footer ==== */
.main-page .footer {
  background: #f4f7fb;
}

.footer {
  padding: 82px 0 50px;
  margin-top: 80px;
}

.footer__net-list {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 999 !important;
}

.footer__net-list li {
  list-style: none;
  display: inline-block;
  padding-right: 35px;
}

.footer__net-list li:last-child {
  padding-right: 0;
}

.footer__net-list .icon-vk {
  font-size: 14px;
}

.footer__net-list .icon-od {
  font-size: 22px;
}

.footer__net-list .icon-fb {
  font-size: 20px;
}

.footer__net-list .icon-tw {
  font-size: 18px;
}

.footer__net-list .icon-in {
  font-size: 19px;
}

.footer__net-list .icon-youtube {
  font-size: 15px;
}

.footer__net-list a {
  color: #b4b4b4;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.footer__net-list a:hover {
  color: #0575bc;
  opacity: 0.8;
}

.footer__icon-list {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

.footer__icon-list li {
  margin: 0;
  margin-bottom: 20px;
}

.footer__icon-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 16px;
  font-weight: 600;
}

.footer__icon-list i {
  margin-right: 20px;
  width: 20px;
  height: 20px;
  font-size: 20px;
}

.footer__icon-list i img {
  max-width: 100%;
}

.footer__contacts {
  margin-bottom: 50px;
  padding-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__contacts p {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 24px;
  /* margin-bottom: 10px; */
}


@media (max-width: 1260px) {
  .footer__contacts p {
    margin-right: 10px;
  }
}

@media (max-width: 769px) {
  .footer__contacts p {
    font-size: 12px !important;
  }

  .footer__contacts p:first-of-type {
    max-width: 260px;
  }
}

.footer__contacts span {
  display: block;
}

.footer__send-wrong {
  padding-left: 35px;
  position: relative;
  margin-bottom: 40px;
  color: #848E99;
}

.footer__send-wrong span {
    color: #231F20;
}

.footer__send-wrong i {
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  left: 0;
  top: 14px;
  margin-top: -12px;
  font-size: 25px;
  color: #b4b4b4;
}

/* @media (min-width: 1025px) {
  .footer .footer-logo {
    width: 61px;
    height: 71px;
  }
} */

.footer .footer-logo {
  margin-right: 15px;
  /* width: 61px;
  height: 71px; */
}
/* 
@media (max-width: 1367px) {
  .footer .footer-logo {
    width: 45px;
    height: 54px;
  }
} */

.footer .footer-logo-text {
  font-family: "ALS Sector";
  position: absolute;
  top: 2px;
  left: 67px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  line-height: 15px;
  text-transform: uppercase;
  letter-spacing: normal;
}

@media (max-width: 1367px) {
  .footer .footer-logo-text {
    font-size: 13px;
    line-height: 14px;
    left: 58px;
  }
  .footer .footer-logo {
    height: 61px;
  }
}

@media (max-width: 1024px) {
  .footer .footer-logo-text {
    font-size: 10px;
    line-height: 11px;
    left: 46px;
  }
  .footer .footer-logo {
    height: 48px;
  }
}

.footer .footer-logo-text .prime {
  margin-top: 3px;
  display: inline-block;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.footer .footer-logo-text .sub {
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
  margin-top: 5px;
}

.footer .foot-head {
  font-weight: 500;
  font-size: 1.08em;
  margin: 0;
}

.footer .list {
  padding-top: 36px;
}

.footer .list li {
  margin: 0;
  margin-bottom: 28px;
}

.footer .list li:last-of-type {
  margin-bottom: 0;
}

.footer .copyright {
  position: relative;
  padding-left: 36px;
  font-size: 12px;
  font-size: 1.2rem;
  color: #848E99;
}

.footer .copyright i {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -14px;
  width: 25px;
  font-size: 20px;
  font-size: 2rem;
  color: #b4b4b4;
}

.footer-logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 40px;
  position: relative;
}

.main-footer__contacts {
  margin-bottom: 50px;
  padding-top: 10px;
}

/* simple-nav */
.simple-list-nav {
  font-weight: 500;
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.simple-list-nav li {
  margin: 0 0 18px;
}

.simple-list-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.simple-list-nav li a i {
  font-size: 8px;
  margin-left: 15px;
}

.section-top-link-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section-bottom-rss {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 20px;
}

.section-bottom-rss > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.link-rss i {
  margin-right: 10px;
}

/* news */
.news-list {
  padding-left: 20px;
}

.news-list__box {
  display: block;
  margin-bottom: 25px;
  border-bottom: 1px solid #d5dae0;
  padding-bottom: 25px;
}

.news-list > a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-list .news-title {
  margin-bottom: 15px;
}

.news-list .media-category {
  margin-top: 0;
}

.news-prime-blok {
  padding-top: 60px;
}

.news-prime-blok__hr {
  background: #dde1ea;
  height: 1px;
  margin-top: 40px;
}

.news-prime-blok .news-box {
  padding-bottom: 25px;
}

.news-card-preview .news-date,
.news-first-text .news-date {
  position: absolute;
  margin: 0;
  left: auto;
  bottom: 0px;
}

.news-box {
  display: block;
}

.news-box .img-wrap {
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 4px;
  background-size: cover;
}

.news-box .news-box-scale {
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.news-box__img {
  display: block;
  margin-top: 30px;
  cursor: pointer;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.news-box .img-lg {
  height: 500px;
  margin-top: 0px;
}

.news-box .img-md {
  height: 240px;
}

.news-box .news-title {
  margin-top: 30px;
}

.news-box--first .news-title {
  margin-top: -10px;
}

.news-box--style-bg {
  padding-bottom: 0 !important;
}

.news-box--style-bg .img-lg {
  height: 480px;
}

.news-box--style-bg .news-box-scale:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  content: "";
}

.news-box__date {
  opacity: 0.6;
}

.news-box__bottom {
  bottom: 0;
  width: 100%;
  z-index: 10;
  position: absolute;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 40px;
}

.news-box__caption {
  margin-bottom: 10px;
}

.news-box__sub-caption {
  top: 40px;
  left: 30px;
  z-index: 10;
  position: absolute;
}

.news-box:hover .news-box-scale {
  -webkit-transform: translateZ(0) scale(1.06, 1.06);
  transform: translateZ(0) scale(1.06, 1.06);
}

.news-card-daily-map {
  margin-bottom: 30px;
}

.news-card-daily-map .news-title {
  margin-top: 10px;
}

.news-card-daily-map--event .news-card-body {
  padding-bottom: 65px;
}

.news-card-daily-map--event {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.news-place {
  position: absolute;
  bottom: 25px;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  padding-right: 30px;
  padding-left: 25px;
}

.news-place i {
  position: absolute;
  top: -2px;
  left: 0;
}

.post-list__bottom-text i,
.news-place i,
.event-box__text .city i {
  position: absolute;
  top: -2px;
  left: 0;
  font-size: 16px;
  font-size: 1.6rem;
}

.page-place.post-list__bottom-text,
.page-date.post-list__bottom-text {
  position: relative;
  padding-left: 25px;
}

.page-place.post-list__bottom-text i,
.page-date.post-list__bottom-text i {
  top: 0;
  width: 17px;
  text-align: center;
  display: inline-block;
}

.page-place.post-list__bottom-text i.icon-date,
.page-date.post-list__bottom-text i.icon-date {
  top: 1px;
}

.event-line-preview__place {
  position: relative;
  padding-left: 20px;
}

.event-line-preview__place i {
  top: 0;
  font-size: 16px;
  position: absolute;
  left: 0;
}

.news-card-preview {
  margin-bottom: 30px;
}

.news-card-preview__box {
  min-height: 200px;
  padding-bottom: 60px;
}

.news-card-preview__box .news-date {
  bottom: 30px;
}

.news-first .news-title {
  margin-bottom: 24px;
}

.docs-preview-main.sm .docs-preview__box--inner:after {
  display: none !important;
}

/* docs */
.docs-preview {
  margin-bottom: 30px;
}

.docs-preview__box {
  max-height: 260px;
}

.docs-preview__box--inner {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.docs-preview__box--inner:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 40px;
  width: 100%;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  opacity: 1;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

.docs-preview-title {
  font-weight: 500;
  margin-bottom: 15px;
}

.custom-tabs-content,
.tab-content {
  padding-top: 0;
  padding-bottom: 0;
}

.custom-tabs-content {
  display: none;
}

.custom-tabs-content.active {
  display: block;
}

.no-left-pd {
  width: 100%;
}

/* default style slider slick */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none !important;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  outline: none !important;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-slider .slick-track:focus,
.slick-slider .slick-list:focus {
  outline: none !important;
}

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

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

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide:focus {
  outline: none !important;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  outline: 0 !important;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* end default style slider slick */
.slick-dots {
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  height: 30px;
  margin-bottom: 30px;
  padding: 0 15px;
  text-align: center;
}

.slide-mobile .slick-dots {
  margin-bottom: 0;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 30px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  overflow: hidden;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #e20338;
}

@media (max-width: 1650px) {
  .slick-dots li button {
    padding: 3px;
    width: 6px;
    height: 6px;
  }
  .main-news .slick-dots li button svg {
    width: 18px !important;
    height: 18px !important;
  }
}

/* calendar */
#main-calendar-widget {
  margin-bottom: 30px;
  padding-bottom: 38px;
  border-bottom: 1px solid #d5dae0;
}

.calendar-nav {
  font-size: 0;
}

.calendar-container {
  position: relative;
}

.calendar-wrapper {
  /* max-width: 860px; */
  margin: 0 auto;
}

.calendar-selects {
  margin-bottom: 30px;
}

.b-select.btn-group.bootstrap-select {
  display: inline-block;
  width: auto !important;
  margin-right: 40px;
  border: none;
  outline: none;
}

.b-select .btn.dropdown-toggle.btn-default {
  outline: none;
  border-color: transparent;
}

.b-select .btn {
  font-size: 18px;
  font-size: 1.8rem;
  background: transparent;
}

.b-select.open .dropdown-toggle {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.calendar#main-calendar-widget {
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 2;
}

.calendar#main-calendar-widget.active {
  opacity: 1;
}

.calendar#main-calendar-widget .day {
  position: relative;
  display: inline-block !important;
  width: 40px;
  text-align: center;
  vertical-align: top;
  outline: none;
  background-color: transparent;
}

.calendar#main-calendar-widget .day .day-header {
  font-size: 13px;
  line-height: 16px;
  margin: 0 auto;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #b3b3b3;
  font-weight: 500;
}

.calendar#main-calendar-widget .day .day-content {
  line-height: 40px;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  text-align: center;
  border-radius: 50%;
  font-weight: 500;
}

.calendar#main-calendar-widget .day.active .day-content {
  background-color: #e6e6e6;
}

.calendar#main-calendar-widget .day .day-content {
  border: 1px solid #d2d3d3;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.calendar#main-calendar-widget .day.has-event .day-content {
  cursor: pointer;
}

.calendar#main-calendar-widget .event {
  position: absolute;
  width: 100%;
  z-index: 100;
  bottom: -175px;
  display: none;
  padding: 30px;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  border: 1px solid #d5dae0;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.ev-inner {
  height: 440px;
  overflow: auto;
}

.ev-inner > .ev-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.ev-item {
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 15px;
}

.section-event {
  position: relative;
  z-index: 10;
}

.calendar#main-calendar-widget .event.active {
  border-top: none;
}

.calendar#main-calendar-widget .event.active.first {
  border-top: 1px solid #d5dae0;
}

.calendar#main-calendar-widget .event p:not(:nth-of-type(1)) {
  margin-top: 20px;
}

.ev-text {
  font-weight: 500;
  margin-bottom: 7px;
  display: block;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.calendar#main-calendar-widget .event .ev-date {
  margin-top: 0;
  margin-bottom: 5px;
}

.calendar#main-calendar-widget .event .ev-date i {
  margin-right: 15px;
  width: 20px;
  display: inline-block;
  text-align: center;
}

.calendar#main-calendar-widget .event .ev-date span {
  display: block;
  margin-bottom: 5px;
}

.calendar#main-calendar-widget .next-arrow,
.calendar#main-calendar-widget .prev-arrow {
  font-size: 20px;
  position: absolute;
  z-index: 10;
  top: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-align: center;
  font-size: 16px;
  border: 1px solid #d5dae0;
}

.calendar#main-calendar-widget .next-arrow:hover,
.calendar#main-calendar-widget .prev-arrow:hover {
  color: #fff;
  border: 1px solid #0575bc;
  background-color: #0575bc;
}

.calendar#main-calendar-widget .prev-arrow {
  left: 5px;
}

.calendar#main-calendar-widget .next-arrow {
  right: 5px;
}

.calendar-container.active {
  margin-bottom: 50px;
}

.event-container {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100%;
}

.event-container.active {
  display: block;
}

.calendar .event .event-close {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 30px;
  right: 55px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  color: #939598;
}

.calendar--prev-arrow,
.calendar--next-arrow {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  margin-left: 10px;
  cursor: pointer;
  background-color: #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.calendar--prev-arrow .fa,
.calendar--next-arrow .fa {
  position: relative;
  top: -1px;
}

.calendar--prev-arrow .fa-angle-right,
.calendar--next-arrow .fa-angle-right {
  right: -1px;
}

.calendar--prev-arrow .fa-angle-left,
.calendar--next-arrow .fa-angle-left {
  left: -1px;
}

.calendar--prev-arrow:hover,
.calendar--next-arrow:hover {
  border-color: #0575bc;
  color: #0575bc;
}

/* media */
.media-all-preview-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute !important;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

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

.media-image-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.media-category {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  padding-left: 15px;
  position: relative;
  margin-bottom: 18px;
  margin-top: 37px;
}

.media-category:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  height: 7px;
  width: 7px;
  margin-top: -4px;
  left: 0;
  border-radius: 7px;
}

.media-category.news {
  color: #939598;
}

.media-category.news:after {
  background-color: #939598;
}

.media-category.audio {
  color: #1771f1;
}

.media-category.audio:after {
  background-color: #1771f1;
}

.media-category.photo {
  color: #45d09e;
}

.media-category.photo:after {
  background-color: #45d09e;
}

.media-category.video {
  color: #ee3d48;
}

.media-category.video:after {
  background-color: #ee3d48;
}

.media-category.brown {
  color: #e20338;
}

.media-category.brown:after {
  background-color: #e20338;
}

.media-tab-ell {
  position: relative;
  display: inline-block;
  border: 1px solid #dedede;
  padding: 30px;
  width: 100%;
  border-radius: 4px;
  margin-bottom: 30px;
  overflow: hidden;
}

.media-tab-ell.media-tab-ell__box {
  border: none;
  padding: 0;
}

.media-tab-ell.media-tab-ell__box .news-title {
  height: auto;
  margin-top: 10px;
}

.media-tab-ell.media-tab-ell__box .news-title:before {
  display: none;
}

.media-tab-ell.media-tab-ell__box .img-bg-wrap {
  position: relative;
  height: 195px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.media-tab-ell.media-tab-ell__box .img-bg-wrap .i {
  line-height: 34px;
  position: relative;
  z-index: 1;
}

.media-tab-ell.media-tab-ell__box .img-bg-wrap .i span {
  vertical-align: text-bottom;
  margin-left: 15px;
}

.media-tab-ell.media-tab-ell__box .img-bg-wrap i {
  font-size: 34px;
}

.media-tab-ell.media-tab-ell__box .img-bg-wrap i.icon-photo {
  font-size: 30px;
}

.media-tab-ell.media-tab-ell__box .img-bg {
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
}

.media-tab-ell.media-tab-ell__box:hover .img-bg {
  -webkit-transform: translateZ(0) scale(1.06, 1.06);
  transform: translateZ(0) scale(1.06, 1.06);
}

@media (max-width: 767px) {
  .media-tab-ell.media-tab-ell__box .img-bg-wrap {
    height: 255px;
  }
}

@media (max-width: 424px) {
  .media-tab-ell.media-tab-ell__box .img-bg-wrap {
    height: 195px;
  }
}

.media-tab-ell .news-title {
  overflow: hidden;
  height: 100px;
  position: relative;
  margin-top: 0;
  margin-bottom: 20px;
}

.media-tab-ell .news-title:before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  -webkit-box-shadow: 0 10px 30px 25px #202020;
  box-shadow: 0 10px 30px 25px #202020;
}

.media-tab-ell .news-date {
  margin-bottom: 0;
}

.media-tab-ell .news-date .date {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: block;
}

a.media-tab-ell:hover {
  color: #a9abb1;
}

.media-play-btn i,
.media-play-btn {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

a.media-tab-ell:hover .media-play-btn,
a.media-tab-ell:hover .media-play-btn i {
  color: #ffffff;
}

#media_content_all .media-tab-ell {
  margin-bottom: 0;
  border: none;
  border-bottom: 1px solid #5d626f;
  overflow: visible;
  padding: 22px 0px 25px 0px;
  position: relative;
  bottom: -1px;
  border-radius: 0;
}

#media_content_all .media-tab-ell:first-child {
  padding-top: 0;
}

#media_content_all .news-title {
  height: 74px;
  margin-bottom: 18px;
}

.media-block .tabs-nav-wrap .nav-tabs > li.active > a,
.media-block .tabs-nav-wrap .nav-tabs > li:hover > a,
.media-block .tabs-container__btn:hover,
.media-block .open .tabs-container__btn {
  color: #ffffff !important;
}

.btn-media {
  margin: 0;
  margin-top: 60px;
  text-align: center;
}

.btn-media a:hover {
  color: #ffffff;
}

.btn-media.btn-media--center {
  margin-right: 0;
  margin-left: 0;
  text-align: center;
  margin-top: 20px;
}

.btn-media.btn-media--center .btn {
  display: inline-block;
  padding-left: 40px;
  padding-right: 40px;
}

section.section-media-photo {
  background: #f4f4f4;
  padding-top: 60px;
  padding-bottom: 45px;
}

.media-photo-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.media-photo-head .amount {
  min-width: 160px;
  font-size: 14px;
  text-align: right;
}

.wrap-all-media-tab-ell > a:last-child {
  border-bottom: 0;
}

/* media-video */
.media-block .news-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  font-size: 15px;
}

.media-block .news-date i {
  margin-left: 10px;
  position: relative;
  top: 1px;
}

.media-block .tabs-nav-wrap .nav-tabs > li.active > a,
.media-block .tabs-nav-wrap .nav-tabs > li:hover > a {
  color: #ffffff;
}

.media-block .tabs-nav-wrap .nav-tabs > li:hover > a,
.media-block .tabs-nav-wrap .nav-tabs > li.active:hover > a,
.media-block .tabs-nav-wrap .nav-tabs > li.active > a {
  border-bottom-color: #ffffff !important;
}

.media-block .tabs-nav-wrap,
.media-block .media-tab-ell {
  border-bottom-color: #5d626f;
}

.wrap-media-video {
  position: relative;
  margin-top: 4px;
  margin-bottom: 30px;
  height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
}

.wrap-media-video--page {
  height: 420px;
}

.wrap-media-video .video-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

.wrap-media-video video,
.wrap-media-video audio,
.wrap-media-video iframe {
  margin: 0;
  width: 100%;
  z-index: 0;
}

.wrap-media-video iframe {
  height: 100%;
}

.wrap-media-video audio {
  position: absolute;
  bottom: 0;
  z-index: 100;
  left: 0;
}

.wrap-media-video:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
  /* IE6-9 */
  height: 110px;
  z-index: 20;
  pointer-events: none;
}

.wrap-media-video .video-title {
  position: absolute;
  bottom: 40px;
  top: 50px;
  left: 30px;
  right: 30px;
  font-size: 20px;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  pointer-events: none;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  z-index: 50;
}

.wrap-media-video.play .video-title {
  opacity: 0;
}

.wrap-media-video.play:after {
  height: 0;
}

.wrap-media-video.play .yt-preview {
  opacity: 0;
  z-index: -1;
}

.wrap-media-video.play .play-button {
  opacity: 0 !important;
  z-index: -1;
}

/* event-box */
.event-box-wrap {
  margin-bottom: 30px;
}

.event-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 100%;
}

.event-box__text {
  padding-right: 30px;
  position: relative;
  padding-bottom: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.event-box__text .name {
  font-weight: 500;
  line-height: 1.4;
  font-size: 18px;
  font-size: 1.8rem;
}

.event-box__text .city {
  display: block;
  position: absolute;
  bottom: 0;
  left: auto;
}

.event-box__date {
  padding-right: 25px;
  min-width: 115px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.event-box__date span {
  display: block;
  text-align: center;
}

.event-box__date .small {
  font-size: 14px;
  font-size: 1.4rem;
}

.event-box__date .big {
  font-size: 76px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  top: -2px;
}

.event-line .event-line-preview:last-child {
  margin-bottom: 0;
}

.event-line-preview {
  margin-bottom: 10px;
}

.event-line-preview__box.bg-block-sm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.event-line-preview__date {
  min-width: 90px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 30px;
}

.event-line-preview__date .big {
  font-size: 76px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  top: -2px;
  text-align: center;
  display: block;
}

.event-line-preview__date .small {
  display: block;
  text-align: center;
}

.event-line-preview__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.event-line-preview__place {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.event-line-preview .inner {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.bg-gray .event-line-preview__box.bg-block-sm {
  border: 0;
}

/* end event-box */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -30px;
  margin-top: -45px;
  border: 0;
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 0;
  height: 74px;
  border-color: transparent transparent transparent #ffffff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
  border-style: solid;
  border-width: 37px 0 37px 60px;
  z-index: 100;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.play-button.paused {
  border-style: double;
  border-width: 0px 0 0px 60px;
  opacity: 0;
}

.play-button.paused:hover {
  opacity: 1;
}

.play-button:hover {
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.6);
}

.media-photo-preview-list {
  font-size: 0;
  padding: 0;
}

.wrap-media-video .video-preview {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.media-photo-preview-list > div {
  min-height: 0;
}

.media-photo-preview {
  display: block;
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 36px;
}

.media-photo-preview__title {
  font-size: 16px;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  height: 65px;
  padding-left: 30px;
  padding-right: 30px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding-bottom: 10px;
  padding-top: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.media-photo-preview__img {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 210px;
  display: block;
  overflow: hidden;
  border-radius: 4px;
}

.media-photo-preview a {
  position: relative;
  display: block;
}

.media-photo-preview-list li a,
.wrap-media-video .link-media-photo-modal {
  position: relative;
}

.media-photo-preview-list li a:before,
.wrap-media-video .link-media-photo-modal:before,
.media-photo-preview-list li a:after,
.wrap-media-video .link-media-photo-modal:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  display: block;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0;
}

.media-photo-preview-list li a:after,
.wrap-media-video .link-media-photo-modal:after {
  background: #000000;
  z-index: 1;
}

.media-photo-preview-list li a:before,
.wrap-media-video .link-media-photo-modal:before {
  background: url(../img/general/icon/preview-photo-icon.svg) no-repeat center;
  background-size: 0;
  z-index: 2;
}

.media-photo-preview-list li a:hover:before,
.wrap-media-video .link-media-photo-modal:hover:before {
  opacity: 1;
  background-size: 32px;
}

.media-photo-preview-list li a:hover:after,
.wrap-media-video .link-media-photo-modal:hover:after {
  opacity: 0.4;
}

@media (max-width: 1600px) {
  .header-nav > li.dropdown-hover .dropdown-menu {
    left: 15px;
    right: auto;
  }
}

@media (max-width: 1280px) {
  .media-photo-preview__title {
    margin: 0;
    top: 0;
    height: auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 30px 20px;
  }
  .media-tab-ell {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 700px) {
  .header__search-form-header {
    margin-bottom: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-bottom: 0;
    padding-right: 40px;
  }
  .panel-search {
    padding-top: 15px;
  }
  .header__search-form .search-btn {
    width: 100px;
  }
}

@media (max-width: 560px) {
  .btn-media.btn-media--center .btn {
    display: block;
  }
  .media-photo-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .media-photo-head .amount {
    margin-top: 20px;
  }
}

@media (max-width: 460px) {
  .wiget-list > li {
    margin-left: 15px;
  }
}

/* media gallery */
.media-photo-modal {
  z-index: 2147473655 !important;
}

.media-photo-modal .fancybox-navigation button:before {
  width: 55px;
  height: 80px;
  top: 10px;
  right: 3px;
}

.media-photo-modal .fancybox-navigation button:after {
  background: url(../img/general/icon/fancybox-arrow.svg) center no-repeat;
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.media-photo-modal .fancybox-navigation .fancybox-button--arrow_right:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.media-photo-modal .fancybox-navigation .fancybox-button--arrow_right {
  right: 15px;
}

.media-photo-modal .fancybox-navigation .fancybox-button--arrow_left {
  left: 15px;
}

.media-photo-modal .fancybox-button.fancybox-button--close {
  background: transparent;
  color: #5e5c5c;
  height: 50px;
  width: 50px;
}

.media-photo-modal .fancybox-button.fancybox-button--close:hover {
  color: #0575bc;
}

.media-photo-modal .fancybox-image {
  padding: 15px !important;
}

@media (min-width: 1000px) {
  .media-photo-modal.fancybox-is-open .fancybox-bg {
    background: #333333;
    opacity: 1;
  }
  .media-photo-modal .fancybox-image {
    padding: 0px !important;
  }
  .media-photo-modal .fancybox-inner {
    margin: 15px;
    max-width: 1920px;
  }
  .media-photo-modal.fancybox-is-open .fancybox-inner {
    background: #000000;
  }
  .media-photo-modal .fancybox-navigation,
  .media-photo-modal .fancybox-stage {
    width: 70%;
  }
  .media-photo-modal .fancybox-caption-wrap {
    width: 30%;
    bottom: 0;
    top: 0;
    left: auto;
    background: #fff;
    pointer-events: auto;
    padding: 60px 40px 40px 40px;
  }
  .media-photo-modal .fancybox-outer {
    max-width: 1700px;
    max-height: 850px;
    margin: auto;
  }
  .media-photo-modal .fancybox-navigation {
    position: relative;
    height: 100%;
  }
  .media-photo-modal .fancybox-toolbar {
    z-index: 1000000;
    top: 15px;
    right: 15px;
  }
  .media-photo-modal .fancybox-infobar {
    color: #707070;
    font-size: 14px;
    visibility: visible;
    opacity: 1;
    left: 30px;
    top: 17px;
  }
  .media-photo-modal .fancybox-caption {
    position: static;
  }
  .media-photo-modal .fancybox-caption .date {
    position: absolute;
    bottom: 20px;
    left: 40px;
    color: #b3b3b3;
    font-size: 14px;
  }
  .media-photo-modal .fancybox-caption {
    padding-top: 45px;
    color: #555555;
  }
}

.adr-map {
  width: 100%;
}

/*------------------- ADAPTIVE -------------------*/
@media (max-width: 1440px) {

  .header__blind-btn.blind-btn {
    margin-left: 93px;
  }
  .header {
    height: 141px;
  }
  .header__bottom-panel {
    height: 91px;
  }
  .header__main-nav {
    height: 90px;
  }
  .header-nav > li > a {
    height: 90px;
    line-height: 90px;
  }
  .header-nav-more {
    height: 90px;
    display: none;
  }
  .breadcrumb-section {
    padding-top: 20px;
    min-height: auto;
  }
}

@media (max-width: 1360px) {
  h1,
  .h1,
  h1.page-title {
    font-size: 3rem;
  }
  .text-block ol,
  .text-block ul,
  .text-block p,
  .text-block table {
    margin: 20px 0;
  }
  h3,
  .h3 {
    font-size: 2.4rem;
  }
  .list-division li {
    width: 33.333%;
  }
  .event-box__date .big,
  .event-line-preview__date .big {
    font-size: 60px;
  }
  .event-line-preview__place {
    font-size: 14px;
  }
  .event-line-preview__date {
    min-width: 70px;
    margin-right: 20px;
  }
  .event-box__text .name {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .event-box__date {
    padding-right: 20px;
    min-width: 100px;
  }
  .slider-main__sub-text {
    bottom: 40px;
  }
  .slider-main .inner .item-caption {
    width: 100%;
  }
  .slider-main .slider-main-img {
    opacity: 0.3;
  }
}

@media (min-width: 1270px) {
  .container {
    width: 1250px;
  }
}

@media (max-width: 1300px) {
  .map-city__panel {
    height: 420px;
  }
  .map-city .map-city-wrap {
    height: 460px;
  }
  .panel-blind__setting .btn {
    min-width: 0 !important;
  }
  .footer__net-list li {
    padding-right: 25px;
  }
  .aside__buttons-top .btn {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 1270px) {
  .service-pop-banner.service-pop-banner--child .tel-box-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .service-pop-banner.service-pop-banner--boss .left {
    min-width: 0;
  }
  .photo-box .bg-box {
    height: 102px;
  }
  .arrow-box {
    width: 230px;
    margin-top: -70px;
    height: 140px;
    font-size: 13px;
  }
  .infographic-box .infographic-item__text .side-center {
    display: none;
  }
  .infographic-box .infographic-item__text .side-end {
    margin-top: 7px;
  }
  .infographic-box .infographic-item__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .infographic-box .infographic-item,
  .infographic-box__top {
    padding-left: 60px;
  }
  .param-search-toggle .wrap-division {
    margin-top: 30px;
  }
  .quiz-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .quiz-head__start {
    margin-bottom: 10px;
  }
  .btn-and-text .btn,
  .quiz-box .quiz-footer .btn {
    min-width: 0;
  }
  .map-city__content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .map-city__link {
    left: 30px;
    right: 30px;
  }
  .map-city__panel {
    width: 300px;
  }
  #map-city {
    width: 100%;
  }
  .wrap-media-video--page {
    height: 318px;
  }
  .header__search-form .date-wiget {
    display: none;
  }
  .search-form .search-form-top {
    margin-bottom: 30px;
  }
  .search-form .wrap-division {
    margin-top: 30px;
  }
  /* .header__widget-list > li.header__admin-btn > a > span {
    display: none;
  } */
  .header__widget-list > li.header__admin-btn.admin-btn-mobile {
    display: block;
  }
  .header__widget-list > li.header__admin-btn.admin-btn-mobile span {
    display: none;
  }
  .wrap-all-media-tab-ell {
    padding-top: 26px;
    border-top: 1px solid #666;
  }
  .services-box {
    margin-bottom: 30px;
  }
  .services-box__wrap {
    margin-bottom: -30px;
  }
  .participation {
    margin-top: 60px;
  }
  .news-box .img-wrap {
    background-size: cover;
  }
  .direction-info-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    font-size: 16px;
    font-size: 1.6rem;
    display: block;
  }
  .direction-info-list li .left,
  .direction-info-list li .right {
    width: auto;
    display: inline;
    padding-right: 0;
  }
  .direction-info-list li .left:after {
    content: ":";
  }
  .panel-blind .setting-box .btn {
    margin-right: 5px;
  }
  .panel-blind__box {
    margin-right: 15px;
  }
  .panel-blind .setting-box .btn {
    padding-left: 14px;
    padding-right: 14px;
  }
  .header__search-form-wrap .form-sub-title {
    display: none;
  }
  .wrap-division {
    padding-left: 15px;
  }
  .header__search-form .search-form-top {
    margin-bottom: 25px;
  }
  .header__search-form-header {
    margin-bottom: 25px !important;
  }
  .checkbox-list .wrap-check {
    width: 33.333%;
  }
}

@media (min-width: 991px) {
  .main-section--list-nav {
    padding-top: 10px;
  }
  .filter-btn {
    display: none !important;
  }
}

.btn-close-filter {
  display: none;
}

.show-991 {
  display: none;
}

.show-767 {
  display: none;
}

.placeholder-mobile {
  display: none;
}

.toggle-search-panel svg,
.header__admin-btn svg {
  margin-right: 12px;
}

@media (max-width: 1250px) {
  .gallery-preview-list li {
    width: 33.333%;
  }
}

@media (max-width: 1025px) {
  .header-nav-more {
    display: block;
  }
}

@media (max-width: 991px) {
  .header-nav li a {
    padding-right: 0px !important;
  }
  .msc-slider-1__slide {
    /*height: 690px !important;*/
	height: auto;
  }
  /* .btn-gamb {
    right: 0;
    width: auto;
  } */
  .header-nav li:nth-child(4) a {
    padding-right: 35px;
  }
  .service-pop-banner .btn {
    min-width: 250px;
  }
  .service-pop-banner.service-pop-banner--child .h3 {
    font-size: 20px !important;
  }
  .service-pop-banner.service-pop-banner--child .tel-box-wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 20px;
  }
  .service-pop-banner.service-pop-banner--child {
    padding-bottom: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .service-pop-banner.service-pop-banner--child .icon-banner {
    height: 130px;
    width: 130px;
    background-color: #ffffff;
    background-size: contain;
    border-radius: 50%;
    background-position: 10px 10px;
  }
  .service-pop-banner .center .h4 {
    font-size: 18px !important;
  }
  .service-pop-banner.service-pop-banner--child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .btn-choice-center .btn {
    min-width: 80px;
  }
  .photo-box .bg-box {
    height: 120px;
  }
  .slider-main .slider-main-img {
    background-size: cover;
    background-position: bottom center;
  }
  .custom-pagination-btn .custom-pagination {
    margin: 0 auto;
  }
  .custom-pagination-btn .btn {
    margin: 0 auto !important;
    margin-bottom: 15px !important;
    width: 200px;
  }
  .custom-pagination-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  /* .btn-gamb {
    width: 30px;
  } */
  .header-nav-more {
    margin-left: 20px !important;
  }
  .header-nav > li {
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
  }
  .header-nav > li > a {
    padding-right: 20px;
  }
  .header__widget-list > li > a i {
    margin-right: -3px;
  }
  .smi-link-bottom {
    margin-top: 20px;
  }
  .aside__list-nav > li:after {
    background-color: #bdc2d0;
  }
  .main-info-block__wrap > div:last-child {
    margin-bottom: 0;
  }
  .main-info-block-preview {
    margin-bottom: 30px;
  }
  .action-preview--main .action-preview__box {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .action-preview--main .text-img {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .placeholder-desctop {
    display: none;
  }
  .placeholder-mobile {
    display: block;
  }
  .widget-quiz__top {
    margin-bottom: 30px;
  }
  .widget-quiz__inner {
    min-height: 0;
  }
  .widget-mayor-btn {
    max-width: 300px;
  }
  .widget-mayor-btn > span {
    margin-right: 18px;
  }
  .widget-mayor__name > span {
    display: block;
  }
  .widget-mayor__name br {
    display: none;
  }
  .bg-box.widget-mayor__wrap {
    height: auto;
  }
  .widget-mayor--mobile {
    margin-top: 65px;
    margin-bottom: 0;
  }
  .widget-mayor--mobile .bg-box.widget-mayor__wrap {
    margin-bottom: 0;
  }
  .hide-991 {
    display: none;
  }
  .show-991 {
    display: block;
  }
  .dropdown-menu-header {
    display: none !important;
  }
  .pushy {
    width: 100%;
  }
  .pushy-right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  /* btn-gamb */
  .btn-gamb {
    margin-left: -15px;
    margin-top: -9px;
  }
  .direction-card__info.info-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .direction-card__info.info-row > div {
    width: 100%;
  }
  .slider-main__sub-text {
    position: static;
    margin-top: 10px;
  }
  .widget.widget-mayor {
    margin-top: 25px;
    margin-bottom: 40px;
  }
  .beneficial-box .beneficial-img {
    width: 115px;
    background-size: contain;
  }
  .beneficial-box .inner {
    padding-top: 15px;
    padding-right: 0px;
  }
  .banner-slider .banner-img {
    width: calc(50% - 15px);
    right: auto;
  }
  .banner-slider__item {
    height: 300px;
    background: #f4f7fb;
  }
  .banner-slider .item-caption {
    padding-left: calc(50% - 15px);
    bottom: 30px;
    color: #000000;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .event-box__text {
    padding-right: 0;
  }
  .event-box {
    padding-bottom: 25px;
    border-bottom: 1px solid #dde0e3;
  }
  .widget {
    margin-top: 50px;
  }
  .btn-and-text .btn {
    min-width: 300px;
  }
  .quiz-box .quiz-footer .btn {
    min-width: 220px;
  }
  #togglerSize {
    display: none;
  }
  .box-photo-boss {
    padding-top: 25px !important;
  }
  .box-photo-boss .bg {
    position: static;
    height: auto;
    margin-bottom: 10px;
  }
  .box-photo-boss .bg .img {
    position: static;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
    -webkit-transform: none !important;
    transform: none !important;
  }
  /*.widget-minister .box-photo-boss {
        .text {
            margin-left: 15px;
        }
        .title {
            margin-bottom: 10px;
        }
        padding-left: 50%;
        padding-top: 30px !important;
        padding-bottom: 30px;
        min-height: 180px;
    }
    .widget-minister .read-more-arrow {
        width: calc(~'50% - 45px');
        right: 30px;
        left: auto;
    }

    .box-photo-boss .bg {
        width: calc(~'50% - 15px');
        border-radius: 2px 0 0 0;
    }*/
  .wrap-media-video--page {
    height: 405px;
  }
  .list-division li {
    width: 50%;
  }
  .photo-height-fix {
    min-height: 0 !important;
  }
  .aside__list-nav {
    padding-left: 0;
  }
  .aside__list-nav > li ul {
    padding-left: 20px;
  }
  .breadcrumb-section {
    min-height: 0;
  }
  .breadcrumb {
    padding-bottom: 10px;
    padding-top: 15px;
  }
  .footer {
    margin-top: 40px;
  }
  .aside-nav {
    background-color: #f1f2f2;
    padding: 35px 30px 25px;
  }
  .aside__list-nav > li > a:after {
    display: none !important;
  }
  .aside__list-nav > li > a {
    padding-right: 0;
    padding-left: 0;
  }
  .aside__list-nav {
    border: 0;
  }
  .aside-nav__title {
    display: block;
  }
  .btn-close-filter {
    display: block;
    margin-top: 25px;
  }
  .filter-btn {
    display: block;
  }
  .filter-box {
    position: fixed;
    top: 0;
    width: 100%;
    margin-bottom: 0 !important;
    padding-top: 75px !important;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 80px !important;
    overflow-y: auto;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 99999;
    background: #ffffff;
  }
  body.filter-open {
    overflow: hidden;
  }
  .btn-back-mobile {
    display: block;
  }
  .aside {
    margin-top: 90px;
  }
  .border-block {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .friend-block {
    padding-bottom: 30px;
  }
  .friend-block h4 {
    min-height: 0;
  }
  .setting-box {
    display: none;
  }
  .panel-blind__tablet-info {
    display: block;
  }
  .news-list {
    padding-left: 0;
    margin-top: 20px;
  }
  .media-category {
    margin-bottom: 10px;
  }
  .news-box--first .news-title {
    font-size: 18px;
    line-height: 24px;
    margin-top: 30px;
  }
  .simple-list-nav {
    margin-bottom: 0;
    margin-top: 35px;
    background: #f4f7fb;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .simple-list-nav li {
    margin-bottom: -1px;
  }
  .simple-list-nav li:last-child a {
    margin-bottom: 0;
  }
  .simple-list-nav li a {
    padding: 21px 20px;
    font-size: 18px;
    line-height: 1.4;
    border: 0;
    position: relative;
    -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  }
  .simple-list-nav li a:after {
    content: "";
    display: block;
    bottom: 0;
    left: 20px;
    right: 20px;
    background: #dde0e3;
    height: 1px;
    position: absolute;
  }
  .simple-list-nav li:last-child a:after {
    display: none;
  }
  .tabs-nav-wrap.tabs-nav-wrap--column .nav.nav-tabs {
    margin-top: 20px;
    position: relative;
  }
  .aside__buttons-top {
    display: none !important;
  }
  .main,
  .aside {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    float: none;
  }
  .aside {
    float: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .aside__box {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .aside__box.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .aside__box.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .aside__box.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .aside__box.order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .aside__box.order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .footer .list {
    margin-bottom: -13px;
  }
  .close-page-layer span {
    display: none;
  }
  .footer__bottom .flex-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .footer__send-wrong {
    display: none;
  }
  .footer__net-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .blind-btn {
    display: none !important;
  }
  .btn {
    min-width: 0;
  }
  .page-title-prime br {
    display: none;
  }
  footer .list li {
    width: 32%;
    display: inline-block;
    vertical-align: top;
  }
  .footer-link-sitemap {
    border: 1px solid #9f9f9f;
    width: 100%;
    display: block;
    text-align: center;
  }
  footer .footer__icon-list li a:hover,
  footer .footer-link-sitemap:hover {
    background: #ffffff;
  }
  .news-card-preview__box {
    height: auto;
    min-height: 0;
  }
  .bnt-white {
    min-width: 170px;
    margin-right: 0;
  }
  .service-pop-banner .big {
    font-size: 80px;
  }
  .service-pop-banner .small {
    font-size: 12px;
  }
  .service-pop-banner .left {
    padding-right: 35px;
    padding-left: 0;
  }
}

.region-select {
  display: none !important;
}

@media (max-width: 767px) {
  .header-nav-more {
    display: block;
  }
  .header-nav > li {
    display: none !important;
  }
  .show-767 {
    display: block;
  }
  .hide-767 {
    display: none;
  }
  .photo-box .bg-box {
    height: 125px;
  }
  .news-prime-blok .news-date {
    margin: 0;
    left: auto;
    bottom: 0px;
  }
  .sub-caption-box {
    font-size: 12px;
    padding: 6px 12px 4px;
  }
  #map_tabs_nav,
  #region-map {
    display: none;
  }
  .region-select {
    display: block !important;
  }
  .email-list li {
    padding-left: 15px;
    padding-right: 60px;
  }
  .email-list .link-delete {
    right: 15px;
  }
  .layer-link {
    margin-bottom: 35px;
  }
  .layer-link__title {
    font-size: 16px;
    padding-bottom: 20px;
  }
  html[font-size="size-sm"],
  html[font-size="size-md"],
  html[font-size="size-lg"] {
    font-size: 62.5%;
  }
  .main.main--main-page {
    padding-top: 50px;
  }
  .simple-list-nav {
    margin-top: 50px;
  }
  h1.page-title-prime .title-sub,
  .h1.page-title-prime .title-sub {
    margin-top: 15px;
  }
  .page-layer__inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .page-layer .close-page-layer__wrap {
    margin-top: 57px;
  }
  .wrap-tabs-content {
    padding-top: 30px;
  }
  .well.well-lg {
    padding-left: 30px;
    padding-right: 30px;
  }
  .footer__send-wrong {
    display: none;
  }
  .footer {
    padding-bottom: 60px;
    padding-top: 60px;
  }
  .section.section--bg {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  h1,
  .h1,
  h1.page-title {
    font-size: 20px;
    font-size: 2rem;
    line-height: 28px;
    line-height: 2.8rem;
    margin-bottom: 28px;
  }
  h1 .title-sub,
  .h1 .title-sub,
  h1.page-title .title-sub {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .page-title + .page-date {
    margin-bottom: 28px;
  }
  .main-section--list-nav {
    margin-bottom: 28px;
    padding-top: 0;
  }
  h2,
  .h2 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 26px;
    line-height: 2.6rem;
    margin-bottom: 26px;
  }
  h3,
  .h3,
  .slider-main .h1 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 24px;
    line-height: 2.4rem;
    margin-bottom: 24px;
  }
  h4,
  .h4,
  h5,
  .h5 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px;
    line-height: 2.2rem;
    margin-bottom: 22px;
  }
  .news-box--first .news-title {
    line-height: 22px;
    line-height: 2.2rem;
    margin-bottom: 40px;
  }
  .layer-link--map .layer-link__title {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .services-box,
  .docs-preview,
  .news-card-daily-map,
  .services-box,
  .photo-box,
  .service-pop-preview,
  .beneficial-box-preview,
  .theme-box,
  .action-preview,
  .news-card-preview,
  .main-info-block-preview {
    margin-bottom: 20px;
  }
  .tabs-nav-wrap h3.section-head,
  .tabs-nav-wrap .page-title {
    top: 8px;
  }
  .section.pd-bottom-120 {
    padding-bottom: 80px !important;
  }
  .slider-main__wrap {
    margin-top: 0 !important;
    margin-bottom: 0px !important;
  }
  .main.main--main-page {
    padding-top: 0;
  }
  .news-box.news-box--style-bg .img-lg,
  .news-box.news-box--style-bg .img-wrap {
    border-radius: 0;
  }
}

.all-work-link-mobile {
  display: none;
}

.show-767 {
  display: none;
}

@media (max-width: 767px) {
  .header__widget-list {
    height: 45px;
  }
  .header__link-home, .link-list-sites, .header__link-portal {
    line-height: 45px;
    height: 45px;
  }
  .header__widget-list > li {
    margin-left: 8px;
  }
  .header__widget-list > li:not(:first-of-type) a {
    margin-right: 0;
    min-width: 36px;
    height: 36px;
    background: #0A637E;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .header__widget-list > li svg {
    width: 20px;
    height: 20px;
    margin-right: 0;
  }
  .service-pop-banner.service-pop-banner--child .left {
    padding-bottom: 0;
    padding-top: 25px;
  }
  .service-pop-banner.service-pop-banner--child .center {
    padding-top: 0;
  }
  #modal-rating-ok .btn {
    min-width: 150px;
  }
  .news-box .news-title.h2 {
    font-size: 21px;
  }
  .friend-block .inner {
    min-height: 0;
  }
  .photo-box-wrap {
    margin-bottom: 30px;
  }
  .slider-main__nav-wrap {
    padding-bottom: 61px;
  }
  .slider-main__nav {
    display: none !important;
  }
  .date-and-view {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 25px;
  }
  .date-and-view > * {
    margin-bottom: 5px;
  }
  .date-with-i i {
    margin-right: 12px;
    margin-left: 2px;
  }
  .tabs-nav-wrap--column.tabs-nav-wrap .tabs-container.dropdown {
    position: static;
  }
  .tabs-nav-wrap--column.tabs-nav-wrap .dropdown-menu {
    left: 270px;
  }
  .slider-main .slider-main-img {
    background-size: contain;
  }
  .quote__inner {
    padding-left: 25px;
    padding-right: 0px;
    font-size: 14px;
  }
  .quote i {
    font-size: 10px !important;
  }
  .quote i.top {
    left: 0;
    top: 6px;
  }
  .quote i.bottom {
    display: none;
  }
  .direction-box--small .direction-box__info {
    padding-right: 0;
  }
  .direction-box--small {
    margin-bottom: 25px;
  }
  .infographic-box__list .icon-end-doc {
    width: 35px;
    font-size: 18px;
    height: 35px;
    line-height: 35px;
    left: -5px !important;
    margin-top: -12px !important;
  }
  .infographic-box .infographic-item .dots {
    display: none;
  }
  .infographic-box__top i {
    top: -2px;
    left: -1px;
  }
  .infographic-box .infographic-item,
  .infographic-box__top {
    padding-left: 40px;
  }
  .infographic-box__list i.icon-checked,
  .infographic-box__list .icon-end-doc {
    top: 0px;
    margin-top: -2px;
    left: 0;
  }
  .arrow-box {
    width: 100%;
    margin-top: 0;
    height: auto;
    font-size: 13px;
    position: static;
    margin-top: 10px;
  }
  .arrow-box:after {
    display: none;
  }
  .infographic-box .infographic-item .date {
    position: static;
    margin-top: 10px;
  }
  .infographic-box .infographic-item {
    height: auto;
    margin-bottom: 25px;
  }
  .slider-main__wrap {
    margin-bottom: 50px !important;
  }
  .form-check-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .form-group-rate-line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .form-group-rate-line .form-sub-title {
    margin-bottom: 15px !important;
  }
  .form-group-rate-line .rate_row {
    margin-bottom: 15px !important;
  }
  .form-check-list__left {
    margin-bottom: 10px;
    font-weight: 500;
  }
  .form-check-list .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .form-check-list__right,
  .form-check-list__left {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .custom-pagination-btn .btn {
    width: 100%;
  }
  .structure-tree > li > ul > li > ul > li > div.item-wrap {
    margin-left: 64px;
  }
  .structure-tree > li > ul > li > div.item-wrap {
    margin-left: 32px;
  }
  .structure-tree > li > ul > li > ul:after {
    left: 7px;
  }
  .dcjq-icon {
    left: -5px;
  }
  .structure-tree > li > ul > li > ul > li > ul:after {
    left: 39px;
  }
  .structure-tree > li > ul > li > ul > li > ul > li > div.item-wrap {
    margin-left: 95px;
  }
  .tabs-container__content {
    margin-left: 0;
  }
  .action-preview .img img {
    width: 100%;
    height: auto;
  }
  .action-preview .action-preview__box {
    height: auto;
  }
  .action-materials {
    margin-left: 60px;
    width: auto;
    margin-top: 10px;
  }
  .action-preview--with-link .title {
    font-size: 16px;
  }
  .news-list .media-category,
  .post-list__img {
    display: none;
  }
  .post-list__info {
    padding-left: 0 !important;
  }
  .section-info-main .eg-val-box {
    display: none !important;
  }
  .news-list {
    margin-top: 0;
  }
  .action-preview--with-link .action-preview__main-link {
    padding-right: 0;
  }
  .docs-preview {
    min-height: 0 !important;
  }
  .docs-preview__box--inner {
    max-height: 200px;
    height: auto !important;
  }
  .wrap-mobile-slider .link-more {
    margin-top: 10px;
  }
  .news-prime-blok .news-box {
    padding-bottom: 25px;
    border-bottom: 1px solid #d5dae0;
    margin-bottom: 5px;
  }
  .news-prime-blok .news-box.news-first {
    padding-bottom: 35px;
  }
  .departament-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .departament-img {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .news-place {
    position: relative;
    margin-top: 15px;
    bottom: auto;
  }
  .media-block.section.section--bg {
    margin-bottom: 0 !important;
  }
  .action-preview--with-link .action-preview__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .action-preview--with-link .action-preview__box .action-preview__list {
    padding-left: 0;
    margin-top: 15px;
    width: 100%;
  }
  .action-preview .action-preview__box {
    min-height: 0px;
  }
  .action-preview .action-preview__box .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    min-height: 40px;
  }
  .action-preview .action-preview__box .inner > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .action-preview .title {
    padding-left: 60px;
  }
  .action-preview .img {
    width: 40px;
    height: 40px;
    position: absolute;
    left: auto;
    margin-bottom: 0;
  }
  .action-preview--with-link .action-preview__main-link {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .action-preview--with-link .action-preview__main-link > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .header__widget-list > li span {
    display: none;
  }
  .main-info-block__wrap {
    bottom: 0;
    margin-top: 0px;
  }
  .search-nav-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .eg-val-wrap {
    display: none;
  }
  .main-info-block .title .big {
    font-size: 26px;
  }
  .form-search-line--big input.form-control {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .news-list-main__wrap .news-card-preview__box {
    border: 0 !important;
    padding-left: 0;
    padding-right: 0;
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid #e6e7e8 !important;
    min-height: 150px;
    height: auto;
  }
  .news-list-main__wrap {
    margin-bottom: 20px;
  }
  .news-prime-blok .news-box--first .news-first-text {
    border-bottom: 1px solid #e6e7e8 !important;
    padding-bottom: 60px;
    position: relative;
  }
  .news-box--first .news-title {
    margin-bottom: 0;
  }
  .news-prime-blok .news-box--first.news-box {
    padding-bottom: 0;
  }
  .btn-media.btn-media--center {
    margin-top: 40px;
  }
  .media-block.section.section--bg {
    padding-bottom: 40px;
  }
  .section.section-popular {
    background: #ffffff;
    padding-top: 60px;
    padding-bottom: 65px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .service-pop-preview .icon:before {
    color: #c9ddf1 !important;
  }
  .bg-base.service-pop-preview__box {
    background: #f4f7fb;
    min-height: 104px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .bg-base.service-pop-preview__box > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
  .slider-main__wrap {
    margin-top: 30px !important;
  }
  .widget-quiz {
    margin-top: 35px;
  }
  .news-box__sub-caption {
    left: 16px;
  }
  .news-box__bottom {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section-bottom-rss {
    padding-top: 30px;
  }
  .news-box .news-title {
    margin-top: 25px;
    margin-bottom: 15px;
  }
  .news-prime-blok__hr {
    display: none;
  }
  .news-prime-blok .news-date {
    position: static;
    margin: 0;
    left: auto;
    bottom: 30px;
  }
  .news-card-preview {
    margin-bottom: 0 !important;
  }
  .news-prime-blok .news-box--first .news-date {
    bottom: 30px;
  }
  .bg-box.widget-quiz__inner {
    padding-top: 30px;
    padding-bottom: 65px;
    background-size: cover;
    margin-right: -16px;
    margin-left: -16px;
    width: calc(100% + 32px);
    padding-left: 16px;
    padding-right: 16px;
    min-height: 400px;
  }
  .tabs-nav-wrap h3.section-head,
  .tabs-nav-wrap .page-title {
    min-width: 210px;
  }
  .header__link-lang .btn-lang.dropdown-toggle {
    padding-left: 18px;
  }
  .show-767 {
    display: block;
  }
  .hide-767 {
    display: none;
  }
  .header__widget-list > li i {
    margin: 0 !important;
    margin-right: -3px !important;
  }
  .header__widget-list > li span {
    display: none;
  }
  .all-work-link-desctop,
  .link-list-sites span {
    display: none;
  }
  .sec-mos.sec-mos-practice .section-top-link-right .section-head__arrow {
    display: block;
  }
  .service-pop-preview .icon img {
    max-width: 25px;
    z-index: 10;
    margin-right: 0;
  }
  .service-pop-preview__box {
    padding-top: 30px;
  }
  .service-pop-preview .icon:before {
    content: "";
    background: #ffffff;
    border-radius: 50%;
    display: block;
    width: 50px;
    height: 50px;
  }
  .service-pop-preview .inner {
    padding-left: 50px;
  }
  .service-pop-preview .icon {
    width: 25px;
    height: 48px;
    position: absolute;
    margin: 0;
    top: 50%;
    left: 0;
    margin-top: -24px;
  }
  .service-pop-preview .icon-arrow-top {
    display: none;
  }
  .widget-mayor__name > span {
    display: inline-block;
  }
  .widget-mayor__position {
    margin-top: 10px;
  }
  .widget-mayor__name > span {
    font-size: 22px;
  }
  .widget-mayor__name {
    font-size: 16px;
  }
  .widget-mayor__name br {
    display: block;
  }
  .slider-main__wrap {
    margin-bottom: 0;
  }
  .widget-mayor--mobile {
    margin-top: 40px;
  }
  .slick-dots li button {
    background: #c3cad2;
  }
  .main-news .slick-dots li button {
    background: #e20338 !important;
  }
  .slider-main .inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .slider-main__nav {
    position: static;
  }
  .slider-main__nav .slick-dots {
    margin-bottom: 0;
  }
  .slider-main__item {
    margin-bottom: 20px;
  }
  .section-top-link-right,
  .section-head--arrow {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 24px;
  }
  .section-top-link-right .section-head,
  .section-head--arrow .section-head {
    margin-bottom: 10px;
  }
  .fileinput-button .jq-file__browse {
    top: 0;
    margin-top: 30px;
    position: absolute;
    right: 30px;
    left: 0px;
    width: auto;
    display: block;
  }
  .box-drop-style {
    padding-left: 30px;
    padding-top: 100px;
  }
  .slider-main .inner .btn {
    min-width: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .service-pop-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0px !important;
    margin-bottom: 10px !important;
  }
  .service-pop-banner .left {
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    padding-bottom: 20px;
  }
  .service-pop-banner .left:after {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    top: auto;
  }
  .service-pop-banner .center {
    text-align: center;
    margin-bottom: 15px;
    margin-top: 15px;
    padding-right: 0;
    width: 100%;
  }
  .service-pop-banner .right {
    width: 100%;
  }
  .service-pop-banner .btn {
    min-width: 0;
    width: 100%;
  }
  .widget-mayor-btn > span {
    margin-right: 15px;
  }
  .bnt-white {
    width: 100%;
  }
  .widget-mayor-btn i {
    padding-left: 17px;
  }
  .widget-mayor-btn > span {
    margin-right: 15px;
  }
  .widget-mayor__name {
    margin-top: 20px;
  }
  .bg-box.widget-mayor__wrap {
    padding-bottom: 150px;
  }
  .widget-mayor__bottom {
    padding-top: 10px;
    padding-bottom: 10px;
    height: 120px;
  }
  .widget-mayor__bg {
    background-size: contain;
    top: 25px;
    width: 65%;
    left: auto;
  }
  .aside .banner-slider__item {
    min-height: 320px !important;
  }
  .slider-main__item {
    height: 400px !important;
  }
  .news-box.news-box--style-bg .img-lg {
    height: 325px;
  }
  .tab-link-left {
    margin-bottom: 30px;
  }
  .quiz-rersult-num {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .quiz-rersult-num .num {
    margin-bottom: 10px !important;
    margin-right: 0 !important;
    width: 100%;
  }
  .quiz-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .quiz-box > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .quiz-box .quiz-head {
    margin-bottom: 0;
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
    margin-top: 20px;
  }
  .quiz-box .quiz-ok {
    width: 100%;
    margin-bottom: 20px;
  }
  .form-box {
    padding-bottom: 15px;
  }
  .form-sub-title {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .quiz-box .quiz-head__start {
    display: none;
  }
  .quiz-head__start span {
    display: block;
    font-weight: 500;
    margin-top: 5px;
  }
  .quiz-head__end .sub-caption-box {
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }
  input.form-control--sm {
    max-width: none;
  }
  .form-el-counter {
    display: none;
  }
  .btn-and-text {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .btn-and-text .btn,
  .quiz-box .quiz-footer .btn,
  .btn-and-text .quiz-ok {
    min-width: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .map-city .map-city-wrap {
    height: 420px;
  }
  #map-city {
    width: 100%;
    height: 100%;
  }
  .map-city {
    margin-bottom: 40px;
  }
  .map-city__panel {
    width: calc(100% - 20px);
    float: right;
    height: 360px;
  }
  .map-city__address {
    margin-bottom: 20px;
  }
  .panel-search {
    padding-top: 20px;
  }
  .close-search-panel span {
    display: none;
  }
  .header__search-form input.form-control,
  .form-search-line input.form-control {
    padding-right: 125px;
  }
  .text-block ol li,
  .text-block ul li {
    padding-left: 20px;
  }
  .text-block .img-wrapper:after {
    font-size: 14px;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
  }
  .header__widget-list .toggle-search-panel i {
    margin-right: 0;
  }
  .header__widget-list .toggle-search-panel span {
    display: none;
  }
  .simple-list-nav li a {
    font-size: 16px;
  }
  .panel-search .checkbox-list {
    display: none;
  }
  .breadcrumb-empty > li:first-child:after {
    content: "";
  }
  .breadcrumb .home span {
    display: none;
  }
  .breadcrumb .home:after {
    display: inline-block;
  }
  .direction-box__photo {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .direction-box__info .text-arrow-right {
    margin-bottom: 15px;
  }
  .direction-box__info .text-arrow-right i {
    display: none !important;
  }
  .box-photo-sub-boss {
    margin-bottom: 0 !important;
  }
  .main-work-block {
    margin-bottom: 0px;
  }
  .news-card-daily-map--event .news-card-body {
    padding-bottom: 30px;
    min-height: 0;
  }
  .all-work-link-mobile {
    display: block;
  }
  .photo-box .text i {
    display: none;
  }
  .header-nav {
    opacity: 1 !important;
  }
  .direction-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .direction-box__wrap {
    margin-bottom: 40px;
  }
  .direction-box__wrap-sub {
    margin-left: -20px;
    margin-right: -20px;
  }
  .footer {
    margin-top: 20px;
  }
  .aside {
    margin-top: 50px;
  }
  .page-layer:after {
    display: none;
  }
  .checkbox-list .wrap-check {
    width: 50%;
  }
  .bg-box,
  .bg-text-box,
  .bg-box--wide {
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .header__link-home span {
    display: none;
  }
  .footer-list-link {
    display: none;
  }
  .footer-link-sitemap-wrap {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-top: 0 !important;
  }
  .footer-icon-list-wrap {
    padding-bottom: 0 !important;
  }
  .footer-bottom-info .border-top {
    display: none;
  }
  .block-douwnload-md {
    padding-bottom: 75px;
    padding-right: 30px;
    padding-left: 30px;
  }
  .block-douwnload-md .doc-icon {
    top: auto;
    right: 0;
    left: 0;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .block-douwnload-md .doc-icon br {
    display: none;
  }
  .block-douwnload-md .doc-icon-bg {
    display: none;
  }
  .block-douwnload-md .format {
    margin-right: 10px;
  }
  .block-douwnload-md .btn.btn-block.btn-primary {
    margin-right: 0;
    width: 100%;
  }
  .doc-text {
    margin-top: 35px;
    padding: 35px 30px;
  }
  .document-list__wrap {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .two-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .table-tender .side-right,
  .table-tender .side-left {
    width: 100%;
    padding-right: 0;
    text-align: left;
  }
  h1.page-title-prime,
  .h1.page-title-prime {
    padding-right: 0;
  }
  .header-logo .name-company {
    font-size: 15px;
    line-height: 1;
    margin-top: 0px;
  }
  .header-logo .name-company > span {
    font-size: 13px;
  }
  .page-title-prime .name-company {
    line-height: 1;
  }
  .footer__icon-list li {
    margin-bottom: 15px;
  }
  .footer .footer-logo-text .name-company {
    padding-right: 20px;
    font-size: 24px;
  }
  .footer .footer-logo-text .name-company > span {
    font-size: 16px;
  }
  /* 	.header__main-nav {
		padding-left: 270px;
	} */
  .wrap-pagination {
    margin-top: 35px;
    margin-bottom: 45px;
  }
  .header__main-nav .header-logo {
    max-width: 270px;
  }
  .tablet-hide {
    display: none !important;
  }
  .moblile-close-layer,
  .close-search-panel {
    display: block !important;
    z-index: 1;
    top: 20px;
  }
  .moblile-close-layer.close-page-layer,
  .close-search-panel.close-page-layer,
  .moblile-close-layer.close-top-layer,
  .close-search-panel.close-top-layer {
    z-index: 999;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    right: 16px;
  }
  .moblile-close-layer.close-page-layer i,
  .close-search-panel.close-page-layer i,
  .moblile-close-layer.close-top-layer i,
  .close-search-panel.close-top-layer i {
    margin: 0;
  }
  .layer-top__header .close-top-layer {
    right: 0;
    top: 0;
  }
  .tabs-nav-wrap {
    margin-bottom: 40px;
  }
  .layer-link {
    margin-bottom: 30px;
  }
  .layer-link--map .layer-link__title {
    padding-bottom: 15px;
  }
  .panel-site .layer-top__bottom {
    margin-top: 0;
  }
  .header__search-form .bootstrap-select {
    display: none !important;
  }
  .layer-top.panel-search .tabs-nav-wrap,
  .search__nav-top .tabs-nav-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .search__nav-top {
    margin-bottom: 0 !important;
  }
  .header__search-form input.form-control {
    padding-left: 16px;
  }
  .news-box .img-lg {
    height: 200px;
  }
  .wrap-media-video .video-title {
    font-size: 16px;
  }
  .docs-preview-main > div,
  .news-preview-main > div {
    display: none;
  }
  .docs-preview-main > div:nth-child(1),
  .news-preview-main > div:nth-child(1),
  .docs-preview-main > div:nth-child(2),
  .news-preview-main > div:nth-child(2),
  .docs-preview-main > div:nth-child(3),
  .news-preview-main > div:nth-child(3) {
    display: block;
  }
  .docs-preview-main {
    height: auto !important;
    min-height: 0 !important;
  }
  .docs-preview-main a.border-block-sm {
    height: auto !important;
  }
  .header-nav-more {
    padding: 0;
    height: 90px;
    width: 35px;
  }
  .header-nav-more .btn-gamb {
    display: block;
  }
  .header-nav-more .icon-more {
    display: none;
  }
  .news-list-main__wrap .flex-wrap > div:last-child {
    display: block;
  }
  .simple-list-nav a {
    font-size: 16px;
    font-size: 1.6rem;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .wrap-media-video {
    height: 350px;
  }
  .friend-block i {
    display: none;
  }
  .friend-block {
    padding-bottom: 30px;
  }
  .friend-block h4 {
    margin-left: 0;
    margin-right: 0;
  }
  .footer .footer-logo-text .prime {
    font-size: 15px;
    line-height: 1.2;
    margin-top: 2px;
  }
  .close-top-layer span,
  .close-page-layer span {
    display: none;
  }
  .layer-top__header {
    padding-right: 60px;
  }
  .header__search-form .search-form-top {
    padding-right: 0px;
    margin-bottom: 0px;
  }
  .header__search-form-header {
    margin-bottom: 10px !important;
  }
  .layer-top__header .title {
    margin-top: 6px;
  }
  .layer-top__inner {
    padding-top: 12px;
  }
  .form-search-line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .form-search-line .search-btn {
    position: static;
    width: 100%;
    margin-top: 10px;
    padding-top: 21px;
    padding-bottom: 22px;
  }
  .layer-top__header .header__search-form {
    margin-top: 30px;
  }
  .search-form .search-form-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0;
  }
  .search-form-top--btn .param-search {
    margin-left: 0;
  }
  .header__search-form-header .title {
    margin-bottom: 15px;
  }
  .list-dataset__download .btn-group.bootstrap-select {
    width: 100% !important;
  }
  .header__search-form-header {
    margin-bottom: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-bottom: 0;
    padding-right: 40px;
    border-bottom: none;
  }
  footer .footer__icon-list li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  footer .footer__icon-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .list li {
    width: 100%;
  }
  .btn {
    white-space: normal;
  }
  .list-services__item {
    padding-right: 30px;
  }
  .list-services__item span {
    display: none;
  }
  .photo-box-wrap .col-xs-12 {
    width: 50%;
  }
}

@media (max-width: 670px) {
  .photo-box-wrap .col-xs-12 {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .direction-card__photo {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .direction-card__photo img {
    max-width: 180px;
  }
  .direction-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .form-group--field-btn .form-group--field-btn__elem-btn {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    margin-top: 15px;
  }
  .form-group--field-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .form-group--field-btn label.error {
    margin-left: 0px;
  }
  .form-group--field-btn__elem {
    width: 100%;
  }
  .banner-slider .banner-img {
    width: 100%;
    right: 0;
  }
  .banner-slider__item {
    height: 380px;
  }
  .banner-slider .item-caption {
    padding-left: 0;
    bottom: 50px;
    color: #ffffff;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .custom-pagination li {
    margin-right: 4px;
    margin-bottom: 8px;
  }
  .custom-pagination li:last-child {
    margin-right: 0px;
  }
  .custom-pagination li a {
    width: 46px;
    height: 46px;
    line-height: 46px;
  }
}

@media (max-width: 460px) {
  .btn-gamb span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #006fba;
    border-radius: 4px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .btn-gamb span:nth-child(1) {
    left: 0;
    top: 0;
  }
  .btn-gamb span:nth-child(2),
  .btn-gamb span:nth-child(3) {
    top: 8px;
    left: 0;
  }
  .btn-gamb span:nth-child(4) {
    top: 16px;
    left: 0;
  }
  .wiget-list > li {
    margin-left: 15px;
  }
  .wrap-media-video {
    height: 270px;
  }
  .tabs-nav-wrap h3.section-head,
  .tabs-nav-wrap .page-title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .custom-pagination li {
    margin-right: 2px;
    margin-bottom: 8px;
  }
  .custom-pagination li:last-child {
    margin-right: 0px;
  }
  .custom-pagination li a {
    font-size: 14px;
    width: 34px;
    height: 34px;
    line-height: 34px;
  }
}

@media (max-width: 359px) {
  .logo {
    margin-right: 14px;
  }
  .tabs-nav-wrap .nav-tabs > li {
    padding-left: 20px;
    font-size: 14px;
  }
  .header__link-home span,
  .link-list-sites span {
    display: none;
  }
}

@media (max-height: 767px) {
  .header {
    height: 141px;
  }
  .header__bottom-panel {
    height: 91px;
  }
  .header__main-nav {
    height: 90px;
  }
  .header-nav > li > a {
    height: 90px;
    line-height: 90px;
  }
  .header-nav-more {
    height: 90px;
  }
  .breadcrumb-section {
    padding-top: 20px;
    min-height: auto;
  }
  .breadcrumb {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.title-for-print {
  display: none !important;
}

/* печать */
@media print {
  .print-hide,
  .header-nav,
  .header__top-panel,
  .layer-top,
  .footer__icon-list,
  .yii-debug-toolbar,
  .aside,
  .breadcrumb-section,
  .nav-tabs,
  .wrap-pagination {
    display: none !important;
  }
  .main,
  .print-wide {
    width: 100% !important;
  }
  a.footer-logo-container:after {
    content: "" !important;
  }
  .footer {
    border-top: 1px solid #d5dae0;
    display: none !important;
  }
  .document-list__wrap,
  .video-audio-play {
    display: none !important;
  }
  .header-logo .title-for-print {
    display: block !important;
  }
  .header-logo .name-company {
    display: none !important;
  }
  .header__main-nav .header-logo {
    width: 100%;
    max-width: none;
  }
  .tabs-nav-wrap,
  .header-wrap .header-fix {
    border: none;
  }
  .bg-box,
  .wrap-media-video .video-preview {
    border: 1px solid #d5dae0;
  }
  .layer-top {
    display: none !important;
  }
  .header {
    padding-top: 0 !important;
  }
}

/* media-photo */
.section.section-gallery {
  padding: 45px 30px;
  margin-top: 30px;
  margin-bottom: 90px;
}

.gallery-preview-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-left: -4px;
  margin-right: -4px;
}

.gallery-preview-list li {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 25%;
  border: 2px solid transparent;
}

.gallery-preview-list a {
  width: 100%;
  display: block;
}

.gallery-preview-list img {
  width: 100%;
  height: auto;
}

.gallery-media-photo-head {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

@media (max-width: 767px) {
  .gallery-preview-list li {
    width: 50%;
  }
}

@media (max-width: 550px) {
  .gallery-preview-list li {
    width: 100%;
  }
}

/* fancybox */
.fancybox-caption-wrap {
  display: none !important;
}

.fancybox-image-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px 20px 20px;
  font-size: 18px;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(35%, rgba(0, 0, 0, 0.45)), to(#000000)) !important;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 35%, #000000 100%) !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 35%, #000000 100%) !important;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 20;
}

@media (max-width: 767px) {
  .fancybox-image-title {
    padding: 15px 10px;
    font-size: 12px;
  }
}

/* seach-block */
.seach-block {
  padding: 30px 0;
}

.seach-block__info {
  font-size: 16px;
  color: #40cced;
}

.seach-block__field {
  position: relative;
}

.seach-block__field input.form-control {
  height: 60px;
}

.seach-block__field i {
  position: absolute;
  right: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0.4;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.seach-block__field i:hover {
  opacity: 1;
}

.seach-block .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.seach-block .row:after,
.seach-block .row:before {
  content: none;
}

@media (max-width: 767px) {
  .seach-block {
    padding: 20px 0;
  }
  .seach-block__info {
    margin-bottom: 15px;
  }
  .seach-block__field {
    position: relative;
  }
  .seach-block__field i {
    right: 10px;
  }
}

/* sheare-list */
.sheare-list-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.sheare-list-wrap .sheare-btn {
  color: #abafbb;
  border-radius: 6px;
}

.sheare-list-wrap .sheare-btn:hover,
.sheare-list-wrap .sheare-btn.active {
  color: #e20338;
}

.sheare-list-wrap .sheare-ell a {
  color: #abafbb;
  border: 2px solid #c9c9c9;
  border-radius: 50%;
}

.sheare-list-wrap .sheare-ell a:hover,
.sheare-list-wrap .sheare-ell a.active {
  color: #e20338;
  border: 2px solid #e20338;
}

.sheare-list-wrap .sheare-btn,
.sheare-list-wrap .sheare-ell a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.sheare-list-wrap .sheare-btn i,
.sheare-list-wrap .sheare-ell a i {
  font-size: 18px;
}

.sheare-list-wrap .sheare-btn .icon-vk,
.sheare-list-wrap .sheare-ell a .icon-vk {
  font-size: 10px;
}

.sheare-list-wrap .sheare-btn .icon-tw,
.sheare-list-wrap .sheare-ell a .icon-tw {
  font-size: 14px;
}

.sheare-list-wrap ul.sheare-list {
  position: absolute;
  right: 100%;
  top: -3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 8px;
  margin: 0;
  height: 44px;
  width: 0;
  overflow: hidden;
  opacity: 0;
  border-radius: 6px;
  background-color: #ffffff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.sheare-list-wrap ul.sheare-list.active {
  visibility: visible;
  opacity: 1;
  width: 168px;
}

.sheare-list-wrap ul.sheare-list .sheare-ell {
  display: inline-block;
  width: auto;
  float: none;
  margin-right: 5px;
}

.sheare-list-wrap ul.sheare-list .sheare-ell:last-child {
  margin-right: 0;
}

.sheare-list-wrap ul.sheare-list {
  margin-right: 4px !important;
}

.sheare-list-wrap ul.sheare-list .ya-share2__item .ya-share2__icon {
  width: 34px !important;
  height: 34px !important;
  font-size: 18px;
  line-height: 30px;
}

.sheare-list-wrap ul.sheare-list .ya-share2__item.ya-share2__item_service_vkontakte .ya-share2__icon:before {
  font-size: 10px;
  line-height: 34px;
}

.sheare-list-wrap ul.sheare-list .ya-share2__item.ya-share2__item_service_twitter .ya-share2__icon:before {
  font-size: 14px;
  line-height: 32px;
}

/* soc-tv-card */
.soc-tv-card {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background-color: #f1f2f2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
  margin-bottom: 50px;
}

.soc-tv-card .sheare-num {
  display: none;
}

.soc-tv-card:hover {
  -webkit-box-shadow: 0 6px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.soc-tv-card:hover .soc-tv-card__title {
  color: #e20338;
}

.soc-tv-card__preview {
  position: relative;
  width: 100%;
  height: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.soc-tv-card__preview-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 39, 43, 0.35);
}

.soc-tv-card__preview-bg i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
}

.soc-tv-card__preview-bg i:before {
  margin-left: 6px;
}

.soc-tv-card__body {
  padding: 28px 35px 26px;
}

.soc-tv-card__content {
  position: relative;
  height: 72px;
  margin-bottom: 15px;
  overflow: hidden;
}

.soc-tv-card__content:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 25px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(241, 242, 242, 0)), color-stop(25%, rgba(241, 242, 242, 0.35)), to(#f1f2f2));
  background: -webkit-linear-gradient(top, rgba(241, 242, 242, 0) 0%, rgba(241, 242, 242, 0.35) 25%, #f1f2f2 100%);
  background: linear-gradient(to bottom, rgba(241, 242, 242, 0) 0%, rgba(241, 242, 242, 0.35) 25%, #f1f2f2 100%);
}

.soc-tv-card__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 11px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.soc-tv-card__text {
  font-size: 18px;
  line-height: 1.3;
}

.soc-tv-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.soc-tv-card__date {
  font-size: 15px;
  color: #939598;
  line-height: 1.2;
}

.soc-tv-card__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -8px;
}

.soc-tv-card__view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 34px;
  color: #abafbb;
  margin-right: 6px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.soc-tv-card__view:hover {
  color: #e20338;
}

@media (max-width: 767px) {
  .soc-tv-card:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .soc-tv-card__preview {
    height: 180px;
  }
  .soc-tv-card__body {
    padding: 25px 20px 25px;
  }
  .soc-tv-card__content {
    height: 62px;
  }
  .soc-tv-card__title {
    font-size: 16px;
  }
  .soc-tv-card__text {
    font-size: 16px;
  }
  .soc-tv-card__date {
    font-size: 14px;
  }
}

.soc-tv-modal .modal-dialog {
  width: 100%;
  max-width: 754px;
}

.soc-tv-modal .modal-content {
  padding: 0;
  border-radius: 6px;
  background: #ffffff;
  border: none;
  overflow: hidden;
}

.soc-tv-modal .icon-close {
  position: absolute;
  top: 0;
  right: -52px;
  color: #ffffff;
  font-size: 26px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
  z-index: 30;
}

.soc-tv-modal .icon-close:hover {
  color: #e20338;
}

.soc-tv-modal .sheare-list-wrap ul.sheare-list {
  background-color: #f1f2f2;
}

.soc-tv-modal__video .media-card .video-layer {
  width: 100%;
  height: 425px;
  background-color: #000000;
  vertical-align: text-bottom;
}

.soc-tv-modal__video .media-card__video-bg:before {
  content: none;
}

.soc-tv-modal__body {
  padding: 44px 36px 36px;
}

.soc-tv-modal__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 11px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.soc-tv-modal__text {
  font-size: 18px;
  line-height: 1.3;
}

.soc-tv-modal__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.soc-tv-modal__date {
  font-size: 15px;
  color: #939598;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .soc-tv-modal .icon-close {
    top: -30px;
    right: 0px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .soc-tv-modal {
    background-color: #ffffff;
  }
  .soc-tv-modal .modal-dialog {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .soc-tv-modal .modal-content {
    padding-top: 40px;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .soc-tv-modal .icon-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000000;
    font-size: 18px;
  }
  .soc-tv-modal__video .media-card .video-layer {
    width: 100%;
    height: 255px;
  }
  .soc-tv-modal__body {
    padding: 40px 20px 30px;
  }
  .soc-tv-modal__content {
    margin-bottom: 30px;
  }
  .soc-tv-modal__title {
    font-size: 16px;
  }
  .soc-tv-modal__text {
    font-size: 16px;
  }
  .soc-tv-modal__date {
    font-size: 14px;
  }
}

@media (max-width: 424px) {
  .soc-tv-modal__video .media-card .video-layer {
    height: 195px;
  }
}

/* flex-more */
.flex-more {
  padding-top: 10px;
}

.flex-more .wrap-pagination {
  margin: 0;
  margin-bottom: 10px;
  text-align: left;
}

.flex-more .btn {
  width: 100%;
  max-width: 100%;
  margin-bottom: 10px;
}

.flex-more.flex-more-center .wrap-pagination {
  margin: 0;
  margin-bottom: 10px;
  text-align: center;
}

.flex-more.flex-more-center .row-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-more.flex-more-center .row-between:before {
  content: none;
}

.flex-more.flex-more-center .row-between:after {
  content: none;
}

@media (max-width: 767px) {
  .flex-more.flex-more-center .row-between {
    display: block;
  }
}

.category-block {
  margin-bottom: 35px;
}

.category-block .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.category-block .row:before {
  content: none;
}

.category-block .row:after {
  content: none;
}

@media (max-width: 767px) {
  .category-block {
    margin-bottom: 30px;
  }
}

/* bg-color */
.bg-color {
  background-color: #f1f2f2;
}

.bg-color.header__bottom-panel {
  border-bottom: 1px solid #d8dbdf;
}

/* tv-prime-slider */
.tv-prime-section {
  padding-bottom: 20px;
}

.tv-prime-section h1.page-title {
  margin-bottom: 15px;
}

.slider-wrap {
  position: relative;
}

.slider-wrap .slider-control {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  max-width: 980px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slider-wrap .slider-control__arrow {
  position: absolute;
  top: 50%;
  color: #ffffff;
  font-size: 60px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

.slider-wrap .slider-control__arrow.slide-prev {
  left: -100px;
}

.slider-wrap .slider-control__arrow.slide-next {
  right: -100px;
}

.tv-prime-slider .slick-dots {
  display: none !important;
  margin-bottom: 0;
}

.tv-prime-slider .slider-ell {
  width: 100vw;
  max-width: 950px;
  padding: 0 15px;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.tv-prime-slider .slider-ell.slick-center .tv-prime-slide__content {
  background-color: rgba(33, 39, 43, 0.35);
}

.tv-prime-slider .slider-ell.slick-center .tv-prime-slide__head {
  opacity: 1;
}

.tv-prime-slider .slider-ell.slick-center .tv-prime-slide__body {
  opacity: 1;
}

@media (min-width: 768px) {
  .tv-prime-section {
    padding-bottom: 28px;
  }
  .tv-prime-slider .slick-dots {
    display: none !important;
  }
  .tv-prime-slider .slider-ell {
    max-width: 710px;
  }
  .slider-wrap .slider-control {
    max-width: 710px;
  }
  .slider-wrap .slider-control__arrow.slide-prev {
    left: -20px;
  }
  .slider-wrap .slider-control__arrow.slide-next {
    right: -20px;
  }
}

@media (min-width: 992px) {
  .tv-prime-slider .slider-ell {
    max-width: 900px;
  }
  .slider-wrap .slider-control {
    max-width: 900px;
  }
  .slider-wrap .slider-control__arrow.slide-prev {
    left: -40px;
  }
  .slider-wrap .slider-control__arrow.slide-next {
    right: -40px;
  }
}

@media (min-width: 1270px) {
  .tv-prime-slider .slider-ell {
    max-width: 980px;
  }
  .slider-wrap .slider-control {
    max-width: 980px;
  }
  .slider-wrap .slider-control__arrow.slide-prev {
    left: -60px;
  }
  .slider-wrap .slider-control__arrow.slide-next {
    right: -60px;
  }
}

@media (min-width: 1399px) {
  .slider-wrap .slider-control__arrow.slide-prev {
    left: -100px;
  }
  .slider-wrap .slider-control__arrow.slide-next {
    right: -100px;
  }
}

@media (max-width: 767px) {
  .tv-prime-slider .slick-track {
    padding: 10px 0;
  }
  .tv-prime-slider .slider-ell {
    width: 100vw;
    max-width: 100vw;
    padding: 0 15px;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  .tv-prime-slider .slider-ell.slick-center {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .slider-wrap .slider-control {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    left: 0;
    top: 100%;
    width: 100vw;
    height: 50px;
    max-width: 980px;
    padding: 0 15px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .slider-wrap .slider-control__arrow {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    font-size: 14px;
    color: #ffffff;
    background-color: #e20338;
    border: 1px solid #e20338;
    border-radius: 50%;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .slider-wrap .slider-control__arrow.slide-prev.icon-sl-angle-left {
    left: auto;
    margin-right: 10px;
  }
  .slider-wrap .slider-control__arrow.slide-prev.icon-sl-angle-left:before {
    content: "\e92b";
    margin-left: -1px;
  }
  .slider-wrap .slider-control__arrow.slide-next.icon-sl-angle-right {
    right: auto;
  }
  .slider-wrap .slider-control__arrow.slide-next.icon-sl-angle-right:before {
    content: "\e901";
    margin-right: -3px;
  }
}

.tv-prime-slide {
  position: relative;
  width: 100%;
  height: calc(100vh - 320px);
  min-height: 420px;
  max-height: 528px;
  color: #ffffff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 6px;
  overflow: hidden;
}

.tv-prime-slide:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 140px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(33, 39, 43, 0)), to(rgba(33, 39, 43, 0.6)));
  background: -webkit-linear-gradient(bottom, rgba(33, 39, 43, 0) 0%, rgba(33, 39, 43, 0.6) 100%);
  background: linear-gradient(to top, rgba(33, 39, 43, 0) 0%, rgba(33, 39, 43, 0.6) 100%);
}

.tv-prime-slide:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 39, 43, 0)), to(rgba(33, 39, 43, 0.6)));
  background: -webkit-linear-gradient(top, rgba(33, 39, 43, 0) 0%, rgba(33, 39, 43, 0.6) 100%);
  background: linear-gradient(to bottom, rgba(33, 39, 43, 0) 0%, rgba(33, 39, 43, 0.6) 100%);
}

.tv-prime-slide .sheare-list-wrap .sheare-btn {
  color: #ffffff;
}

.tv-prime-slide .soc-tv-card__view {
  color: #ffffff;
}

.tv-prime-slide__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 23px 30px 42px;
  background-color: rgba(33, 39, 43, 0.75);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 10;
}

.tv-prime-slide__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.tv-prime-slide__head .sheare-num {
  display: none;
}

.tv-prime-slide__body {
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.tv-prime-slide__date {
  font-size: 15px;
  line-height: 1.2;
}

.tv-prime-slide__title {
  font-size: 32px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 26px;
}

.tv-prime-slide__text {
  font-size: 22px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
}

.tv-prime-slide .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 224px;
  margin-bottom: 0;
}

.tv-prime-slide .btn i {
  margin-left: 16px;
}

@media (max-width: 1440px) {
  .tv-prime-slide {
    height: calc(100vh - 290px);
  }
}

@media (max-width: 1199px) {
  .tv-prime-slide {
    height: 480px;
  }
  .tv-prime-slide__title {
    font-size: 26px;
  }
  .tv-prime-slide__text {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .tv-prime-slide {
    height: 400px;
    min-height: 400px;
  }
  .tv-prime-slide__content {
    padding: 20px 30px 30px;
  }
  .tv-prime-slide__date {
    font-size: 15px;
    line-height: 1.2;
  }
  .tv-prime-slide__title {
    font-size: 21px;
    margin-bottom: 20px;
  }
  .tv-prime-slide__text {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .tv-prime-slide .btn {
    padding: 12px 20px;
  }
  .tv-prime-slide .btn i {
    margin-left: 14px;
  }
}

@media (max-width: 767px) {
  .tv-prime-slide {
    height: 320px;
    min-height: 320px;
  }
  .tv-prime-slide__content {
    padding: 10px 20px 20px;
  }
  .tv-prime-slide__date {
    font-size: 14px;
  }
  .tv-prime-slide__title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .tv-prime-slide__text {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .tv-prime-slide .btn {
    width: 200px;
  }
  .tv-prime-slide .btn i {
    margin-left: 10px;
  }
}

@media (max-width: 426px) {
  .tv-prime-slide {
    height: 240px;
    min-height: 240px;
  }
}

/* modal */
.modal.in .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.section.media-block {
  padding-top: 89px;
  padding-bottom: 75px;
}

@media (max-width: 767px) {
  .section.media-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* media-card  */
.media-card {
  margin-bottom: 22px;
}

.media-card .video-layer {
  position: relative;
  width: 100%;
  height: 195px;
  vertical-align: middle;
  z-index: 10;
}

.media-card .video-layer:focus {
  outline: none;
}

.media-card__video {
  position: relative;
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}

.media-card__video.video-play .media-card__video-bg {
  visibility: hidden;
  opacity: 0;
}

.media-card__video-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 32, 32, 0.3);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 20;
}

.media-card__video-bg .sheare-num {
  display: none;
}

.media-card__video-bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 40%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(32, 32, 32, 0.6)), to(rgba(32, 32, 32, 0)));
  background: -webkit-linear-gradient(top, rgba(32, 32, 32, 0.6) 0%, rgba(32, 32, 32, 0) 100%);
  background: linear-gradient(to bottom, rgba(32, 32, 32, 0.6) 0%, rgba(32, 32, 32, 0) 100%);
}

.media-card__video-bg .sheare-list-wrap {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 30;
}

.media-card__video-bg .btn-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 36px;
  bottom: 38px;
  width: 100%;
  max-width: 224px;
  padding: 15px 10px;
}

.media-card__video-bg .btn-primary i {
  margin-left: 18px;
}

.media-card__video-bg .btn-play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-top: -8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.media-card__video-bg .btn-play i {
  margin-left: 4px;
}

.media-card__video-bg .btn-play:hover {
  color: #e20338;
  border: 2px solid #e20338;
}

.media-card__title {
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.media-card__date {
  font-size: 15px;
  color: #a9abb1;
  line-height: 1.2;
}

.media-card.media-card--full .video-layer {
  width: 100%;
  height: 471px;
}

.media-card.media-card--full .media-card__video-bg .btn-play {
  display: none;
}

@media (max-width: 1270px) {
  .media-card .video-layer {
    height: 165px;
  }
  .media-card.media-card--full .video-layer {
    height: 450px;
  }
}

@media (max-width: 991px) {
  .media-card .video-layer {
    height: 404px;
  }
  .media-card__title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .media-card__date {
    font-size: 14px;
  }
  .media-card.media-card--full .video-layer {
    width: 100%;
    height: 404px;
  }
  .media-card.media-card--full .media-card__video-bg .btn-play {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .media-card.media-card--full .media-card__video-bg .btn-primary {
    display: none;
  }
}

@media (max-width: 767px) {
  .media-card .video-layer {
    height: 255px;
  }
  .media-card.media-card--full .video-layer {
    height: 255px;
  }
}

@media (max-width: 424px) {
  .media-card .video-layer {
    height: 195px;
  }
  .media-card.media-card--full .video-layer {
    height: 195px;
  }
}

/* banner-abilympics */
.banner-abilympics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 38px 35px;
  background-color: #f2f2f2;
  border-radius: 4px;
  background-image: url("../img/general/icon/banner-logo.svg");
  background-position: 60% center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.banner-abilympics__logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 160px;
  height: 126px;
  padding-right: 20px;
}

.banner-abilympics__logo img {
  width: 88px;
  height: auto;
}

.banner-abilympics__logo:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background-color: #00aa21;
  border-radius: 4px;
}

.banner-abilympics__content {
  padding: 5px 0 0;
}

.banner-abilympics__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding-left: 62px;
}

.banner-abilympics__body .title {
  color: #001382;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin-bottom: 3px;
}

.banner-abilympics__body .title .title-prime {
  font-size: 19px;
  text-transform: uppercase;
}

.banner-abilympics__body .prime {
  color: #fd0000;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 0;
}

.banner-abilympics__body .prime .prime-num {
  font-size: 40px;
  margin: 0 5px 0 3px;
  line-height: 20px;
}

.banner-abilympics__body .prime .prime-descr {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  font-size: 36px;
  text-transform: lowercase;
}

.banner-abilympics__body .sub {
  color: #fd0000;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

.banner-abilympics__btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 40px;
}

.banner-abilympics__btn .btn {
  position: relative;
  width: 284px;
  max-width: 284px;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #00af1e;
  border: none;
}

.banner-abilympics__btn .btn .text {
  position: relative;
  z-index: 10;
}

.banner-abilympics__btn .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 5;
}

.banner-abilympics__btn .btn:hover:after {
  opacity: 1;
}

@media (max-width: 1269px) {
  .banner-abilympics {
    padding: 38px 30px;
    background-position: 90% center;
  }
  .banner-abilympics__body {
    display: block;
    width: 100%;
    padding-left: 40px;
  }
  .banner-abilympics__content {
    margin-bottom: 20px;
  }
  .banner-abilympics__btn {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .banner-abilympics {
    display: block;
    padding: 30px;
    background-image: url("../img/general/icon/banner-logo-m.svg");
    background-position: right center;
  }
  .banner-abilympics__logo {
    display: none;
  }
  .banner-abilympics__logo img {
    width: 88px;
    height: auto;
  }
  .banner-abilympics__logo:after {
    content: none;
  }
  .banner-abilympics__body {
    display: block;
    width: 100%;
    padding-left: 0;
  }
  .banner-abilympics__body .title {
    margin-bottom: 10px;
  }
  .banner-abilympics__body .prime {
    display: inline-block;
    margin-bottom: 5px;
  }
  .banner-abilympics__body .prime .prime-num {
    font-size: 26px;
    line-height: 1.2;
    margin: 0 10px 0 0;
  }
  .banner-abilympics__body .prime .prime-descr {
    font-size: 20px;
  }
  .banner-abilympics__body .sub {
    margin-bottom: 10px;
  }
  .banner-abilympics__content {
    margin-bottom: 30px;
  }
  .banner-abilympics__btn {
    margin-left: 0;
  }
  .banner-abilympics__btn .btn {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 424px) {
  .banner-abilympics {
    background-position: -150% center;
  }
}

/* banner-base */
.banner-base {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 200px;
  padding: 37px 60px;
  background-color: #f2f2f2;
  border-radius: 4px;
}

.banner-base__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  z-index: 5;
}

.banner-base__logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 140px;
  height: 126px;
  padding-right: 60px;
  z-index: 10;
}

.banner-base__logo img {
  width: 80px;
  height: auto;
}

.banner-base__logo:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.3;
}

.banner-base__logo.banner-base__logo-xl {
  width: 180px;
}

.banner-base__logo.banner-base__logo-xl img {
  width: 120px;
  height: auto;
}

.banner-base__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding-left: 62px;
  z-index: 10;
}

.banner-base__body .prime {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
}

.banner-base__body .sub {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 20px;
}

.banner-base__btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 70px;
}

.banner-base__btn .btn {
  position: relative;
  width: 284px;
  max-width: 284px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.banner-base__btn .btn .text {
  position: relative;
  z-index: 10;
}

.banner-base__btn .btn:hover {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
  -webkit-box-shadow: 0 4px 13px 0px rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 13px 0px rgba(255, 255, 255, 0.15);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.sub_head {
	color: #203864;
	font-size: 20px;
}

.br_head_dt {
	border: 2px dotted #203864;
	padding: 8px;
	margin-bottom: 8px;
}

.br_head_sl {
	border: 1px solid #203864;
	padding: 8px;
	margin-bottom: 8px;
}

.clicker {
outline:none;
cursor:pointer;
}

.hiddendiv{
display:none;
}


@media (max-width: 1269px) {
  .banner-base {
    padding: 38px 40px;
  }
  .banner-base__logo {
    width: 120px;
    padding-right: 40px;
  }
  .banner-base__logo.banner-base__logo-xl {
    width: 160px;
  }
  .banner-base__logo.banner-base__logo-xl img {
    width: 120px;
    height: auto;
  }
  .banner-base__body {
    display: block;
    width: 100%;
    padding-left: 40px;
  }
  .banner-base__content {
    margin-bottom: 20px;
  }
  .banner-base__btn {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .banner-base {
    display: block;
    padding: 30px;
    background-color: #0095b8;
    background-position: right center;
  }
  .banner-base__logo {
    width: 100%;
    height: auto;
    padding-right: 0;
    margin: 0 auto 30px;
  }
  .banner-base__logo img {
    display: block;
    width: 88px;
    height: auto;
    margin: 0 auto;
  }
  .banner-base__logo:after {
    content: none;
  }
  .banner-base__body {
    display: block;
    width: 100%;
    padding-left: 0;
  }
  .banner-base__body .title {
    margin-bottom: 10px;
  }
  .banner-base__body .prime {
    display: inline-block;
    margin-bottom: 5px;
  }
  .banner-base__body .prime .prime-num {
    font-size: 26px;
    line-height: 1.2;
    margin: 0 10px 0 0;
  }
  .banner-base__body .prime .prime-descr {
    font-size: 20px;
  }
  .banner-base__body .sub {
    margin-bottom: 10px;
  }
  .banner-base__content {
    margin-bottom: 30px;
  }
  .banner-base__btn {
    margin-left: 0;
  }
  .banner-base__btn .btn {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 424px) {
  .banner-base {
    background-position: -150% center;
  }
}

/* nav-btn */
.nav-btn {
  margin-left: 0;
}

@media (max-width: 1024px) {
  .nav-btn {
    padding-left: 0px;
  }
  .header-nav-more {
    margin: 0px;
  }
}

.nav-btn a {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 8px;
  background-color: #00cdef;
}

.nav-btn a:after {
  content: none !important;
}

.nav-btn:hover a {
  color: #ffffff !important;
  background-color: #0c6e8c;
}

.nav-btn:hover a:after {
  content: none !important;
}

/* .nav-btn.active a {
	color: #ffffff;
	background-color: #0c6e8c;
} */
.header-new-styles .nav-btn.active a {
  background: #ffffff;
  color: #48D6D2 !important;
  border: 2px solid #48D6D2;
}

.header-new-styles .nav-btn.active a:hover {
  background-color: #E20338 !important;
  border-color: #E20338 !important;
  color: #ffffff !important;
}

.header-new-styles .nav-btn a {
  background: #48D6D2;
  color: #ffffff;
  white-space: nowrap;
}

.header-new-styles .nav-btn a:hover {
  background: #E20338;
}

.nav-btn.active a:after {
  content: none !important;
}

.nav-accordion .nav-btn.item-wrap {
  padding-right: 0;
}

/* ===== moscow longevity ===== */
.mr-b-80 {
  margin-bottom: 40px;
}

.sec-mos-prime {
  padding-bottom: 20px;
}

.sec-mos {
  padding: 45px 0 50px;
}

.sec-mos.sec-mos--contact {
  background-color: #00853b;
}

.mos-title {
  font-size: 28px;
  font-size: 2.8rem;
  color: #00853b;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

html[color-schema="color-brown"] .mos-title {
  color: #a9e44d;
}

html[color-schema="color-blue"] .mos-title {
  color: #063462;
}

html[color-schema="color-black"] .mos-title {
  color: #ffffff;
}

html[color-schema="color-beige"] .mos-title {
  color: #4d4b43;
}

.text-white .mos-title {
  color: #ffffff;
}

.mos-text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 36px;
}

.mos-text p {
  margin-bottom: 10px;
}

.sec-mos .section-top-link-right,
.sec-mos .section-head--arrow {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 0;
}

.sec-mos .section-top-link-right .section-head__arrow,
.sec-mos .section-head--arrow .section-head__arrow {
  margin-top: 6px;
}

.sec-mos .btn-media.btn-media--center {
  margin-top: 20px;
}

.show-xs {
  display: none;
}

@media (max-width: 767px) {
  .mr-b-80 {
    margin-bottom: 30px;
  }
  .sec-mos-prime {
    padding-bottom: 0px;
  }
  .sec-mos {
    padding: 30px 0 30px;
  }
  .mos-title {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .mos-text {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .sec-mos .section-top-link-right,
  .sec-mos .section-head--arrow {
    margin-bottom: 0;
  }
  .show-xs {
    display: block;
  }
}

.mos-primeSlider {
  position: relative;
  margin-bottom: 45px;
}

.mos-primeSlider__control {
  position: absolute;
  right: 35px;
  bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 20;
}

.mos-primeSlider__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-right: 15px;
  color: #ffffff;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}

.mos-primeSlider__arrow.slide-prev:before {
  margin-left: -1px;
}

.mos-primeSlider__arrow.slide-next:before {
  margin-right: -3px;
}

.mos-primeSlider__arrow:last-child {
  margin-right: 0;
}

.mos-primeSlider__arrow:hover {
  color: #ffffff;
  background-color: #e20338;
  border: 1px solid #e20338;
}

.mos-primeSlider .slick-dots {
  position: absolute;
  right: 170px;
  bottom: 52px;
  width: auto;
  margin-bottom: 0;
  padding: 0;
}

.mos-primeSlider .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 4px;
  background-color: rgba(255, 255, 255, 0.5);
}

.mos-primeSlider .slick-dots li button:hover,
.mos-primeSlider .slick-dots li button:focus {
  background-color: #e20338 !important;
}

.mos-primeSlider .slick-dots li.slick-active button {
  background-color: #e20338 !important;
}

.mos-prime-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  height: 518px;
  padding: 40px 35px;
  border-radius: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.mos-prime-slide:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(57, 56, 54, 0.5);
  z-index: 5;
}

.mos-prime-slide:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 158px;
  background: -webkit-linear-gradient(90deg, rgba(32, 32, 32, 0.8), rgba(32, 32, 32, 0));
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(32, 32, 32, 0.8)), to(rgba(32, 32, 32, 0)));
  background: -webkit-linear-gradient(bottom, rgba(32, 32, 32, 0.8), rgba(32, 32, 32, 0));
  background: linear-gradient(0deg, rgba(32, 32, 32, 0.8), rgba(32, 32, 32, 0));
  z-index: 10;
}

.mos-prime-slide__content {
  position: relative;
  z-index: 20;
}

.mos-prime-slide__title {
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  max-width: 650px;
  margin-bottom: 25px;
}

.mos-prime-slide .btn {
  width: 100%;
  max-width: 224px;
}

@media (max-width: 767px) {
  .mos-primeSlider {
    position: relative;
    margin-bottom: 60px;
  }
  /* .mos-primeSlider__control {
    display: none;
  } */
  .mos-primeSlider .slick-dots {
    position: absolute;
    left: 0;
    right: auto;
    bottom: -40px;
    width: 100%;
    padding: 0 15px;
    margin: 0;
  }
  .mos-primeSlider .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 4px;
    background-color: #e20338;
    opacity: 0.5;
  }
  .mos-primeSlider .slick-dots li button:hover {
    opacity: 1;
  }
  .mos-primeSlider .slick-dots li.slick-active button {
    opacity: 1;
    background-color: #e20338 !important;
  }
  .mos-primeSlider .slick-dots li:last-child {
    width: 8px;
  }
  .mos-prime-slide {
    height: 340px;
    padding: 20px 20px 20px;
  }
  .mos-prime-slide:after {
    height: 100px;
  }
  .mos-prime-slide__title {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    max-width: 650px;
    margin-bottom: 25px;
  }
  .mos-prime-slide .btn {
    width: 100%;
    max-width: 100%;
  }
}

.mos-slider__sl {
  margin: 0 -15px;
}

.mos-slider__ell {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  height: auto !important;
  padding: 0 15px;
}

.mos-slider__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
}

.mos-slider__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-right: 15px;
  color: #d2d3d4;
  font-size: 14px;
  border: 1px solid #d2d3d4;
  border-radius: 50%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}

.mos-slider__arrow.slide-prev:before {
  margin-left: -1px;
}

.mos-slider__arrow.slide-next:before {
  margin-right: -3px;
}

.mos-slider__arrow:last-child {
  margin-right: 0;
}

.mos-slider__arrow:hover {
  color: #ffffff;
  background-color: #e20338;
  border: 1px solid #e20338;
}

.mos-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 40px;
}

@media (max-width: 767px) {
  .mos-slider .slick-track {
    padding-bottom: 20px;
  }
  .mos-slider__control {
    margin-bottom: 40px;
  }
}

.mos-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -40px;
  width: auto;
  padding: 0 15px;
  margin: 0;
}

.mos-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 4px;
  background-color: #e20338;
  opacity: 0.5;
}

.mos-slider .slick-dots li button:hover {
  opacity: 1;
}

.mos-slider .slick-dots li.slick-active button {
  opacity: 1;
}

.mos-slider .slick-dots li:last-child {
  width: 8px;
}

@media (max-width: 767px) {
  .mos-slider .slick-dots {
    bottom: -10px;
    width: 100%;
  }
}

.photo-gall-card {
  position: relative;
  display: block;
  width: 100%;
  height: 220px;
  border-radius: 4px;
  overflow: hidden;
}

.photo-gall-card__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.photo-gall-card:hover .photo-gall-card__bg {
  -webkit-transform: scale(1.06, 1.06);
  transform: scale(1.06, 1.06);
}

.quotes-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 43px 65px 46px;
  border-radius: 4px;
  background-color: #ffffff;
  overflow: hidden;
}

.quotes-card:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #e20338;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.quotes-card:hover:after {
  height: 5px;
}

.quotes-card__icon {
  color: #c8c8c8;
  font-size: 24px;
  margin-top: 6px;
  margin-right: 60px;
}

.quotes-card__text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 26px;
}

.quotes-card__autor .name {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 7px;
}

.quotes-card__autor .descr {
  color: #939598;
}

@media (max-width: 767px) {
  .quotes-card {
    display: block;
    padding: 30px 20px 30px;
    border-radius: 4px;
  }
  .quotes-card__icon {
    display: block;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .quotes-card__text {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .quotes-card__autor .name {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  .quotes-card__autor .descr {
    color: #939598;
  }
}

.figures-card {
  display: block;
  width: 100%;
  padding: 52px 20px 44px;
  border-radius: 4px;
  color: #ffffff;
  text-align: center;
  cursor: default;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.figures-card.figures-card--red {
  background-color: #a91e2e;
}

.figures-card.figures-card--red:hover {
  -webkit-box-shadow: 0 10px 20px 0 rgba(169, 30, 46, 0.3);
  box-shadow: 0 10px 20px 0 rgba(169, 30, 46, 0.3);
}

.figures-card.figures-card--green {
  background-color: #00853b;
}

.figures-card.figures-card--green:hover {
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 133, 59, 0.3);
  box-shadow: 0 10px 20px 0 rgba(0, 133, 59, 0.3);
}

.figures-card__num {
  font-size: 60px;
  font-weight: 800;
  line-height: 0.8;
}

.figures-card__hr {
  display: inline-block;
  width: 52px;
  height: 4px;
  margin: 26px 0 18px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.4);
}

.figures-card__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.mos-slider .news-box__img {
  margin-top: 0;
  height: 200px;
}

.mos-cont__ell {
  margin-bottom: 12px;
}

.mos-cont__ell .descr {
  line-height: 1.3;
  opacity: 0.6;
  margin-bottom: 3px;
}

.mos-cont__ell .prime {
  font-weight: 500;
  line-height: 1.3;
}

.mos-cont__ell .prime a:hover {
  color: #e20338;
}

.mos-soc__title {
  line-height: 1.3;
  opacity: 0.6;
  margin-bottom: 32px;
}

.mos-soc__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.mos-soc__ell {
  width: 50%;
  padding: 0 15px;
}

.mos-soc__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 30px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.mos-soc__link i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 59px;
  height: 28px;
  margin-right: 30px;
  font-size: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.mos-soc__link i.icon-vk {
  font-size: 12px;
}

.mos-soc__link .text {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
}

.mos-soc__link:hover {
  background-color: #e20338;
  border: 1px solid #e20338;
}

@media (max-width: 991px) {
  .mos-cont {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .mos-soc {
    margin-bottom: 40px;
  }
  .mos-soc__title {
    margin-bottom: 30px;
  }
  .mos-soc__list {
    display: block;
    margin: 0;
  }
  .mos-soc__ell {
    width: 100%;
    padding: 0;
  }
  .mos-soc__link {
    margin-bottom: 20px;
  }
}

.sec-mos-practice {
  padding-bottom: 30px;
}

.areas-practice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.areas-practice__ell {
  position: relative;
  /* width: 14.285%; */
  width: 208px;
  padding: 0 15px;
  text-align: center;
  margin-bottom: 40px;
  cursor: pointer;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.areas-practice__ell:hover .areas-practice__icon {
  -webkit-filter: grayscale(0) !important;
  filter: grayscale(0) !important;
}

.areas-practice__ell:hover .areas-practice__icon-wr:before {
  -webkit-box-shadow: 0 6px 60px 0px rgba(0, 133, 59, 0.8);
  box-shadow: 0 6px 60px 0px rgba(0, 133, 59, 0.8);
}

.areas-practice__icon-wr {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100px;
  margin-bottom: 30px;
}

.areas-practice__icon-wr:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.areas-practice__icon {
  max-height: 100%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.areas-practice__title {
  line-height: 1.5;
}

.areas-practice.hover .areas-practice__ell .areas-practice__icon {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.tooltip-areas.tooltip {
  width: 100vw;
  opacity: 1;
  padding: 0;
  margin-top: 30px;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(101, 102, 102, 0.25);
  box-shadow: 0px 4px 10px 0px rgba(101, 102, 102, 0.25);
}

.tooltip-areas.tooltip .tooltip-inner {
  width: 100%;
  max-width: 100%;
  padding: 44px 34px 44px;
  text-align: left;
  border-radius: 4px;
  background-color: #ffffff;
}

.tooltip-areas.tooltip .tooltip-inner .title {
  font-size: 18px;
  font-size: 1.8rem;
  color: #00853b;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.tooltip-areas.tooltip .tooltip-inner .text {
  color: #000000;
  line-height: 1.5;
}

@media (max-width: 1269px) {
  .areas-practice__ell {
    width: 20%;
  }
}

@media (max-width: 991px) {
  .areas-practice__ell {
    width: 25%;
  }
}

@media (max-width: 991px) {
  .areas-practice__ell {
    width: 50%;
  }
  .tooltip-areas.tooltip {
    width: 100%;
  }
  .tooltip-areas.tooltip .tooltip-inner {
    padding: 30px 26px 30px;
  }
}

.relative {
  position: relative;
}

.drop-xs {
  width: 100%;
}

.drop-xs__btn {
  display: none;
}

.drop-xs__menu.dropdown-menu {
  position: static;
  display: block;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 767px) {
  .drop-xs {
    position: absolute;
    right: 15px;
    top: -34px;
    width: auto;
  }
  .drop-xs__btn {
    display: block;
    color: #8d96a1;
    font-size: 4px;
  }
  .drop-xs__menu.dropdown-menu {
    position: absolute;
    display: none;
    width: 100vw;
    max-width: 270px;
    left: auto;
    right: -1px;
    margin-top: 20px;
    background-color: #ffffff;
    border-radius: 0;
    border: 1px solid #ededed;
    -webkit-box-shadow: 0 10px 30px 0px rgba(1, 46, 154, 0.15);
    box-shadow: 0 10px 30px 0px rgba(1, 46, 154, 0.15);
  }
  .drop-xs__menu.dropdown-menu .tab-link-left {
    margin-bottom: 0;
  }
  .drop-xs__menu.dropdown-menu .tab-link-left li.custom-tab-item {
    margin-bottom: 0;
  }
  .drop-xs__menu.dropdown-menu .tab-link-left li.custom-tab-item a.link-color {
    font-size: 14px;
    font-size: 1.4rem;
    position: relative;
    padding: 15px 30px;
    color: #333333;
    display: block;
    text-decoration: none;
    background-color: #fff;
    border-radius: 0;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }
  .drop-xs__menu.dropdown-menu .tab-link-left li.custom-tab-item a.link-color:after {
    content: none;
  }
  .drop-xs__menu.dropdown-menu .tab-link-left li.custom-tab-item a.link-color:before {
    content: "";
    display: block;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background-color: #dde1e6;
  }
  .drop-xs__menu.dropdown-menu .tab-link-left li.custom-tab-item.active a.link-color {
    color: #ffffff !important;
    background-color: #e20338;
  }
  .drop-xs__menu.dropdown-menu .tab-link-left li.custom-tab-item.active a.link-color:before {
    content: none;
  }
  .drop-xs__menu.dropdown-menu .tab-link-left li.custom-tab-item:last-child a.link-color:before {
    content: none;
  }
  .drop-xs.open .drop-xs__menu.dropdown-menu {
    display: block;
  }
}

.council-card {
  display: block;
  width: 100%;
}

.council-card__img-wrap {
  position: relative;
  height: 160px;
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
}

.council-card__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.council-card__title {
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
}

.council-card__text {
  color: #939598;
  line-height: 1.3;
}

ul.col-list {
  padding-left: 18px;
}

ul.col-list li.col-list__ell {
  padding-left: 10px;
  color: #bbbcbe;
  list-style: disc;
  margin-bottom: 18px;
}

ul.col-list li.col-list__ell .text {
  font-size: 18px;
  font-size: 1.8rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.3;
}

html[color-schema="color-brown"] ul.col-list li.col-list__ell .text {
  color: #a9e44d;
}

html[color-schema="color-blue"] ul.col-list li.col-list__ell .text {
  color: #063462;
}

html[color-schema="color-black"] ul.col-list li.col-list__ell .text {
  color: #ffffff;
}

html[color-schema="color-beige"] ul.col-list li.col-list__ell .text {
  color: #4d4b43;
}

ul.col-list li.col-list__ell .sub {
  font-size: 14px;
  font-size: 1.4rem;
  color: #939598;
  margin-top: 4px;
}

@media (max-width: 767px) {
  ul.col-list li.col-list__ell {
    padding-left: 6px;
    margin-bottom: 10px;
  }
  ul.col-list li.col-list__ell .text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.hotline-banner__top {
  margin-bottom: 28px;
}

.hotline-banner__top span {
  position: relative;
  display: inline-block;
  color: #c7dcce;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-right: 40px;
}

.hotline-banner__top span:before {
  content: "";
  position: absolute;
  right: -23px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #c7dcce;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hotline-banner__top span:last-child {
  margin-right: 0;
}

.hotline-banner__top span:last-child:before {
  content: none;
}

.hotline-banner__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  color: #ffffff;
}

.hotline-banner__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 300px;
  margin-right: 20px;
}

.hotline-banner__num {
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.hotline-banner .banner-base__content {
  width: 100%;
}

@media (max-width: 1269px) {
  .hotline-banner__cont {
    display: block;
  }
  .hotline-banner__text {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .hotline-banner__top {
    margin-bottom: 20px;
  }
  .hotline-banner__top span {
    display: block;
    line-height: 1.3;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .hotline-banner__top span:before {
    content: none;
  }
  .hotline-banner__top span:last-child {
    margin-right: 0;
  }
  .hotline-banner__top span:last-child:before {
    content: none;
  }
  .hotline-banner__cont {
    display: block;
  }
  .hotline-banner__text {
    font-size: 16px;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .hotline-banner__num {
    font-size: 26px;
  }
}

.member-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -15px;
  text-align: center;
  margin-bottom: 45px;
}

.member-steps__ell {
  position: relative;
  width: 33.333%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.member-steps__ell:after {
  content: "";
  position: absolute;
  right: 0;
  top: 33px;
  width: 204px;
  height: 2px;
  background-color: #f1f2f2;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

.member-steps__ell:last-child:after {
  content: none;
}

.member-steps__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  color: #a91e2e;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  border-radius: 50%;
  background-color: #f1f2f2;
  margin: 0 auto 24px;
}

.member-steps__title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  max-width: 280px;
  margin: 0 auto 18px;
}

.member-steps__text {
  font-size: 14px;
  font-size: 1.4rem;
  color: #939598;
  line-height: 1.2;
}

@media (max-width: 1269px) {
  .member-steps__ell:after {
    width: 184px;
  }
}

@media (max-width: 991px) {
  .member-steps__ell:after {
    width: 144px;
  }
}

@media (max-width: 767px) {
  .member-steps {
    display: block;
    margin: 0;
    margin-bottom: 50px;
  }
  .member-steps__ell {
    position: relative;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 40px;
  }
  .member-steps__ell:after {
    content: none;
  }
}

.tag-block__title {
  font-size: 15px;
  font-size: 1.5rem;
  color: #939598;
  font-weight: 500;
  margin-bottom: 6px;
}

.tag-block__text {
  font-size: 15px;
  font-size: 1.5rem;
  color: #231f20;
  margin-bottom: 20px;
}

.tag-block__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 15px;
}

.tag-block__ell {
  font-size: 15px;
  font-size: 1.5rem;
  color: #231f20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 9px;
  border-radius: 4px;
  background-color: #f1f2f2;
  margin-bottom: 10px;
  margin-right: 10px;
}

.tag-block__ell .icon-close {
  display: none;
  font-size: 10px;
  margin-left: 10px;
}

.tag-block__ell:hover {
  color: #ffffff;
  background-color: #48D6D2;
}

@media (max-width: 1025px) {
  .tag-block__ell:hover {
    color: #ffffff;
    background-color: #48D6D2 !important;
  }
}

.tag-block__ell.active {
  color: #ffffff;
  background-color: #48D6D2;
}

.tag-block__ell.active .icon-close {
  display: block;
}

.tag-block.tag-block--full {
  padding: 25px 0 5px;
  border-top: 1px solid #d4dbe1;
  border-bottom: 1px solid #d4dbe1;
  margin-bottom: 40px;
}

.tag-block.tag-block--side {
  padding: 32px 28px 30px;
  border: 1px solid #dde1e4;
  margin-bottom: 30px;
}

.tag-block.tag-block--modal {
  padding: 20px 0 5px;
}

.tag-block.tag-block--modal .tag-block__list {
  margin-bottom: 5px;
}

.tag-block.tag-block--fancy {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0;
  padding: 25px 0 0;
}

.tag-block.tag-block--fancy .tag-block__title {
  color: #939598;
}

.tag-block.tag-block--fancy .tag-block__ell {
  color: #939598;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #939598;
}

.tag-block.tag-block--fancy .tag-block__ell:hover {
  color: #ffffff;
  background-color: #e20338;
  border: 1px solid #e20338;
}

[data-fancybox] .tag-block--fancy {
  display: none;
}

.fancybox-slide .fancybox-image-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fancybox-slide .fancybox-image-cn {
  position: relative;
  height: 100%;
  max-height: 65vh;
  text-align: center;
}

.fancybox-image-fx {
  position: relative;
  display: inline-block;
  margin-top: -40px;
  height: 100%;
}

.fancybox-slide .fancybox-image {
  position: static !important;
  top: auto !important;
  left: auto !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  vertical-align: text-bottom;
}

.fancybox-slide .tag-block {
  position: absolute;
  left: 50%;
  top: 100%;
  padding: 25px 20px 0;
  width: 100vw;
  max-width: 1100px;
  text-align: left;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 99999;
}

@media (max-width: 767px) {
  .fancybox-slide .fancybox-image-cn {
    max-height: 90vh;
  }
  .fancybox-image-fx {
    margin-top: 0px;
  }
  .fancybox-slide .tag-block {
    display: none;
  }
}

.preloader__cr,
.preloader__cr:after {
  border-radius: 50%;
  width: 8em;
  height: 8em;
}

.preloader__cr {
  font-size: 8px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.6em solid rgba(226, 3, 56, 0.2);
  border-right: 0.6em solid rgba(226, 3, 56, 0.2);
  border-bottom: 0.6em solid rgba(226, 3, 56, 0.2);
  border-left: 0.6em solid #e20338;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.preloader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 60;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.preloader .preloader__wr {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}

.preloader.loaded .preloader__wr {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0.5, 0.5);
  transform: translate(-50%, -50%) scale(0.5, 0.5);
}

.seach-loader-cont {
  position: relative;
  min-height: 200px;
}

.footer__net-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  top: 236px;
  right: 40px;
  z-index: 999;
}

.footer__net-list li {
  display: block;
  padding: 0;
  margin-bottom: 20px;
}

.footer__net-list li.footer__net-list-title {
  display: none;
}

.footer__net-list li a {
  position: relative;
  display: block;
}

.footer__net-list li a img {
  width: 38px;
  height: 38px;
  vertical-align: text-bottom;
}

.footer__net-list li a .sh-active {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 10;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.footer__net-list li a:hover {
  opacity: 1;
}

.footer__net-list li a:hover .sh-active {
  opacity: 1;
}

@media (max-width: 1024px) {
  .footer__net-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    top: 0px;
    right: 0px;
    padding: 15px 30px;
    background-color: #f1f2f2;
    border-bottom: 1px solid #d5dae0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .footer__net-list li {
    padding: 0;
    margin-bottom: 0;
    margin-right: 14px;
  }
  .footer__net-list li.footer__net-list-title {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    margin-right: 30px;
  }
  .footer__net-list li a .sh-active {
    opacity: 1;
  }
  .footer__net-list.shown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .footer__net-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 0px;
    right: 0px;
    padding: 10px 16px;
  }
  .footer__net-list li {
    padding: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .footer__net-list li.footer__net-list-title {
    display: none;
  }
}

/* ========= soc-helper ========= */
.title-bl {
  width: 66.66666667%;
  margin-bottom: 40px;
}

.title-bl h1.page-title {
  margin-bottom: 20px;
}

.title-bl .page-text {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

h2.section-title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .title-bl {
    width: 100%;
  }
}

@media (max-width: 767px) {
  h2.section-title {
    font-size: 20px;
    font-size: 2rem;
  }
}

.soc-helper {
  margin-bottom: 50px;
  padding: 42px 35px 30px;
  color: #ffffff;
  border-radius: 4px;
  background: -webkit-linear-gradient(45deg, #079aa7, #1ac6ac);
  background: linear-gradient(45deg, #079aa7, #1ac6ac);
}

html[color-schema="color-brown"] .soc-helper {
  border: 1px solid #a9e44d;
  background: #3b2716;
}

html[color-schema="color-blue"] .soc-helper {
  border: 1px solid #063462;
  background: #9dd1ff;
}

html[color-schema="color-black"] .soc-helper {
  background: #000000;
  border: 1px solid #ffffff;
}

html[color-schema="color-beige"] .soc-helper {
  border: 1px solid #4d4b43;
  background: #f7f3d6;
}

.soc-helper__title {
  font-size: 18px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.333;
  margin-bottom: 15px;
}

html[color-schema="color-brown"] .soc-helper__title {
  color: #a9e44d;
}

html[color-schema="color-blue"] .soc-helper__title {
  color: #063462;
}

html[color-schema="color-black"] .soc-helper__title {
  color: #ffffff;
}

html[color-schema="color-beige"] .soc-helper__title {
  color: #4d4b43;
}

.soc-helper__field {
  position: relative;
}

.soc-helper__field .form-control {
  padding-right: 110px;
}

.soc-helper__field .icon-close {
  position: absolute;
  right: 80px;
  top: 50%;
  color: #b0b5c0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.soc-helper__field .icon-close:hover {
  color: #e20338;
}

.soc-helper__field.active .icon-close {
  opacity: 1;
  visibility: visible;
}

.soc-helper__field.active .soc-helper__mail {
  border-left: 1px solid #b0b5c0;
}

.soc-helper__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 18px;
  top: 50%;
  height: 30px;
  padding-left: 20px;
  border-left: 1px solid rgba(176, 181, 192, 0);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.soc-helper__mail a {
  height: 18px;
  color: #0aa2a8;
  font-size: 18px;
  font-size: 1.8rem;
}

.soc-helper__mail a:hover {
  color: #e20338;
}

.soc-helper__sub-title {
  font-size: 12px;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.333;
  opacity: 0.7;
  margin-bottom: 15px;
}

html[color-schema="color-brown"] .soc-helper__sub-title {
  color: #a9e44d;
}

html[color-schema="color-blue"] .soc-helper__sub-title {
  color: #063462;
}

html[color-schema="color-black"] .soc-helper__sub-title {
  color: #ffffff;
}

html[color-schema="color-beige"] .soc-helper__sub-title {
  color: #4d4b43;
}

.soc-helper__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.soc-helper__tags-ell {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 9px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  margin-bottom: 10px;
}

html[color-schema="color-brown"] .soc-helper__tags-ell {
  border: 1px solid #a9e44d;
}

html[color-schema="color-blue"] .soc-helper__tags-ell {
  border: 1px solid #063462;
}

html[color-schema="color-black"] .soc-helper__tags-ell {
  border: 1px solid #ffffff;
}

html[color-schema="color-beige"] .soc-helper__tags-ell {
  border: 1px solid #4d4b43;
}

.soc-helper__tags-ell:hover {
  color: #e20338;
  border: 1px solid #e20338;
}

.soc-helper__card {
  background-color: #ffffff;
  border-radius: 4px;
}

.soc-helper__top {
  position: relative;
  padding: 19px 45px 19px 20px;
  border-bottom: 1px solid #dde0e3;
}

.soc-helper__quest-name {
  color: #231f20;
  font-size: 16px;
  font-size: 1.6rem;
}

.soc-helper__return {
  position: absolute;
  right: 20px;
  top: 50%;
  height: 14px;
  color: #b7bbc5;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.soc-helper__return:hover {
  color: #e20338;
}

.soc-helper__body {
  padding: 20px 20px 10px;
}

.soc-helper__body .soc-helper__sub-title {
  color: #939598;
}

.soc-helper__body .btn {
  margin-bottom: 10px;
}

.soc-helper__quest-ell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 18px 20px;
  color: #231f20;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 800;
  background-color: #f1f2f2;
  border-radius: 4px;
  margin-bottom: 10px;
}

.soc-helper__quest-ell:hover {
  color: #ffffff;
  background-color: #0aa2a8;
}

.soc-helper__form-title {
  color: #231f20;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.soc-helper__ch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #231f20;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.soc-helper__ch-right {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 18px 18px;
  background-color: #e1f3f4;
  border-radius: 4px;
  margin-bottom: 10px;
}

.soc-helper__ch-left {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 18px 18px;
  background-color: #f1f2f2;
  border-radius: 4px;
  margin-bottom: 10px;
}

.soc-helper .flex-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.soc-helper .flex-end .btn {
  margin-right: 20px;
}

.soc-helper .flex-end .btn:last-child {
  margin-right: 0;
}

.soc-helper .flex-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.soc-helper .flex-start .btn {
  margin-right: 20px;
}

.soc-helper .flex-start .btn:last-child {
  margin-right: 0;
}

.soc-helper .btn-xs {
  width: 100%;
  max-width: 104px;
  min-width: 100px;
}

.soc-helper .btn-sm {
  width: 100%;
  max-width: 154px;
  min-width: 100px;
}

.soc-helper .btn-md {
  width: 100%;
  max-width: 224px;
  min-width: 100px;
}

.soc-helper__btn-bg {
  color: #ffffff;
  background-color: #0aa2a8;
}

.soc-helper__btn-bg:hover {
  color: #ffffff;
  background-color: #e20338;
}

.soc-helper__btn-br {
  color: #0aa2a8;
  border: 1px solid #0aa2a8;
}

.soc-helper__btn-br:hover {
  color: #ffffff;
  background-color: #e20338;
  border: 1px solid #e20338;
}

.soc-helper__btn-br-gr {
  color: #939598;
  border: 1px solid #e6e7e8;
}

.soc-helper__btn-br-gr:hover {
  color: #ffffff;
  background-color: #e20338;
  border: 1px solid #e20338;
}

.soc-helper__map-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  margin-bottom: 20px;
}

.soc-helper__map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.soc-helper__map-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  color: #666666;
  font-size: 20px;
  border-radius: 50%;
  background-color: #ffffff;
  z-index: 10;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}

.soc-helper__map-icon:hover {
  color: #ffffff;
  background-color: #e20338;
}

@media (min-width: 991px) {
  .soc-helper__map-wrap {
    position: relative;
    width: 100%;
    height: 320px;
    margin-bottom: 20px;
  }
  .soc-helper__map-wrap.full-map {
    position: fixed;
    top: 155px;
    left: 0;
    width: 100vw;
    height: calc(100% - 155px);
    z-index: 999;
  }
}

@media (max-width: 767px) {
  .soc-helper {
    margin-bottom: 50px;
    padding: 30px 15px 30px;
  }
  .soc-helper__title {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .soc-helper__field .form-control {
    padding-right: 88px;
  }
  .soc-helper__field .icon-close {
    right: 56px;
  }
  .soc-helper__mail {
    right: 14px;
    padding-left: 14px;
  }
  .soc-helper__mail a {
    height: 16px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .soc-helper__tags-ell {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 6px 10px;
    margin-right: 6px;
    margin-bottom: 6px;
  }
  .soc-helper__quest-ell {
    padding: 16px 16px;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .soc-helper__form-title {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  .soc-helper .flex-end {
    display: block;
  }
  .soc-helper .flex-end .btn {
    margin-right: 0px;
  }
  .soc-helper .flex-end .btn:last-child {
    margin-right: 0;
  }
  .soc-helper .flex-start {
    display: block;
  }
  .soc-helper .flex-start .btn {
    margin-right: 0px;
  }
  .soc-helper .flex-start .btn:last-child {
    margin-right: 0;
  }
  .soc-helper .btn-xs {
    width: 100%;
    max-width: 100%;
  }
  .soc-helper .btn-sm {
    width: 100%;
    max-width: 100%;
  }
  .soc-helper .btn-md {
    width: 100%;
    max-width: 100%;
  }
  .soc-helper__map-wrap {
    height: 260px;
  }
}

.category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.category-list__ell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.category-list__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-height: 100px;
  padding: 20px 35px;
  color: #231f20;
  border-radius: 4px;
  background-color: #f1f2f2;
}

html[color-schema="color-brown"] .category-list__card {
  border: 1px solid #a9e44d;
  color: #a9e44d;
  background-color: #3b2716;
}

html[color-schema="color-blue"] .category-list__card {
  border: 1px solid #063462;
  color: #063462;
  background-color: #9dd1ff;
}

html[color-schema="color-black"] .category-list__card {
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: #000000;
}

html[color-schema="color-beige"] .category-list__card {
  border: 1px solid #4d4b43;
  color: #4d4b43;
  background-color: #f7f3d6;
}

.category-list__card:hover {
  color: #ffffff;
  background-color: #079ba7;
}

html[color-schema="color-brown"] .category-list__card:hover {
  background: #a9e44d;
  color: #3b2716;
}

html[color-schema="color-blue"] .category-list__card:hover {
  background: #063462;
  color: #9dd1ff;
}

html[color-schema="color-black"] .category-list__card:hover {
  border: 1px solid #ffffff;
  color: #ffffff;
}

html[color-schema="color-beige"] .category-list__card:hover {
  background: #4d4b43;
  color: #f7f3d6;
}

.category-list__name {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .category-list {
    margin: 0;
  }
  .category-list__ell {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  .category-list__card {
    min-height: 80px;
    padding: 16px 20px;
  }
  .category-list__name {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.side-info {
  color: #231f20;
  padding: 42px 35px 25px;
  border-radius: 4px;
  border: 1px solid #e6e7e8;
  margin-bottom: 30px;
}

.side-info__title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.side-info__text {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 15px;
}

.side-soc-helper {
  color: #ffffff;
  padding: 42px 35px 40px;
  border-radius: 4px;
  margin-bottom: 30px;
  background: -webkit-linear-gradient(45deg, #079aa7, #1ac6ac);
  background: linear-gradient(45deg, #079aa7, #1ac6ac);
}

.side-soc-helper__title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.side-soc-helper__text {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 25px;
}

.side-soc-helper .btn {
  color: #2295b5;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  background-color: #ffffff;
}

.side-soc-helper .btn:hover {
  color: #ffffff;
  background-color: #e20338;
}

@media (max-width: 767px) {
  .side-info {
    padding: 30px 20px 25px;
  }
  .side-info__title {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .side-soc-helper {
    padding: 30px 20px 30px;
  }
  .side-soc-helper__title {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .side-soc-helper__text {
    margin-bottom: 20px;
  }
  .side-soc-helper .btn {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

/* row-flex */
.row-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row-flex:before {
  content: none;
}

.row-flex:after {
  content: none;
}

.row-flex > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* inf-card */
.inf-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 190px;
  padding: 30px 34px 28px;
  border-radius: 4px;
  background-color: #f1f2f2;
  margin-bottom: 30px;
}

.inf-card__cont {
  margin-bottom: 30px;
}

.inf-card__tag {
  font-size: 12px;
  font-size: 1.2rem;
  color: #2b8fac;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 15px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.inf-card__text {
  font-size: 16px;
  font-size: 1.6rem;
  color: #231f20;
  line-height: 1.313;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.inf-card__info {
  font-size: 14px;
  font-size: 1.4rem;
  color: #939598;
  line-height: 1.2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.inf-card:hover {
  background-color: #e20338;
  color: #ffffff;
}

.inf-card:hover .inf-card__tag {
  color: #ffffff;
}

.inf-card:hover .inf-card__text {
  color: #ffffff;
}

.inf-card:hover .inf-card__info {
  color: #ffffff;
}

@media (max-width: 767px) {
  .inf-card {
    min-height: 160px;
    padding: 30px 20px 26px;
  }
}

.side-inf-list__title {
  margin-bottom: 20px !important;
}

.side-inf-list .inf-card {
  margin-bottom: 20px;
}

.btn-border {
  display: block;
  width: 100%;
  max-width: 100%;
  font-weight: 800;
  color: #231f20;
  border: 1px solid #e6e7e8;
}

.btn-border:hover {
  color: #ffffff;
  border: 1px solid #e20338;
  background-color: #e20338;
}

.inf-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 30px;
  border-radius: 4px;
  background-color: #f1f2f2;
  margin-bottom: 30px;
}

.inf-panel__img {
  -ms-flex-preferred-size: 250px;
  flex-basis: 250px;
  margin-right: 30px;
}

.inf-panel__img img {
  width: 100%;
}

.inf-panel__text {
  margin-bottom: 4px;
}

@media (max-width: 767px) {
  .inf-panel {
    display: block;
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  .inf-panel__img {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .map-base {
    height: 400px;
  }
}

.map-base {
  width: 100%;
  height: 372px;
  margin-bottom: 30px;
}

.banner-cold {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 38px 60px 20px;
  background-image: url("../img/general/cold-banner.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
}

.banner-cold__content {
  padding-left: 240px;
  color: #ffffff;
}

.banner-cold__title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.banner-cold__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.banner-cold__ell {
  text-align: center;
}

.banner-cold__img {
  width: 56px;
  height: 56px;
  margin-bottom: 5px;
}

.banner-cold__text {
  font-size: 10px;
  text-transform: uppercase;
}

.banner-cold__btn .btn-block {
  position: relative;
  width: 284px;
  max-width: 284px;
  color: #ffffff;
  border: 1px solid #ffffff;
  background-color: #00beff;
}

.banner-cold__btn .btn-block:hover {
  color: #ffffff;
  -webkit-box-shadow: 0 4px 13px 0px rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 13px 0px rgba(255, 255, 255, 0.15);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

@media (max-width: 1269px) {
  .banner-cold__content {
    padding-left: 0px;
  }
}

@media (max-width: 991px) {
  .banner-cold {
    display: block;
    padding: 38px 60px 30px;
  }
  .banner-cold__content {
    padding-left: 0;
    text-align: center;
  }
  .banner-cold__title {
    margin-bottom: 10px;
  }
  .banner-cold__list {
    margin-bottom: 30px;
  }
  .banner-cold__btn .btn-block {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .banner-cold {
    display: block;
    padding: 30px 20px 30px;
  }
  .banner-cold__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .banner-cold__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 20px;
  }
  .banner-cold__ell {
    width: 50%;
    text-align: center;
    margin-bottom: 20px;
  }
  .banner-cold__img {
    width: 56px;
    height: 56px;
    margin-bottom: 5px;
  }
  .banner-cold__btn .btn-block {
    width: 100%;
  }
}

.map-soc {
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}

.map-soc-static {
  margin-bottom: 0;
}

.map-soc-static .map-soc__cont.full-map {
  height: 600px;
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.map-soc-static .map-panel__body {
  max-height: calc(600px - 178px);
  height: 100%;
}

.map-soc-static .map-soc__bl {
  position: static;
}

.map-soc__cont {
  position: relative;
  width: 100%;
  height: 260px;
  border-bottom: 1px solid #dcdcdc;
}

.map-soc__bl {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.map-soc__btn {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}

.map-soc__btn:hover {
  color: #ffffff;
  background-color: #e20338;
}

.map-soc__btn-close {
  position: absolute;
  right: 10px;
  top: 25px;
  width: 100%;
  max-width: 180px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 14px 0px rgba(33, 39, 43, 0.3);
  box-shadow: 0px 4px 14px 0px rgba(33, 39, 43, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 50;
}

.map-soc__btn-close:hover {
  color: #ffffff;
  background-color: #e20338;
}

.map-soc__panel {
  position: absolute;
  left: 10px;
  top: 25px;
  width: 360px;
  height: calc(100% - 40px);
  -webkit-box-shadow: 0px 4px 14px 0px rgba(33, 39, 43, 0.3);
  box-shadow: 0px 4px 14px 0px rgba(33, 39, 43, 0.3);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 50;
}

.map-panel {
  border-radius: 4px;
  background-color: #ffffff;
}

.map-panel__head {
  padding: 19px 34px;
  background-color: #f1f2f2;
  font-size: 18px;
  color: #231f20;
  font-weight: 800;
  line-height: 1.2;
}

.map-panel__nav {
  padding: 0 34px;
  margin-bottom: 0;
}

.map-panel__nav .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  float: none;
}

.map-panel__nav .nav-tabs:before,
.map-panel__nav .nav-tabs:after {
  content: none;
}

.map-panel__nav .nav-tabs li {
  padding-left: 0;
}

.map-panel__nav .nav-tabs li a {
  padding: 26px 0 28px;
}

.map-panel__body {
  max-height: calc(100vh - 318px);
  overflow: auto;
}

.map-panel__body .inf-card {
  position: relative;
  min-height: 100px;
  padding: 24px 34px;
  background-color: #ffffff;
  margin-bottom: 0;
}

.map-panel__body .inf-card:after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 0;
  width: calc(100% - 68px);
  height: 1px;
  background-color: #e1e3e7;
}

.map-panel__body .inf-card .inf-card__cont {
  margin-bottom: 0;
}

.map-panel__body .inf-card .inf-card__tag {
  margin-bottom: 15px;
}

.map-panel__body .inf-card .inf-card__text {
  margin-bottom: 15px;
}

.map-panel__body .inf-card:hover {
  background-color: #e20338;
}

@media (min-width: 991px) {
  .map-soc__cont {
    height: 140px;
    border-bottom: 1px solid #dcdcdc;
  }
  .map-soc__cont.full-map {
    width: 100vw;
    height: calc(100% - 140px);
    position: fixed;
    top: 140px;
    left: 0;
    border-bottom: none;
    z-index: 999;
  }
  .map-soc__cont.full-map .map-soc__btn-close {
    opacity: 1;
    visibility: visible;
  }
  .map-soc__cont.full-map .map-soc__panel {
    opacity: 1;
    visibility: visible;
  }
  .map-soc__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.aside__box {
  cursor: default;
}

.text-block p {
  margin-top: 0;
}

.map-city__t {
  padding-bottom: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid #d5dae0;
}

.map-services__li:after {
  left: 30px;
  right: 40px;
  bottom: 0;
  content: "";
  position: absolute;
  height: 1px;
  background-color: #d5dae0;
}

.map-services__li:hover .map-services__li:after {
  background-color: #e20338;
}

.map-services__li {
  margin-left: -30px;
  margin-right: -40px;
  padding-left: 30px;
  padding-right: 40px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
}

.map-soc .map-city__t {
  margin-bottom: 0;
  font-size: 14px;
}

.map-soc .map-city__panel {
  height: auto;
  width: 430px;
}

.map-soc .panel-inner {
  padding-top: 30px;
  padding-bottom: 120px;
  overflow: auto;
  height: 100%;
  position: relative;
}

.map-soc .map-city__content {
  padding-left: 30px;
  padding-right: 40px;
  border-bottom: 1px solid #d5dae0;
  max-height: calc(600px - 190px);
}

.map-sco .map-city__panel {
  height: auto;
}

.map-soc .map-city__content .map-panel__body {
  overflow: visible;
}

.soc-helper-now .soc-helper__title {
  font-size: 1.25rem;
}

.map-soc__btn {
  display: none;
}

.modal-body .map-soc__panel {
  position: static;
}

.modalFull .modal-content {
  padding: 0;
  background: none;
}

.modalFull.modal:before {
  display: none;
}

.modalFull .map-soc__panel {
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: auto;
}

.modalFull .map-panel__body {
  max-height: calc(100vh - 120px);
}

.modalFull .map-panel__head {
  padding-right: 45px;
}

.modalFull.modal .close {
  text-indent: 0;
  top: 22px;
}

.modalFull .modal-body {
  padding: 0;
}

.modalFull .modal-content {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.modalFull .map-panel__nav {
  padding-left: 25px;
  padding-right: 25px;
}

.modalFull .modal-header {
  padding-top: 0;
  padding-bottom: 0;
}

.modalFull .map-panel__nav .nav-tabs li a {
  padding-top: 13px;
  padding-bottom: 14px;
}

.modalFull .map-panel__body .inf-card {
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.modalFull .map-panel__body .inf-card:after {
  width: calc(100% - 50px);
}

.modalFull .map-panel__head {
  padding-left: 25px;
  padding-right: 25px;
}

.soc-helper-now .bootstrap-select .dropdown-toggle:focus {
  background-color: #fff;
}

@media only screen and (max-width: 992px) {
  .map-soc__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 300px;
    width: 100%;
    left: 50%;
    bottom: 20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
    position: absolute;
  }
  .map-soc .map-city__panel {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    top: auto;
    width: calc(100% - 40px);
    max-height: 400px;
  }
  .map-soc .panel-inner {
    max-height: 400px;
  }
  .map-soc .map-city__content {
    max-height: 260px;
  }
  .map-soc .map-city__link {
    bottom: 30px;
  }
}

.inf-card {
  width: 100%;
}

.tab-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.map-panel__head {
  font-size: 16px;
}

.map-panel__head {
  padding-left: 30px;
  padding-right: 30px;
}

.map-soc__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.map-panel__align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.map-panel__txt {
  padding-right: 10px;
}

.tab-footer {
  margin-bottom: 20px;
}

.map-panel__nav .nav-tabs li a {
  white-space: nowrap;
  margin-right: 25px !important;
}

.map-panel__nav .nav-tabs .dropdown-menu .custom-tab-item a {
  margin-right: 0 !important;
}

.map-panel__nav .nav-tabs .dropdown-menu .custom-tab-item a {
  padding: 14px 0 15px;
  padding-left: 25px;
  padding-right: 25px;
  white-space: normal;
}

.nxs + h4 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.js-pager-block .js-showmore + .row {
  margin-top: 30px;
}

.map-soc .map-city__content {
  padding-left: 0;
  padding-right: 0;
}

.map-soc .map-city__panel {
  position: absolute;
  right: 25px;
  top: 25px;
  bottom: 25px;
  width: 420px;
}

.map-soc .map-city__panel.active + .map-soc__btn-close {
  right: 465px;
}

.map-city__t {
  padding-bottom: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid #d5dae0;
}

.map-services__li:after {
  left: 30px;
  right: 40px;
  bottom: 0;
  content: "";
  position: absolute;
  height: 1px;
  background-color: #d5dae0;
}

.map-services__li:hover .map-services__li:after {
  background-color: #e20338;
}

.map-services__li {
  margin-left: -30px;
  margin-right: -40px;
  padding-left: 30px;
  padding-right: 40px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
}

.map-soc .map-city__t {
  margin-bottom: 0;
  font-size: 14px;
}

.map-soc .map-city__panel {
  height: auto;
  width: 430px;
}

.map-soc .panel-inner {
  padding-top: 30px;
  padding-bottom: 120px;
  overflow: auto;
  height: 100%;
  position: relative;
}

.map-soc .map-city__content {
  padding-left: 30px;
  padding-right: 40px;
  max-height: calc(600px - 190px);
}

.map-soc .panel-inner {
  border-top: 1px solid #d5dae0;
}

.map-sco .map-city__panel {
  height: auto;
}

.map-soc .map-city__content .map-panel__body {
  overflow: visible;
}

.soc-helper-now .soc-helper__title {
  font-size: 1.25rem;
}

.map-soc .map-city__panel.active {
  display: block;
}

.map-soc__btns {
  display: none;
}

.modalFull .modal-content {
  padding: 0;
  background: none;
}

.modalFull.modal:before {
  display: none;
}

.modalFull .map-soc__panel {
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: auto;
  position: static;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.modalFull .modal-dialog {
  width: 100%;
  max-width: calc(100% - 20px);
}

.modalFull {
  width: 100%;
}

.modalFull .map-panel__body {
  max-height: calc(100vh - 300px);
  height: calc(100vh - 300px);
}

.modalFull .modal-body {
  -webkit-box-shadow: 0px 4px 14px 0px rgba(33, 39, 43, 0.3);
          box-shadow: 0px 4px 14px 0px rgba(33, 39, 43, 0.3);
}

.modalFull .modal-body {
  border-radius: 4px;
  background-color: #ffffff;
}

.modalFull .map-panel {
  border-radius: 0;
  background-color: transparent;
}

.modalFull .map-panel__head {
  padding-right: 45px;
}

.modalFull.modal .close {
  text-indent: 0;
  top: 22px;
}

.modalFull .modal-body {
  padding: 0;
}

.modalFull .modal-content {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.modalFull .map-panel__nav {
  padding-left: 25px;
  padding-right: 25px;
}

.modalFull .modal-header {
  padding-top: 0;
  padding-bottom: 0;
}

.modalFull .map-panel__nav .nav-tabs li a {
  padding-top: 13px;
  padding-bottom: 14px;
}

.modalFull .map-panel__body .inf-card {
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.modalFull .map-panel__body .inf-card:after {
  width: calc(100% - 50px);
}

.modalFull .map-panel__head {
  padding-left: 25px;
  padding-right: 25px;
}

.map-city__name.h3 {
  color: #231f20;
  font-size: 16px;
  color: #231f20;
  font-weight: 800;
  line-height: 1.2;
}

.map-soc-static {
  border: none;
  border-radius: 0;
}

.map-soc-static + .section.section--bg {
  margin-top: 0;
}

.map-soc-static .map-soc__cont.full-map {
  z-index: 4;
}

.map-soc-static {
  margin-top: 20px;
}

.main .map-soc .map-soc__btn {
  background-color: #fff;
  color: #231f20;
}

.main .map-soc .map-soc__btn:hover {
  background-color: #e20338;
  color: #fff;
}

.map-soc-static .container {
  position: relative;
  height: 100%;
}

.map-soc-static .map-soc__panel {
  left: 0;
  top: 15px;
  bottom: 15px;
  height: auto;
}

.modalFull .map-panel__head {
  padding-right: 60px;
}

.modalFull__footer .btn {
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 200px;
}

.modalFull__footer {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.ox {
  display: none !important;
}

.map-soc-static .map-soc__panel {
  width: 385px;
}

.map-soc-static {
  padding-top: 60px;
  margin-top: 60px;
}

.map-soc-static2 .map-soc__cont {
  width: 100%;
}

.map-soc-static2 .map-soc__panel {
  left: 60px;
}

.map-manel__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.map-soc-static .map-soc__bl {
  position: absolute !important;
}

@media only screen and (max-width: 767px) {
  .new-banner-dd {
    margin-bottom: 60px;
  }
  .banner-mob .new-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .new-banner {
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 420px) {
  .new-banner__sd {
    font-size: 13px;
  }
}

@media only screen and (max-width: 992px) {
  .map-soc__cont.full-map .map-soc__btn-close i {
    display: none;
  }
  .map-soc__cont.full-map .map-soc__btn-close {
    opacity: 1;
    visibility: visible;
  }
  .modalFull .map-panel__head {
    max-height: 76px;
    overflow: hidden;
    min-height: 76px;
  }
  .map-soc .map-city__panel {
    left: 10px;
    top: 15px;
    right: 15px;
    bottom: 15px;
  }
  .map-soc .map-city__panel {
    width: calc(100% - 20px);
  }
  .map-soc .map-city__panel.active {
    z-index: 1001;
  }
  .body-full-map .ox {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: fixed;
    bottom: 20px;
    z-index: 1000;
  }
  .map-soc-static .map-soc__cont.full-map {
    height: 420px;
  }
  .map-soc:not(.map-soc-static) .map-soc__cont.full-map {
    position: fixed;
    z-index: 999;
    top: 140px;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
  }
  .body-full-map {
    overflow: hidden;
  }
  .map-soc__cont {
    height: 300px;
  }
  .map-soc {
    position: relative;
  }
  .main .map-soc .map-soc__btn {
    position: absolute;
    left: 50%;
    background-color: #e20338;
    color: #fff;
    bottom: 15px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .map-soc__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 225px;
    width: 100%;
    left: 50%;
    bottom: 20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
    position: absolute;
  }
}

.map-soc.map-soc-no .map-soc__bl {
  position: relative;
}

.map-soc.map-soc-no .map-soc__bl:after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  position: absolute;
  content: "";
}

.body-full-map .map-soc.map-soc-no .map-soc__bl:after {
  display: none;
}

.spoiler-box__content a:not([class]) {
  border-color: rgba(226, 3, 56, 0.5);
  text-decoration: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  -webkit-transition: border 0.2s linear;
  transition: border 0.2s linear;
}

.spoiler-box__content a:not([class]):hover {
  color: #e20338;
  border-color: transparent;
}

.inf-panel {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.inf-panel__cont {
  width: 100%;
  margin-bottom: 20px;
}

.inf-card__tag {
  text-transform: none;
  font-size: 16px;
}

.inf-card__text {
  line-height: 1;
  font-size: 15px;
}

.map-panel__body {
  scroll-behavior: smooth;
}

.spoiler-box__content ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

.spoiler-box__content ul li {
  padding-left: 20px;
  position: relative;
}

.spoiler-box__content ul li:after {
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #212121;
}

.spoiler-box__content ol {
  margin-top: 10px;
  margin-bottom: 10px;
  counter-reset: myCounter;
}

.spoiler-box__content ol li {
  padding-left: 20px;
  position: relative;
}

.spoiler-box__content ol li:after {
  top: 1px;
  left: 0;
  counter-increment: myCounter;
  content: counter(myCounter) ". ";
  position: absolute;
  color: #212121;
}

.olx {
  margin-bottom: 32px;
}

.banner-mob .new-banner {
  margin-left: auto;
  margin-right: auto;
  width: 280px;
}

.tag-ft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tag-ft .btn-back-desctop {
  margin-top: 0;
}

.form-ser {
  width: 100%;
  padding-top: 25px;
  margin-bottom: 0;
}

.pd-top-40 > .result-not-found {
  padding-bottom: 40px;
}

.soc-helper__field .icon-close {
  right: 30px;
}

.form-group__clear:before,
.form-group__clear:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 20px;
  width: 2px;
  background-color: #333;
}

.form-group__clear:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.form-group__clear:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.form-group__clear {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 32px;
  height: 20px;
  opacity: 1;
  cursor: pointer;
  display: none;
}

.form-ser.active .form-group__clear {
  display: block;
}

.tag-ft__soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tag-ft__text {
  margin-right: 20px;
  font-size: 1.5rem;
  color: #939598;
  font-weight: 500;
}

.map-soc-static .map-panel__body {
  max-height: none;
}

@media only screen and (max-width: 991px) {
  .tag-ft {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .new-banner__rg .new-banner__top {
    margin-bottom: 0;
  }
  .new-banner__rg {
    padding-bottom: 7px;
  }
  .new-banner__sd {
    font-size: 13px;
  }
}

@media only screen and (max-width: 1680px) {
  .footer__net-list {
    right: 0;
  }
}

.newx-mobile .new-banner {
  width: 280px;
  height: 306px;
  background-image: none !important;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #95c03c;
}

.news__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6px;
}

.newx__title {
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1;
  color: #95c03c;
}

.newx__icons {
  width: 210px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.newx__subtext {
  text-align: center;
  color: #585857;
  text-transform: uppercase;
}

.newx__icons {
  width: 180px;
}

.newx {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.newx-mobile .news__logos img {
  height: 100%;
  width: auto;
}

.newx__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.newx__row {
  display: inline-block;
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 1px;
  padding-bottom: 1px;
  line-height: 1;
  background-color: #fff;
  color: #95c03c;
  font-weight: 700;
  margin-bottom: 2px;
}

.newx__icons img {
  width: auto;
  height: 100%;
}

.newx__logo {
  height: 42px;
}

.newx-mobile img {
  width: 100%;
  height: auto;
}

.newx__logo2 {
  height: 42px;
  margin-top: -15px;
}

.newx__green {
  background-color: #95c03c;
  margin-left: -14px;
  margin-right: -14px;
  margin-bottom: -10px;
  padding: 13px;
  margin-top: 10px;
}

.newx__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.newx__box {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}

.newx__number {
  font-size: 28px;
  display: inline-block;
}

.newx__box br {
  display: block;
}

.map-soc-static {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .newx .new-banner {
    height: 115px;
  }
}

@media (min-width: 992px) {
  .newx .new-banner {
    height: 150px;
  }
}

@media (min-width: 1270px) {
  .newx .new-banner {
    height: 200px;
  }
}

.newx-mobile {
  display: none;
}

@media screen and (max-width: 1024px) {
  .mos-prime-slide {
    height: 400px;
  }
}

/*mos longevity */
@media only screen and (max-width: 991px) {
  .mos-slider .slick-dots {
    display: none !important;
  }
  .mos-slider {
    position: relative;
  }
}

/*end mos longevity */
@media only screen and (max-width: 768px) {
  .mos-prime-slide {
    height: 305px;
  }
  .newx-mobile {
    display: block;
  }
  .newx {
    display: none;
  }
}

@media (max-width: 501px) {
  .msc-slider-1__slide {
    height: auto !important;
  }
  .soc-center__more {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .soc-center__more p {
    font-size: 15px !important;
  }
  .soc-center__more svg {
    width: 11px !important;
    height: 6px !important;
  }
  .soc-center__info {
    padding-bottom: 15px !important;
  }
  footer .footer__icon-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    margin-right: -15px;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  footer .footer__icon-list li a,
  footer .footer-link-sitemap {
    padding: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: background 0.2s linear;
    transition: background 0.2s linear;
    background: transparent;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
  }
  footer .footer__icon-list li {
    text-align: center;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    border: 1px solid #9f9f9f;
    margin-right: 15px;
    border-radius: 8px;
  }
  .footer__icon-list i {
    display: none;
  }
}

@font-face {
  font-family: 'Golos';
  src: local("Golos Text Bold"), local("GolosText-Bold"), url("../fonts/windows/Golostextbold.woff2") format("woff2"), url("../fonts/windows/Golostextbold.woff") format("woff"), url("../fonts/windows/Golostextbold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Golos';
  src: local("Golos Text DemiBold"), local("GolosText-DemiBold"), url("../fonts/windows/GolosText-DemiBold.woff2") format("woff2"), url("../fonts/windows/GolosText-DemiBold.woff") format("woff"), url("../fonts/windows/GolosText-DemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Golos';
  src: local("Golos Text Medium"), local("GolosText-Medium"), url("../fonts/windows/GolosText-Medium.woff2") format("woff2"), url("../fonts/windows/GolosText-Medium.woff") format("woff"), url("../fonts/windows/Golos Text_Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Golos';
  src: local("Golos Text Regular"), local("GolosText-Regular"), url("../fonts/windows/GolosText-Regular.woff2") format("woff2"), url("../fonts/windows/GolosText-Regular.woff") format("woff"), url("../fonts/windows/Golos Text_Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Golos';
  src: local("Golos Text Bold"), local("GolosText-Bold"), url("../fonts/windows/Golostextbold.woff2") format("woff2"), url("../fonts/windows/Golostextbold.woff") format("woff"), url("../fonts/windows/Golostextbold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Golos';
  src: local("Golos Text DemiBold"), local("GolosText-DemiBold"), url("../fonts/windows/GolosText-DemiBold.woff2") format("woff2"), url("../fonts/windows/GolosText-DemiBold.woff") format("woff"), url("../fonts/windows/GolosText-DemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Golos';
  src: local("Golos Text Medium"), local("GolosText-Medium"), url("../fonts/windows/GolosText-Medium.woff2") format("woff2"), url("../fonts/windows/GolosText-Medium.woff") format("woff"), url("../fonts/windows/Golos Text_Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Golos';
  src: local("Golos Text Regular"), local("GolosText-Regular"), url("../fonts/windows/GolosText-Regular.woff2") format("woff2"), url("../fonts/windows/GolosText-Regular.woff") format("woff"), url("../fonts/windows/Golos Text_Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* .golos-1{
    font-family: 'Golos';
    font-weight: 400;
}
.golos-2{
    font-family: 'Golos';
    font-weight: 500;
}
.golos-3{
    font-family: 'Golos';
    font-weight: 600;
}

.golos-4{
    font-family: 'Golos';
    font-weight: 700;
} */
.main-smallmargin .page-title {
  margin-bottom: 25px;
}

.main-smallmargin .tabs-nav-wrap .nav.nav-tabs {
  text-align: left;
}

@media (max-width: 1295px) {
  .footer__net-list.shown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .footer__net-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    top: 0px;
    right: 0px;
    padding: 15px 30px;
    background-color: #f1f2f2;
    border-bottom: 1px solid #d5dae0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
  }
  .footer__net-list li.footer__net-list-title {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    margin-right: 30px;
  }
  .footer__net-list li {
    padding: 0;
    margin-bottom: 0;
    margin-right: 14px;
  }
  .footer__net-list li a .sh-active {
    opacity: 1;
  }
}

@media (max-width: 1270px) {
  .footer__net-list {
    width: 40px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 200px;
    z-index: 200;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-color: transparent;
    border-bottom: none;
  }
  .footer__net-list li.footer__net-list-title {
    display: none;
  }
  .footer__net-list li {
    padding: 0;
    margin-bottom: 20px;
    margin-right: 0;
  }
  .footer__net-list a {
    position: relative;
    display: block;
    color: #b4b4b4;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
  }
  .footer__net-list li a .sh-active {
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .footer__net-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    top: 0px;
    right: 0px;
    padding: 15px 30px;
    background-color: #f1f2f2;
    border-bottom: 1px solid #d5dae0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
  }
  .footer__net-list li {
    padding: 0;
    margin-bottom: 0;
    margin-right: 14px;
  }
  .footer__net-list li.footer__net-list-title {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    margin-right: 30px;
  }
  .footer__net-list li a .sh-active {
    opacity: 1;
  }
  .footer__net-list.shown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .footer__net-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 0px;
    right: 0px;
    padding: 10px 16px;
  }
  .footer__net-list li {
    padding: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .footer__net-list li.footer__net-list-title {
    display: none;
  }
}

.map-soc-static .map-panel__body {
  height: calc(100% - 57px);
}

.map-panel__body {
  max-height: calc(100% - 57px);
}

.soc-helper__field .seach-block__field i {
  right: -5px;
}

.soc-helper__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 10px;
}

.light-green-bg {
  background: #2abb9e !important;
}

.switch {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 65px;
  height: 30px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 18px;
  cursor: pointer;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 10px;
}

.switch__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 10px;
  text-transform: uppercase;
  background: transparent;
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.switch-label:before, .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -.5em;
  line-height: 1;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #000000;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}

.switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: white;
  opacity: 0;
}

.switch-input:checked ~ .switch-label {
  background: #ffffff;
}

.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}

.switch-input:checked ~ .switch-label:after {
  opacity: 1;
  color: red;
}

.switch-input:checked ~ .switch-label + .switch-handle {
  background: -webkit-linear-gradient(45deg, #079aa7, #1ac6ac);
  background: linear-gradient(45deg, #079aa7, #1ac6ac);
}

.switch-handle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.switch-input:checked ~ .switch-handle {
  left: 34px;
}

.inf-card {
  height: auto;
  min-height: auto;
}

.cat-result__main-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.cat-result__main-title .section-title {
  margin-bottom: 0;
  font-size: 2.9rem;
}

.cat-result__show-more {
  line-height: 20px;
  font-size: 16px;
  color: #2295b5;
  cursor: pointer;
}

.cat-result__show-more span {
  border-bottom: 1px dashed #2295b5;
}

.cat-result__show-more .fa {
  font-size: 12px;
  margin-left: 10px;
  line-height: 20px;
}

.cat-result__list {
  display: none;
}

.cat-result__list.show {
  display: block;
}

.cat-result__list .custom-pagination-btn {
  margin-top: 40px;
}

.cat-result__item {
  padding: 25px 20px 25px 0;
  display: block;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #c2c5ce;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.cat-result__item .fa {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 10px;
  color: #c2c5ce;
  display: block;
  height: 12px;
  line-height: 1;
}

.cat-result__item:hover .cat-result__title,
.cat-result__item:hover .fa,
.cat-result__item:hover .cat-result__text {
  color: #e20338;
}

.cat-result__title {
  font-size: 18px;
  color: #231f20;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 600;
}

.cat-result__text {
  font-size: 14px;
  color: #c2c5ce;
}

@media only screen and (min-width: 992px) {
  .map-manel__footer {
    display: none;
  }
}

@media only screen and (max-width: 576px) {
  .soc-helper__title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .switch {
    margin: 10px;
  }
  .cat-result__main-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 0;
  }
  .cat-result__main-title .section-title {
    margin-bottom: 20px;
  }
  .cat-result__show-more {
    margin-bottom: 10px;
  }
}

.reports__tvs.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: calc(100% + 10px);
  margin-left: -5px;
  margin-right: -5px;
}

.reports__tvs.d-flex > * {
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
  height: 54px;
}

.report__wrpa {
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 20px;
  border-radius: 3px;
  border: 1px solid #d5dae0;
  margin-top: 30px;
}

.reports__tvs__items .reports__tvs-item:not(.active) {
  display: none;
}

.reports-table.stat-short {
  overflow-x: hidden !important;
}

.stat-short .reports-table__table {
  min-width: 400px !important;
  width: 100%;
}

.covid-main-slider__arrow.slick-disabled {
  pointer-events: none;
}

.body-overlay:after {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  content: '';
  background-color: rgba(0, 0, 0, 0.8);
}

.body-overlay .event.active {
  z-index: 1001 !important;
}

.main.main--main-page .section-head {
  font-family: 'Golos';
}

.main.main--main-page .section-head {
  font-size: 29px;
  font-size: 2.9rem;
  line-height: 32px;
  font-weight: 700;
}

@media (max-width: 1367px) {
  .main.main--main-page .section-head {
    font-size: 28px;
  }
}

@media (max-width: 1025px) {
  .main.main--main-page .section-head {
    font-size: 22px;
  }
}

.aside-profile {
  color: #343434;
}

.aside-profile-login {
  border-radius: 4px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 15px;
  height: 58px;
  border: 1px solid #e6e7e8;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.aside-profile-login__logout {
  width: 58px;
  min-width: 58px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  color: #939598;
  border-left: 1px solid #e6e7e8;
}

.aside-profile-login__logout:hover {
  color: #e30a3d;
}

.aside-profile-login__icon {
  padding-right: 14px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #e6e7e8;
  min-width: 34px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 18px;
  color: #939598;
}

.aside-profile-login__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  padding-right: 15px;
}

.aside-profile-box {
  border: 1px solid #e6e7e8;
  border-radius: 4px;
  width: 100%;
  padding-left: 34px;
  padding-right: 34px;
  padding-top: 20px;
  padding-bottom: 34px;
  margin-bottom: 30px;
}

.aside-profile-box__text {
  line-height: 2.1rem;
  font-size: 1.6rem;
  font-weight: 300;
}

.aside-profile-box__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.aside-profile-box__icon {
  width: 60px;
  font-size: 60px;
  line-height: 1;
  color: #e30a3d;
  margin-right: 20px;
}

.aside-profile-box__title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.2rem;
}

.aside-profile-box__btn {
  margin-top: 20px;
  width: 100%;
}

.aside-profile-box__btn .btn {
  width: 100%;
}

.aside-profile-bg {
  border-radius: 4px;
  width: 100%;
  padding-left: 34px;
  padding-right: 34px;
  padding-top: 34px;
  padding-bottom: 34px;
  margin-bottom: 34px;
  color: #fff;
  background-color: #e30a3d;
}

.aside-profile-bg__text {
  line-height: 2.1rem;
  font-size: 1.6rem;
  font-weight: 300;
}

.aside-profile-bg__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 10px;
}

.aside-profile-bg__icon {
  width: 60px;
  font-size: 60px;
  line-height: 1;
  color: #fff;
  margin-right: 20px;
}

.aside-profile-bg__title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.2rem;
  margin-bottom: 8px;
}

.aside-profile-bg__btn {
  margin-top: 20px;
  width: 100%;
}

.aside-profile-bg__btn .btn {
  width: 100%;
}

.aside .link-color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.aside-nav__circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #e20338;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  margin-left: 12px;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1;
  padding-top: 1px;
  padding-right: 1px;
}

html[color-schema="color-black"] .aside-profile {
  color: #fff;
}

html[color-schema="color-black"] .aside-profile-login {
  border-color: #fff;
}

html[color-schema="color-black"] .aside-profile-login__icon, html[color-schema="color-black"] .aside-profile-login__logout {
  border-color: #fff;
  color: #fff;
}

html[color-schema="color-black"] .aside-profile-box {
  border-color: #fff;
}

html[color-schema="color-black"] .aside-profile-box__icon {
  color: #fff;
}

html[color-schema="color-black"] .aside-profile-bg {
  background-color: transparent;
  border: 1px solid #fff;
}

html[color-schema="color-black"] .aside-profile-bg__icon {
  color: #fff;
}

html[color-schema="color-black"] .aside-report__text {
  color: #fff;
}

html[color-schema="color-black"] .aside-nav__circle {
  background-color: #fff;
  color: #000;
}

html[color-schema="color-blue"] .aside-profile {
  color: #063462;
}

html[color-schema="color-blue"] .aside-profile-login {
  border-color: #063462;
}

html[color-schema="color-blue"] .aside-profile-login__icon, html[color-schema="color-blue"] .aside-profile-login__logout {
  border-color: #063462;
  color: #063462;
}

html[color-schema="color-blue"] .aside-profile-box {
  border-color: #063462;
}

html[color-schema="color-blue"] .aside-profile-box__icon {
  color: #063462;
}

html[color-schema="color-blue"] .aside-profile-bg {
  background-color: transparent;
  border: 1px solid #063462;
  color: #063462;
}

html[color-schema="color-blue"] .aside-profile-bg__icon {
  color: #063462;
}

html[color-schema="color-blue"] .aside-nav__circle {
  background-color: #063462;
  color: #fff;
}

html[color-schema="color-blue"] .aside-report {
  border-color: #063462;
}

html[color-schema="color-blue"] .aside-report__text {
  color: #063462;
}

html[color-schema="color-blue"] .prof-info__box,
html[color-schema="color-blue"] .prof-info__icon {
  border-color: #063462;
}

html[color-schema="color-blue"] .aside__list-nav > li:after {
  background-color: #063462;
}

html[color-schema="color-beige"] .aside-profile {
  color: #4d4b43;
}

html[color-schema="color-beige"] .aside-profile-login {
  border-color: #4d4b43;
}

html[color-schema="color-beige"] .aside-profile-login__icon, html[color-schema="color-beige"] .aside-profile-login__logout {
  border-color: #4d4b43;
  color: #4d4b43;
}

html[color-schema="color-beige"] .aside-profile-box {
  border-color: #4d4b43;
}

html[color-schema="color-beige"] .aside-profile-box__icon {
  color: #4d4b43;
}

html[color-schema="color-beige"] .aside-profile-bg {
  background-color: transparent;
  border: 1px solid #4d4b43;
  color: #4d4b43;
}

html[color-schema="color-beige"] .aside-profile-bg__icon {
  color: #4d4b43;
}

html[color-schema="color-beige"] .aside-nav__circle {
  background-color: #4d4b43;
  color: #fff;
}

html[color-schema="color-beige"] .aside-report {
  border-color: #4d4b43;
}

html[color-schema="color-beige"] .aside-report__text {
  color: #4d4b43;
}

html[color-schema="color-beige"] .prof-info__box,
html[color-schema="color-beige"] .prof-info__icon {
  border-color: #4d4b43;
}

html[color-schema="color-beige"] .aside__list-nav > li:after {
  background-color: #4d4b43;
}

html[color-schema="color-brown"] .aside-profile {
  color: #a9e44d;
}

html[color-schema="color-brown"] .aside-profile-login {
  border-color: #a9e44d;
}

html[color-schema="color-brown"] .aside-profile-login__icon, html[color-schema="color-brown"] .aside-profile-login__logout {
  border-color: #a9e44d;
  color: #a9e44d;
}

html[color-schema="color-brown"] .aside-profile-box {
  border-color: #a9e44d;
}

html[color-schema="color-brown"] .aside-profile-box__icon {
  color: #a9e44d;
}

html[color-schema="color-brown"] .aside-profile-bg {
  background-color: transparent;
  border: 1px solid #a9e44d;
  color: #a9e44d;
}

html[color-schema="color-brown"] .aside-profile-bg__icon {
  color: #a9e44d;
}

html[color-schema="color-brown"] .prof-info__mail,
html[color-schema="color-brown"] .aside-report__text {
  color: #a9e44d;
}

html[color-schema="color-brown"] .aside__list-nav > li:after {
  background-color: #a9e44d;
}

html[color-schema="color-brown"] .aside__list-nav > li:after,
html[color-schema="color-brown"] .prof-info__box,
html[color-schema="color-brown"] .prof-info__icon,
html[color-schema="color-brown"] .aside-report {
  border-color: #a9e44d;
}

html[color-schema="color-brown"] .aside-nav__circle {
  background-color: #a9e44d;
  color: #3b2716;
}

.aside-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.aside-top-btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  max-width: 260px;
}

.aside-top-btn svg {
  margin-right: 12px;
  width: 21px;
  height: 21px;
}

.sidebar-test-recomendation-tag {
  padding: 6px 10px;
  background: #2655C9;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 18px;
  display: inline-block;
}

.sidebar-test-recomendation-title.sidebar-test-services-title.sidebar-test-recomendation-title-new {
  max-width: 240px;
  margin-bottom: 20px;
}

.sidebar-test-recomendation-text-new {
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 140%;
  color: #231F20;
}

.aside__item {
  margin-bottom: 25px;
  padding-left: 25px;
}

.aside__item > li {
  position: relative;
  width: 100%;
  display: block;
}

.aside__item > li:last-child:after {
  display: none;
}

.aside__item > li > a {
  padding: 18px 0 18px;
  font-weight: 500;
  position: relative;
  display: block;
  line-height: 1.2;
  font-size: 14px;
  font-size: 1.4rem;
  color: #848E99;
}

.aside__item > li:after {
  height: 1px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  content: "";
  background: #e6e7e8;
}

.aside__item > li > a.active:after {
  background-color: #e20338;
}

.aside__item > li > a.active:after {
  content: "";
  position: absolute;
  left: -28px;
  top: 0;
  height: 100%;
  width: 4px;
  border-radius: 6px;
}

.aside__date {
  width: 100%;
  padding: 30px;
  margin-top: 50px;
  border: 1px solid #D5DAE0;
  border-radius: 8px;
}

.aside__date h4 {
  font-weight: 600;
  font-size: 16px;
  color: #848E99;
  margin-bottom: 10px !important;
}

.aside__date p {
  font-weight: 400;
  font-size: 16px;
  color: #231F20;
}

@media (max-width: 753px) {
  .aside__item > li > a.active:after {
    display: none;
  }
}

.aside-navbar3 {
  padding-right: 0;
}

.aside-navbar3 > ul > p {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  display: none;
}

@media (max-width: 1366px) {
  .aside-navbar3 {
    width: 25%;
  }
}

@media (max-width: 1270px) {
  .aside-navbar3 {
    width: 70%;
    padding-left: 78px;
  }
}

@media (max-width: 1025px) {
  .aside-navbar3 {
    width: 65%;
  }
}

@media (max-width: 992px) {
  .aside-navbar3 {
    width: 50%;
    padding-left: 66px;
  }
}

@media (max-width: 753px) {
  .aside-navbar3 {
    width: 100%;
    padding-left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 40px;
  }
  .aside-navbar3 .aside__item {
    background: #F7F7F8;
    padding: 38px 32px;
  }
  .aside-navbar3 > ul > p {
    display: block;
  }
  .aside-navbar3 .aside__date {
    margin: 10px 0px 40px 0px;
  }
}

.aside-navbar4 > ul {
  border-left: 1px solid #D5DAE0;
}

@media (max-width: 753px) {
  .aside-navbar4 > ul {
    border: none !important;
  }
}

.aside-navbar4 > ul > p {
  display: none;
  margin-bottom: 12px;
}

@media (min-width: 1270px) {
  .aside-navbar4 {
    width: 25.5% !important;
  }
}

@media (max-width: 1270px) {
  .aside-navbar4 {
    width: 33% !important;
  }
}

@media (max-width: 1025px) {
  .aside-navbar4 {
    width: 33% !important;
  }
}

@media (max-width: 992px) {
  .aside-navbar4 {
    width: 43% !important;
  }
}

@media (max-width: 753px) {
  .aside-navbar4 {
    width: 100% !important;
    padding-left: 0px;
    padding-right: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 40px;
  }
  .aside-navbar4 .aside__item {
    background: #F7F7F8;
    padding: 38px 32px;
  }
  .aside-navbar4 > ul > p {
    display: block;
  }
  .aside-navbar4 .aside__date {
    margin: 10px 0px 40px 0px;
  }
}

.aside-navbar4 ul > li .link-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 0 18px;
  font-weight: 500;
  position: relative;
  line-height: 1.2;
  font-size: 14px;
  font-size: 1.4rem;
  color: #848E99;
}

.aside-navbar4 ul > li .link-dropdown .event-button-nav {
  position: relative;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #D5DAE0;
  background: transparent;
  color: #D5DAE0;
  -webkit-transition: .4s;
  transition: .4s;
  font-size: 14px;
  font-size: 1.4rem;
}

.aside-navbar4 ul > li .link-dropdown .event-button-nav:hover {
  border-color: #E20338;
  color: #E20338;
}

.aside-navbar4 ul > li .link-dropdown .event-button-nav::before {
  content: attr(data-symbol);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: normal;
  line-height: 0.1;
}

.aside-navbar4 .dropdown-navbar {
  height: 0;
  -webkit-transition: .4s;
  transition: .4s;
  overflow: hidden;
  padding-left: 25px;
}

.aside-navbar4 .dropdown-navbar .link-dropdown {
  padding-bottom: 0;
  padding-top: 0px;
}

.aside-navbar4 .dropdown-navbar .link-dropdown > a {
  font-weight: 500;
  font-size: 12px !important;
  max-width: 90%;
  width: 100%;
  padding-right: 5px;
}

.aside-navbar4 .dropdown-navbar li {
  font-size: 12px !important;
  font-size: 1.2rem !important;
  font-weight: 500;
  color: #848E99;
  padding-bottom: 15px;
  padding-top: 10px;
}

.aside-navbar4 .dropdown-navbar li li {
  font-weight: 400 !important;
}

.aside-navbar4 .dropdown-navbar li > a::before,
.aside-navbar4 .dropdown-navbar .link-dropdown > a::before {
  font-family: "icomoon" !important;
  line-height: 1;
  letter-spacing: 1px;
  content: "\e901";
  color: #c7c7c7;
  font-size: 10px;
  margin-right: 10px;
}

.aside-navbar4 .dropdown-navbar li > a::before:hover {
  text-decoration: none !important;
}

@media only screen and (min-width: 992px) {
  .aside .sidebar-test-recomendation {
    padding: 27px;
  }
}

@media only screen and (max-width: 768px) {
  .sidebar-test-recomendation-text-new {
    font-size: 16px;
  }
}

.aside-report {
  border: 1px solid #e6e7e8;
  border-radius: 4px;
  padding-left: 28px;
  padding-right: 28px;
  padding-top: 25px;
  padding-bottom: 25px;
  line-height: 2.1rem;
}

.aside-report__title {
  margin-bottom: 2px;
}

.aside-report__text {
  color: #14171e;
}

.inf-card__tag,
.inf-card__text {
  -webkit-transition: all 0s;
  transition: all 0s;
}

@media only screen and (max-width: 576px) {
  .list-footer .btn {
    width: 100%;
  }
  .footer-btn {
    width: 100%;
  }
  .footer-btn a {
    display: block;
    margin-bottom: 10px;
    width: 100%;
  }
}

.avtorization-form .form-box-group {
  max-width: 462px;
}

.avtorization-form .btn-and-text {
  max-width: 462px;
}

.avtorization-form .btn-and-text .btn-primary {
  min-width: 220px;
}

.avtorization-form .btn-and-text .forget-password {
  color: #939598;
}

.avtorization-form .btn-and-text .forget-password:hover {
  color: #e20338;
}

.avtorization-form .form-group--password {
  position: relative;
}

.avtorization-form .form-group--password .show-password {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  cursor: pointer;
  height: 18px;
  width: 25px;
  background-image: url("../img/general/icon/eye-line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  fill: #939598;
}

@media (max-width: 992px) {
  .btn-and-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .btn-and-text__text {
    margin-top: 20px;
  }
}

/*profile*/
.prof-info__box {
  border-radius: 4px;
  border: 1px solid #e6e7e8;
  padding: 9px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.prof-info__icon {
  width: 48px;
  min-width: 48px;
  height: 30px;
  border-right: 1px solid #e6e7e8;
  margin-right: 15px;
  text-align: center;
}

@media only screen and (max-width: 576px) {
  .prof-info__icon {
    margin-right: 10px;
  }
}

.prof-info__icon .icon-user {
  font-size: 25px;
  line-height: 30px;
}

.prof-info__mail {
  line-height: 30px;
  font-size: 15px;
  color: #343434;
  font-weight: 600;
}

@media only screen and (max-width: 576px) {
  .prof-info__mail {
    font-size: 13px;
  }
}

.prof-info-line {
  font-size: 16px;
  color: #b5b5b5;
  line-height: 1.313;
}

.prof-info-line a {
  color: #e20338;
  display: block;
  padding-bottom: 3px;
  border-bottom: 1px solid #e20338;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.prof-info-line a:hover {
  cursor: pointer;
  color: #0c6e8c;
  border-color: #0c6e8c;
}

/**/
.p-rl-0 {
  padding-right: 0;
  padding-left: 0;
}

@media only screen and (max-width: 992px) {
  .p-rl-0 {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/**/
.mb-0 {
  margin-bottom: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mr-bottom-20 {
  margin-bottom: 20px;
}

.prof-box {
  border: 1px solid #dde0e3;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.38);
  padding: 10px 20px;
  margin-bottom: 20px;
}

.prof-box__small {
  font-size: 11px;
  color: #b5b5b5;
  line-height: 1.2;
  margin-bottom: 5px;
}

.prof-box__text {
  font-size: 16px;
  color: #14171e;
  line-height: 1.313;
}

.prof-table__header {
  background: #f1f2f2;
  padding: 15px 30px;
  font-size: 18px;
  color: #14171e;
  font-weight: bold;
}

.prof-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid #e1e3e7;
}

.prof-table__row.prof-table__row-hide .prof-table__title {
  color: #e20338;
}

.prof-table__row.prof-table__row-hide .prof-table__eye {
  background-image: url("../img/general/icon/eye-on-line.svg");
}

.prof-table__title {
  font-size: 16px;
  color: #14171e;
  font-weight: bold;
  line-height: 1.125;
  margin-bottom: 2px;
}

.prof-table__title.hover {
  color: #e20338;
}

.prof-table__small {
  font-size: 14px;
  color: #b5b5b5;
  line-height: 1.2;
}

.prof-table__pen {
  width: 55px;
  min-width: 55px;
  height: 45px;
  margin-left: auto;
  background-image: url("../img/general/icon/pencil-fill.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
}

.prof-table__pen:hover {
  background-image: url("../img/general/icon/pencil-fill-hover.svg");
}

.prof-table__pen img {
  width: 30px;
}

.prof-table__eye {
  width: 55px;
  min-width: 55px;
  height: 45px;
  background-image: url("../img/general/icon/eye-off-line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.prof-table__eye:hover {
  background-image: url("../img/general/icon/eye-on-line.svg");
}

.prof-table__pen, .prof-table__eye {
  cursor: pointer;
}

.work-day {
  margin-bottom: 38px;
}

.work-day__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #dde0e3;
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.work-day__header .switch {
  width: 44px;
  height: 24px;
  border: 1px solid #dde0e3;
  border-radius: 12px;
}

.work-day__header .switch__wrap {
  font-size: 14px;
  color: #b5b5b5;
  font-weight: bold;
}

.work-day__header .switch-label {
  font-size: 10px;
}

.work-day__header .switch-handle {
  top: -1px;
  left: -1px;
  width: 24px;
  height: 24px;
}

.work-day .switch-input:checked ~ .switch-label + .switch-handle {
  background: none;
  background-color: #e20338 !important;
  -webkit-box-shadow: 2.5px 4.33px 10px -4px #e20338 !important;
          box-shadow: 2.5px 4.33px 10px -4px #e20338 !important;
}

.work-day .switch-input:checked ~ .switch-handle {
  left: 20px;
}

.work-day__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 20px;
}

.work-day__time {
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 130px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.work-day__time .form-control {
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
  width: 56px;
  min-width: 56px;
}

.work-day__wrap-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.work-day__label {
  width: 100%;
  font-size: 14px;
  color: #b5b5b5;
  font-weight: bold;
  line-height: 1.286;
  margin-bottom: 10px;
}

.work-day__text textarea.form-control {
  padding-top: 10px;
  min-height: 30px;
}

.prof-helper__mail .fa-search {
  color: #e20338;
}

.bg-box--wide .col-lg-2 .reset-form,
.bg-box--wide .col-lg-2 .btn-default {
  width: calc(100% + 15px);
  max-width: calc(100% + 15px);
  margin-left: -15px;
}

@media screen and (max-width: 1268px) {
  .bg-box--wide .col-lg-2 .reset-form,
  .bg-box--wide .col-lg-2 .btn-default {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

.cat-result__sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  font-size: 16px;
  color: #939598;
}

.cat-result__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: auto;
}

.cat-result__tab {
  margin-left: 28px;
  height: 20px;
  width: 20px;
  display: block;
}

.cat-result__tab .list,
.cat-result__tab .blocks {
  height: 20px;
  width: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.cat-result__tab .list {
  background-image: url("../img/general/icon/list-unordered.svg");
}

.cat-result__tab .blocks {
  background-image: url("../img/general/icon/function-line.svg");
}

.cat-result__tab.active .list {
  background-image: url("../img/general/icon/list-unordered-active.svg");
}

.cat-result__tab.active .blocks {
  background-image: url("../img/general/icon/function-line-active.svg");
}

.prof-photo__sum {
  margin-bottom: 30px;
  font-size: 16px;
  color: #939598;
  line-height: 1.4;
}

.prof-photo__item {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}

.prof-photo__delete {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  color: #ffffff;
  height: 30px;
  width: 30px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}

.prof-photo__image {
  position: relative;
  padding-bottom: 56%;
}

.prof-photo__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}

.prof-photo__subtitle {
  border-radius: 0 0 4px 4px;
  background: #f1f2f2;
  border: 1px solid #e6e7e8;
  border-top: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.prof-photo__subtitle .form-control {
  border: none;
  background: #f1f2f2;
  padding-right: 50px;
}

.prof-photo__add {
  text-align: center;
}

.prof-photo__add .jq-file__name {
  display: none !important;
}

.prof-photo__add .jq-file__browse {
  display: none;
}

.prof-photo__add label.jq-file__browse {
  display: block;
}

.prof-photo__add input.valid {
  opacity: 0;
  visibility: hidden;
}

.prof-photo__add p {
  font-size: 16px;
  color: #939598;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 15px;
}

.form-group--change {
  position: relative;
}

.form-group--change .form-group__create {
  position: absolute;
  height: 20px;
  width: 20px;
  top: 0;
  bottom: 0;
  right: 20px;
  background-image: url("../img/general/icon/pencil-fill.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  cursor: pointer;
  margin: auto;
}

.form-group--change .form-group__save {
  position: absolute;
  height: 25px;
  width: 25px;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  background-image: url("../img/general/icon/save-line.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  display: none;
}

.form-group--change .show {
  display: block !important;
}

.form-group--change .form-control[disabled="disabled"] {
  cursor: default;
}

.w-100 {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  min-width: 100%;
}

.pd-left-0 {
  padding-left: 0;
}

.btn-cancel {
  background-color: #ffffff;
  color: red;
  padding: 16px 0;
}

.hint {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 22px;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  text-align: center;
  color: #abafbb;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #abafbb;
  cursor: pointer;
  margin-left: 10px;
  margin-top: 0;
}

.hint:hover .hint-content {
  display: block;
}

.hint-content {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  display: none;
  position: absolute;
  width: 100%;
  height: auto;
  padding: 15px 20px;
  font-size: 14px;
  color: #ffff;
  background: #595959;
  border-radius: 4px;
  left: 0;
  top: 40px;
  z-index: 2;
}

.hint-content:hover {
  display: block;
}

.hint-content:before {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  position: absolute;
  top: -30px;
  left: 0;
}

.hint-title {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.upload-image {
  position: relative;
  height: 100%;
}

.upload-image__text {
  position: relative;
  height: 100%;
  margin-top: 100px;
}

.upload-image__text p {
  font-size: 16px;
  color: #939598;
  line-height: 1.4;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .upload-image {
    text-align: center;
  }
  .upload-image__text {
    margin-top: 20px;
  }
  .bg-box,
  .bg-text-box {
    padding: 30px 25px;
  }
  .work-day {
    margin-bottom: 38px;
  }
  .work-day__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 20px;
  }
  .work-day__time {
    margin-right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 130px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .work-day__time .form-control {
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    width: 56px;
    min-width: 56px;
  }
  .work-day__wrap-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .work-day__label {
    width: 100%;
    font-size: 14px;
    color: #b5b5b5;
    font-weight: bold;
    line-height: 1.286;
    margin-bottom: 10px;
  }
  .work-day__text textarea.form-control {
    padding-top: 10px;
    min-height: 30px;
  }
}

@media only screen and (max-width: 576px) {
  .work-day__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .work-day__time {
    width: 130px;
    margin-bottom: 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .work-day__time:first-child {
    width: 100%;
  }
  .work-day__wrap-input {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .work-day__wrap-input span {
    padding: 0 5px;
  }
  .work-day .wrap-check {
    margin-top: 20px;
  }
}

.aside-feedback,
.aside-update {
  padding: 30px;
}

.aside-feedback {
  background: #f2f2f2;
  border-color: #f2f2f2;
}

.aside-feedback h3 {
  margin-bottom: 20px;
  color: #000000;
}

.aside-feedback p {
  margin-bottom: 30px;
  color: #000000;
}

.all-organization {
  border: 1px solid #dde0e3;
  text-align: center;
  position: relative;
  color: #000000;
}

.all-organization span {
  display: block;
  height: 7px;
  width: 7px;
  border-left: 1.5px solid #dde0e3;
  border-bottom: 1.5px solid #dde0e3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.all-organization:hover span {
  border-left: 1.5px solid #e20338;
  border-bottom: 1.5px solid #e20338;
}

.tooltip-inner {
  opacity: 1;
  background: #dde0e3;
  color: #000000;
  font-size: 14px;
}

.banner {
  margin-bottom: 30px;
}

.banner__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  background: #08C4A1 no-repeat url("../img/general/moscow.svg");
}

.banner__memoirs {
  font-family: 'GOSTUI2';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 60%;
  padding: 17px 0 17px 90px;
  background: -webkit-linear-gradient(right, #DA758E, #DA758E 4%, transparent 4%), -webkit-linear-gradient(332deg, transparent, transparent 17%, #C04065 17%);
  background: linear-gradient(to left, #DA758E, #DA758E 4%, transparent 4%), linear-gradient(118deg, transparent, transparent 17%, #C04065 17%);
}

.banner__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-left: 54px;
}

.banner__description a {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  background: #ffffff;
  border-radius: 3px;
  padding: 16px 67px;
  color: #C04065;
}

.banner__description a:hover {
  opacity: 0.9;
}

.banner__description a:active {
  opacity: 0.8;
}

.banner__description::before {
  width: 55px;
  height: 5px;
  background: #ffffff;
  display: block;
  content: '';
  margin-bottom: 10px;
}

.banner__book {
  font-weight: bold;
  font-size: 24px;
  color: #FFFED3;
}

.banner__name {
  font-weight: bold;
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 20px;
}

@media (max-width: 1366px) {
  .banner__memoirs {
    min-width: 70%;
    padding-left: 50px;
    background: -webkit-linear-gradient(right, #DA758E, #DA758E 4%, transparent 4%), -webkit-linear-gradient(332deg, transparent, transparent 17%, #C04065 17%);
    background: linear-gradient(to left, #DA758E, #DA758E 4%, transparent 4%), linear-gradient(118deg, transparent, transparent 17%, #C04065 17%);
  }
  .banner__description {
    margin-left: 28px;
  }
}

@media (max-width: 1024px) {
  .banner__memoirs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-width: 80%;
    background: -webkit-linear-gradient(right, #DA758E, #DA758E 2%, transparent 2%), -webkit-linear-gradient(332deg, transparent, transparent 18%, #C04065 18%);
    background: linear-gradient(to left, #DA758E, #DA758E 2%, transparent 2%), linear-gradient(118deg, transparent, transparent 18%, #C04065 18%);
  }
  .banner__book {
    font-size: 20px;
  }
  .banner__name {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .banner__wrapper {
    background-position: left bottom;
    background-size: cover;
  }
  .banner__memoirs {
    min-width: 100%;
    padding-left: 25%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: -webkit-linear-gradient(right, #DA758E, #DA758E 4%, transparent 4%), -webkit-linear-gradient(332deg, transparent, transparent 40%, #C04065 40%);
    background: linear-gradient(to left, #DA758E, #DA758E 4%, transparent 4%), linear-gradient(118deg, transparent, transparent 40%, #C04065 40%);
  }
  .banner__description {
    margin-left: 0;
  }
  .banner__book {
    font-size: 16px;
  }
  .banner__name {
    font-size: 18px;
  }
}

.breadcrumb-new {
  margin: 30px 0;
}

.breadcrumb-new__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.breadcrumb-new__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb-new__main_list li a {
  font-weight: 400;
  font-size: 14px;
  color: #848E99;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.breadcrumb-new__main_list li a:hover {
  color: #e20338;
}

.breadcrumb-new__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 753px) {
  .breadcrumb-new__button {
    display: none;
  }
}

.breadcrumb-new__button_seal {
  width: 174px;
  padding: 12px 0;
  border: 1px solid #D5DAE0;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 24px;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  color: #848E99;
}

@media (max-width: 1650px) {
  .breadcrumb-new__button_seal {
    width: 142px;
    margin-right: 12px;
  }
}

.breadcrumb-new__button_seal:hover {
  background-color: #e20338;
  color: #FFFFFF;
}

.breadcrumb-new__button_seal:hover svg path {
  fill: #FFFFFF;
}

.breadcrumb-new__button_seal svg {
  margin-right: 10px;
  color: #848E99;
  font-weight: 500;
  font-size: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.breadcrumb-new__button_share {
  padding: 12px 0;
  width: 174px;
  border: 1px solid #D5DAE0;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  outline: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  color: #848E99;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media (max-width: 1650px) {
  .breadcrumb-new__button_share {
    width: 142px;
  }
}

.breadcrumb-new__button_share svg {
  margin-right: 10px;
}

.breadcrumb-new__button_share:hover {
  background-color: #e20338;
  color: #FFFFFF;
}

.breadcrumb-new__button_share:hover svg path {
  fill: #FFFFFF;
}

.breadcrumb-new__button .dropdown-menu {
  min-width: 296px !important;
  top: 50px !important;
  left: auto !important;
}

.form2Collapse-content {
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
}

.covid .row-flex {
  margin-left: -15px;
  margin-right: -15px;
}

.covid-buttons {
  padding-left: 150px;
}

.covid-buttons .btn {
  width: 320px;
  max-width: 100%;
}

.covid-vd {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/general/covid/covb.png);
  padding-top: 70px;
  padding-bottom: 80px;
}

.covid-vd.covid-proj {
  background-image: url(../img/general/covid/proj.png);
  background-size: cover;
  background-position: center center;
}

.covid-vd.covid-proj .covid-aside-link {
  border-radius: 5px;
  padding: 28px 32px;
  padding-right: 65px;
  padding-bottom: 50px;
  border: none;
  background-color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 30px;
}

.covid-vd.covid-proj .covid-aside-link:hover {
  color: #231f20;
  -webkit-box-shadow: 0 10px 30px rgba(226, 3, 56, 0.15);
          box-shadow: 0 10px 30px rgba(226, 3, 56, 0.15);
}

.covid-vd.covid-proj .covid-aside-link:hover .icon-arrow-top {
  color: #e20338;
}

.covid-vd.covid-proj .covid-aside-link .icon-arrow-top {
  top: 20px;
  right: 20px;
}

.covid-vd.covid-city {
  background-image: url(../img/general/covid/city.jpg);
  background-size: auto;
  background-position: center bottom;
}

.covid-vd.covid-city .covid-aside-video {
  margin-bottom: 35px;
}

.covid-vd.covid-city .covid-aside-video__image {
  height: 388px;
  background-color: #f4f4f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.covid-vd.covid-city .covid-aside-video__image:after {
  background-image: url(../img/general/covid/dow.png);
  z-index: 4;
}

.covid-vd.covid-city .covid-aside-video__image:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  position: absolute;
  content: "";
  background-color: black;
  opacity: 0;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.covid-vd.covid-city .covid-aside-video__image img {
  height: auto;
  width: 100%;
}

.covid-vd.covid-city .covid-aside-video__image:hover:before {
  opacity: 0.3;
}

.covid-vd__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}

.covid-vd .covid-aside-video {
  margin-bottom: 45px;
}

.covid-vd .covid-aside-video__image {
  height: 212px;
}

.covid-vd__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.covid-main {
  padding-top: 125px;
  position: relative;
}

.covid-main-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.covid-main-slider__slider {
  border-bottom: 1px solid #dde0e3;
  padding-left: 15px;
  padding-right: 15px;
}

.covid-main-slider__item {
  padding-left: 15px;
  padding-right: 15px;
  color: #231f20;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  height: 65px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.covid-main-slider__item.active, .covid-main-slider__item:hover {
  color: #e20338;
}

.covid-main-slider__arrow {
  pointer-events: auto;
  cursor: pointer;
}

.covid-main-slider__arrow .slick-disabled {
  color: #d1d2d6 !important;
}

.covid-main-slider__arrow:hover {
  color: #e20338;
}

.covid-main-slider__arrows {
  z-index: 3;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  height: 65px;
}

.covid-main-slider__arrows .icon-right-arrow,
.covid-main-slider__arrows .icon-left-arrow {
  font-size: 14px;
  cursor: pointer;
}

.covid-main--more {
  padding-top: 93px;
}

.covid-main--more .covid-main-slider {
  top: 23px;
}

.covid-main--more .covid-main-slider__slider {
  border-bottom: none;
  border-top: 1px solid #dde0e3;
}

.covid-slider {
  background-image: url(../img/general/covid.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 23px;
  padding-top: 34px;
  padding-bottom: 40px;
}

.covid-slider-sls {
  position: relative;
}

.covid-slider-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.covid-slider-tab {
  padding-left: 15px;
  padding-right: 15px;
  margin-right: 10px;
  margin-bottom: 23px;
  background-color: #ffffff;
  font-size: 14px;
  color: #231f20;
  border-radius: 4px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  padding-top: 6px;
  padding-bottom: 6px;
}

.covid-slider-tab.active, .covid-slider-tab:hover {
  background-color: #e20338;
  color: #fff;
}

.covid-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.covid-slider__content {
  position: relative;
  padding-bottom: 60px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: calc(100% - 195px);
}

.covid-slider__date {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 30px;
  font-weight: 700;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.covid-slider__image {
  height: 180px;
  min-height: 180px;
  border-radius: 5px;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 15px;
  background-color: #231f20;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.covid-slider__slide {
  margin-left: 15px;
  margin-right: 15px;
  float: none;
  height: auto;
}

.covid-slider__slider {
  margin-left: -15px;
  margin-right: -15px;
}

.covid-slider__slide:hover .covid-slider__name,
.covid-slider__slide:hover .covid-slider__date,
.covid-slider__slide.active .covid-slider__name,
.covid-slider__slide.active .covid-slider__date {
  color: #e20338;
}

.covid-slider__slide:hover .covid-slider__image {
  opacity: 0.8;
}

.covid-slider__name {
  color: #231f20;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.covid-slider__arrow {
  width: 54px;
  height: 54px;
  background-color: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 60px;
  z-index: 3;
  font-size: 16px;
  color: #e6e6e7;
  cursor: pointer;
}

.covid-slider__arrow:hover {
  background-color: #e20338;
  color: #fff;
}

.covid-slider__arrow.icon-left-arrow {
  left: -30px;
}

.covid-slider__arrow.icon-right-arrow {
  right: -30px;
}

.covid-slider .container {
  position: relative;
}

.covid__header {
  margin-bottom: 0;
  border-bottom: none;
}

.covid__header .section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.covid__header .nav-tabs > li > a {
  padding-bottom: 8px;
  padding-top: 8px;
}

.covid-aside-slided__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 25px rgba(35, 31, 32, 0.25);
          box-shadow: 0 10px 25px rgba(35, 31, 32, 0.25);
  border-radius: 4px;
  background-color: #ffffff;
  overflow: hidden;
  margin-bottom: 60px;
}

.covid-aside-slide {
  margin-left: 40px;
  margin-right: 40px;
}

.covid-aside-slider {
  position: relative;
  padding-bottom: 40px;
  margin-left: -40px;
  margin-right: -40px;
}

.covid-aside-slider .slick-dots {
  position: absolute;
  top: 325px;
  margin-bottom: 0;
}

.covid-aside-slider .slick-dots li {
  width: auto;
}

.covid-aside-slider .slick-dots li button {
  margin-right: 14px;
  width: 6px;
  height: 6px;
  background-color: #d1d2d6;
  opacity: 1;
  padding: 0;
}

.covid-aside__box {
  margin-bottom: 35px;
}

.covid-aside-pdf {
  margin-bottom: 0;
  display: block;
  cursor: pointer;
}

.covid-aside-pdf__name {
  color: #e20338;
  font-size: 16px;
  line-height: 24px;
  border-bottom: 1px solid #e20338;
  cursor: pointer;
  display: inline-block;
}

.covid-aside-pdf__sub {
  display: block;
  font-size: 14px;
  line-height: 18px;
  color: #b0b1b5;
  cursor: pointer;
  margin-top: 3px;
}

.covid-aside-pdf:hover .covid-aside-pdf__name {
  border-color: transparent;
}

.covid-aside-link {
  border: 1px solid #dde0e3;
  border-radius: 5px;
  padding: 20px;
  padding-right: 35px;
  color: #231f20;
  font-size: 16px;
  line-height: 21px;
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.covid-aside-link:hover {
  color: #e20338;
}

.covid-aside-link i {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 12px;
  color: #b0b1b5;
}

.covid-aside-videos__btn {
  width: 100%;
}

.covid-aside-videos__btn .btn {
  width: 100%;
}

.covid-aside-video {
  display: block;
  margin-bottom: 35px;
}

.covid-aside-video__image {
  width: 100%;
  height: 182px;
  overflow: hidden;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: #21272b;
  margin-bottom: 15px;
}

.covid-aside-video__image:after {
  top: 50%;
  left: 50%;
  content: "";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 54px;
  height: 54px;
  background-image: url(../img/general/covid/play.png);
  opacity: 0;
  -webkit-transition: opacity ease-in-out 0.3s;
  transition: opacity ease-in-out 0.3s;
}

.covid-aside-video__image img {
  width: 100%;
  height: auto;
  -webkit-transition: opacity ease-in-out 0.3s;
  transition: opacity ease-in-out 0.3s;
}

.covid-aside-video__title {
  color: #231f20;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 10px;
  display: block;
}

.covid-aside-video__descript {
  font-size: 14px;
  color: #e20338;
}

.covid-aside-video:hover .covid-aside-video__image:after {
  opacity: 1;
}

.covid-aside-video:hover .covid-aside-video__image img {
  opacity: 0.8;
}

.covid-aside__title {
  color: #231f20;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.covid-aside__text {
  color: #231f20;
  font-size: 16px;
  line-height: 21px;
}

.covid-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.covid-box__circle {
  position: absolute;
  top: 43px;
  left: 105px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #e20338;
}

.covid-box__circle:after {
  top: 50%;
  left: 50%;
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #e20338;
  opacity: 0.1;
  z-index: -1;
  border-radius: 50%;
}

.covid-box:not(:last-child):before {
  top: 43px;
  left: 108px;
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% + 30px);
  background-color: #e20338;
}

.covid-box__date {
  color: #231f20;
  font-size: 30px;
  font-weight: 700;
  margin-right: 75px;
  min-width: 75px;
}

.covid-box__content {
  width: calc(100% - 150px);
}

.covid-box__image {
  width: 142px;
  height: 92px;
  border-radius: 5px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 30px;
  min-width: 142px;
}

.covid-box__image img {
  display: none;
}

.covid-box__desc {
  width: calc(100% - 200px);
}

.covid-box__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  padding-left: 20px;
}

.covid-box__content .covid-box__image {
  margin-left: -20px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.covid-box:hover .covid-box__content .covid-box__image {
  margin-left: 0;
}

.covid-box__name {
  color: #231f20;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.covid-box__sub {
  color: #e20338;
  font-size: 14px;
}

@media (max-width: 1270px) {
  .covid-buttons {
    padding-left: 124px;
  }
  .covid-vd {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .covid-vd .covid-aside-video__image {
    height: 170px;
  }
  .covid-vd.covid-city .covid-aside-video__image {
    height: 310px;
  }
  .covid-vd__title {
    margin-bottom: 20px;
  }
  .covid-vd.covid-proj .covid-aside-link {
    padding-bottom: 30px;
    font-size: 16px;
    line-height: 19px;
  }
  .covid-main {
    padding-top: 95px;
  }
  .covid-slider {
    padding-bottom: 40px;
  }
  .covid-box {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .covid-box__image {
    margin-right: 0;
  }
  .covid-box__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .covid-box__desc {
    width: 100%;
    margin-left: -20px;
    margin-top: 15px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  .covid-box:hover .covid-box__desc {
    margin-left: 0;
  }
  .covid-box__date {
    margin-top: 28px;
  }
}

@media (min-width: 992px) and (max-width: 1270px) {
  .covid-main {
    padding-top: 133px;
  }
  .covid-main-slider {
    top: 26px;
  }
  .covid-main-slider__item {
    font-size: 14px;
    line-height: 18px;
    height: 61px;
  }
  .covid-vd {
    background-image: url(../img/general/covid/vd1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .covid-vd.covid-city {
    background-image: url(../img/general/covid/vd2.png);
  }
  .covid-vd.covid-proj {
    background-image: url(../img/general/covid/vd3.png);
  }
  .covid-slider {
    margin-top: 19px;
    padding-top: 50px;
    padding-bottom: 59px;
    background-image: url(../img/general/covid/vd4.png);
  }
  .covid-slider__image {
    height: 150px;
    min-height: 150px;
    margin-bottom: 8px;
  }
  .covid-slider__name {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 21px;
  }
  .covid-slider__content {
    padding-bottom: 0;
    height: auto;
  }
  .covid-slider__date {
    position: static;
    font-size: 24px;
  }
  .covid-slider__arrow {
    width: 48px;
    height: 48px;
    margin-top: -10px;
  }
  .covid .tabs-nav-wrap h3.section-head,
  .covid .tabs-nav-wrap .page-title {
    font-size: 32px;
    margin-top: -9px;
  }
  .covid .tabs-nav-wrap .nav-tabs > li {
    padding-left: 45px;
  }
  .covid-main .aside {
    width: 292px;
    max-width: 100%;
  }
  .covid-box {
    margin-bottom: 19px;
  }
  .covid-box__date {
    font-size: 24px;
    margin-right: 48px;
  }
  .covid-box__image {
    width: 119px;
    min-width: 119px;
    height: 91px;
  }
  .covid-box:not(:last-child)::before {
    left: 90px;
  }
  .covid-box__circle {
    left: 87px;
  }
  .covid-box__content {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .covid-box__desc {
    margin-left: 15px;
    margin-top: -1px;
  }
  .covid-box__name {
    font-size: 16px;
    line-height: 20px;
  }
  .covid .main {
    padding-right: 20px;
  }
  .covid-aside-slider {
    padding-bottom: 30px;
  }
  .covid-aside-link {
    padding-top: 14px;
    padding-bottom: 11px;
  }
  .covid-aside-video {
    margin-bottom: 15px;
  }
  .covid-aside-video__image {
    height: 150px;
    margin-bottom: 19px;
  }
  .covid-aside-video__title {
    font-size: 16px;
    line-height: 20px;
  }
  .covid-aside-slided__image {
    height: 292px;
  }
  .covid-main--more {
    padding-top: 81px;
  }
  .covid-vd {
    padding-top: 61px;
    padding-bottom: 37px;
  }
  .covid-vd__title {
    margin-bottom: 29px;
  }
  .covid-vd .covid-aside-video__image {
    height: 150px;
  }
  .covid-vd__more {
    font-size: 13px;
  }
  .covid-vd.covid-city .covid-aside-video__image {
    height: 292px;
  }
  .covid-vd.covid-city .covid-aside-video__descript {
    font-size: 16px;
  }
  .covid-vd.covid-proj {
    padding-top: 56px;
  }
  .covid-vd.covid-proj .covid-aside-link {
    padding: 21px 19px;
    padding-right: 55px;
    line-height: 18px;
  }
}

@media (max-width: 992px) {
  .covid-buttons {
    padding-left: 170px;
  }
  .covid-vd {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .covid-vd .covid-aside-video {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .covid-vd .covid-aside-video__title {
    font-size: 16px;
    line-height: 19px;
  }
  .covid-vd .covid-aside-video__image {
    height: 170px;
  }
  .covid-slider .slick-dots {
    margin-bottom: 0;
    margin-top: 10px;
  }
  .covid-aside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .covid-aside__box {
    width: 100%;
  }
  .covid-aside-slider {
    width: 100%;
  }
  .covid-aside-slider__slider {
    width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .covid-aside-videos {
    width: calc(100% + 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }
  .covid-aside-video {
    width: calc(100% / 2 - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (max-width: 992px) and (min-width: 768px) {
  .covid-vd {
    background-image: url(../img/general/covid/vd-d2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .covid-vd.covid-city {
    background-image: url(../img/general/covid/vd2.png);
  }
  .covid-vd.covid-proj {
    background-image: url(../img/general/covid/vd-d3.png);
  }
  .covid .tabs-nav-wrap h3.section-head,
  .covid .tabs-nav-wrap .page-title {
    font-size: 32px;
    width: 100%;
    margin-bottom: 10px;
  }
  .covid .covid__header .nav-tabs > li > a {
    padding-bottom: 5px;
  }
  .covid .tabs-nav-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .covid .tabs-nav-wrap .nav.nav-tabs {
    width: 100%;
    text-align: left;
  }
  .covid-slider {
    margin-top: 15px;
    padding-top: 39px;
    background-image: url(../img/general/covid/vd-d1.png);
  }
  .covid-slider-tab {
    margin-bottom: 10px;
  }
  .covid-slider__arrow {
    width: 40px;
    height: 40px;
    margin-top: 20px;
  }
  .covid-slider__arrow.icon-left-arrow {
    left: -10px;
  }
  .covid-slider__arrow.icon-right-arrow {
    right: -10px;
  }
  .covid-slider__image {
    height: 200px;
    min-height: 200px;
    margin-bottom: 8px;
  }
  .covid-slider__name {
    font-size: 16px;
    line-height: 20px;
  }
  .covid-slider__content {
    height: auto;
    padding-bottom: 0;
  }
  .covid-slider__date {
    position: static;
    font-size: 24px;
    line-height: 31px;
    margin-top: 22px;
  }
  .covid-slider .slick-dots {
    display: none !important;
  }
  .covid-box__date {
    font-size: 24px;
    line-height: 31px;
    margin-top: 34px;
    margin-right: 97px;
  }
  .covid-box__image {
    width: 153px;
    min-width: 153px;
    height: 100px;
  }
  .covid-box__desc {
    margin-left: 15px;
    margin-top: 0;
  }
  .covid-box__name {
    line-height: 23px;
  }
  .covid-box__content {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .covid-main {
    padding-top: 106px;
  }
  .covid-main--more {
    padding-top: 81px;
  }
  .covid-main-slider {
    top: 27px;
  }
  .covid-main-slider__item {
    height: 58px;
  }
  .covid-main-slider__arrows {
    height: 58px;
  }
  .covid-vd {
    padding-bottom: 41px;
  }
  .covid-vd__title {
    margin-bottom: 25px;
  }
  .covid-vd .covid-aside-video__image {
    height: 200px;
    margin-bottom: 21px;
  }
  .covid-vd__more {
    font-size: 13px;
  }
  .covid-vd.covid-city .covid-aside-video__image {
    height: 290px;
  }
  .covid-vd.covid-city .covid-aside-video__descript {
    font-size: 16px;
    font-weight: 600;
  }
  .covid-vd.covid-proj .covid-aside-link {
    padding: 21px 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    padding-right: 65px;
  }
  .covid-aside-video__image {
    height: 199px;
  }
  .covid-aside-videos__btn {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .covid-aside-videos__btn .btn {
    max-width: 325px;
  }
  .covid-aside-link {
    font-size: 16px;
    line-height: 20px;
    padding: 15px 17px;
    padding-right: 80px;
    margin-bottom: 49px;
  }
  .covid-aside-link i {
    top: 15px;
    right: 32px;
  }
  .covid-aside-slider {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    padding-bottom: 56px;
  }
  .covid-aside-slider .slick-dots {
    top: 368px !important;
  }
  .covid-aside-slider__slider {
    width: 100%;
  }
  .covid-aside-slide {
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
    min-height: 380px;
    padding-top: 10px;
    padding-bottom: 20px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .covid-aside__box, .covid-aside-pdf {
    width: calc(100% - 370px);
  }
  .covid-aside-slided__image {
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 20px;
    right: 0;
    width: 340px;
    height: 340px !important;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .covid-buttons {
    padding-left: 150px;
  }
  .covid__header.tabs-nav-wrap h3.section-head,
  .covid__header.tabs-nav-wrap .page-title {
    top: 0;
  }
}

@media (max-width: 540px) {
  .covid-buttons {
    padding-left: 0;
  }
  .covid-buttons .btn {
    width: 100%;
  }
  .covid-aside-video {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .covid-aside-videos {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .covid-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .covid-box__date {
    width: 100%;
    margin-top: 0;
    margin-bottom: 15px;
  }
  .covid-box__content {
    width: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 35px;
    padding-left: 0;
  }
  .covid-box__image {
    margin-right: 30px;
    background-image: none !important;
    width: 100%;
    height: auto;
    margin-left: 0 !important;
  }
  .covid-box__image img {
    display: block;
    width: 100%;
    height: auto;
  }
  .covid-box__desc {
    width: calc(100% - 200px);
    margin-left: 0 !important;
  }
  .covid-box__circle {
    position: absolute;
    top: 5px;
    left: 0;
    -webkit-transform: none;
            transform: none;
    margin-top: 10px;
    margin-bottom: 25px;
    margin-left: 10px;
  }
  .covid-box:not(:last-child):before {
    left: 13px;
    top: 15px;
  }
  .covid-box__date {
    padding-left: 35px;
  }
  .covid-box:last-child::before {
    top: 20px;
    left: 108px;
    content: "";
    position: absolute;
    width: 1px;
    height: 90%;
    background-color: #e20338;
    left: 14px;
  }
  .covid-slider__arrow {
    display: none;
  }
  .covid-aside-slider__slider {
    max-width: 100%;
  }
  .covid-box__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .covid-box__image {
    margin-right: 0;
  }
  .covid-box__desc {
    width: 100%;
    margin-left: -20px;
  }
}

@media (max-width: 1270px) and (min-width: 992px) {
  html[font-size="size-md"] .covid-box:not(:last-child)::before {
    left: 125px;
  }
  html[font-size="size-md"] .covid-box__circle {
    left: 122px;
  }
}

html[font-size="size-md"] .covid-box__date {
  font-size: 32px;
}

html[font-size="size-md"] .covid-box__name {
  font-size: 20px;
}

html[font-size="size-md"] .covid-box__sub {
  font-size: 16px;
}

html[font-size="size-md"] .covid-aside-pdf__sub {
  font-size: 16px;
}

html[font-size="size-md"] .covid-aside-pdf__name {
  font-size: 18px;
}

html[font-size="size-md"] .covid-aside-video__title {
  font-size: 20px;
}

html[font-size="size-md"] .covid-aside-video__descript {
  font-size: 16px;
}

html[font-size="size-md"] .covid-aside-link {
  font-size: 20px;
}

html[font-size="size-md"] .covid-slider-tab {
  font-size: 16px;
}

html[font-size="size-md"] .covid-main-slider__item {
  font-size: 17px;
}

html[font-size="size-md"] .covid-vd.covid-proj .covid-aside-link {
  font-size: 20px;
}

html[font-size="size-md"] .covid-vd__title {
  font-size: 30px;
}

html[font-size="size-md"] .covid-vd__more .link-more i {
  font-size: 10px;
}

html[font-size="size-md"] .covid-vd__more .link-more span {
  font-size: 18px;
}

@media (max-width: 1270px) and (min-width: 992px) {
  html[font-size="size-lg"] .covid-box:not(:last-child)::before {
    left: 135px;
  }
  html[font-size="size-lg"] .covid-box__circle {
    left: 132px;
  }
}

html[font-size="size-lg"] .msc-item,
html[font-size="size-lg"] .msc-item__info {
  height: auto;
}

html[font-size="size-lg"] .covid-box__date {
  font-size: 34px;
}

html[font-size="size-lg"] .covid-box__name {
  font-size: 22px;
}

html[font-size="size-lg"] .covid-box__sub {
  font-size: 18px;
}

html[font-size="size-lg"] .covid-aside-pdf__sub {
  font-size: 18px;
}

html[font-size="size-lg"] .covid-aside-pdf__name {
  font-size: 20px;
}

html[font-size="size-lg"] .covid-aside-video__title {
  font-size: 22px;
}

html[font-size="size-lg"] .covid-aside-video__descript {
  font-size: 18px;
}

html[font-size="size-lg"] .covid-aside-link {
  font-size: 22px;
}

html[font-size="size-lg"] .covid-slider-tab {
  font-size: 18px;
}

html[font-size="size-lg"] .covid-main-slider__item {
  font-size: 19px;
}

html[font-size="size-lg"] .covid-vd.covid-proj .covid-aside-link {
  font-size: 22px;
}

html[font-size="size-lg"] .covid-vd__title {
  font-size: 32px;
}

html[font-size="size-lg"] .covid-vd__more .link-more i {
  font-size: 12px;
}

html[font-size="size-lg"] .covid-vd__more .link-more span {
  font-size: 20px;
}

html[color-schema="color-black"] .slick-dots li.slick-active button {
  background-color: #ffffff !important;
}

html[color-schema="color-black"] .slick-dots li button {
  background-color: #000000 !important;
  border-color: #ffffff !important;
  border: 1px solid;
}

html[color-schema="color-black"] .tabs-nav-wrap .nav-tabs > li > a:hover,
html[color-schema="color-black"] .tabs-nav-wrap .nav-tabs > li.active > a {
  text-decoration: none;
}

html[color-schema="color-black"] .link-more.link-color.show-more-bottom-link:hover,
html[color-schema="color-black"] .link-more.link-color.show-more-bottom-link span {
  text-decoration: none;
  color: #ffffff !important;
}

html[color-schema="color-black"] .link-more.link-color.show-more-bottom-link:hover span {
  text-decoration: underline;
}

html[color-schema="color-black"] .breadcrumb > li:first-child:after,
html[color-schema="color-black"] .breadcrumb > li:after {
  color: #ffffff;
}

html[color-schema="color-black"] .covid-slider__slide:hover .covid-slider__name,
html[color-schema="color-black"] .covid-slider__slide:hover .covid-slider__date,
html[color-schema="color-black"] .covid-slider__slide.active .covid-slider__name,
html[color-schema="color-black"] .covid-slider__slide.active .covid-slider__date {
  color: #ffffff;
}

html[color-schema="color-black"] .covid-main--more .covid-main-slider__slider {
  border-top: 1px solid #ffffff;
}

html[color-schema="color-black"] .covid-box h1, html[color-schema="color-black"] .covid-box h2, html[color-schema="color-black"] .covid-box h3, html[color-schema="color-black"] .covid-box h4, html[color-schema="color-black"] .covid-box p {
  color: #ffffff;
}

html[color-schema="color-black"] .covid-box__date, html[color-schema="color-black"] .covid-box__name, html[color-schema="color-black"] .covid-box__sub {
  color: #ffffff;
}

html[color-schema="color-black"] .covid-box__circle {
  background-color: #ffffff;
}

html[color-schema="color-black"] .covid-box__circle:after {
  background-color: #ffffff;
}

html[color-schema="color-black"] .covid-box:not(:last-child):before {
  background-color: #ffffff;
}

html[color-schema="color-black"] .covid-slider {
  background-image: none;
}

html[color-schema="color-black"] .covid-slider-tab {
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid;
}

html[color-schema="color-black"] .covid-slider-tab.active, html[color-schema="color-black"] .covid-slider-tab:hover {
  background-color: transparent;
  color: #ffffff;
  text-decoration: underline;
}

html[color-schema="color-black"] .covid-slider__name {
  color: #ffffff;
}

html[color-schema="color-black"] .covid-slider__image {
  background-color: transparent;
  border: 1px solid;
}

html[color-schema="color-black"] .covid-slider__arrow {
  border: 2px solid;
  background-color: #000000;
  color: #ffffff;
}

html[color-schema="color-black"] .covid-slider__arrow:hover {
  background-color: #ffffff;
  color: #000000;
}

html[color-schema="color-black"] .covid-slider__arrow.slick-disabled {
  -webkit-filter: none;
          filter: none;
}

html[color-schema="color-black"] .covid-slider__arrow.slick-disabled:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}

html[color-schema="color-black"] .covid-slider__arrow:not(.slick-disabled) {
  color: #ffffff;
}

html[color-schema="color-black"] .covid-slider__arrow:not(.slick-disabled):hover {
  color: #000000;
}

html[color-schema="color-black"] .covid-vd {
  background-image: none;
}

html[color-schema="color-black"] .covid-vd__more a.link-color:hover {
  text-decoration: none;
}

html[color-schema="color-black"] .covid-vd__more a.link-color:hover span {
  text-decoration: underline;
}

html[color-schema="color-black"] .covid-vd.covid-city, html[color-schema="color-black"] .covid-vd.covid-proj {
  background-image: none;
}

html[color-schema="color-black"] .covid-vd.covid-proj .covid-aside-link {
  color: #000000;
  background-color: transparent;
  border: 1px solid;
  -webkit-box-shadow: none;
          box-shadow: none;
}

html[color-schema="color-black"] .covid-vd.covid-proj .covid-aside-link :hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

html[color-schema="color-black"] .covid-vd.covid-proj a.covid-aside-link,
html[color-schema="color-black"] .covid-vd.covid-proj .covid-aside-link i,
html[color-schema="color-black"] .covid-vd.covid-proj .covid-aside-link:hover .icon-arrow-top {
  color: #ffffff;
}

html[color-schema="color-black"] .covid-main-slider__item {
  color: #ffffff;
}

html[color-schema="color-black"] .covid-main-slider__item:hover {
  text-decoration: underline;
}

html[color-schema="color-black"] .covid-main-slider__item.active {
  color: #ffffff;
  text-decoration: underline;
}

html[color-schema="color-black"] .covid-main-slider__slider {
  border-bottom: 1px solid #ffffff;
}

html[color-schema="color-black"] .covid-main-slider__arrow.slick-disabled .icon-left-arrow,
html[color-schema="color-black"] .covid-main-slider__arrow.slick-disabled .icon-right-arrow {
  -webkit-filter: none;
          filter: none;
}

html[color-schema="color-black"] .covid-main-slider__arrow:hover {
  color: #ffffff;
}

html[color-schema="color-black"] .covid-aside-slided__image {
  background-color: #ffffff;
}

html[color-schema="color-black"] .covid-aside-link {
  border: 1px solid #ffffff;
}

html[color-schema="color-black"] .covid-aside-link i {
  color: #ffffff;
}

html[color-schema="color-black"] .covid-aside-video__title, html[color-schema="color-black"] .covid-aside-video__descript {
  color: #ffffff;
}

html[color-schema="color-black"] .covid-aside-video__image {
  background-color: #ffffff;
}

html[color-schema="color-black"] .covid-aside-pdf__name {
  color: #ffffff;
  border-bottom: none;
}

html[color-schema="color-black"] .covid-aside-pdf__sub {
  color: #ffffff;
}

html[color-schema="color-black"] .covid-aside__title, html[color-schema="color-black"] .covid-aside__text {
  color: #ffffff;
}

html[color-schema="color-black"] .covid-aside__box h1, html[color-schema="color-black"] .covid-aside__box p {
  color: #ffffff;
}

html[color-schema="color-blue"] .slick-dots li.slick-active button {
  background-color: #063462 !important;
}

html[color-schema="color-blue"] .slick-dots li button {
  background-color: #9dd1ff !important;
  border-color: #063462 !important;
  border: 1px solid;
}

html[color-schema="color-blue"] .tabs-nav-wrap .nav-tabs > li > a:hover,
html[color-schema="color-blue"] .tabs-nav-wrap .nav-tabs > li.active > a {
  text-decoration: none;
}

html[color-schema="color-blue"] .link-more.link-color.show-more-bottom-link:hover,
html[color-schema="color-blue"] .link-more.link-color.show-more-bottom-link span {
  text-decoration: none;
  color: #063462 !important;
}

html[color-schema="color-blue"] .link-more.link-color.show-more-bottom-link:hover span {
  text-decoration: underline;
}

html[color-schema="color-blue"] .breadcrumb > li:first-child:after,
html[color-schema="color-blue"] .breadcrumb > li:after {
  color: #063462;
}

html[color-schema="color-blue"] .covid-slider__slide:hover .covid-slider__name,
html[color-schema="color-blue"] .covid-slider__slide:hover .covid-slider__date,
html[color-schema="color-blue"] .covid-slider__slide.active .covid-slider__name,
html[color-schema="color-blue"] .covid-slider__slide.active .covid-slider__date {
  color: #063462;
}

html[color-schema="color-blue"] .covid-main--more .covid-main-slider__slider {
  border-top: 1px solid #063462;
}

html[color-schema="color-blue"] .covid-box h1, html[color-schema="color-blue"] .covid-box h2, html[color-schema="color-blue"] .covid-box h3, html[color-schema="color-blue"] .covid-box h4, html[color-schema="color-blue"] .covid-box p {
  color: #063462;
}

html[color-schema="color-blue"] .covid-box__date, html[color-schema="color-blue"] .covid-box__name, html[color-schema="color-blue"] .covid-box__sub {
  color: #063462;
}

html[color-schema="color-blue"] .covid-box__circle {
  background-color: #063462;
}

html[color-schema="color-blue"] .covid-box__circle:after {
  background-color: #063462;
}

html[color-schema="color-blue"] .covid-box:not(:last-child):before {
  background-color: #063462;
}

html[color-schema="color-blue"] .covid-slider {
  background-image: none;
}

html[color-schema="color-blue"] .covid-slider-tab {
  background-color: transparent;
  color: #063462;
  text-decoration: none;
  border: 1px solid;
}

html[color-schema="color-blue"] .covid-slider-tab.active, html[color-schema="color-blue"] .covid-slider-tab:hover {
  background-color: transparent;
  color: #063462;
  text-decoration: underline;
}

html[color-schema="color-blue"] .covid-slider__name {
  color: #063462;
}

html[color-schema="color-blue"] .covid-slider__image {
  background-color: transparent;
  border: 1px solid;
}

html[color-schema="color-blue"] .covid-slider__arrow {
  border: 2px solid;
  background-color: #9dd1ff;
  color: #063462;
}

html[color-schema="color-blue"] .covid-slider__arrow:hover {
  background-color: #063462;
  color: #9dd1ff;
}

html[color-schema="color-blue"] .covid-slider__arrow.slick-disabled {
  -webkit-filter: none;
          filter: none;
}

html[color-schema="color-blue"] .covid-slider__arrow.slick-disabled:hover {
  background-color: #9dd1ff !important;
  color: #063462 !important;
}

html[color-schema="color-blue"] .covid-slider__arrow:not(.slick-disabled) {
  color: #063462;
}

html[color-schema="color-blue"] .covid-slider__arrow:not(.slick-disabled):hover {
  color: #9dd1ff;
}

html[color-schema="color-blue"] .covid-vd {
  background-image: none;
}

html[color-schema="color-blue"] .covid-vd__more a.link-color:hover {
  text-decoration: none;
}

html[color-schema="color-blue"] .covid-vd__more a.link-color:hover span {
  text-decoration: underline;
}

html[color-schema="color-blue"] .covid-vd.covid-city, html[color-schema="color-blue"] .covid-vd.covid-proj {
  background-image: none;
}

html[color-schema="color-blue"] .covid-vd.covid-proj .covid-aside-link {
  color: #9dd1ff;
  background-color: transparent;
  border: 1px solid;
  -webkit-box-shadow: none;
          box-shadow: none;
}

html[color-schema="color-blue"] .covid-vd.covid-proj .covid-aside-link :hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

html[color-schema="color-blue"] .covid-vd.covid-proj a.covid-aside-link,
html[color-schema="color-blue"] .covid-vd.covid-proj .covid-aside-link i,
html[color-schema="color-blue"] .covid-vd.covid-proj .covid-aside-link:hover .icon-arrow-top {
  color: #063462;
}

html[color-schema="color-blue"] .covid-main-slider__item {
  color: #063462;
}

html[color-schema="color-blue"] .covid-main-slider__item:hover {
  text-decoration: underline;
}

html[color-schema="color-blue"] .covid-main-slider__item.active {
  color: #063462;
  text-decoration: underline;
}

html[color-schema="color-blue"] .covid-main-slider__slider {
  border-bottom: 1px solid #063462;
}

html[color-schema="color-blue"] .covid-main-slider__arrow.slick-disabled .icon-left-arrow,
html[color-schema="color-blue"] .covid-main-slider__arrow.slick-disabled .icon-right-arrow {
  -webkit-filter: none;
          filter: none;
}

html[color-schema="color-blue"] .covid-main-slider__arrow:hover {
  color: #063462;
}

html[color-schema="color-blue"] .covid-aside-slided__image {
  background-color: #063462;
}

html[color-schema="color-blue"] .covid-aside-link {
  border: 1px solid #063462;
}

html[color-schema="color-blue"] .covid-aside-link i {
  color: #063462;
}

html[color-schema="color-blue"] .covid-aside-video__title, html[color-schema="color-blue"] .covid-aside-video__descript {
  color: #063462;
}

html[color-schema="color-blue"] .covid-aside-video__image {
  background-color: #063462;
}

html[color-schema="color-blue"] .covid-aside-pdf__name {
  color: #063462;
  border-bottom: none;
}

html[color-schema="color-blue"] .covid-aside-pdf__sub {
  color: #063462;
}

html[color-schema="color-blue"] .covid-aside__title, html[color-schema="color-blue"] .covid-aside__text {
  color: #063462;
}

html[color-schema="color-blue"] .covid-aside__box h1, html[color-schema="color-blue"] .covid-aside__box p {
  color: #063462;
}

html[color-schema="color-beige"] .slick-dots li.slick-active button {
  background-color: #4d4b43 !important;
}

html[color-schema="color-beige"] .slick-dots li button {
  background-color: #f7f3d6 !important;
  border-color: #4d4b43 !important;
  border: 1px solid;
}

html[color-schema="color-beige"] .tabs-nav-wrap .nav-tabs > li > a:hover,
html[color-schema="color-beige"] .tabs-nav-wrap .nav-tabs > li.active > a {
  text-decoration: none;
}

html[color-schema="color-beige"] .link-more.link-color.show-more-bottom-link:hover,
html[color-schema="color-beige"] .link-more.link-color.show-more-bottom-link span {
  text-decoration: none;
  color: #4d4b43 !important;
}

html[color-schema="color-beige"] .link-more.link-color.show-more-bottom-link:hover span {
  text-decoration: underline;
}

html[color-schema="color-beige"] .breadcrumb > li:first-child:after,
html[color-schema="color-beige"] .breadcrumb > li:after {
  color: #4d4b43;
}

html[color-schema="color-beige"] .covid-slider__slide:hover .covid-slider__name,
html[color-schema="color-beige"] .covid-slider__slide:hover .covid-slider__date,
html[color-schema="color-beige"] .covid-slider__slide.active .covid-slider__name,
html[color-schema="color-beige"] .covid-slider__slide.active .covid-slider__date {
  color: #4d4b43;
}

html[color-schema="color-beige"] .covid-main--more .covid-main-slider__slider {
  border-top: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .covid-box h1, html[color-schema="color-beige"] .covid-box h2, html[color-schema="color-beige"] .covid-box h3, html[color-schema="color-beige"] .covid-box h4, html[color-schema="color-beige"] .covid-box p {
  color: #4d4b43;
}

html[color-schema="color-beige"] .covid-box__date, html[color-schema="color-beige"] .covid-box__name, html[color-schema="color-beige"] .covid-box__sub {
  color: #4d4b43;
}

html[color-schema="color-beige"] .covid-box__circle {
  background-color: #4d4b43;
}

html[color-schema="color-beige"] .covid-box__circle:after {
  background-color: #4d4b43;
}

html[color-schema="color-beige"] .covid-box:not(:last-child):before {
  background-color: #4d4b43;
}

html[color-schema="color-beige"] .covid-slider {
  background-image: none;
}

html[color-schema="color-beige"] .covid-slider-tab {
  background-color: transparent;
  color: #4d4b43;
  text-decoration: none;
  border: 1px solid;
}

html[color-schema="color-beige"] .covid-slider-tab.active, html[color-schema="color-beige"] .covid-slider-tab:hover {
  background-color: transparent;
  color: #4d4b43;
  text-decoration: underline;
}

html[color-schema="color-beige"] .covid-slider__name {
  color: #4d4b43;
}

html[color-schema="color-beige"] .covid-slider__image {
  background-color: transparent;
  border: 1px solid;
}

html[color-schema="color-beige"] .covid-slider__arrow {
  border: 2px solid;
  background-color: #f7f3d6;
  color: #4d4b43;
}

html[color-schema="color-beige"] .covid-slider__arrow:hover {
  background-color: #4d4b43;
  color: #f7f3d6;
}

html[color-schema="color-beige"] .covid-slider__arrow.slick-disabled {
  -webkit-filter: none;
          filter: none;
}

html[color-schema="color-beige"] .covid-slider__arrow.slick-disabled:hover {
  background-color: #f7f3d6 !important;
  color: #4d4b43 !important;
}

html[color-schema="color-beige"] .covid-slider__arrow:not(.slick-disabled) {
  color: #4d4b43;
}

html[color-schema="color-beige"] .covid-slider__arrow:not(.slick-disabled):hover {
  color: #f7f3d6;
}

html[color-schema="color-beige"] .covid-vd {
  background-image: none;
}

html[color-schema="color-beige"] .covid-vd__more a.link-color:hover {
  text-decoration: none;
}

html[color-schema="color-beige"] .covid-vd__more a.link-color:hover span {
  text-decoration: underline;
}

html[color-schema="color-beige"] .covid-vd.covid-city, html[color-schema="color-beige"] .covid-vd.covid-proj {
  background-image: none;
}

html[color-schema="color-beige"] .covid-vd.covid-proj .covid-aside-link {
  color: #f7f3d6;
  background-color: transparent;
  border: 1px solid;
  -webkit-box-shadow: none;
          box-shadow: none;
}

html[color-schema="color-beige"] .covid-vd.covid-proj .covid-aside-link :hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

html[color-schema="color-beige"] .covid-vd.covid-proj a.covid-aside-link,
html[color-schema="color-beige"] .covid-vd.covid-proj .covid-aside-link i,
html[color-schema="color-beige"] .covid-vd.covid-proj .covid-aside-link:hover .icon-arrow-top {
  color: #4d4b43;
}

html[color-schema="color-beige"] .covid-main-slider__item {
  color: #4d4b43;
}

html[color-schema="color-beige"] .covid-main-slider__item:hover {
  text-decoration: underline;
}

html[color-schema="color-beige"] .covid-main-slider__item.active {
  color: #4d4b43;
  text-decoration: underline;
}

html[color-schema="color-beige"] .covid-main-slider__slider {
  border-bottom: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .covid-main-slider__arrow.slick-disabled .icon-left-arrow,
html[color-schema="color-beige"] .covid-main-slider__arrow.slick-disabled .icon-right-arrow {
  -webkit-filter: none;
          filter: none;
}

html[color-schema="color-beige"] .covid-main-slider__arrow:hover {
  color: #4d4b43;
}

html[color-schema="color-beige"] .covid-aside-slided__image {
  background-color: #4d4b43;
}

html[color-schema="color-beige"] .covid-aside-link {
  border: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .covid-aside-link i {
  color: #4d4b43;
}

html[color-schema="color-beige"] .covid-aside-video__title, html[color-schema="color-beige"] .covid-aside-video__descript {
  color: #4d4b43;
}

html[color-schema="color-beige"] .covid-aside-video__image {
  background-color: #4d4b43;
}

html[color-schema="color-beige"] .covid-aside-pdf__name {
  color: #4d4b43;
  border-bottom: none;
}

html[color-schema="color-beige"] .covid-aside-pdf__sub {
  color: #4d4b43;
}

html[color-schema="color-beige"] .covid-aside__title, html[color-schema="color-beige"] .covid-aside__text {
  color: #4d4b43;
}

html[color-schema="color-beige"] .covid-aside__box h1, html[color-schema="color-beige"] .covid-aside__box p {
  color: #4d4b43;
}

html[color-schema="color-brown"] .slick-dots li.slick-active button {
  background-color: #a9e44d !important;
}

html[color-schema="color-brown"] .slick-dots li button {
  background-color: #3b2716 !important;
  border-color: #a9e44d !important;
  border: 1px solid;
}

html[color-schema="color-brown"] .tabs-nav-wrap .nav-tabs > li > a:hover,
html[color-schema="color-brown"] .tabs-nav-wrap .nav-tabs > li.active > a {
  text-decoration: none;
}

html[color-schema="color-brown"] .link-more.link-color.show-more-bottom-link:hover,
html[color-schema="color-brown"] .link-more.link-color.show-more-bottom-link span {
  text-decoration: none;
  color: #a9e44d !important;
}

html[color-schema="color-brown"] .link-more.link-color.show-more-bottom-link:hover span {
  text-decoration: underline;
}

html[color-schema="color-brown"] .breadcrumb > li:first-child:after,
html[color-schema="color-brown"] .breadcrumb > li:after {
  color: #a9e44d;
}

html[color-schema="color-brown"] .covid-slider__slide:hover .covid-slider__name,
html[color-schema="color-brown"] .covid-slider__slide:hover .covid-slider__date,
html[color-schema="color-brown"] .covid-slider__slide.active .covid-slider__name,
html[color-schema="color-brown"] .covid-slider__slide.active .covid-slider__date {
  color: #a9e44d;
}

html[color-schema="color-brown"] .covid-main--more .covid-main-slider__slider {
  border-top: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .covid-box h1, html[color-schema="color-brown"] .covid-box h2, html[color-schema="color-brown"] .covid-box h3, html[color-schema="color-brown"] .covid-box h4, html[color-schema="color-brown"] .covid-box p {
  color: #a9e44d;
}

html[color-schema="color-brown"] .covid-box__date, html[color-schema="color-brown"] .covid-box__name, html[color-schema="color-brown"] .covid-box__sub {
  color: #a9e44d;
}

html[color-schema="color-brown"] .covid-box__circle {
  background-color: #a9e44d;
}

html[color-schema="color-brown"] .covid-box__circle:after {
  background-color: #a9e44d;
}

html[color-schema="color-brown"] .covid-box:not(:last-child):before {
  background-color: #a9e44d;
}

html[color-schema="color-brown"] .covid-slider {
  background-image: none;
}

html[color-schema="color-brown"] .covid-slider-tab {
  background-color: transparent;
  color: #a9e44d;
  text-decoration: none;
  border: 1px solid;
}

html[color-schema="color-brown"] .covid-slider-tab.active, html[color-schema="color-brown"] .covid-slider-tab:hover {
  background-color: transparent;
  color: #a9e44d;
  text-decoration: underline;
}

html[color-schema="color-brown"] .covid-slider__name {
  color: #a9e44d;
}

html[color-schema="color-brown"] .covid-slider__image {
  background-color: transparent;
  border: 1px solid;
}

html[color-schema="color-brown"] .covid-slider__arrow {
  border: 2px solid;
  background-color: #3b2716;
  color: #a9e44d;
}

html[color-schema="color-brown"] .covid-slider__arrow:hover {
  background-color: #a9e44d;
  color: #3b2716;
}

html[color-schema="color-brown"] .covid-slider__arrow.slick-disabled {
  -webkit-filter: none;
          filter: none;
}

html[color-schema="color-brown"] .covid-slider__arrow.slick-disabled:hover {
  background-color: #3b2716 !important;
  color: #a9e44d !important;
}

html[color-schema="color-brown"] .covid-slider__arrow:not(.slick-disabled) {
  color: #a9e44d;
}

html[color-schema="color-brown"] .covid-slider__arrow:not(.slick-disabled):hover {
  color: #3b2716;
}

html[color-schema="color-brown"] .covid-vd {
  background-image: none;
}

html[color-schema="color-brown"] .covid-vd__more a.link-color:hover {
  text-decoration: none;
}

html[color-schema="color-brown"] .covid-vd__more a.link-color:hover span {
  text-decoration: underline;
}

html[color-schema="color-brown"] .covid-vd.covid-city, html[color-schema="color-brown"] .covid-vd.covid-proj {
  background-image: none;
}

html[color-schema="color-brown"] .covid-vd.covid-proj .covid-aside-link {
  color: #3b2716;
  background-color: transparent;
  border: 1px solid;
  -webkit-box-shadow: none;
          box-shadow: none;
}

html[color-schema="color-brown"] .covid-vd.covid-proj .covid-aside-link :hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

html[color-schema="color-brown"] .covid-vd.covid-proj a.covid-aside-link,
html[color-schema="color-brown"] .covid-vd.covid-proj .covid-aside-link i,
html[color-schema="color-brown"] .covid-vd.covid-proj .covid-aside-link:hover .icon-arrow-top {
  color: #a9e44d;
}

html[color-schema="color-brown"] .covid-main-slider__item {
  color: #a9e44d;
}

html[color-schema="color-brown"] .covid-main-slider__item:hover {
  text-decoration: underline;
}

html[color-schema="color-brown"] .covid-main-slider__item.active {
  color: #a9e44d;
  text-decoration: underline;
}

html[color-schema="color-brown"] .covid-main-slider__slider {
  border-bottom: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .covid-main-slider__arrow.slick-disabled .icon-left-arrow,
html[color-schema="color-brown"] .covid-main-slider__arrow.slick-disabled .icon-right-arrow {
  -webkit-filter: none;
          filter: none;
}

html[color-schema="color-brown"] .covid-main-slider__arrow:hover {
  color: #a9e44d;
}

html[color-schema="color-brown"] .covid-aside-slided__image {
  background-color: #a9e44d;
}

html[color-schema="color-brown"] .covid-aside-link {
  border: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .covid-aside-link i {
  color: #a9e44d;
}

html[color-schema="color-brown"] .covid-aside-video__title, html[color-schema="color-brown"] .covid-aside-video__descript {
  color: #a9e44d;
}

html[color-schema="color-brown"] .covid-aside-video__image {
  background-color: #a9e44d;
}

html[color-schema="color-brown"] .covid-aside-pdf__name {
  color: #a9e44d;
  border-bottom: none;
}

html[color-schema="color-brown"] .covid-aside-pdf__sub {
  color: #a9e44d;
}

html[color-schema="color-brown"] .covid-aside__title, html[color-schema="color-brown"] .covid-aside__text {
  color: #a9e44d;
}

html[color-schema="color-brown"] .covid-aside__box h1, html[color-schema="color-brown"] .covid-aside__box p {
  color: #a9e44d;
}

.dep {
  font-size: 1.6rem;
}

.dep .section-head {
  margin-bottom: 40px;
}

.dep__subtitle {
  text-transform: uppercase;
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.dep__box {
  border-radius: 4px;
  border: 1px solid #e6e7e8;
  padding: 30px;
}

.dep__box:not(:last-child) {
  margin-bottom: 60px;
}

.dep__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.dep__image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  min-width: 140px;
  -o-object-fit: fill;
     object-fit: fill;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 30px;
}

.dep__image img {
  -o-object-fit: fill;
     object-fit: fill;
  width: 100%;
  height: auto;
}

.dep__name {
  font-weight: 700;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.8rem;
  margin-bottom: 10px;
}

.dep__name i {
  margin-left: 15px;
  margin-top: 2px;
}

.dep__email {
  margin-top: 4px;
}

.dep__gray {
  color: #989a9c;
}

.dep__content {
  background-color: #f2f2f2;
  border-radius: 4px;
  text-align: center;
  padding: 30px;
  position: relative;
}

.dep__content:after {
  content: '';
  position: absolute;
  border: 12px solid transparent;
  border-left: 12px solid #f2f2f2;
  border-bottom: 12px solid #f2f2f2;
  top: -24px;
  left: 70px;
}

@media only screen and (max-width: 767px) {
  .dep__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .dep__info {
    width: 100%;
    margin-top: 30px;
    text-align: center;
  }
  .dep__name {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .dep__image {
    margin-left: auto;
    margin-right: auto;
  }
  .dep__content:after {
    border: 12px solid transparent;
    border-left-color: transparent;
    border-bottom: 12px solid #f2f2f2;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.edition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0 0;
}

.edition .flex-wrap {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 500px;
}

.edition-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 216px;
  height: 390px;
  margin: 0 0 30px 0;
  cursor: pointer;
  text-decoration: none;
}

.edition-card__title {
  text-decoration: none;
}

.edition-card__title a {
  text-decoration: none;
  border: none;
}

.edition-card__footer {
  text-decoration: none;
}

.edition-card__footer a {
  text-decoration: none;
  border: none;
}

.edition-card__img a {
  text-decoration: none;
  border: none;
}

.edition-card:hover .edition-card__title {
  color: #e2063a;
  text-decoration: none;
}

.edition-card:hover .edition-card__photo {
  border-color: #787676;
}

.edition-card:hover .edition-card__photo a {
  text-decoration: none;
  border: none;
}

.edition-card:hover .edition-card__img::after, .edition-card:hover .edition-card__img::before {
  opacity: 1;
  visibility: visible;
}

.edition-card:hover .edition-card__footer {
  color: #231f20;
}

.edition-card__title a,
.edition-card__footer a,
.edition-card__img a {
  border: none !important;
}

.edition-card__img:before {
  background: none !important;
}

@media only screen and (min-width: 628px) {
  .edition .flex-wrap {
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .edition-card {
    margin: 0 30px 45px 0;
  }
  .edition-card:nth-child(3n) {
    margin-right: 30px;
  }
}

@media only screen and (min-width: 992px) {
  .edition {
    margin: 70px 0 0;
  }
}

@media only screen and (min-width: 1385px) {
  .edition {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .edition .flex-wrap {
    max-width: 760px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .edition-card:nth-child(3n) {
    margin-right: 0;
  }
}

.edition-card__photo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px;
  border-radius: 5px;
  border: 1px solid #f1f2f2;
  background: url("../img/general/picture.png") no-repeat;
  background-position: center center;
  height: 302px;
  margin-bottom: 12px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.edition-card__photo::before {
  position: absolute;
  content: '';
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: #f1f2f2;
  z-index: -1;
}

.edition-card__photo img {
  max-width: 100%;
  z-index: 1;
}

.edition-card__img {
  overflow: hidden;
  height: 294px;
  position: relative;
  width: 100%;
}

.edition-card__img a {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
}

.edition-card__img::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: black;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.edition-card__img::after {
  position: absolute;
  content: 'Подробнее';
  color: #ffffff;
  bottom: 17px;
  left: 17px;
  width: 100%;
  background: url(../img/general/arrowup.png) no-repeat;
  background-size: 16px 16px;
  background-position: 155px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  z-index: 6;
}

.edition-card__content {
  margin-bottom: 8px;
}

.edition-card__title {
  font-size: 18px;
  color: #231f20;
  font-weight: 500;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.edition-card__footer {
  font-size: 15px;
  color: #939598;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.education {
  margin-bottom: 70px;
}

.education h2 {
  font-family: 'Golos';
  font-weight: 700;
  font-size: 28px;
  color: #0055A3;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .education h2 {
    font-size: 22px;
  }
}

@media (max-width: 470px) {
  .education h2 {
    font-size: 20px;
  }
}

.education__list li {
  position: relative;
  padding-left: 45px;
  font-weight: 400;
  font-size: 16px;
  color: #231F20;
  margin-bottom: 20px;
}

@media (max-width: 470px) {
  .education__list li {
    font-size: 14px;
    padding-left: 35px;
  }
}

.education__list li::before {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #E20338;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.6668 5L7.50016 14.1667L3.3335 10' stroke='white' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  position: absolute;
  left: 0;
}

@media (max-width: 470px) {
  .education__list li::before {
    width: 20px;
    height: 20px;
    background-size: 80%;
  }
}

.education__list li:last-child {
  margin-bottom: 0;
}

.etc {
  overflow: hidden;
}

.etc-descript {
  font-weight: 700;
}

.etc .html {
  color: #231f20;
  font-size: 1.8rem;
  line-height: 2.8rem;
}

.etc .html img {
  width: 100%;
  height: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.etc .html p:not(:last-child) {
  margin-bottom: 10px;
}

.etc-section {
  padding-bottom: 65px;
  padding-top: 70px;
  position: relative;
}

.etc-section:not(.etc-section--bg) + .etc-section:not(.etc-section--bg) {
  padding-top: 0;
}

.etc-section .container {
  z-index: 3;
  position: relative;
}

.etc-section:first-child {
  padding-top: 0;
}

.etc-section--bg {
  background-color: #f1f2f2;
}

.etc-title {
  font-weight: 700;
  color: #0056a3;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 35px;
}

.etc-iconx {
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -20px;
}

.etc-iconx__box {
  width: calc(100% / 3);
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 60px;
}

.etc-iconx__icon {
  margin-bottom: 10px;
}

.etc-iconx__title {
  line-height: 2.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.etc-iconx__descript {
  font-size: 1.6rem;
  line-height: 2.1rem;
}

.etc__relax {
  position: absolute;
  width: 440px;
  height: 320px;
  background-position: center center;
  z-index: -1;
  bottom: -95px;
  right: -35px;
}

.etc-info .etc__relax {
  right: auto;
  bottom: auto;
  top: -95px;
  left: -75px;
}

.etc-stx {
  margin-bottom: 60px;
}

.etc-de .etc-quest__content {
  background-color: #fff;
}

.etc-quest {
  border-top: 1px solid #d5dae0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.etc-quest * {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.etc-quest:last-child {
  border-bottom: 1px solid #d5dae0;
}

.etc-quest.active {
  padding-bottom: 20px;
}

.etc-quest.active .etc-quest__content {
  display: block;
}

.etc-quest.active .etc-quest__header:after {
  content: '-';
}

.etc-quest__header {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  padding-top: 19.5px;
  padding-bottom: 19.5px;
  cursor: pointer;
  padding-right: 35px;
  position: relative;
}

.etc-quest__header:after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: '+';
  width: 24px;
  height: 24px;
  color: #bdc2d0;
  border-radius: 50%;
  border: 2px solid #bdc2d0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 24px;
  padding-top: 2px;
}

.etc-quest__content {
  border-radius: 3px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: #f1f2f2;
  display: none;
}

.etc-quest__content .html {
  font-size: 1.6rem;
  line-height: 2.1rem;
}

.etc-quest__content .html ol {
  margin-top: 12px;
  counter-reset: my-awesome-counter;
}

.etc-quest__content .html ol li {
  padding-left: 30px;
  position: relative;
  counter-increment: my-awesome-counter;
  margin-bottom: 10px;
}

.etc-quest__content .html ol li:before {
  content: counter(my-awesome-counter) ". ";
  left: 0;
  top: 1px;
  color: #939598;
  position: absolute;
}

.etc .show-more__btn {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  height: 33px;
  padding-right: 0;
}

.etc .show-more__btn i {
  margin-left: 10px;
}

.etc .sec-msc__slider_2 .slick-dots {
  padding-left: 15px;
  padding-right: 15px;
}

.etc .msc-slider__arrow:hover {
  border-color: #e61971;
  background-color: #e61971;
}

.etc .sec-msc__content {
  margin-bottom: 0;
}

.etc-de-box {
  background-color: #fff;
  padding-top: 35px;
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 25px;
  border-radius: 4px;
}

.etc-de-box__title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 3rem;
  margin-bottom: 18px;
}

.etc-de-box__ul li {
  position: relative;
  padding-left: 32px;
  line-height: 2.1rem;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.etc-de-box__ul li:after {
  position: absolute;
  top: 6px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #939598;
  content: '';
}

.etc .sec-msc__slider_2 .msc-slider__control {
  bottom: 16px;
}

.etc .slick-list {
  margin-bottom: 25px;
}

.etc-video {
  width: 800px;
  max-width: 100%;
  height: 460px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.etc-video__shared {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #939598;
  font-size: 24px;
  z-index: 3;
}

.etc-video__button {
  width: 225px;
  position: absolute;
  left: 35px;
  bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.etc-video__button i {
  margin-left: 10px;
}

.etc-news {
  padding-bottom: 50px;
}

.etc .btn-primary {
  background-color: #e61971 !important;
  border-color: #e61971 !important;
}

.etc .btn-primary:hover {
  background-color: #a51553 !important;
  border-color: #a51553 !important;
}

.etc .main-news-test__type {
  top: 0;
  background-color: #0055a3;
}

.etc .main-news-test {
  padding-top: 25px;
}

.etc-video-section .etc__relax {
  right: auto;
  bottom: -90px;
  left: -128px;
}

.etc + footer {
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .etc-info__image {
    padding-top: 30px;
    text-align: center;
  }
  .etc-iconx__box {
    width: calc(100% / 2);
  }
}

.etc .sec-msc__slider_2 .msc-slider__control {
  bottom: 72px;
}

@media only screen and (max-width: 576px) {
  .etc .sec-msc__slider_2 .slick-dots {
    display: none !important;
  }
  .etc .sec-msc__slider_2 .msc-slider__control {
    bottom: 0;
  }
  .etc .slick-list {
    margin-bottom: 0;
  }
  .etc-video {
    height: 320px;
  }
}

.structure-tree > li > ul > li > div.item-wrap .line:before, .structure-tree > li > ul > li > ul > li > div.item-wrap .line:before, .structure-tree > li > ul > li > ul > li > ul > li > div.item-wrap .line:before,
.structure-tree > li > ul > li > div.item-wrap .line:after, .structure-tree > li > ul > li > ul > li > div.item-wrap .line:after, .structure-tree > li > ul > li > ul > li > ul > li > div.item-wrap .line:after,
.structure-tree > li > ul > li > .item-wrap:after, .structure-tree > li > ul > li > ul > li > .item-wrap:after, .structure-tree > li > ul > li > ul > li > ul > li > .item-wrap:after {
  border-color: #bdc2d0;
}

.structure-tree .item-wrap .small img {
  margin-right: 10px;
  display: inline-block;
  position: relative;
  top: 2px;
}

.structure-tree .item-wrap .small {
  color: #8f95a6;
}

.footer__icon-list li:nth-child(3) {
  display: none;
}

.foot-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__item {
  width: 50%;
}

.footer__block {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  color: #231F20;
}

.foot-sec-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.foot-sec-1,
.foot-sec-2 {
  padding: 0 !important;
}

.footer .foot-head {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  color: #231F20;
}

.footer__send-wrong {
  margin-top: 45px;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  color: #939598;
}

/* @media (max-width: 1025px) {
  .footer__send-wrong {
    font-size: 14px;
  }
} */

.footer .list li a {
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  color: #231F20;
}

.footer__contacts {
  font-weight: 400;
  font-size: 16px;
  color: #231F20;
}

.footer__contacts br {
  display: none;
}

.foot-bottom-links  {
  text-align: right;
}

@media (max-width: 1366px) {
  .footer .list li a,
  .foot-bottom-links {
    font-size: 14px;
  }

  .footer .list li {
    margin-bottom: 24px;
  }

  .footer__icon-list li {
    margin-bottom: 18px;
  }

  .footer__contacts p,
  .footer__send-wrong {
    font-size: 14px;
  }

  .footer__send-wrong i {
    top: 12px;
  }
}

@media (max-width: 1024px) {
  .footer__icon-list a {
    font-weight: 400;
    color: #939598;
  }
  .footer .list {
    padding-top: 30px;
  }

  .footer .list li {
    margin-bottom: 17px;
  }

  .footer .list li a {
    color: #939598;
  }

  .footer__send-wrong span {
    color: #939598;
  }

  .copyright span {
    color: #231F20;
  }
}


@media (max-width: 769px) {
  .footer .list {
    padding-top: 25px;
  }
  .footer .list li {
    margin-bottom: 15px;
  }
  .footer__send-wrong {
    margin-top: 40px;
  }
  .footer .copyright {
    font-size: 10px;
  }
  .footer__contacts br {
    display: block !important;
  }

}

@media (max-width: 501px) {
  .footer__contacts br {
    display: none !important;
  }
}

@media (max-width: 376px) {
  .footer__contacts br {
    display: block !important;
  }
}

@media only screen and (max-width: 1025px) {
  .footer .foot-head {
    font-size: 14px;
  }
}

@media only screen and (max-width: 992px) {
  .foot-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .foot-bottom-links {
    position: relative;
  }
  .text-right {
    position: absolute;
    bottom: 0;
    right: -200px;
  }
  .footer .container {
    width: 100%;
    padding: 0 15px;
  }
  .footer .list {
    margin-bottom: 0px !important;
  }
  .footer__send-wrong {
    display: block !important;
  }
}

@media only screen and (max-width: 826px) {
  .footer__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .visible-xs {
    border: none !important;
  }
  .footer__item {
    width: 100%;
  }
  .foot-top {
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
  }
  .footer__clearfix {
    width: 50%;
  }
  .footer__contacts {
    width: 50%;
    margin-bottom: 39px;
    padding-top: 0;
  }
  .foot-sec-1, .foot-sec-2 {
    width: 50%;
  }
}

@media only screen and (max-width: 599px) {
  .foot-sec-1,
  .foot-sec-2,
  .foot-bottom-links a {
    display: none;
  }
  .footer__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
  }
  .footer__icon-list li:nth-child(3) {
    display: block;
  }
  .foot-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__icon-list li {
    margin-top: 8px;
    margin-bottom: 0;
  }
  .footer__clearfix {
    width: 100%;
  }
  .footer__buttons {
    display: block;
  }

  .footer__buttons .pd-bottom-15 {
    padding-bottom: 30px !important;
  }
  .footer__item:last-child {
    display: none;
  }
  .footer__item {
    width: 100%;
  }
  .footer__contacts {
    width: 100%;
  }
}

.gestures .foder {
  margin-top: 0;
  min-height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.gestures .text-block p {
  font-size: 18px;
  line-height: 28px;
}

.gestures-section {
  padding: 80px 0px;
}

.gestures-section--last {
  padding-bottom: 40px;
}

@media (max-width: 767px) {
  .gestures-section {
    padding: 40px 0px;
  }
}

.gestures-section-gray {
  background: #F1F2F2;
}

.gestures__title {
  color: #D91B5B;
  margin-bottom: 30px;
  width: 100%;
}

.gestures h3 {
  margin-bottom: 30px;
}

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

.gestures-main-aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0px;
}

.gestures-main-aside-title {
  width: 100%;
}

.gestures-main-aside--fex {
  padding-top: 50px;
}

.gestures-main-aside--ftop {
  padding-bottom: 100px;
}

@media (max-width: 980px) {
  .gestures-main-aside--ftop {
    padding-bottom: 40px !important;
  }
}

@media (max-width: 767px) {
  .gestures-main-aside {
    padding: 20px 0px;
  }
}

.gestures-main-aside__main {
  width: calc(100% - 420px);
}

@media (max-width: 980px) {
  .gestures-main-aside__main {
    width: 100%;
    margin-bottom: 20px;
  }
}

.gestures-main-aside__aside {
  width: 385px;
}

@media (max-width: 980px) {
  .gestures-main-aside__aside {
    width: 100%;
  }
}

.gestures__btn {
  width: 100%;
  background-color: #D91B5B !important;
  border-color: #D91B5B !important;
}

.gestures__btn:hover {
  background-color: #ff0056 !important;
  border-color: #ff0056 !important;
}

.gestures-questions {
  background: #FFFFFF;
  border: 1px solid #DDE0E3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
}

.gestures-questions__image {
  margin-bottom: 15px;
}

.gestures-questions__image img {
  width: 100%;
}

.gestures-questions__info {
  padding: 30px;
  padding-top: 0px;
}

@media (max-width: 767px) {
  .gestures-questions__info {
    padding: 15px;
  }
}

.gestures-questions__title {
  font-size: 20px;
  line-height: 24px;
  color: #231F20;
  font-weight: 700;
  margin-bottom: 60px;
}

.gestures-white-panel {
  background: #fff;
  width: 100%;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .gestures-white-panel {
    padding: 15px;
  }
}

.gestures-aside-statistic {
  padding: 30px;
  background: #F1F2F2;
  border-radius: 4px;
}

.gestures-aside-statistic__number {
  font-size: 40px;
  line-height: 51px;
  color: #D91B5B;
  font-weight: 700;
}

.gestures-aside-statistic__text {
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.gestures-two-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gestures-two-images img {
  width: 48%;
}

@media (max-width: 767px) {
  .gestures-two-images img {
    width: 100%;
    margin-bottom: 15px;
  }
}

.guide-photos__wrap {
  border-bottom: 1px solid #d5dae0;
  padding-bottom: 20px;
  margin-bottom: 60px;
}

@media only screen and (max-width: 576px) {
  .guide-photos__wrap {
    margin-bottom: 40px;
  }
}

.guide-photos__sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 28px;
  font-size: 15px;
  color: #231f20;
  font-weight: bold;
  line-height: 1.2;
}

@media only screen and (max-width: 576px) {
  .guide-photos__sum {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.guide-photos__sum a {
  font-size: 15px;
  color: #939598;
  display: block;
  line-height: 1.2;
  font-weight: 400;
  padding-right: 20px;
  position: relative;
}

@media only screen and (max-width: 576px) {
  .guide-photos__sum a {
    margin-top: 10px;
  }
}

.guide-photos__sum a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 13px;
  width: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/general/icon-download2.png");
}

.guide-photos__sum a:hover {
  color: #e20338;
}

.guide-docs__wrap {
  margin-bottom: 60px;
}

@media only screen and (max-width: 576px) {
  .guide-docs__wrap {
    margin-bottom: 40px;
  }
}

.guide__title {
  font-size: 18px;
  color: #939598;
  line-height: 24px;
}

.guide__box {
  padding: 35px 0;
  border-bottom: 1px solid #d5dae0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 35px;
}

.guide__image {
  border-radius: 50%;
  background-color: #c8c8c8;
  width: 200px;
  min-width: 200px;
  height: 200px;
  overflow: hidden;
  position: relative;
  margin-right: 50px;
}

@media only screen and (max-width: 992px) {
  .guide__image {
    margin-right: 20px;
    width: 180px;
    min-width: 180px;
    height: 180px;
  }
}

@media only screen and (max-width: 576px) {
  .guide__image {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
}

.guide__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

.guide__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 992px) {
  .guide__info {
    margin-top: 30px;
  }
}

.guide__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 20px;
  color: #4c4849;
}

@media only screen and (max-width: 992px) {
  .guide__info-item {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 576px) {
  .guide__info-item {
    font-size: 14px;
    line-height: 18px;
  }
}

.guide__info-gray {
  width: 160px;
  min-width: 160px;
  color: #afb1b6;
}

@media only screen and (max-width: 576px) {
  .guide__info-gray {
    width: 120px;
    min-width: 120px;
  }
}

.guide__info a {
  border-bottom: 1px solid #e20338;
}

.guide__info a:hover {
  color: #e20338;
}

.guide__text-wrap {
  border-bottom: 1px solid #d5dae0;
  margin-bottom: 60px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 576px) {
  .guide__text-wrap {
    margin-bottom: 40px;
  }
}

.guide__text-wrap p {
  font-size: 16px;
  line-height: 22px;
  color: #4c4849;
  margin-bottom: 25px;
}

.guide-docs {
  padding: 30px 0;
  border-bottom: 1px solid #d5dae0;
}

.guide-docs:first-child {
  padding-top: 0;
}

.guide-docs__type {
  color: #e20338;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.guide-docs__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #231f20;
  display: block;
}

.guide-docs__title:hover {
  color: #e20338;
}

.guide-docs__date {
  font-size: 16px;
  font-weight: 400;
  color: #939598;
}

@media (max-width: 992px) {
  .guide__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .guide-photos__sum > div {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 576px) {
  .guide__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 25px 0;
    margin-bottom: 25px;
  }
}

.guide-image {
  padding-bottom: 56%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.guide-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  z-index: 1;
}

.guide-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  height: 100%;
  width: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
}

.guide-image:hover {
  cursor: pointer;
}

.guide-image:hover:before {
  background-color: rgba(0, 0, 0, 0.4);
}

.guide-image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.guide-image:hover .guide-image__download {
  display: block;
}

.guide-image__download {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  z-index: 3;
  font-size: 14px;
  padding: 5px 28px 5px 10px;
  display: none;
}

.guide-image__download span {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  display: block;
  height: 13px;
  width: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/general/icon-download.png");
}

.guide-image__download:hover {
  display: block;
  cursor: pointer;
  color: #ffffff;
}

@media (min-width: 1366px) {
  .nav-btn {
    display: block;
  }
}

.icons {
  background-color: #f0f6f4;
}

.icons__icon {
  margin-right: 10px !important;
  display: flex;
  align-items: center;
}

@media (max-width: 1367px) {
  .icons__icon {
    margin-right: 8px !important;
  }
}

.icons__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.icons__box:hover .icons__text {
  color: #2397AA;
}

.icons__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 51px;
}

.icons__text {
  color: #21272b;
  font-weight: 600;
  font-size: 12px;
  font-size: 1.2rem;
}

@media (max-width: 1367px) {
  .icons__text {
    font-size: 10px;
  }
}

.pushy-inner .icons .container {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  width: calc(100% + 30px);
}

@media (max-width: 1650px) {
  .icons__box {
    padding: 0px 15px;
  }
  .icons__box:first-child {
    padding-left: 0;
  }
  .icons__box:last-child {
    padding-right: 0;
  }
}

@media screen and (min-width:992px) and (max-width: 1269px) {
  .icons__box {
    padding: 0px 7px;
  }
}

@media screen and (max-width: 991px) {
  .icons__box {
    width: 19%;
    border-bottom: 1px solid #bdc2d0;
    padding: 10px;
    height: 57px;
  }
  .icons__flex {
    display: -webkit-box;
  }
  .icons .container {
    padding-top: 0;
  }
}

.pushy .icons__flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.pushy .icons__box {
  width: 100%;
  border-bottom: 1px solid #bdc2d0;
  padding: 10px;
  height: 57px;
}

.pushy .icons .container {
  padding-top: 0;
}

@media (max-width: 501px) {
  .icons__flex {
    display: -webkit-box;
  }
  .icons__box {
    width: 34% !important;
  }
}

@media (max-width: 376px) {
  .icons__box {
    width: 41% !important;
  }
}

.information {
  width: 100%;
  margin-bottom: 100px;
}

.information h2 {
  color: #0055A3;
  font-family: 'Golos';
  font-weight: 700;
  font-size: 28px;
}

@media (max-width: 768px) {
  .information h2 {
    font-size: 22px;
  }
}

@media (max-width: 470px) {
  .information h2 {
    font-size: 20px;
  }
}

.information__acordion_item {
  padding-top: 20px;
  border-bottom: 1px solid #D5DAE0;
  cursor: pointer;
}

.information__acordion_item:first-child {
  border-top: 1px solid #D5DAE0;
}

.information__acordion_item .event-button p {
  color: #231F20;
  font-family: 'Golos';
  font-weight: bold;
  font-size: 18px;
  position: relative;
}

@media (max-width: 768px) {

  .information__acordion_item .event-button p {
    font-size: 16px;
  }
}

@media (max-width: 470px) {
  .information__acordion_item .event-button p {
    font-size: 14px;
  }
}

.information__acordion_item .event-button p[data-title="+"]::after {
  content: attr(data-title);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #d5dae0;
  font-weight: 700;
  position: absolute;
  font-size: 2rem;
  color: #d5dae0;
  line-height: 0.9;
  text-align: center;
  right: 0;
}

.information__acordion_item .event-button p[data-title="-"]::after {
  content: attr(data-title);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #d5dae0;
  font-weight: 700;
  position: absolute;
  font-size: 2rem;
  color: #d5dae0;
  line-height: .8;
  text-align: center;
  right: 0;
}

.information__acordion_item_dropdown {
  background-color: #F1F2F2;
  height: 0;
  -webkit-transition: .4s;
  transition: .4s;
  overflow: hidden;
  margin-top: 20px;
}

.information__acordion_item_dropdown > div {
  padding: 30px;
}

.information__acordion_item_dropdown > div .button {
  margin-top: 15px;
  width: 421px;
  padding: 16px;
  background: #E20338;
  border-radius: 4px;
  font-family: 'GOSTUI2';
  font-weight: 500;
  font-size: 16px;
  color: #fff !important;
  display: block;
  text-decoration: none;
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 560px) {
  .information__acordion_item_dropdown > div .button {
    width: 285px;
    padding: 11px;
  }
}

@media (max-width: 351px) {
  .information__acordion_item_dropdown > div .button {
    width: 240px;
    padding: 8px;
  }
}

.information__acordion_item_dropdown > div > div:first-child {
  margin-bottom: 30px;
}

.information__acordion_item_dropdown > div p {
  color: #231F20;
  font-weight: 400;
  font-size: 16px;
}

.information__acordion_item_dropdown > div .title-text {
  font-family: 'Golos';
  font-weight: bold;
}

.information__acordion_item_dropdown > div li {
  list-style: disc;
}

.information__acordion_item_dropdown > div p,
.information__acordion_item_dropdown > div li,
.information__acordion_item_dropdown > div a {
  font-weight: 400;
  font-size: 16px;
  color: #231F20;
  line-height: 1.8;
}

@media (max-width: 470px) {
  .information__acordion_item_dropdown > div p,
  .information__acordion_item_dropdown > div li,
  .information__acordion_item_dropdown > div a {
    font-size: 14px;
  }
}

.information__acordion_item_dropdown > div ul {
  padding-left: 15px;
}

.information__acordion_item_dropdown > div ul li {
  font-weight: 400;
  font-size: 16px;
  color: #231F20;
  padding: 8px 0px;
}

@media (max-width: 470px) {
  .information__acordion_item_dropdown > div ul li {
    font-size: 14px;
  }
}

.information__acordion_item_dropdown > div a {
  color: #E20338;
  -webkit-transition: .4s;
  transition: .4s;
  text-decoration: none;
  border-bottom: 1px solid rgba(226, 3, 56, 0.38);
}

.information__acordion_item_dropdown > div a:hover {
  border-bottom-color: transparent;
}

html[color-schema="color-black"] .lk-org__box {
  border-color: #fff;
}

html[color-schema="color-black"] .lk-org__number {
  background-color: #fff;
  color: #000;
}

html[color-schema="color-blue"] .lk-org__box {
  border-color: #063462;
}

html[color-schema="color-blue"] .lk-org__number {
  background-color: #063462;
  color: #fff;
}

html[color-schema="color-beige"] .lk-org__box {
  border-color: #4d4b43;
}

html[color-schema="color-beige"] .lk-org__number {
  background-color: #4d4b43;
  color: #fff;
}

html[color-schema="color-brown"] .lk-org__box {
  border-color: #a9e44d;
}

html[color-schema="color-brown"] .lk-org__number {
  background-color: #a9e44d;
  color: #000;
}

.lk-org__boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}

@media only screen and (max-width: 767px) {
  .lk-org__boxs {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.lk-org__box {
  width: calc(100% / 2 - 40px);
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 30px;
  border-radius: 4px;
  border: 1px solid #e7e8e9;
  padding: 35px;
  padding-bottom: 30px;
  padding-right: 80px;
  display: block;
  position: relative;
  cursor: pointer;
}

.lk-org__box:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.lk-org__box:first-child {
  width: calc(100% - 40px);
}

@media only screen and (max-width: 767px) {
  .lk-org__box {
    width: calc(100% - 30px);
  }
  .lk-org__box:first-child {
    width: calc(100% - 30px);
  }
}

.lk-org__name {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.lk-org__link {
  font-size: 1.6rem;
}

.lk-org__link i {
  margin-left: 10px;
}

.lk-org__number {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 36px;
  height: 28px;
  border-radius: 14px;
  color: #e30a3d;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  background-color: #ffeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-title--bigger.page-title {
  padding-top: 10px;
  margin-bottom: 48px;
}

.loader-page {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: 9999;
}

.loader-circle {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

#loader-1:before, #loader-1:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 10px solid transparent;
  border-top-color: #e20338;
}

#loader-1:before {
  z-index: 100;
  -webkit-animation: spin 1s infinite;
          animation: spin 1s infinite;
}

#loader-1:after {
  border: 10px solid #ccc;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.row-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-news--press .container:after, .main-news--press .container:before {
  display: none;
}

.main-news--press .row-flex > div {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
}

.main-news--press .row-flex > div > * {
  width: 100%;
}

.main-news--press .row-flex {
  margin-left: -15px;
  margin-right: -15px;
}

.main-news {
  padding-top: 55px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Golos';
}

.main-news .faax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 769px) {
  .main-news .banner-fluid {
    width: 50% !important;
  }
}

@media (max-width: 769px) and (max-width: 600px) {
  .main-news .banner-fluid {
    width: 100% !important;
  }
}

.main-news-aside {
  position: relative;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.main-news-aside:after {
  bottom: 1px;
  left: 0;
  right: 0;
  height: 120px;
  content: '';
  position: absolute;
  z-index: 2;
  pointer-events: none;
  background: white;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
}

.main-news__mirl {
  position: absolute;
  top: 6px;
  right: 0;
  font-size: 1.5rem;
}

.main-news__mirl i {
  margin-left: 10px;
}

.main-news__notes {
  border-bottom: 1px solid #b0b5c0;
  height: 1265px;
  overflow: auto;
  position: relative;
  -ms-overflow-style: none;
}

.main-news__notes::-webkit-scrollbar {
  display: none;
}

.main-news__note {
  margin-bottom: 25px;
}

.main-news .slick-slider {
  margin: 0 -15px;
  width: calc(100% + 30px);
}

.main-news .slick-slider .slick-slide {
  margin: 0px 15px;
}

.main-news .slick-list,
.main-news .slick-slider,
.main-news .slick-track {
  height: 100% !important;
}

.main-news .slick-dots {
  height: auto;
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  padding: 0;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-news .slick-dots li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}

.main-news .slick-dots li.slick-active button {
  opacity: 1;
  background-color: #e20338 !important;
}

.main-news .slick-dots li button {
  position: relative;
  opacity: 0.3;
  overflow: visible;
}

.main-news .slick-dots li button svg {
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.main-news .slick-dots li:not(:last-child) {
  margin-bottom: 20px;
}

.main-news .append_dots_slider .slick-dots {
  top: 106%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.main-news-link {
  text-align: center;
}

.main-news-link:hover {
  color: #e20338;
}

.main-news-test {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #e1e3e7;
  padding-top: 30px;
  padding-left: 34px;
  padding-right: 34px;
  padding-bottom: 30px;
}

.main-news-test__link {
  margin-top: 15px;
  text-align: center;
}

.main-news-test__image {
  height: 188px;
}

.main-news-test__type {
  z-index: 2;
  padding: 5px 10px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  background-color: #76ddcd;
  font-size: 12px;
  text-transform: uppercase;
  position: absolute;
  top: 10px;
  left: -10px;
}

.main-news-test__name {
  line-height: 3.2rem;
  font-size: 2.4rem;
  font-weight: 700;
}

.main-news-test__buttons {
  margin-top: 12px;
}

.main-news-test__btn {
  width: 100%;
}

.main-news-test__btn.btn-default-color {
  color: #231f20 !important;
  border-color: #e1e3e7 !important;
}

.main-news-test__btn.btn-default-color:hover {
  background-color: #e20338 !important;
  border-color: #e20338 !important;
  color: #fff !important;
}

.main-news-test__btn:not(:last-child) {
  margin-bottom: 14px;
}

.main-news-slider {
  overflow: hidden;
  margin-right: -20px;
  width: 100%;
}

.main-news-slider__slider {
  overflow: hidden;
}

.main-news-item {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  margin-right: 20px;
}

.main-news-item > * {
  position: relative;
  z-index: 3;
}

.main-news-item__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-left: 30px;
  padding-right: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 4;
}

.main-news-item__title {
  font-weight: 700;
  color: #fff;
}

.main-news-item__map .main-news-item__title {
  font-size: 36px;
  line-height: 46px;
}

.main-news-item__btn {
  margin-bottom: -40px;
}

.main-news-item__map .main-news-item__content {
  padding-right: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(196, 196, 196, 0)), color-stop(0.01%, rgba(3, 23, 29, 0)), to(rgba(5, 83, 69, 0.38)));
  background: -webkit-linear-gradient(top, rgba(196, 196, 196, 0) 0%, rgba(3, 23, 29, 0) 0.01%, rgba(5, 83, 69, 0.38) 100%);
  background: linear-gradient(180deg, rgba(196, 196, 196, 0) 0%, rgba(3, 23, 29, 0) 0.01%, rgba(5, 83, 69, 0.38) 100%);
}

.main-news-item__map .main-news-item__content .btn {
  padding-left: 32px;
  padding-right: 32px;
  border: 2px solid #e20338;
  color: #fff;
  background: #e20338;
  -webkit-transition: all ease-in-out 0.05s;
  transition: all ease-in-out 0.05s;
  font-weight: 700;
}

.main-news-item__map .main-news-item__content .btn:active, .main-news-item__map .main-news-item__content .btn:focus, .main-news-item__map .main-news-item__content .btn:hover {
  color: #fff;
  border-color: #e20338;
}

.main-news-item__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
}

.main-news-item__news .main-news-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.main-news-item__news .main-news-item__content > * {
  position: relative;
  z-index: 3;
}

.main-news-item__news .main-news-item__content:after {
  z-index: 1;
  width: 100%;
  height: 330px;
  content: "";
  background-color: #000;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(196, 196, 196, 0)), color-stop(0.01%, rgba(3, 23, 29, 0)), to(rgba(3, 23, 29, 0.66)));
  background: -webkit-linear-gradient(top, rgba(196, 196, 196, 0) 0%, rgba(3, 23, 29, 0) 0.01%, rgba(3, 23, 29, 0.66) 100%);
  background: linear-gradient(180deg, rgba(196, 196, 196, 0) 0%, rgba(3, 23, 29, 0) 0.01%, rgba(3, 23, 29, 0.66) 100%);
}

.main-news-item__type {
  color: #fff;
  padding: 7px;
  border-radius: 5px;
  font-size: 12px;
  font-size: 1.2rem;
  text-transform: uppercase;
  line-height: 13px;
  vertical-align: middle;
  display: inline;
  position: absolute;
  font-weight: 600;
  line-height: 13px;
  left: 30px;
  top: 30px;
  letter-spacing: 0.04em;
}

.main-news-item__news .main-news-item__title {
  font-weight: 700;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 130%;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.main-news-item__date {
  font-size: 1.6rem;
  opacity: 0.6;
  color: #fff;
}

.main-news .dots .slick-dots {
  top: 106%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 1560px) {
  .main-news-item__map .main-news-item__title {
    font-size: 30px;
    line-height: 36px;
  }
}

@media only screen and (max-width: 1269px) {
  .main-news .slick-dots {
    left: 15px;
  }
  .main-news-item__type {
    left: 50px;
    font-size: 10px;
  }
  .main-news-item__content {
    padding-left: 50px;
    padding-right: 50px;
  }
  .main-news-item__map .main-news-item__title {
    font-size: 24px;
    line-height: 31px;
  }
  .main-news-item__map .main-news-item__content {
    padding-right: 200px;
  }
  .main-news-test__image {
    height: auto;
  }
  .main-news-test__name {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}

@media only screen and (max-width: 991px) {
  .main-news {
    padding-top: 25px;
  }
  .main-news-test br {
    display: none !important;
  }
  .main-news-test {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 599px) {
  .main-news-test {
    border: none;
    padding: 0;
  }
  .main-news-test__image {
    width: 100%;
    max-width: 100%;
  }
  .main-news .main-news-test__content {
    padding: 20px !important;
  }
  .main-news .slick-dots li {
    margin-bottom: 0 !important;
  }
  .main-news-item {
    height: auto;
    min-height: 0;
  }
  .main-news-item__image {
    position: relative;
    height: 185px;
    border-radius: 4px;
    overflow: hidden;
  }
  .main-news-item__map .main-news-item__image:after {
    width: 100%;
    height: 80%;
    content: "";
    background-color: #000;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.3)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 70%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 70%);
  }
  .main-news-item__content {
    position: absolute;
    padding: 0;
    padding-top: 16px;
  }
  .main-news-item__news .main-news-item__title {
    color: #231f20;
    margin-bottom: 10px;
  }
  .main-news-item__type {
    left: 10px;
    top: 10px;
  }
  .main-news-item__date {
    font-size: 1.4rem;
  }
  .main-news-item__map .main-news-item__title {
    position: initial !important;
    z-index: 4;
    font-size: 2.8rem;
    line-height: 3rem;
  }
  .main-news-item__btn {
    padding-bottom: 0;
    margin-bottom: 10px !important;
  }
}

@media only screen and (max-width: 501px) {
  .main-news-item__map .main-news-item__content .btn {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1650px) {
  .main-news-bg .container.container-large > .row.row-fl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .row.row-fl .col-lg-6 {
    width: 48%;
  }
  .banner__block_mob {
    display: contents;
  }
  .banner__block_mob > div:first-child {
    width: 27%;
  }
  .main-news-item__news .main-news-item__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .main-news .dots .slick-dots,
  .main-news .append_dots_slider .slick-dots {
    top: 105%;
  }
}

@media (max-width: 1270px) {
  .main-news-test__type {
    padding: 5px 7px;
    font-size: 10px;
  }
  .main-news-item__news .main-news-item__title {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .main-news .dots .slick-dots {
    top: 103.5%;
  }

  .main-news .append_dots_slider .slick-dots {
    top: 104.5%;
  }
  .main-news-item__news .main-news-item__title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .main-news .append_dots_slider .slick-dots {
    top: 100.5%
  }
}

@media (max-width: 501px) {
  .main-news-item__news .main-news-item__title {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 381px) {
  body .main__s.main__s-new .main-news-test__buttons .btn:last-child {
    width: 39% !important;
  }
}

.timeline-Widget {
  display: none !important;
}

#twitterStyle {
  display: none !important;
}

.twitter-container {
  overflow: auto;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  height: calc(100% - 64px - 90px + 1px);
  margin-top: -1px;
}

.twitter-container::-webkit-scrollbar {
  width: 0;
}

.main-news-test--main {
  border: none !important;
  overflow: hidden !important;
  width: 100% !important;
}

.twitter__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e4e4e4;
  background-color: #fff;
  z-index: 3;
  position: relative;
}

.twitter__icon {
  width: 50px;
  min-width: 50px;
}

.twitter__title {
  color: #231f20;
  font-size: 1.8rem;
  padding-bottom: 10px;
}

.twitter__title span {
  font-weight: 700;
  display: block;
  font-size: 2.4rem;
}

@media (max-width: 600px) {


  .main-news .append_dots_slider .slick-dots {
    top: 103.5%;
  }
  .main-news-bg .main-news-test {
    height: auto !important;
  }
  /*--- add to master ---*/
  .main-news-bg .main-news-item__image,
  .main-news-bg .main-news-slider {
    height: 350px !important;
  }
}

@media (max-width: 480px) {
  .main-news .dots .slick-dots {
    top: 106%;
  }
}

.main-news-test__ft {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background-color: #fff;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.main-news-test__ft:after {
  left: 0;
  right: 0;
  content: '';
  position: absolute;
  height: 70px;
  top: -70px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,ffffff+100&0+0,1+100 */
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, white 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(white));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
}

.main-news-test__ft .btn {
  width: 100%;
  height: 54px;
  color: #1da1f2;
  font-weight: 700;
  border: 1px solid #1da1f2;
  font-size: 1.6rem;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.main-news-test__ft .btn:hover {
  background-color: #1da1f2;
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .main-news-test__ft {
    height: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .twitter-container {
    height: calc(100% - 64px - 45px + 1px);
  }
}

.nts {
  position: relative;
  margin-bottom: 15px;
  z-index: 3;
}

.nts__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.nts__item {
  padding-right: 4px;
}

.nts-item {
  cursor: pointer;
}

.nts-item input {
  display: none !important;
}

.nts-item .jq-checkbox {
  display: none;
}

.jq-checkbox.checked + .nts-item__text {
  background-color: #e20338;
  color: #fff;
}

.nts-item__text {
  border-radius: 4px;
  padding-left: 5px;
  font-weight: 400;
  padding-right: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 1.4rem;
  white-space: nowrap;
  background-color: #f1f2f2;
}

.nts__toggle {
  border-radius: 4px;
  padding-left: 5px;
  font-weight: 400;
  padding-right: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 1.4rem;
  white-space: nowrap;
  border: 1px solid #e20338;
  color: #e20338;
  cursor: pointer;
}

.nts__toggle.active, .nts__toggle:hover {
  background-color: #e20338;
  color: #fff;
}

.nts-hoved {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #e1e3e7;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(200, 200, 200, 0.5);
          box-shadow: 0px 5px 15px 0px rgba(200, 200, 200, 0.5);
  border-radius: 4px;
  display: none;
}

.nts-hoved__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}

.nts-hoved__total {
  color: #939598;
  font-size: 14px;
}

.nts-hoved__resets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.nts-hoved__btn {
  cursor: pointer;
  font-size: 14px;
}

.nts-hoved__btn:not(:last-child) {
  margin-right: 30px;
}

.nts-hoved__btn:hover {
  color: #e20338;
}

.nts-hoved__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.nts-hoved__flex .nts-item {
  padding-bottom: 4px;
}

.nts-hoved.active {
  display: block;
}

.nts-mob {
  display: none;
}

@media only screen and (max-width: 1270px) {
  .main-news__notes {
    border-bottom: 1px solid #b0b5c0;
    position: relative;
    height: 1265px;
  }
}

@media (max-width: 992px) {
  .main-news__notes {
    height: auto;
  }
}

@media only screen and (max-width: 768px) {
  .main-news-aside {
    margin-top: 30px;
  }
  .main-news__mirl {
    position: static;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 20px;
  }
  .main-news__notes {
    height: 490px;
    padding-bottom: 15px;
  }
  .main-news__notes:after {
    display: none;
  }
  .nts {
    position: static;
    z-index: auto;
  }
  .nts-mob {
    display: block;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 700;
  }
  .nts-hoved {
    padding: 25px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    border: none;
    padding-bottom: 80px;
    z-index: 1000;
    overflow-y: scroll;
    padding-bottom: 80px;
  }
  .nts-hoved__footer {
    left: 25px;
    right: 25px;
    bottom: -5px;
    padding-bottom: 30px;
    position: fixed;
    background-color: #fff;
    padding-top: 20px;
    margin-top: 0;
  }
  .nts-hoved__close {
    width: 25px;
    height: 25px;
    border-radius: 4px;
    background-color: #f1f2f2;
    position: absolute;
    top: 25px;
    right: 25px;
  }
  .nts-hoved__close:after {
    width: 50%;
    content: '';
    top: 50%;
    left: 50%;
    position: absolute;
    height: 2px;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
    background-color: #abafbb;
  }
  .nts-hoved__close::before {
    width: 50%;
    content: '';
    top: 50%;
    left: 50%;
    position: absolute;
    height: 2px;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #abafbb;
  }
  /* .new-content-block {
    display: none;
  } */
}

@media (max-width: 501px) {
  .new-content-block {
    display: block !important;
  }
}

@media only screen and (max-width: 767px) {
  .main-news-test .section-head {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 20px;
  }
  .main-news__notes {
    padding-left: 15px;
    padding-right: 15px;
  }
  .nts__flex {
    width: 100px;
    position: absolute;
    right: 15px;
    top: 0;
  }
  .nts__toggle {
    background-color: #e20338;
    color: #fff;
  }
  .nts {
    margin-bottom: -10px;
    z-index: auto;
  }
}

.main-news--press .row-flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.nts.nts--right {
  margin-bottom: 0;
}

.nts.nts--right .nts__flex {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.main-news--press .row-flex > div > .row-flex {
  width: calc(100% + 30px);
}

.main-news--press .section-head {
  margin-bottom: 0;
}

.fozaxs {
  margin-bottom: 20px;
}

@media only screen and (max-width: 992px) {
  .nts.nts--right .nts__flex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 10px;
  }
  .main-news-bg .main__s-new .swiper-wrapper {
    height: 100% !important;
  }
}

@media only screen and (max-width: 767px) {
  .nts.nts--right .nts__flex {
    margin-top: 0;
  }
  .fozaxs .col-md-8 {
    position: static;
  }
}

.main-news.main-news--press.main-news--press--os .section-head {
  margin-bottom: 32px;
}

@media only screen and (min-width: 1650px) {
  .container.container-large {
    width: 1560px;
  }
}

body .main-news-bg {
  padding-top: 56px !important;
  padding-bottom: 92px !important;
  background: #EAF0F8;
}

.main-news-m-banner {
  width: 100%;
  height: 464px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.new-cite-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1367px) {
  .new-cite-head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.new-cite-head .section-head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 1650px) {
  body .main-news-bg {
    padding-bottom: 72px !important;
  }
  .main-news-item__date {
    font-size: 14px;
  }
}

@media (max-width: 1270px) {
  body .main-news-bg {
    padding-bottom: 62px !important;
  }
}

@media (max-width: 1367px) {
  .head-flex {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
}

@media (max-width: 1367px) and (max-width: 769px) {
  .head-flex {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
}

@media (max-width: 1367px) {
  .head-flex h3 {
    margin-right: 40px;
  }
  .head-flex .new-cite-tabs-left,
  .head-flex .new-cite-tabs-right {
    display: none !important;
  }
}

@media (max-width: 1920px) {
  .head-flex .new-cite-tabs-left,
  .head-flex .new-cite-tabs-right {
    display: none !important;
  }
}

.new-cite-tab.active::before {
  background: #E20338;
}

.new-cite-tab {
  font-weight: 600;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 18px;
  color: #231F20;
  margin-right: 50px;
  padding-bottom: 12px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (max-width: 1025px) {
  .new-cite-tab {
    font-size: 12px;
  }
}

.new-cite-tab:last-child {
  margin-right: 0;
}

.new-cite-tab.active {
  color: #E20338;
}

.new-cite-tab:hover {
  color: #E20338;
}

.new-cite-tab::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  right: 0;
  height: 3px;
  background: transparent;
  border-radius: 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.new-cite-tabs-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: calc(100% - 43px);
}

@media (max-width: 991px) {
  .main__s-new {
    padding-top: 0 !important;
  }
}

@media (max-width: 600px) {
  .main__s-new {
    padding-top: 15px !important;
  }
}

.main__s-new .main-news-test__btn {
  border-radius: 8px;
}

.main__s-new .main-news-test__content {
  padding: 0 30px 40px 30px;
}

body .main__s.main__s-new .main-news-test__buttons {
  -webkit-box-pack: inherit;
      -ms-flex-pack: inherit;
          justify-content: inherit;
  position: absolute;
  bottom: 32px;
  width: 100%;
}

@media (max-width: 991px) {
  body .main__s.main__s-new .main-news-test__buttons {
    bottom: 5px;
    margin-left: 6px;
  }
}

body .main__s.main__s-new .main-news-test__buttons .btn {
  width: calc(50% - 12px);
  min-width: 0px;
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

body .main__s.main__s-new .main-news-test__buttons .btn:last-child {
  width: 40%;
}

body .main__s.main__s-new .main-news-test__buttons .btn.btn-default-color {
  border-color: #e20338 !important;
  color: #e20338 !important;
  border-width: 2px;
}

body .main__s.main__s-new .main-news-test__buttons .btn.btn-default-color:hover {
  color: #FFFFFF !important;
}

.new-slider-block,
.useful-slider-block,
.new-content-block {
  margin-left: -15px;
  margin-right: -15px;
}

.new-slider-block .new-content-block,
.useful-slider-block .new-content-block {
  margin-top: 40px;
  margin-bottom: 0;
}

.new-slider-block .slick-dots,
.useful-slider-block .slick-dots {
  margin-top: 30px;
  margin-bottom: 0;
}

.new-content-block-small,
.new-slider-block-small {
  display: none;
}

.new-cite-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 2;
  height: 40px;
}

.new-cite-controls-btn {
  width: 40px;
  height: 40px;
  background: #E20338;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10px;
  cursor: pointer;
  margin-top: -35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.new-cite-controls-btn:hover {
  background: #AF002A;
}

.new-notes-text {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.new-notes-text:hover {
  color: #E20338;
}

.new-slider-block-item {
  margin-left: 12px;
  margin-right: 12px;
}

@media (max-width: 501px) {
  .new-slider-block-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  body .main-news-bg {
    padding-top: 25px !important;
  }
}

.new-site-link-block {
  padding: 47px 35px;
  background: #F7F7F8;
  border-radius: 8px;
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  color: #231F20;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1367px) {
  .new-site-link-block {
    font-size: 16px;
    padding: 32px 18px 34px 18px;
  }
}

@media (max-width: 1025px) {
  .new-site-link-block {
    font-size: 14px;
    padding: 30px 15px 32px 15px;
  }
}

.new-site-link-block svg,
.new-site-link-block path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.new-site-link-block:hover {
  background: #E20338;
  color: #fff;
}

.new-site-link-block:hover svg,
.new-site-link-block:hover path {
  fill: #fff !important;
}

.new-site-link-block-icon {
  position: absolute;
  right: 20px;
  top: 20px;
}

.new-banner-container .slick-dots {
  margin-top: 5px;
  margin-bottom: 0 !important;
}

.new-catergory-block-slider {
  display: none;
}

.new-content-block-mobile {
  display: none;
}

@media (max-width: 769px) {
  /* .new-content-block-mobile {
    display: block;
  } */
  .new-content-block-mobile .item-slider-mobile {
    padding: 0px 15px;
  }
  .new-content-block-mobile .item-slider-mobile .new-slider-block-item {
    margin: 12px auto !important;
  }
}

@media (max-width: 500px) {
  .new-content-block-mobile {
    display: none !important;
  }
}

@media (max-width: 486px) {
  .main-news-bg .main-news-item__image,
  .main-news-bg .main-news-slider {
    height: 270px !important;
  }
}

/*--- add to master ---*/
@media (max-width: 443px) {
  .main-news-bg .main-news-item__image,
  .main-news-bg .main-news-slider {
    height: 240px !important;
  }
}

/*--- add to master ---*/
@media (max-width: 378px) {
  .main-news-bg .main-news-item__image,
  .main-news-bg .main-news-slider {
    height: 210px !important;
  }
}

.new-slider-block .slick-dots li button svg,
.new-content-block .slick-dots li button svg,
.new-catergory-block .slick-dots li button svg {
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.useful-slider-block .slick-dots li button svg {
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.new-slider-block .slick-dots li:not(.slick-active) button,
.new-content-block .slick-dots li:not(.slick-active) button,
.new-catergory-block .slick-dots li:not(.slick-active) button {
  opacity: 0.3;
  background: #E20338;
}

.new-slider-block .slick-dots li button,
.new-content-block .slick-dots li button,
.new-catergory-block .slick-dots li button {
  position: relative;
  overflow: visible;
}

.useful-slider-block .slick-dots li:not(.slick-active) button {
  opacity: 0.3;
  background: #E20338;
}

.useful-slider-block .slick-dots li button {
  position: relative;
  overflow: visible;
}

.new-doc-link-block {
  padding: 24px 35px;
  border: 1px solid #D5DAE0;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  color: #231F20;
  display: block;
  width: calc(25% - 24px);
  margin-left: 12px;
  margin-right: 12px;
  min-height: 250px;
  margin-bottom: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1025px) {
  .new-doc-link-block {
    font-size: 14px;
    line-height: 21px;
  }
}

.new-doc-link-block:hover {
  -webkit-box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
          box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
  border-color: #fff;
  color: #E20338;
}

.new-site-link-block {
  width: 100%;
  height: 100%;
}

.new-slider-block .slick-track,
.new-slider-block .new-content-block,
.useful-slider-block .slick-track,
.useful-slider-block .new-content-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.new-slider-block .slick-track .slick-slide,
.useful-slider-block .slick-track .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

.section-head-round {
  margin-left: 20px;
  width: 50px;
  height: 50px;
  background: #E20338;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.section-head-round svg,
.section-head-round rect {
  fill: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.section-head--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 28px;
  font-size: 2.8rem;
  color: #231F20;
}

.section-head--link.color-head-white {
  color: #fff !important;
}

@media (max-width: 1025px) {
  .section-head--link {
    font-size: 22px;
  }
}

.section-head--link:hover .section-head-round {
  background: #AF002A;
}


.text-right {
  width: 100%;
  text-align: right;
  display: inline-block;
}

.container-large .footer__bottom {
  width: calc(100% + 32px);
}

.footer__send-wrong img {
  display: block;
}

.new-documnet-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.container-inner {
  width: calc(50% - 12px);
}

.container-inners-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bg-dark-section {
  background: #231F20;
}

.container-inner-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.container-inner-item-text {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  color: #FFFFFF;
  margin-bottom: 14px;
}

@media (max-width: 1367px) {
  .container-inner-item-text {
    font-size: 14px;
  }
}

.container-inner-item-date {
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 17px;
  color: #939598;
}

@media (max-width: 1367px) {
  .container-inner-item-date {
    font-size: 12px;
    line-height: 14px;
  }
}

@media (max-width: 769px) {
  .container-inner-item-date {
    font-size: 14px;
    line-height: 17px;
  }
}

@media (max-width: 501px) {
  .container-inner-item-date {
    font-size: 12px;
    line-height: 14px;
  }
}

.container-inner-item-img {
  margin-bottom: 14px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 48.38%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.container-inner-item-icon {
  left: calc(50% - 24px);
  top: calc(50% - 24px);
  width: 48px;
  height: 48px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #E20338;
  border-radius: 50%;
}

.container-inner-item-info {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 3px 5px;
  background: #231F20;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 16px;
  color: #FFFFFF;
}

.container-inner-item-big {
  width: 100%;
  margin-bottom: 22px;
  min-height: 623px;
}

.container-inner-item-big .container-inner-item-text {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 29px;
}

.container-inner-item-big .container-inner-item-img {
  padding-bottom: 66.01%;
}

.container-inner-item-big .container-inner-item-icon {
  left: 50%;
  bottom: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  top: auto;
  position: absolute;
  width: auto;
  height: auto;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 18px;
  color: #FFFFFF;
  padding: 13px 19px;
}

.container-inner-item-big .container-inner-item-icon svg {
  margin-left: 12px;
}

.container-inner-item-big .container-inner-item-info {
  right: 30px;
  bottom: 30px;
}

.container-inner-item-big .container-inner-item-icon,
.container-inner-item-big .container-inner-item-text,
.container-inner-item-small .container-inner-item-icon,
.container-inner-item-small .container-inner-item-text {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.container-inner-item-big:hover .container-inner-item-text,
.container-inner-item-small:hover .container-inner-item-text {
  color: #E20338;
}

.container-inner-item-big:hover .container-inner-item-icon,
.container-inner-item-small:hover .container-inner-item-icon {
  background: #AF002A;
}

.container-inner-item-small {
  margin-bottom: 22px;
  width: calc(50% - 12px);
  min-height: 300px;
}

.useful-materials-text {
  max-width: 416px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  color: #231F20;
}

@media (max-width: 769px) {
  .useful-materials-text {
    font-size: 14px;
  }
}

@media (max-width: 501px) {
  .useful-materials-text {
    line-height: 22px;
  }
}

.useful-materials-title {
  max-width: 416px;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 28px;
  color: #231F20;
}

@media (max-width: 1367px) {
  .useful-materials-title {
    font-size: 22px;
  }
}

@media (max-width: 1025px) {
  .useful-materials-title {
    font-size: 20px;
  }
}

@media (max-width: 769px) {
  .useful-materials-title {
    font-size: 18px;
  }
}

.useful-materials-block {
  padding: 38px 40px;
  min-height: 420px;
  width: 100%;
  background-color: #81E9E6;
  border-radius: 8px;
  overflow: hidden;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  background-size: 65%;
  background-position: bottom right;
}

.useful-materials-block::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: -1;
  content: '';
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.useful-materials-block:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.main {
  font-family: 'Golos';
}

.footer {
  font-family: 'Golos';
}

.new-press-center {
  padding-top: 50px !important;
}

.news-digest {
  padding-top: 20px !important;
  padding-bottom: 3px !important;
}

.banners-slider {
  padding-bottom: 20px !important;
}

.activity-widget {
  padding-bottom: 68px !important;
}

.projects {
  padding-bottom: 58px !important;
}

.docs-section {
  padding-bottom: 53px !important;
}

.new-press-center-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
}

.new-soc-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
}

.new-soc-nav-container {
  width: calc(75% - 24px);
  margin-left: 12px;
  margin-right: 12px;
}

.new-soc-nav-aside {
  width: calc(25% - 24px);
  margin-left: 12px;
  margin-right: 12px;
}

.press-center-container {
  width: calc(75% - 24px);
  margin-left: 12px;
  margin-right: 12px;
}

.press-center-container .section-head {
  display: inline-block;
}

.new-priority {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
}

.new-priority-container {
  width: calc(75% - 24px);
  margin-left: 12px;
  margin-right: 12px;
}

.new-priority-aside {
  width: calc(25% - 24px);
  margin-left: 12px;
  margin-right: 12px;
}

.new-event-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
}

.new-event-block:not(.active) {
  display: none;
}

.new-event-container {
  width: calc(75% - 24px);
  margin-left: 12px;
  margin-right: 12px;
  position: relative;
}

.new-event-aside {
  width: calc(25% - 24px);
  margin-left: 12px;
  margin-right: 12px;
}

.new-help-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
}

.new-help-container {
  width: calc(75% - 24px);
  margin-left: 12px;
  margin-right: 12px;
}

.new-help-aside {
  width: calc(25% - 24px);
  margin-left: 12px;
  margin-right: 12px;
}

@media (max-width: 991px) {
  .new-help-aside {
    width: 100% !important;
  }
}

@media (max-width: 501px) {
  .new-help-aside {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}

@media (max-width: 769px) {
  .head-margin {
    margin-left: 12px;
    margin-right: 12px;
  }
}

@media (max-width: 501px) {
  .head-margin {
    margin: 0 !important;
  }
}

.new-press-center-aside {
  width: calc(25% - 24px);
  margin-left: 12px;
  margin-right: 12px;
}

.press-center-aside-title {
  font-weight: 600;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 18px;
  text-transform: uppercase;
  color: #848E99;
  padding-top: 32px;
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.press-center-tag-reset {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.press-center-tag-reset:hover {
  color: #E20338;
}

.press-center-tag-reset:hover svg {
  fill: #E20338;
}

.press-center-tag-reset svg {
  margin-left: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: #848E99;
}

.press-center-tag-reset {
  margin-left: auto;
}

.press-center-tag-count-inner {
  color: #231F20;
}

.press-all-theme {
  margin-left: auto;
}

.press-all-theme {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 17px;
  color: #231F20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: normal;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-transform: none;
}

@media (max-width: 1025px) {
  .press-all-theme {
    font-size: 12px;
    line-height: 14px;
  }
}

.press-all-theme svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 8px;
  fill: #231F20;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.press-all-theme:hover {
  color: #E20338;
}

.press-all-theme:hover svg {
  fill: #E20338;
}

.press-center-aside-button-color {
  padding: 14px 30px;
  border-radius: 8px;
  background-color: #42BFD7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.press-center-aside-button-color:not(:last-of-type) {
  margin-bottom: 10px;
}

@media (max-width: 1367px) {
  .press-center-aside-button-color {
    font-size: 14px;
  }
}

@media (max-width: 1025px) {
  .press-center-aside-button-color {
    font-size: 12px;
    line-height: 14px;
  }
}

.press-center-aside-button-color.press-center-aside-button-color1 {
  background-color: #42BFD7;
}

.press-center-aside-button-color.press-center-aside-button-color2 {
  background-color: #A91E2D;
}

.press-center-aside-button-color.press-center-aside-button-color3 {
  background-color: #39BB9D;
}

.press-center-aside-button-color:hover {
  background-color: #E20338;
  color: #fff;
}

.press-center-aside-button-color svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 5px;
}

.press-center-tag-count {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 18px;
  color: #848E99;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1367px) {
  .press-center-tag-count {
    font-size: 14px;
  }
}

.new-press-center-button-filter-reset {
  display: none;
}

.new-soc-nav-text {
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  color: #231F20;
}

@media (max-width: 1025px) {
  .new-soc-nav-text {
    font-size: 14px;
  }
}

.press-center-aside-button {
  background: #E20338;
  border-radius: 8px;
  padding: 15px;
  font-weight: 600;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 18px;
  color: #FFFFFF;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  display: block;
  width: 100%;
}

@media (max-width: 1025px) {
  .press-center-aside-button {
    padding: 13px;
    font-size: 12px;
    line-height: 14px;
  }
}

.press-center-aside-button:hover {
  color: #fff;
  background: #AF002A;
}

.press-center-tags {
  -webkit-transition: .4s;
  transition: .4s;
  padding-bottom: 10px;
  overflow: hidden;
}

.press-center-tags > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.press-center-tags svg {
  -webkit-transition: .4s;
  transition: .4s;
}

@media (max-width: 1367px) {
  .press-center-tags {
    height: 295px;
  }
}

@media (max-width: 991px) {
  .press-center-tags {
    height: 75px;
  }
}

@media (max-width: 769px) {
  .press-center-tags {
    padding-bottom: 0 !important;
  }
}

.press-center-tag-inner {
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 3px 5px;
  border: 1px solid #D5DAE0;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 17px;
}

@media (max-width: 769px) {
  .press-center-tag-inner {
    font-size: 12px;
    line-height: 14px;
  }
}

.press-center-tag {
  font-weight: normal;
  cursor: pointer;
  display: block !important;
}

.press-center-tag svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: none;
  margin-left: 6px;
}

.press-center-tag .jq-checkbox {
  display: none;
}

.press-center-tag input {
  display: none;
}

.press-center-tag .checked ~ .press-center-tag-inner {
  background: #48D6D2;
  border-color: #48D6D2;
  color: #fff;
}

.press-center-tag .checked ~ .press-center-tag-inner svg {
  display: block;
}

.press-center-tag:hover .press-center-tag-inner {
  background: #48D6D2;
  border-color: #48D6D2;
  color: #fff;
}

.press-center-container-item {
  width: calc(33.33333333% - 24px);
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 50px;
}

.press-center-container-item:hover .press-center-container-title {
  color: #E20338;
}

.press-center-container-links {
  margin-left: -12px;
  margin-right: -12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.press-center-container-title {
  font-weight: 600;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  color: #231F20;
  margin-bottom: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1367px) {
  .press-center-container-title {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 1025px) {
  .press-center-container-title {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 769px) {
  .press-center-container-title {
    margin-bottom: 8px;
  }
}

.press-center-container-text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 18px;
  color: #848E99;
}

@media (max-width: 1025px) {
  .press-center-container-text {
    font-size: 12px;
  }
}

.press-center-container-img {
  width: 100%;
  position: relative;
  padding-bottom: 53.7634%;
  border-radius: 8px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.press-center-container-tag {
  padding: 6px 5px;
  background: transparent;
  border-radius: 5px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 17px;
  color: #231F20;
  font-weight: 400;
  border: 1px solid #D5DAE0;
  display: inline-block;
  margin-top: 20px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 769px) {
  .press-center-container-tag {
    font-size: 12px;
    line-height: 14px;
    margin-top: 10px;
  }
}

.press-center-container-tag:hover {
  background: #48D6D2;
  color: #fff;
  border: 1px solid #48D6D2;
}

.press-center-watchall {
  display: none;
  color: #848E99;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 14px;
  padding: 5px 0px;
  margin-bottom: 25px;
  cursor: pointer;
}

@media (max-width: 1367px) {
  .press-center-watchall {
    display: block !important;
  }
}

.press-center-watchall svg {
  margin-left: 8px;
}

@media (max-width: 1025px) {
  .press-center-watchall {
    font-size: 12px;
  }
}

@media (max-width: 769px) {
  .press-center-watchall {
    margin-bottom: 0;
  }
}

.new-notes-date {
  padding-left: 16px;
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 13px;
  color: #848E99;
  margin-bottom: 15px;
}

@media (max-width: 1025px) {
  .new-notes-date {
    font-size: 12px;
  }
}

.new-notes-date::before {
  position: absolute;
  content: '';
  left: 0;
  top: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #48D6D2;
}

.new-notes-text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 28px;
  color: #231F20;
  margin-bottom: 20px;
}

@media (max-width: 1367px) {
  .new-notes-text {
    font-size: 16px;
  }
}

@media (max-width: 1025px) {
  .new-notes-text {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .new-notes-text {
    line-height: 21px;
    margin-bottom: 12px;
  }
}

.new-category-info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.new-notes-tag {
  padding: 4px 5px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 17px;
  color: #231F20;
  background: #D5DAE0;
  border-radius: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 769px) {
  .new-notes-tag {
    font-size: 12px;
  }
}

.new-notes-tag:hover {
  background: #48D6D2;
  color: #fff;
}

.new-notes-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.new-banner-container {
  margin-left: -12px;
  margin-right: -12px;
}

.new-banner-item {
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 24px;
}

.new-banner-item-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 91.3978494%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.soc-nav-section {
  padding-top: 56px !important;
}

.soc-nav-section iframe {
  width: 100%;
  height: 600px;
  margin-top: 40px;
  overflow: hidden;
}

body.page-in-iframe {
  overflow-y: auto;
}

.gray-section-bg {
  background: #F7F7F8;
}

@media (max-width: 501px) {
  .gray-section-bg {
    padding-top: 30px !important;
  }
}

.gray-section-bg .section-head-round {
  background: #E20338;
}

.new-catergory-block {
  padding: 32px 20px;
  background: #FFFFFF;
  border-radius: 8px;
}

@media (max-width: 1367px) {
  .new-catergory-block {
    padding: 23px 20px;
  }
}

.new-category-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
  cursor: pointer;
}

@media (max-width: 1367px) {
  .new-category-item {
    margin-bottom: 21px;
  }
}

@media (max-width: 1025px) {
  .new-category-item {
    margin-bottom: 10px !important;
  }
}

.new-category-item .new-category-title,
.new-category-item .new-category-text {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.new-category-item:hover .new-category-title,
.new-category-item:hover .new-category-text {
  color: #E20338;
}

.new-category-item:last-child {
  margin-bottom: 0;
}

.new-category-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
}

@media (max-width: 501px) {
  .new-category-icon {
    width: 45px !important;
    height: 45px !important;
  }
}

.new-category-icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.new-category-title {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  color: #231F20;
  margin-bottom: 5px;
}

@media (max-width: 1025px) {
  .new-category-title {
    font-size: 14px;
  }
}

@media (max-width: 501px) {
  .new-category-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
  }
}

.new-category-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 22px;
  color: #231F20;
}

.new-category-text span {
  padding-right: 5px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 22px;
}

@media (max-width: 1025px) {
  .new-category-text span {
    font-size: 10px;
    line-height: 16px;
  }
}

.new-category-count {
  margin-left: auto;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 22px;
  padding: 0 5px;
  background: #F7F7F8;
  border-radius: 4px;
  color: #231F20;
}

.new-catergory-sort {
  display: none;
}

.main-help-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.new-help-item-bg,
.new-help-item {
  width: calc(33.333333333% - 24px);
  margin-bottom: 24px;
}

.new-help-item-large {
  width: calc(67.6666666666% - 24px);
  margin-bottom: 24px;
}

.new-help-item {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  display: block;
}

.new-help-item:hover {
  -webkit-filter: drop-shadow(0px 15px 25px rgba(72, 214, 210, 0.25));
          filter: drop-shadow(0px 15px 25px rgba(72, 214, 210, 0.25));
}

.new-help-item-large-icon {
  margin-bottom: 5px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.new-help-item-large-icon > * {
  max-width: 100%;
  max-height: 100%;
}

.new-help-item-text {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  color: #231F20;
}

.new-help-item-bg {
  background: #48D6D2;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding: 0 30px;
}

@media (max-width: 1025px) {
  .new-help-item-bg {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (max-width: 992px) {
  .new-help-item-bg {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

@media (max-width: 769px) {
  .new-help-item-bg {
    padding: 30px 25px !important;
  }
}

.new-help-item-bg-icon-b {
  display: none;
}

.new-help-item-bg-btn {
  padding: 12px 0px 14px 0px;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #fff;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 18px;
  color: #48D6D2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  display: block;
}

@media (max-width: 1367px) {
  .new-help-item-bg-btn {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 14px;
  }
}

@media (max-width: 1025px) {
  .new-help-item-bg-btn {
    padding: 5px;
  }
}

@media (max-width: 992px) {
  .new-help-item-bg-btn {
    padding: 12px 0 14px 0;
  }
}

.new-help-item-bg-btn:hover {
  background: transparent;
  color: #fff;
}

.new-help-item-bg-btn:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .new-help-item-bg-btns {
    margin-top: 55px;
  }
}

.new-help-item-bg-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.new-help-item-icon-color .new-svg-color .new-color-1 {
  fill: #81E9E6;
}

.new-help-item-icon-color .new-svg-color .new-color-2 {
  fill: #E20338;
}

.new-help-item-icon {
  width: 50px;
  height: 50px;
}

.new-help-item-icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.new-help-item-bg-icon {
  margin-right: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1367px) {
  .new-help-item-bg-icon {
    margin-right: 15px;
  }
}

.new-help-item-bg-icon svg {
  width: 105px;
  height: 110px;
}

@media (max-width: 1667px) {
  .new-help-item-bg-icon svg {
    width: 72px;
    height: 74px;
  }
}

@media (max-width: 1270px) {
  .new-help-item-bg-icon svg {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 991px) {
  .new-help-item-bg-icon svg {
    width: 117px;
    height: 120px !important;
  }
}

@media (max-width: 321px) {
  .new-help-item-bg-icon svg {
    width: 106px !important;
    height: 110px !important;
  }
}

@media (max-width: 1270px) {
  .main-news-item__date {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .main-news-item__date {
    font-size: 14px;
  }
}

.new-help-item-bg-title {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  color: #FFFFFF;
  text-transform: uppercase;
  width: 135px;
}

@media (max-width: 1367px) {
  .new-help-item-bg-title {
    width: 124px;
    font-size: 16px;
  }
}

@media (max-width: 1270px) {
  .new-help-item-bg-title {
    font-size: 14px;
  }
}

@media (max-width: 1025px) {
  .new-help-item-bg-title {
    font-size: 14px !important;
    width: 109px;
  }
}

@media (max-width: 992px) {
  .new-help-item-bg-title {
    font-size: 20px !important;
    width: 155px;
  }
}

@media (max-width: 321px) {
  .new-help-item-bg-title {
    font-size: 16px !important;
    line-height: 24px !important;
  }
}

.new-help-item-large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.new-help-item-large-info,
.new-help-item-large-links {
  width: calc(50% - 12px);
}

.new-help-item-large-info {
  padding: 40px 35px;
}

.new-help-item-large-icon {
  width: 75px;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 63px;
}

@media (max-width: 1025px) {
  .new-help-item-large-icon {
    margin-bottom: 10px;
  }
}

.new-help-item-large-icon > * {
  max-width: 100%;
  max-height: 100%;
}

.new-help-item-large-title {
  font-weight: 600;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 28px;
  color: #231F20;
}

@media (max-width: 1367px) {
  .new-help-item-large-title {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 1025px) {
  .new-help-item-large-title {
    font-size: 18px;
  }
}

.new-help-item-large {
  background: #FFFFFF;
  border-radius: 8px;
}

.new-help-item-large-links {
  padding: 55px 30px 55px 0;
}

.new-help-item-large-link {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  color: #231F20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1367px) {
  .new-help-item-large-link {
    font-size: 14px;
  }
}

@media (max-width: 1025px) {
  .new-help-item-large-link {
    font-size: 12px !important;
    line-height: 18px;
    margin-bottom: 19px;
  }
}

.new-help-item-large-link:hover {
  color: #E20338;
}

/* .new-help-item-large-link:hover svg,
.new-help-item-large-link:hover rect {
  fill: #E20338 !important;
} */

.new-help-item-large-link:last-child {
  margin-bottom: 0;
}

.new-help-item-large-link rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.new-help-item-large-link svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.new-event-item {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 15px 20px;
}

@media (max-width: 501px) {
  .new-event-item {
    margin-bottom: 10px !important;
  }
}

.new-event-item .new-event-item-title {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.new-event-item:hover .new-event-item-title {
  color: #E20338;
}

.new-event-item-day {
  font-weight: 600;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 58px;
  color: #E20338;
  margin-bottom: 5px;
}

.new-event-item-mouth {
  font-weight: 600;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 18px;
  color: #231F20;
}

.new-event-item-date {
  width: 80px;
  padding-right: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.new-event-item-title {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  color: #231F20;
  margin-bottom: 20px;
}

@media (max-width: 1367px) {
  .new-event-item-title {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 1025px) {
  .new-event-item-title {
    font-size: 12px;
    line-height: 18px;
  }
}

.new-event-item-location {
  padding-left: 25px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 17px;
  color: #848E99;
  position: relative;
}

@media (max-width: 1025px) {
  .new-event-item-location {
    font-size: 12px;
    line-height: 14px;
  }
}

@media (max-width: 599px) {
  .new-event-item-location {
    width: 100% !important;
  }
}

.new-event-item-location svg {
  position: absolute;
  left: 0;
  top: 3px;
}

.new-event-items {
  margin-left: -12px;
  margin-right: -12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 769px) {
  .new-event-items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.new-event-item {
  width: calc(33.333333333% - 24px);
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.new-event-more {
  padding: 15px;
  text-align: center;
  width: 100%;
  background: #E20338;
  border-radius: 8px;
  margin-top: 50px;
  font-weight: 600;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 18px;
  color: #FFFFFF;
  cursor: pointer;
  display: block;
}

@media (max-width: 1367px) {
  .new-event-more {
    font-size: 14px;
  }
}

@media (max-width: 1025px) {
  .new-event-more {
    font-size: 12px;
    padding: 15px 0px;
  }
}

.new-event-more:hover {
  background: #AF002A;
}

.new-event-aside-container {
  padding: 26px 30px;
  background: #FFFFFF;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 95%;
}

@media (max-width: 1367px) {
  .new-event-aside-container {
    height: auto;
  }
}

.datepicker-here {
  height: 100%;
}

.datepicker-here .datepicker-inline {
  height: 100%;
}

.datepicker-here .datepicker-inline .datepicker {
  height: 100%;
}

.datepicker-here .datepicker-inline .datepicker .datepicker--content {
  height: 100%;
}

.datepicker-here .datepicker-inline .datepicker .datepicker--content .datepicker--days {
  height: 75%;
}

.datepicker-here .datepicker-inline .datepicker .datepicker--content .datepicker--days .datepicker--cells {
  height: 100%;
}

.new-priority-aside-bg {
  padding: 20px 30px;
  background: #2295B5;
  border-radius: 8px;
}

@media (max-width: 1025px) {
  .new-priority-aside-bg {
    padding: 20px 15px;
  }
}

.new-priority-aside-text {
  font-weight: 700;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 20px;
}

@media (max-width: 1367px) {
  .new-priority-aside-text {
    font-size: 10px;
    margin-bottom: 15px;
  }
}

@media (max-width: 1025px) {
  .new-priority-aside-text {
    margin-bottom: 10px;
  }
}

.new-priority-aside-title {
  font-weight: 600;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 29px;
  margin-bottom: 30px;
  color: #FFFFFF;
}

@media (max-width: 1367px) {
  .new-priority-aside-title {
    font-size: 18px;
    line-height: 21px;
  }
}

@media (max-width: 1025px) {
  .new-priority-aside-title {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 14px;
  }
}

@media (max-width: 769px) {
  .new-priority-aside-title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 19px;
  }
}

@media (max-width: 501px) {
  .new-priority-aside-title {
    font-size: 22px;
    line-height: 26px;
  }
}

.new-priority-aside-btn {
  padding: 15px 15px 15px 15px;
  background: #FFFFFF;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 18px;
  color: #2295B5;
  margin-bottom: 20px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  display: block;
  border: 1px solid #fff;
}

@media (max-width: 1367px) {
  .new-priority-aside-btn {
    font-size: 14px;
    line-height: 17px;
    padding: 12px 15px;
  }
}

@media (max-width: 1025px) {
  .new-priority-aside-btn {
    font-size: 12px;
    line-height: 14px;
    padding: 12px 0 14px 0;
  }
}

@media (max-width: 992px) {
  .new-priority-aside-btn {
    width: 196px;
  }
}

@media (max-width: 600px) {
  .new-priority-aside-btn {
    width: 100% !important;
  }
}

.new-priority-aside-btn:hover {
  background: transparent;
  color: #fff;
}

@media (max-width: 600px) {
  .main-news-item__date {
    font-size: 12px;
  }
}

.new-priority-aside-btn-border {
  padding: 15px 15px 15px 15px;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 18px;
  color: #FFFFFF;
  text-align: center;
  display: block;
}

@media (max-width: 1367px) {
  .new-priority-aside-btn-border {
    font-size: 14px;
    line-height: 17px;
    padding: 12px 15px;
  }
}

@media (max-width: 1025px) {
  .new-priority-aside-btn-border {
    font-size: 12px;
    line-height: 14px;
    padding: 12px 0 14px 0;
  }
}

@media (max-width: 992px) {
  .new-priority-aside-btn-border {
    width: 196px;
  }
}

@media (max-width: 600px) {
  .new-priority-aside-btn-border {
    width: 100%;
  }
}

.new-priority-aside-btn-border:hover {
  background: #fff;
  color: #2295B5;
}

.new-priority-container-inner {
  margin-left: -12px;
  margin-right: -12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.new-priority-item {
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 36px;
  width: calc(33.33333333% - 24px);
}

.new-priority-item:hover .new-priority-item-text {
  color: #E20338;
}

.new-priority-item-text {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  color: #231F20;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1025px) {
  .new-priority-item-text {
    font-size: 14px;
    line-height: 20px;
  }
}

.new-priority-item-img {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
  padding-bottom: 36.5591397%;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1025px) {
  .new-priority-item-img {
    padding-bottom: 39%;
  }
}

.new-event-aside-container .datepicker {
  width: 100%;
}

.new-event-aside-container .datepicker--nav {
  padding: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border: none;
  padding-bottom: 22px;
}

.new-event-aside-container .datepicker--nav .datepicker--nav-title {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-right: auto;
  padding-left: 0;
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  color: #231F20;
}

@media (max-width: 1025px) {
  .new-event-aside-container .datepicker--nav .datepicker--nav-title {
    font-size: 14px;
  }
}

@media (max-width: 769px) {
  .new-event-aside-container .datepicker--nav .datepicker--nav-title {
    font-size: 16px;
  }
}

.new-event-aside-container .datepicker--nav-action {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #D5DAE0;
  margin-left: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.new-event-aside-container .datepicker--nav-action:hover {
  background: transparent;
  background-color: transparent;
  border-color: #E20338;
}

.new-event-aside-container .datepicker--nav-action:hover path {
  stroke: #E20338;
}

.new-event-aside-container .datepicker--nav-action path {
  stroke: #D5DAE0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.new-event-aside-container .datepicker--content {
  padding: 0;
}

.new-event-aside-container .datepicker--cell {
  font-weight: 600;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  color: #231F20;
}

.new-event-aside-container .datepicker--cell:hover {
  background: transparent;
}

.new-event-aside-container .datepicker--day-name {
  font-family: "Golos";
  font-weight: 600;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  color: #231F20;
  opacity: 0.5;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.new-event-aside-container .datepicker--cell {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.new-event-aside-container .-other-month- {
  font-weight: 600;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  color: #231F20;
  opacity: 0.5;
}

.new-event-aside-container .-selected-,
.new-event-aside-container .-current-,
.new-event-aside-container .-focus-,
.new-event-aside-container .-selected-.-current-,
.new-event-aside-container .-selected-.-focus-,
.new-event-aside-container .-selected-.-focus-.-curent- {
  background: transparent;
}

.new-event-aside-container .-selected-.-current- {
  background: transparent;
  color: #231F20;
}

.new-event-aside-container .datepicker-inline .datepicker {
  border: none;
}

.new-event-aside-container .datepicker--cell {
  height: auto;
}

.new-event-aside-container .datepicker--days-names {
  margin-bottom: 20px;
}

@media (max-width: 1367px) {
  .new-event-aside-container .datepicker--days-names {
    margin-bottom: 12px;
  }
}

.new-event-aside-container [data-date="9"] ~ *:not(.-other-month-) .dp-note {
  margin-left: 6px;
}

.dp-note {
  background: #E20338;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-left: 2px;
}

.new-event-calendar-popup {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 500px;
  height: calc(100% - 24px);
  background: #FFFFFF;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.new-event-calendar-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.new-event-calendar-close {
  position: absolute;
  border: 1px solid #D5DAE0;
  border-radius: 50%;
  top: 26px;
  right: 28px;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.new-event-calendar-close svg,
.new-event-calendar-close rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.new-event-calendar-close:hover {
  border-color: #E20338;
}

.new-event-calendar-close:hover svg,
.new-event-calendar-close:hover rect {
  fill: #E20338 !important;
}

.new-event-calendar-close > * {
  max-height: 100%;
  max-width: 100%;
}

.new-event-calendar-items {
  padding: 35px 100px 35px 50px;
  overflow-y: auto;
  height: 100%;
}

.new-event-calendar-item {
  margin-bottom: 30px;
  display: inline-block;
}

.new-event-calendar-item .new-event-calendar-title {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.new-event-calendar-item:hover .new-event-calendar-title {
  color: #E20338;
}

.new-event-calendar-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #231F20;
  margin-bottom: 10px;
}

.new-event-calendar-loaction {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 17px;
  color: #848E99;
}

.new-event-calendar-loaction svg {
  position: absolute;
  left: 0;
  top: -2px;
}

.new-press-center-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #231F20;
  z-index: 1501;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
}

.new-press-center-overlay .new-press-center-popup-close {
  top: 60px;
  right: 40px;
  position: absolute;
}

.new-press-center-overlay.active {
  opacity: 0.7;
  pointer-events: auto;
  visibility: visible;
}

.new-press-center-popup {
  position: fixed;
  top: 60px;
  left: 120px;
  right: 120px;
  bottom: 60px;
  background: #fff;
  border-radius: 8px;
  z-index: 1502;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
}

.new-press-center-popup.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.new-press-center-popup-tags {
  overflow-y: auto;
}

.new-press-center-popup-close {
  position: absolute;
  top: 0;
  right: -80px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #D5DAE0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.new-press-center-popup-close:hover {
  border-color: #E20338;
}

.new-press-center-popup-close:hover svg {
  fill: #E20338;
}

.new-press-center-popup-close > * {
  max-width: 100%;
  max-height: 100%;
}

.new-press-center-popup-close svg {
  fill: #D5DAE0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.datepicker--cell.datepicker--cell-day:not(.-other-month-):hover::before {
  background: #81E9E6;
}

.datepicker--cell.datepicker--cell-day {
  position: relative;
  z-index: 1;
}

.datepicker--cell.datepicker--cell-day::before {
  position: absolute;
  content: '';
  left: -11px;
  top: -8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.datepicker--cell.datepicker--cell-day[data-date="1"]::before, .datepicker--cell.datepicker--cell-day[data-date="2"]::before, .datepicker--cell.datepicker--cell-day[data-date="3"]::before, .datepicker--cell.datepicker--cell-day[data-date="4"]::before, .datepicker--cell.datepicker--cell-day[data-date="5"]::before, .datepicker--cell.datepicker--cell-day[data-date="6"]::before, .datepicker--cell.datepicker--cell-day[data-date="7"]::before, .datepicker--cell.datepicker--cell-day[data-date="8"]::before, .datepicker--cell.datepicker--cell-day[data-date="9"]::before {
  left: -15px;
}

.new-press-center-popup {
  padding: 50px;
}

.new-press-center-popup-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  font-size: 29px;
  line-height: 32px;
  color: #231F20;
  margin-bottom: 22px;
}

.reset-button-tags {
  padding: 15px;
  max-width: 221px;
  width: 100%;
  background: #D5DAE0;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  color: #231F20;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.reset-button-tags:hover {
  background: #E20338;
  color: #fff;
}

.new-press-center-popup-count {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.new-press-center-popup-count span {
  margin-left: 4px;
}

.new-press-center-popup-search {
  height: 48px;
  position: relative;
  margin-bottom: 15px;
}

.new-press-center-popup-search input {
  width: 100%;
  height: 100%;
  line-height: 48px;
  padding: 0 70px 0 20px;
  font-size: 16px;
  color: #848E99;
  border: none;
  outline: none;
  background: #F7F7F8;
  border-radius: 8px;
}

.new-press-center-popup-search svg {
  position: absolute;
  top: 12px;
  right: 20px;
}

.main-news-new__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-news-bg .main-news-test__type {
  background: #48D6D2;
  font-weight: 600;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
}

@media (max-width: 1270px) {
  .main-news-bg .main-news-test__type {
    font-size: 10px;
  }
}

.new-icons-bg {
  background-color: #48D6D2;
  border: none;
  font-family: 'Golos';
}

.new-icons-bg .icons__text {
  color: #fff;
}

.new-icons-bg .icons__icon svg,
.new-icons-bg .icons__icon path {
  fill: #fff !important;
}

.new-icons-bg .icons__box:hover .icons__icon svg,
.new-icons-bg .icons__box:hover .icons__icon path {
  fill: #fff !important;
  opacity: 0.6;
}

.header-new-styles {
  font-family: 'Golos';
}

body .header__main-nav .header-logo .logo-new.logo-small {
  min-width: 100%;
  height: 100%;
}

body .header__main-nav .header-logo .logo-new.logo-small + .name-company {
  font-family: "ALS Sector";
  position: absolute;
  top: 1px;
  left: 57px;
  display: block;
  font-size: 13px;
  font-weight: bold;
  line-height: 11px;
  border: none;
  margin-right: 0;
  min-width: 154px;
  padding-right: 5px;
  text-transform: uppercase;
  letter-spacing: normal;
}

@media only screen and (min-width: 1650px) {
  body .header__main-nav .header-logo .logo-new.logo-small + .name-company {
    /* font-weight: bold;
    font-size: 15px; */
    line-height: 14px;
    color: #231F20;
  }
}


.header-new-styles .btn-blind {
  border-radius: 0;
  background: #0A637E;
}

.new-soc-nav-aside-help {
  padding-left: 32px;
  position: relative;
}

.new-soc-nav-aside-help svg {
  position: absolute;
  left: 0;
  top: 0;
}

.new-soc-nav-aside-help a {
  color: #E20338;
  border-bottom: 1px solid rgba(226, 3, 56, 0.38);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.new-soc-nav-aside-help a:hover {
  border-bottom: 1px solid rgba(226, 3, 56, 0);
}

.new-cite-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 7px;
  margin-bottom: 32px;
}

@media (min-width: 1367px) {
  .new-cite-tabs {
    margin-left: 80px;
  }
}

.new-cite-tabs .new-cite-tabs-right {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  height: 30px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

@media (max-width: 769px) {
  .new-cite-tabs .new-cite-tabs-right {
    display: none;
  }
}

.new-cite-tabs .new-cite-tabs-right::before {
  position: absolute;
  width: 120px;
  height: 100%;
  right: 0;
  top: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background: -webkit-gradient(linear, right top, left top, color-stop(26.67%, #ffffff), color-stop(90%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(right, #ffffff 26.67%, rgba(255, 255, 255, 0) 90%);
  background: linear-gradient(270deg, #ffffff 26.67%, rgba(255, 255, 255, 0) 90%);
}

.new-cite-tabs .new-cite-tabs-left {
  margin-top: -7px;
  margin-right: 13px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 769px) {
  .new-cite-tabs .new-cite-tabs-left {
    display: none;
  }
}

.new-cite-tabs.scrolled .new-cite-tabs-inner-container {
  padding-right: 50px;
}

.new-cite-tabs-inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: auto;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.new-cite-tabs-inner-container::-webkit-scrollbar {
  width: 0;
}

.new-cite-tabs-inner-container::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.new-cite-tabs {
  position: relative;
}

.new-cite-tabs-left,
.new-cite-tabs-right {
  cursor: pointer;
}

.new-cite-tabs-left svg,
.new-cite-tabs-left rect,
.new-cite-tabs-right svg,
.new-cite-tabs-right rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.new-cite-tabs-left:hover svg,
.new-cite-tabs-left:hover rect,
.new-cite-tabs-right:hover svg,
.new-cite-tabs-right:hover rect {
  fill: #E20338 !important;
}

.new-cite-tabs {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.new-cite-tabs:not(.scrolled) .new-cite-tabs-left,
.new-cite-tabs:not(.scrolled) .new-cite-tabs-right {
  display: none;
}

.new-cite-container:not(.active) {
  display: none;
}

.main-test-btn {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0em;
}

@media (max-width: 501px) {
  .main-news-test__title {
    height: 60px;
  }
}

.main-news-test__title p {
  font-weight: 600;
  font-size: 20px;
  font-size: 2rem;
  color: #231F20;
  height: 84px;
  overflow: hidden;
}

@media (max-width: 1560px) {
  .main-news-test__title p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media (max-width: 1270px) {
  .main-news-test__title p {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .main-news-test__title p {
    font-size: 16px;
  }
}

@media (max-width: 501px) {
  .main-news-test__title p {
    font-size: 16px;
  }
}

.main-news-new__image {
  height: 216px;
}

.main-news-bg .main-news-test__buttons .btn {
  padding: 13px 0 17px 0;
}

@media (max-width: 1651px) {
  .main-news-bg .main-news-test__buttons .btn {
    padding: 12px 0 15px 0;
  }
}

@media (max-width: 769px) {
  .main-news-bg .main-news-test__buttons .btn {
    padding: 13px;
  }
}

.main-news-bg .main-news-item__btn .btn {
  padding-top: 14px;
  padding-bottom: 17px;
  font-weight: 600;
  font-size: 15px;
  line-height: 16px;
}

@media (max-width: 1367px) {
  .main-news-bg .main-news-item__btn .btn {
    font-size: 14px;
    padding-top: 13px;
    padding-bottom: 16px;
  }
}

@media (max-width: 1025px) {
  .main-news-bg .main-news-item__btn .btn {
    font-size: 12px;
    padding-top: 12px;
    padding-bottom: 15px;
  }
}

.main-news-bg .container.container-large > .row.row-fl {
  margin-left: -12px;
  margin-right: -12px;
}

.main-news-bg .container.container-large > .row.row-fl > .col-md-6,
.main-news-bg .container.container-large > .row.row-fl > .col-md-3 {
  padding-left: 9px;
  padding-right: 9px;
}

@media (max-width: 415px) {
  .main-news-bg .container.container-large > .row.row-fl > .col-md-6,
  .main-news-bg .container.container-large > .row.row-fl > .col-md-3 {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.main-news-bg .main-news-slider {
  border-radius: 8px;
}

.main-news-bg .main-news-m-banner {
  border-radius: 8px;
}

.main-news-bg .main__s-new {
  width: 100%;
}

@media (max-width: 991px) {
  .main-news-bg .main__s-new {
    padding-top: 15px;
  }
}

.main-news-bg .main__s-new .main-news-test__content {
  padding: 20px 26px;
}

.main-news-bg .main-news-test {
  height: 465px;
  border: none;
  border-radius: 8px;
}

.main-news-bg .main-news-test .append_dots_slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  margin-bottom: 0;
  left: 0% !important;
  top: 0% !important;
  position: relative;
  margin-top: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1251px) {
  .main-news-bg .main-news-test .append_dots_slider .slick-dots {
    top: 55% !important;
  }
}

@media (max-width: 991px) {
  .main-news-bg .main-news-test .append_dots_slider .slick-dots {
    top: 62% !important;
  }
}

.main-news-bg .main-news-test .append_dots_slider .slick-dots li {
  width: 24px;
}

.main-news-bg .main-news-test .append_dots_slider .slick-dots li:not(:last-child) {
  margin-bottom: 0;
}

.main-news-bg .main-news-test .append_dots_slider .slick-dots li button {
  width: 8px !important;
  height: 8px !important;
  padding: 2px;
  background-color: red !important;
  opacity: 0.3;
}

.main-news-bg .main-news-test .append_dots_slider .slick-dots li.slick-active button {
  background-color: red !important;
  opacity: 1;
}

.banner__block_mob > div:first-child {
  padding-right: 0;
  padding-left: 7px;
}

@media (max-width: 991px) {
  .banner__block_mob > div:first-child {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.gray-section-bg .new-cite-tabs .new-cite-tabs-right::before {
  background: -webkit-gradient(linear, right top, left top, color-stop(26.67%, #F7F7F8), color-stop(90%, rgba(247, 247, 248, 0)));
  background: -webkit-linear-gradient(right, #F7F7F8 26.67%, rgba(247, 247, 248, 0) 90%);
  background: linear-gradient(270deg, #F7F7F8 26.67%, rgba(247, 247, 248, 0) 90%);
}

.new-icons-bg .icons__text {
  text-transform: uppercase;
}

.main-news-bg .main-news-item__image {
  background-position: left center;
}

body .main__s.main__s-new .main-news-test__buttons .btn {
  width: 40%;
  margin-right: 20px;
  border-width: 2px;
}

@media (max-width: 1651px) {
  body .main__s.main__s-new .main-news-test__buttons .btn {
    width: 44%;
    margin-right: 11px;
  }
  body .main__s.main__s-new .main-news-test__buttons .btn:last-child {
    width: 38%;
  }
  body .main__s.main__s-new .main-news-test__buttons {
    bottom: 28px;
  }
}

@media (max-width: 1270px) {
  .main-news-bg .main-news-test__buttons .btn {
    padding: 10px 0 12px 0;
  }
  body .main__s.main__s-new .main-news-test__buttons .btn {
    margin-right: 17px;
  }
}

@media (max-width: 769px) {
  body .main__s.main__s-new .main-news-test__buttons .btn {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 1649px) {
  .main-news-bg .main-news-item__btn {
    padding-bottom: 0;
  }
  .main-news-bg .main-news-item__content {
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .main-news-item__type {
    left: 20px;
    top: 20px;
  }
  .main-news-new__image {
    height: 160px;
  }
  .new-priority-aside-btn {
    margin-bottom: 10px;
  }
  .main-news-bg .main__s-new .main-news-test__content {
    padding: 20px 20px;
  }
  .main-news-bg .main-news-test__image {
    height: 202px;
  }
  .main-news-bg .main-news-item__map .main-news-item__content {
    padding-right: 240px;
  }
  .main-news-bg .main-news-item__map .main-news-item__content .btn {
    padding-left: 15px;
    padding-right: 15px;
  }
  .main-news-bg .main-news-slider {
    height: 350px;
  }
  .main-news-bg .main-news-m-banner {
    height: 350px;
    background-size: 100% 100%;
  }
  .main-news-bg .main-news-test {
    height: 350px;
  }
}

@media only screen and (max-width: 1649px) and (max-width: 599px) {
  .main-news-bg .main-news-test {
    padding-bottom: 65px;
  }
}

@media only screen and (max-width: 1649px) {
  .new-help-item-large-links {
    padding: 30px 20px 30px 0 !important;
  }
  .new-help-item-bg {
    padding: 20px 18px;
  }
}

@media only screen and (max-width: 1649px) and (max-width: 1270px) {
  .new-help-item-bg {
    padding: 15px;
  }
}

@media only screen and (max-width: 1649px) {
  .new-help-item {
    padding: 31px;
  }
  .new-event-item-location {
    padding-left: 20px;
  }
  .new-event-item-date {
    width: 75px;
  }
  .useful-materials-block {
    min-height: 380px;
    padding: 28px 30px;
    background-size: 63%;
  }
  .container-inner-item-big {
    min-height: 530px;
  }
  .container-inner-item-small {
    min-height: 230px;
  }
  .new-doc-link-block {
    padding: 20px;
  }
}

@media (max-width: 1367px) {
  .new-cite-tabs.scrolled {
    max-width: 100% !important;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
}

@media only screen and (max-width: 1269px) {
  .main-news-bg .main-news-slider {
    height: 258px;
  }
  .main-news-item__type {
    top: 15px;
  }
  .container-inner-item-big {
    min-height: 0px;
  }
  .container-inner-item-big .container-inner-item-text {
    font-size: 21px;
    line-height: 25px;
  }
  .container-inner-item-small {
    min-height: 0px;
  }
  .container-inner-item-big .container-inner-item-info {
    right: 15px;
    bottom: 15px;
  }
  body .main__s.main__s-new .main-news-test__buttons {
    bottom: 10px !important;
  }
  .main-news-bg .main-news-test__image {
    height: 150px;
  }
  .main-news-bg .main-news-m-banner {
    height: 258px;
    background-size: 100% 100%;
  }
  .main-news-new__image {
    height: 131px;
  }
  .main-news-bg .main__s-new .swiper-wrapper {
    height: 258px;
  }
  .main-news-bg .main-news-item__map .main-news-item__content {
    padding-top: 30px;
    padding-right: 0;
    padding-bottom: 30px;

  }
  .main-news-bg .main-news-item__btn {
    margin-bottom: 0;
    margin-top: 90px;
  }
  .main-news-bg .main-news-test {
    height: 100%;
  }
  .main-news-bg .main__s-new .main-news-test__content {
    padding: 10px;
    padding-top: 15px !important;
  }
  .main-test-btn {
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    width: 50%;
  }
  .press-center-container-item {
    width: calc(50% - 24px);
  }
  .new-banner-item,
  .new-doc-link-block {
    min-height: 0px;
  }
  .new-banner-item {
    margin-left: 0;
    margin-right: 0;
  }
  .new-category-icon {
    margin-right: 10px;
  }
  .new-catergory-block {
    padding: 18px;
  }
  .new-category-item {
    margin-bottom: 15px;
  }
  .new-category-text span {
    width: 100%;
  }
  .new-category-item:last-child {
    margin-bottom: 19px;
  }
  .new-help-aside {
    width: 25%;
    margin-left: 0;
    margin-right: 0;
  }
  .new-help-item-bg,
  .new-help-item {
    margin-left: 8px;
    margin-right: 8px;
  }
  .new-help-item-large {
    margin-left: 8px;
    margin-right: 8px;
  }
  .new-help-item-large-title {
    font-size: 18px;
  }
  .new-help-item-large-link {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
  }
  .new-help-item-bg,
  .new-help-item-large {
    width: 62%;
  }
}

@media only screen and (max-width: 1269px) and (max-width: 1025px) {
  .new-help-item-bg,
  .new-help-item-large {
    width: 64%;
  }
}

@media only screen and (max-width: 1269px) {
  .new-help-item-bg-title {
    font-size: 14px;
    line-height: 21px;
  }
  .new-help-item-bg {
    padding: 30px 15px;
    width: 30%;
  }
  .new-help-item-bg-btn:last-child {
    margin-bottom: 0;
    padding: 11px 0 12px 0;
  }
  .new-help-item-large-links {
    padding: 20px 20px 20px 0;
  }
  .new-help-item-large-info {
    padding: 18px 0 0 25px;
  }
  .new-help-item {
    padding: 20px;
  }
  .new-cite-event {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .new-event-item {
    position: relative;
    padding-bottom: 25px;
  }
  .new-event-item-title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 35px;
  }
  .new-event-item-location {
    width: 90%;
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 12px;
    line-height: 14px;
  }
  .new-event-aside-container {
    padding: 20px 18px;
  }

  .footer__bottom .col-xs-12,
  .foot-bottom-links {
    padding-top: 30px !important;
  }
}

@media only screen and (max-width: 1269px) and (max-width: 1025px) {
  .new-event-aside-container {
    padding: 18px;
  }
}

@media only screen and (max-width: 1269px) {
  .new-event-aside-container .datepicker--nav-action {
    width: 35px;
    height: 35px;
    margin-left: 5px;
  }
  .new-event-aside-container .datepicker--cell,
  .new-event-aside-container .datepicker--day-name {
    font-size: 12px;
    line-height: 22px;
  }

  .section-head-round {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 1025px) {
  .container-inner-item-big .container-inner-item-text {
    font-size: 16px;
    line-height: 19px;
  }
  .useful-materials-block {
    height: 395px;
    background-size: 75%;
  }
}

@media only screen and (max-width: 991px) {
  .main-news-item__type {
    top: 25px;
    left: 30px;
  }
  .main-news-bg .main-news-item__btn {
    margin-top: 0;
  }
  .main-news-bg .main-news-item__content {
    padding-left: 30px;
    padding-top: 25px;
    padding-bottom: 27px;
  }
  .main-news-bg .main-news-item__map .main-news-item__content {
    padding-bottom: 50px;
    padding-top: 50px !important;
  }
  .row-fl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .banner__block_mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 42px;
  }
}

@media only screen and (max-width: 991px) and (max-width: 600px) {
  .banner__block_mob {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 991px) {
  .banner__block_mob .col-xs-12 {
    width: 50% !important;
  }

  .footer__bottom .col-xs-12,
  .foot-bottom-links .pd-top-50 {
    width: 50%;
  }
  .main-news-item__map .main-news-item__title {
    line-height: 47px;
    font-size: 36px;
  }
  /*---- add master  change to 460 ---*/
  .main-news-bg .main-news-item__image,
  .main-news-bg .main-news-slider {
    height: 460px;
  }
  /*---- add master  change to cover ---*/
  .main-news-bg .main-news-item__image {
    background-size: cover;
  }
  .container-inners-two {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .container-inners-two .container-inner {
    width: 100%;
    margin-bottom: 24px;
  }
  .main-news-bg .main-news-m-banner {
    height: 370px;
    background-size: 100% 100%;
    background-position: center 0px !important;
  }
}

@media only screen and (max-width: 991px) and (max-width: 769px) {
  .main-news-bg .main-news-m-banner {
    margin-bottom: 15px !important;
  }
}

@media only screen and (max-width: 991px) {
  .main-news-bg .main-news-test__image {
    position: relative;
    height: 70%;
  }
  #swiper-slide,
  #swiper-slide .slick-list,
  #swiper-slide .slick-track {
    height: 100% !important;
  }
  body .main__s.main__s-new .main-news-test__buttons .btn:last-child {
    margin-bottom: auto;
  }
  .main-news-new__image {
    height: 197px;
  }
  .main-news-bg .main-news-test__name {
    margin-bottom: 15px !important;
  }
  .main-news-bg .main-news-test {
    height: 370px;
    margin-left: 4px;
  }
  .main-news-test {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .main-news-test__title p {
    text-align: center;
  }
  .main-news-bg .main-news-test {
    margin-top: 0;
  }
  .main-news-bg .main__s-new .main-news-test__content {
    padding: 20px;
    background: #FFFFFF;
    border-radius: 0 0 8px 8px;
  }
  .new-press-center-aside,
  .new-help-container,
  .new-help-aside,
  .new-event-container,
  .new-event-aside {
    width: calc(100% - 24px);
  }
  .press-center-container,
  .new-priority-container,
  .new-priority-aside {
    width: calc(100% - 24px);
  }
  .press-center-first {
    width: 50%;
  }
  .press-center-sec {
    width: 50%;
  }
  .new-press-center-aside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .press-center-aside-button-color {
    margin-right: 20px;
  }
  .new-press-center-inner,
  .new-event-block,
  .new-priority {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .new-event-more {
    margin-top: 15px;
  }
  .new-event-aside-container {
    min-height: 0px;
  }
  .press-center-aside-title:first-child {
    padding-top: 0;
  }
  .press-center-tag-hide {
    display: none;
  }
}

@media only screen and (max-width: 991px) and (max-width: 991px) {
  .press-center-tag-hide {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media only screen and (max-width: 991px) {
  .press-center-tag-inner {
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    margin-right: 4px;
    margin-bottom: 4px;
  }
  .press-center-watchall.active svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .new-cite-controls {
    display: none;
  }
  .new-soc-nav-aside {
    width: calc(100% - 24px);
    margin-top: 20px;
  }
  .new-soc-nav-container {
    width: calc(100% - 24px);
  }
  .new-soc-nav,
  .new-help-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .new-catergory-block {
    display: none;
  }
  .new-catergory-block-slider {
    background: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .new-event-calendar-popup.active {
    position: static;
    height: auto;
    min-height: 0px;
    margin-bottom: 24px;
  }
  .new-event-calendar-popup.active ~ * {
    display: none;
  }
  .new-help-item-large {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 25px 25px 35px 35px;
  }
  .new-help-item-large-info,
  .new-help-item-large-links {
    width: 100%;
  }
  .new-help-item-large-info {
    padding: 0;
  }
  .new-help-item-large-icon {
    margin-bottom: 10px;
  }
  .new-help-item-large-title {
    padding-right: 30px;
    padding-bottom: 20px;
  }
  .new-help-item-large-links {
    padding: 0 !important;
  }
  .new-help-item-large-link {
    margin-bottom: 15px;
  }
  .new-help-item {
    width: 46%;
  }
  .new-help-item-bg,
  .new-help-item-large {
    width: 46%;
  }
  .new-help-item-bg {
    width: 46%;
  }
  .new-help-item-bg-icon-s {
    display: none;
  }
  .new-help-item-bg-icon-b {
    display: block;
  }
  .new-help-item-bg-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
  }
  .main-help-container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .new-event-item {
    width: 45%;
  }
  .new-event-item:nth-child(9) {
    display: none;
  }
  .new-event-item-location {
    position: relative;
    left: 0;
  }
  .new-priority-item {
    width: 45%;
  }
  .new-doc-link-block {
    width: 45%;
  }
  .new-priority-aside-bg {
    padding: 30px 105px 30px 30px;
  }
  .new-priority-aside-text {
    font-size: 10px;
    font-weight: 800;
    line-height: 12px;
    letter-spacing: 0.05em;
  }
  .new-priority-aside-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
  }
  .new-priority-aside-btn-border {
    margin-bottom: 10px;
    margin-left: 15px;
  }
  .new-cite-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  h3.section-head {
    padding-left: 10px;
    font-size: 22px;
    font-weight: 800;
  }
}

@media only screen and (max-width: 991px) and (max-width: 991px) {
  h3.section-head {
    padding-left: 0px !important;
  }
}

@media only screen and (max-width: 991px) {
  .new-cite-tabs {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .datepicker-inline {
    width: 230px;
    margin: 0 auto;
  }
  .new-event-more {
    margin: 10px auto;
    width: 35%;
  }
  .new-catergory-block {
    padding: 0;
  }
  .new-category-text {
    font-size: 10px;
    font-weight: 400;
    line-height: 22px;
  }
  .new-category-icon {
    width: 30px;
    height: 30px;
  }
  .new-category-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 250px;
    height: 90px;
    margin-bottom: 0;
  }
  .new-catergory-block-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .new-catergory-block-slider .slick-dots {
    margin-bottom: 0;
    background: #F7F7F8;
    padding-top: 10px;
  }
  .new-content-block-small .new-banner-item-img {
    width: 340px;
    height: 310px;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  .new-content-block .slick-dots {
    margin-top: 30px;
  }
  .new-catergory-block-slider .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 769px) {
  .main-news.main-news-bg .slick-list,
  .main-news.main-news-bg .slick-slider,
  .main-news.main-news-bg .slick-track,
  .main-news-bg .main-news-item {
    height: 100%;
  }

  .new-slider-block-small .new-slider-block-item:nth-child(n+5) {
    display: none !important;
  }
  .new-help-item-bg,
  .new-help-item-large {
    width: 49%;
  }
  .new-help-item {
    width: 49%;
  }
  .new-help-item-large,
  .new-help-item-bg,
  .new-help-item {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .main-news-bg .main-news-item__map .main-news-item__content {
    padding-bottom: 0px;
    padding-top: 0px !important;
  }
  .new-cite-tabs {
    margin-bottom: 24px;
  }
  .new-press-center-overlay .new-press-center-popup-close {
    top: 25px;
    right: 10px;
  }
  .new-press-center-popup {
    border-radius: 0;
    right: 0px;
    top: 0px;
    left: 0px;
    bottom: 0px;
    padding: 50px 20px 20px 20px;
  }
  .new-press-center-popup .new-press-center-popup-close {
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
  }
  .section-head-round {
    margin-left: 10px;
  }
  .new-category-text span {
    width: auto;
    line-height: 1.2;
  }
  .useful-materials-block {
    padding: 20px;
    background-size: 100%;
    background-position: bottom center;
  }
  .useful-materials-title {
    margin-bottom: 15px;
  }
  .useful-materials-text {
    font-size: 14px;
    line-height: 20px;
  }
  .new-event-more {
    width: 32%;
  }
}

@media only screen and (max-width: 650px) {
  .new-cite-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .new-cite-tabs {
    padding-left: 0;
    width: 100%;
    max-width: 100% !important;
    margin-bottom: 20px;
  }
  .new-cite-head .section-head {
    margin-bottom: 15px;
  }
  .new-cite-tabs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .main-news .slick-dots li {
    margin: 10px 5px;
  }
}

@media (max-width: 767px) {
  .footer__bottom .col-xs-12 {
    padding-top: 20px !important;
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .banner__block_mob .col-xs-12 {
    width: 100% !important;
  }
  .useful-materials-block {
    height: 375px;
    padding: 18px 15px;
  }
  .press-center-container-item:nth-last-child(2) {
    display: none;
  }
  /* .press-center-container-item:last-child {
    display: none;
  } */
  .col-xs-12 {
    width: 100%;
  }
  .new-event-more {
    width: 55%;
  }
  .main-news-bg .main-news-item__image {
    background-size: cover;
    background-position: center !important;
  }
  .main-news-bg .main-news-item__map .main-news-item__content .btn {
    padding: 10px;
  }
  body .main__s.main__s-new .main-news-test__buttons .btn {
    width: 44%;
  }
  body .main__s.main__s-new .main-news-test__buttons .btn:last-child {
    width: 43%;
  }
}

@media only screen and (max-width: 600px) and (max-width: 991px) {
  body .main__s.main__s-new .main-news-test__buttons {
    bottom: 5px;
  }
}

@media only screen and (max-width: 600px) {
  .main-news-bg .main__s-new .main-news-test__content {
    padding-top: 50px;
  }
  .new-doc-link-block {
    width: calc(100% - 24px);
  }
  .new-site-link-block {
    padding: 50px 20px 30px 20px;
  }
  .main-news-bg .main-news-item__map .main-news-item__content .btn {
    font-size: 12px;
    font-weight: 500;
    line-height: 13px;
  }
  .main-news-bg .main-news-item__map .main-news-item__content {
    padding-left: 20px;
    padding-bottom: 0;
  }
  .main-news-item__news .main-news-item__title {
    margin-bottom: 8px;
  }
  .press-center-container-item,
  .new-priority-item {
    width: calc(100% - 24px);
  }
  .new-priority-aside-bg {
    padding: 25px 15px;
  }
  .new-priority-aside-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .new-priority-aside-btn-border {
    margin-left: 0;
  }
  .new-press-center-popup {
    padding: 20px;
  }
  .new-press-center-popup-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .new-press-center-popup-head .reset-button-tags {
    max-width: 100%;
    margin-top: 20px;
  }
  .container-inner-item-small {
    width: 100%;
  }
  .container-inner-item-big .container-inner-item-text {
    font-size: 14px;
    line-height: 20px;
  }
  .new-cite-controls {
    display: none;
  }
  .new-press-center-aside {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .press-center-first {
    width: 100%;
  }
  .press-center-sec {
    width: 100%;
  }
  .press-center-watchall {
    margin-top: 20px;
  }
  .new-help-aside {
    margin: 0 auto;
  }
  .new-help-item-bg {
    width: 100%;
  }
  .new-help-item-bg,
  .new-help-item-large {
    width: 100%;
    margin: 0;
  }
  .new-help-item-large {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }
  .new-help-item {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    margin-bottom: 10px;
  }
  .new-help-item-large-icon {
    margin-bottom: 20px;
  }
  .new-help-item-large-info,
  .new-help-item-large-links {
    width: 100%;
  }
  .new-help-item-large-links {
    padding: 0px;
  }
  .new-help-item-text {
    font-size: 14px;
  }
  .new-event-item {
    width: calc(100% - 24px);
  }
  .new-event-item-mouth {
    font-size: 14px;
  }
  .new-event-item-date {
    width: 66px;
  }
  .new-event-item-day {
    margin-bottom: 2px;
  }
  .new-event-aside-container {
    padding: 20px;
  }
  .new-event-calendar-close {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
  }
  .new-event-calendar-items {
    padding: 20px 45px 20px 20px;
  }
  .new-event-calendar-title {
    font-size: 16px;
  }
  h3.section-head {
    padding-left: 0;
  }
  .new-category-icon {
    width: 41px;
    height: 31px;
    margin-left: 20px;
  }
  .new-category-text span {
    display: none;
  }
  .new-category-info {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 20px;
  }
  .main-news-bg .main-news-item__image {
    height: 350px;
  }
  .main-news-bg .main-news-item__image {
    background-size: cover !important;
    background-position: inherit;
  }
  .main-news.main-news-bg .slick-dots li {
    padding: 5px 0;
  }
  .main-news-bg .main-news-item__map .main-news-item__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
  }
  .main-news-bg .main-news-item__content {
    padding: 15px 15px 20px 15px;
  }
  .main-news-item__type {
    top: 15px;
    left: 15px;
  }
  .new-content-block-small .new-banner-item-img {
    margin-bottom: 0;
  }
  .new-slider-block-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .new-slider-block-small .new-slider-block-item {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 25px !important;
  }
}

@media only screen and (max-width: 550px) {
  .main-news-bg .main-news-item__map .main-news-item__title {
    left: 45px;
  }
}

@media only screen and (max-width: 501px) {
  .main-news-bg .main-news-item__map .main-news-item__title {
    left: 39px;
  }
  .new-slider-block {
    display: none;
  }
  .new-event-container {
    margin-bottom: 25px;
  }
  .main-news-bg .main-news-item__image {
    background-position: inherit !important;
  }
}

@media only screen and (max-width: 501px) {
  .new-category-item {
    width: 100%;
  }
  .new-catergory-sort {
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    color: #231F20;
    border-bottom: 1px solid #F7F7F8;
    padding: 12px 0;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 501px) {
  .main-news-bg .main-news-item__map .main-news-item__title {
    left: 36px;
  }
  .main-news-bg .main-news-m-banner {
    height: 495px;
    background-size: 100% 100%;
    margin-bottom: 0 !important;
  }
  .main-news-bg .main-news-test__image {
    height: 184px;
  }
  .section-head-round {
    margin-left: 10px;
  }
  .gray-section-bg.pd-top-80 {
    padding-top: 50px !important;
  }
  .new-catergory-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .new-catergory-block-slider {
    display: none;
  }
}

@media (max-width: 501px) {
  .main-news-item__btn {
    margin-bottom: 12px !important;
  }
  .new-slider-block-small .new-slider-block-item:nth-child(n+3) {
    display: none !important;
  }
  .pd-top-70 {
    padding-top: 60px !important;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 429px) {
  body .main__s.main__s-new .main-news-test__buttons .btn {
    width: 42%;
  }
  body .main__s.main__s-new .main-news-test__buttons .btn:last-child {
    width: 42%;
  }
}

@media only screen and (max-width: 429px) {
  .main-news-bg .main-news-m-banner {
    height: 400px;
    background-size: 100% 100%;
  }
  .new-event-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .new-event-item-date {
    margin-bottom: 15px;
  }
}

@media (max-width: 415px) {
  .main-news-bg .main-news-m-banner {
    height: 370px;
    background-size: 100% 100%;
  }
}

.new-cite-useful {
  display: none;
}

@media only screen and (max-width: 501px) {
  .new-cite-useful {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .slick-track .new-slider-block-item {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }
  .new-cite-useful .new-slider-block-item {
    margin-bottom: 10px;
  }
  .new-cite-useful .new-slider-block-item:last-child {
    margin-bottom: 60px;
  }
  .new-cite-useful .new-site-link-block {
    padding: 30px 15px;
  }
  .new-help-item-bg {
    padding: 30px 25px !important;
    margin-bottom: 10px;
  }
  .press-center-sec {
    margin-top: 35px;
  }
  .press-center-aside-button-color {
    margin-right: 0;
  }
}

@media (max-width: 376px) {
  .new-event-more {
    width: 78%;
  }
  .main-news-bg .main-news-m-banner {
    height: 355px !important;
  }
}

@media (max-width: 321px) {
  .new-help-item-bg {
    padding: 25px 20px !important;
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .new-event-more {
    width: 100% !important;
  }
}

.menegement {
  font-family: "Golos" !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 753px) {
  .menegement {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.menegement__content {
  padding: 0;
  margin-bottom: 50px;
}

.menegement__content h1 {
  font-weight: 700;
  font-size: 32px;
  font-size: 3.2rem;
  color: #231F20;
  margin-bottom: 60px;
}

@media (max-width: 1270px) {
  .menegement__content {
    width: 60%;
  }
}

@media (max-width: 1025px) {
  .menegement__content h1 {
    font-size: 26px;
    margin-bottom: 45px;
  }
}

@media (max-width: 992px) {
  .menegement__content {
    width: 50%;
  }
  .menegement__content h1 {
    font-size: 22px;
  }
}

@media (max-width: 753px) {
  .menegement__content {
    width: 100%;
    margin-bottom: 0px;
  }
}

.menegement__block_title {
  font-size: 18px;
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 20px;
}

@media (max-width: 1025px) {
  .menegement__block_title {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .menegement__block_title {
    font-size: 14px;
  }
}

.menegement__block_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #D5DAE0;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .menegement__block_link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .menegement__block_link {
    padding: 20px;
  }
}

.menegement__block_link:hover {
  -webkit-box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
          box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.menegement__block_link:hover .menegement__block_link_info_name p,
.menegement__block_link:hover .menegement__block_link_info_name i {
  color: #e20338;
}

.menegement__block_link_images {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-right: 40px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  overflow: hidden;
}

@media (max-width: 992px) {
  .menegement__block_link_images {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
}

.menegement__block_link_images img {
  width: 100%;
  height: auto;
}

.menegement__block_link_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.menegement__block_link_info p {
  margin-bottom: 0;
}

@media (max-width: 1025px) {
  .menegement__block_link_info p {
    font-size: 14px !important;
  }
}

@media (max-width: 992px) {
  .menegement__block_link_info p {
    font-size: 14px !important;
  }
}

.menegement__block_link_info_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menegement__block_link_info_name p {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  color: #231F20;
  margin-right: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.menegement__block_link_info_name > i {
  font-size: 10px;
  font-size: 1rem;
  color: #231F20;
}

.menegement__block_link_info_position {
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  color: #848E99;
}

@media (max-width: 992px) {
  .menegement__block_link_info_position {
    margin: 10px 0 !important;
  }
}

.menegement__block_link_info_address {
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  color: #231F20;
}

.menegement__comment {
  width: 100%;
  margin-bottom: 45px;
}

.menegement__comment_block {
  background: #F7F7F8;
  border-radius: 8px;
  text-align: left;
  padding: 30px;
  position: relative;
}

.menegement__comment_block::after {
  content: '';
  position: absolute;
  border: 12px solid transparent;
  border-left: 12px solid #F7F7F8;
  border-bottom: 12px solid #F7F7F8;
  top: -24px;
  left: 105px;
}

.menegement__comment_block p {
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  color: #E20338;
}

@media (max-width: 992px) {
  .menegement__comment_block p {
    font-size: 14px !important;
  }
}

.mapz {
  background-color: #f1f2f2;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 90px 0 0;
}

.mapz .new-panel .map-city__name {
  font-size: 16px;
  line-height: 21px;
}

.mapz .map-city__link--clear {
  color: #e20338;
}

.mapz .map-city__link--clear:after {
  display: none;
}

.mapz .map-city__link--clear i {
  margin-left: 5px;
}

.mapz-card-i {
  position: absolute !important;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
}

.mapz__close {
  display: none;
}

.mapz ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.mapz ::-webkit-scrollbar-button {
  width: 6px;
  height: 6px;
}

.mapz ::-webkit-scrollbar-thumb {
  background: #c7d0d0;
  border: 0px none #ffffff;
  border-radius: 6px;
}

.mapz .container {
  position: relative;
  z-index: 2;
}

.mapz__maps {
  position: relative;
}

.mapz__map {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.mapz__title {
  font-size: 2.9rem;
  line-height: 3.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.mapz__tabheader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -55px;
}

.mapz__tabname {
  color: #231f20;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  padding-top: 15px;
  padding-bottom: 30px;
  position: relative;
}

.mapz__tabname:hover {
  color: #e20338;
}

.mapz__tabname:after {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #e20338;
  content: "";
  opacity: 0;
  position: absolute;
}

.mapz__tabname.active {
  color: #e20338;
}

.mapz__tabname.active:after {
  opacity: 1;
}

.mapz__tabname:not(:last-child) {
  margin-right: 35px;
}

.mapz-cards {
  position: relative;
  z-index: 2;
  height: 600px;
}

.mapz-card {
  width: 390px;
  position: absolute;
  top: 10px;
  left: 0;
  bottom: 15px;
  background-color: #ffffff;
  display: none;
  border-radius: 4px;
  overflow: hidden;
}

.mapz-card.active {
  display: block;
}

.mapz-card.opacity {
  opacity: 0.9;
}

.mapz-card__header {
  padding-left: 30px;
  padding-right: 30px;
  height: 58px;
  background-color: #f1f2f2;
  color: #231f20;
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mapz-card__content {
  height: calc(100% - 58px);
  overflow-y: scroll;
  scroll-behavior: smooth;
}

.mapz-card__content:after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  position: absolute;
  content: "";
  z-index: 5;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(60%, rgba(255, 255, 255, 0.95)), to(white));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.95) 60%, white 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.95) 60%, white 100%);
  pointer-events: none;
}

.mapz-card__box {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.mapz-card__box * {
  position: relative;
  z-index: 3;
}

.mapz-card__box::before {
  left: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #e20338;
  z-index: 1;
  position: absolute;
  opacity: 0;
}

.mapz-card__box:hover::before {
  opacity: 1;
}

.mapz-card__box:hover * {
  color: #fff !important;
}

.mapz-card__box:hover svg {
  fill: #fff !important;
}

.mapz-card__box:after {
  background-color: #e1e3e7;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  content: "";
  height: 1px;
}

.mapz-card__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 12px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.mapz-card__icon svg {
  width: 40px;
  height: 40px;
}

.mapz-card__name {
  font-size: 16px;
  font-weight: 700;
}

.mapz-card__name:not(:last-child) {
  margin-bottom: 13px;
}

.mapz-card__gray {
  color: #939598;
  font-size: 14px;
}

.mapz-card__arrow {
  width: 58px;
  height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border-right: 1px solid #e1e3e7;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  bottom: 0;
  border-bottom: 1px solid transparent;
}

.mapz-card__arrow:hover {
  background-color: #fff;
  border-bottom-color: #e1e3e7;
}

.mapz-card__arrow:hover:after {
  border-color: #e20338;
}

.mapz-card__arrow:after {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  left: 50%;
  top: 50%;
  content: "";
  width: 7px;
  height: 7px;
  border-left: 2px solid #231f20;
  border-bottom: 2px solid #231f20;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.mapz-card__arrow + .mapz-card__title {
  padding-left: 50px;
}

.mapz-card.opacity::before {
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: 20;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);
}

.mapz-card__header {
  position: relative;
}

.mapz-card__close {
  position: absolute;
  width: 15px;
  height: 15px;
  right: 25px;
  top: 22px;
  content: "";
  cursor: pointer;
}

.mapz-card__close:after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 2px;
  height: 100%;
  content: "";
  position: absolute;
  background-color: #c7d0d0;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.mapz-card__close:before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  width: 2px;
  height: 100%;
  content: "";
  position: absolute;
  background-color: #c7d0d0;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.mapz-card__close:hover:after, .mapz-card__close:hover:before {
  background-color: #e20338;
}

.mapz-card__form {
  padding-top: 20px;
  padding-bottom: 17px;
  padding-left: 30px;
  padding-right: 30px;
}

.mapz-card__input {
  position: relative;
}

.mapz-card__input input {
  width: 100%;
  height: 58px;
  border-radius: 4px;
  border: 1px solid #e1e3e7;
  padding-left: 20px;
  padding-right: 44px;
  outline: none;
}

.mapz-card__input i {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  color: #b2b5c1;
}

.mapz-card__input i.icon-close {
  right: 50px;
  cursor: pointer;
  font-size: 12px;
}

.mapz-card__input i.icon-close:after {
  right: -10px;
  top: -4px;
  bottom: -4px;
  position: absolute;
  content: "";
  width: 1px;
  background-color: #b2b5c1;
}

.mapz-card__input i.icon-close:hover {
  color: #e20338;
}

.mapz-modal .mapz-card__header {
  background-color: #fff;
  border-bottom: 1px solid #f7f8f9;
  height: auto;
  min-height: 58px;
  padding-right: 54px;
  padding-bottom: 16px;
  padding-top: 21px;
  display: block;
}

.mapz-modal .mapz-card__content {
  height: calc(100% - 58px);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.mapz-modal .mapz-card__title:not(:last-child) {
  margin-bottom: 10px;
}

.mapz-modal .mapz-card__gray {
  font-weight: 400;
}

.mapz-modal .mapz-card__gray:not(:last-child) {
  margin-bottom: 20px;
}

.mapz-modal .mapz-card__link {
  color: #e20338;
  font-weight: 500;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mapz-modal .mapz-card__link img {
  margin-left: 20px;
}

.mapz-card[data-level="1"] {
  z-index: 3;
}

.mapz-card[data-level="1"].mapz-modal {
  left: 58px;
}

.mapz-card[data-level="2"] {
  z-index: 4;
}

.mapz-card[data-level="2"].mapz-modal {
  left: 58px;
}

.mapz-card[data-level="3"] {
  z-index: 5;
}

.mapz-card[data-level="3"].mapz-modal {
  left: 58px;
}

.mapz-card[data-level="4"] {
  z-index: 6;
}

.mapz-card[data-level="4"].mapz-modal {
  left: 58px;
}

.mapz-card[data-level="5"] {
  z-index: 7;
}

.mapz-card[data-level="5"].mapz-modal {
  left: 116px;
}

.mapz-card[data-level="6"] {
  z-index: 8;
}

.mapz-card[data-level="6"].mapz-modal {
  left: 148px;
}

.mapz-mobile {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .mapz {
    padding-top: 60px;
    padding-bottom: 13px;
    margin-bottom: 0px;
  }
  .mapz-mobile {
    display: flex;
    -webkit-box-pack: content;
    -ms-flex-pack: content;
    justify-content: content;
    align-items: center;
    border-radius: 4px;
    color: #fff;
    background-color: #e20338;
    border-color: #e20338;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    border: 4px solid #e20338;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 225px;
    width: 225px;
    bottom: 0px;
    z-index: 10;
    left: 0px;
    position: relative;
    height: 56px;
    margin: 32px auto 0;
  }
}

@media only screen and (max-width: 996px) {
  .mapz__maps {
    height: 420px;
  }
  .mapz-cards {
    height: auto;
  }
  .mapz__tabheader {
    margin-top: 0;
  }
  .mapz__maps > .container {
    height: 100%;
  }
  .mapz__close {
    display: none;
  }
  .mapz-cards {
    display: none;
  }
  .mapz-cards.active {
    display: block;
  }
  .mapz-cards.active .mapz__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  git
.mapz-card {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 10000;
  }
  .mapz.active .container {
    z-index: 10000;
  }
  .mapz-cards {
    z-index: 10000;
  }
  .mapz-card[data-level="1"].mapz-modal,
  .mapz-card[data-level="2"].mapz-modal,
  .mapz-card[data-level="3"].mapz-modal,
  .mapz-card[data-level="4"].mapz-modal,
  .mapz-card[data-level="5"].mapz-modal,
  .mapz-card[data-level="6"].mapz-modal {
    left: 0;
  }
  .mapz__close {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    padding-bottom: 25px;
    padding-top: 10px;
    background-color: #fff;
    padding-left: 30px;
    padding-right: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 20;
  }
  .mapz__close .btn {
    width: calc(100% / 2 - 20px);
  }
  .mapz-card__content {
    height: calc(100% - 58px - 142px - 25px);
  }
}

.mapz .mapz-card__name:not(:last-child) {
  margin-bottom: 6px;
}

.mapz .mapz-card__gray {
  color: #231f20;
}

.mapz .mapz__title {
  margin-bottom: 62px;
}

.mapz .mapz__descrip {
  margin-bottom: 60px;
}

/* mapz tabheader */
.mapz.mapz-small.active .mapz__tabheader {
  top: 82px;
  right: 82px;
  background-color: transparent;
}

.mapz.mapz-small .mapz__tabheader .mapz__tabname {
  background-color: #ffffff;
  margin-right: 10px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 5px;
}

.mapz.mapz-small.active .mapz__tabname:not(:last-child) {
  margin-right: 10px;
}

.mapz.mapz-small .mapz__tabheader .mapz__tabname.active,
.mapz.mapz-small .mapz__tabheader .mapz__tabname:hover {
  color: #fff;
  background: #e20338;
}

.mapz.mapz-small.active .mapz__show {
  top: 27px;
  width: 51px;
  height: 51px;
  border-radius: 5px;
  border-bottom: 1px solid transparent;
  text-indent: -99999px;
}

.mapz.mapz-small.active .mapz__show::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  background: url("../img/general/icon/collapsearrow.png") no-repeat center center;
  background-size: 70%;
}

.mapz.mapz-small.active .mapz__show {
  border: 1px solid transparent;
  color: #fff;
}

.mapz.mapz-small.active .mapz__show:hover {
  background-color: #ffffff;
  border-color: #ffffff;
}

.mapz.mapz-small.active .mapz__tabname {
  padding-left: 25px;
  padding-right: 25px;
}

.mapz.mapz-small .mapz__tabname.active::after {
  opacity: 0;
}

.mapz.mapz-small {
  margin-bottom: 40px;
}

.mapz.mapz-small.active {
  margin-bottom: 0;
}

.mapz-card .mapz-card__header {
  background: #f1f2f2;
}

.mapz-card .mapz-card__header .mapz-card__link {
  margin-bottom: 0;
}

.mapz-card__content .mapz-card__all {
  padding: 20px 30px;
  border-bottom: 1px solid #e1e3e7;
  margin-bottom: 0;
  margin-top: 10px;
}

/* end mapz tabheader */
html[color-schema="color-brown"] .mapz-card__box:hover:before {
  background-color: transparent;
}

html[color-schema="color-brown"] .mapz-card__box:hover .mapz-card__cont {
  color: #000000 !important;
}

html[color-schema="color-brown"] .mapz {
  background: #3b2716;
}

html[color-schema="color-brown"] .mapz-card {
  background: #3b2716;
  border: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .mapz-card__box:after {
  background-color: #a9e44d;
}

html[color-schema="color-brown"] .mapz-card__link {
  color: #a9e44d;
}

html[color-schema="color-brown"] .mapz-card__header {
  background: #3b2716;
  border-bottom: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .mapz-card__title {
  color: #a9e44d;
}

html[color-schema="color-brown"] .mapz-card__content:after {
  display: none;
  height: 0;
}

html[color-schema="color-brown"] .mapz-card__icon .icon {
  fill: #a9e44d !important;
}

html[color-schema="color-brown"] .mapz-card__name, html[color-schema="color-brown"] .mapz-card__gray {
  color: #a9e44d !important;
}

html[color-schema="color-brown"] .mapz__tabname {
  color: #a9e44d;
}

html[color-schema="color-brown"] .mapz__tabname:hover {
  color: #a9e44d;
  text-decoration: underline;
}

html[color-schema="color-brown"] .mapz__tabname:after {
  background-color: #a9e44d;
}

html[color-schema="color-brown"] .mapz__tabname.active {
  color: #a9e44d;
}

html[color-schema="color-blue"] .mapz-card__box:hover:before {
  background-color: transparent;
}

html[color-schema="color-blue"] .mapz-card__box:hover .mapz-card__cont {
  color: #000000 !important;
}

html[color-schema="color-blue"] .mapz {
  background: #9dd1ff;
}

html[color-schema="color-blue"] .mapz-card {
  background: #9dd1ff;
  border: 1px solid #063462;
}

html[color-schema="color-blue"] .mapz-card__box:after {
  background-color: #063462;
}

html[color-schema="color-blue"] .mapz-card__link {
  color: #063462;
}

html[color-schema="color-blue"] .mapz-card__header {
  background: #9dd1ff;
  border-bottom: 1px solid #063462;
}

html[color-schema="color-blue"] .mapz-card__title {
  color: #063462;
}

html[color-schema="color-blue"] .mapz-card__content:after {
  display: none;
  height: 0;
}

html[color-schema="color-blue"] .mapz-card__icon .icon {
  fill: #063462 !important;
}

html[color-schema="color-blue"] .mapz-card__name, html[color-schema="color-blue"] .mapz-card__gray {
  color: #063462 !important;
}

html[color-schema="color-blue"] .mapz__tabname {
  color: #063462;
}

html[color-schema="color-blue"] .mapz__tabname:hover {
  color: #063462;
  text-decoration: underline;
}

html[color-schema="color-blue"] .mapz__tabname:after {
  background-color: #063462;
}

html[color-schema="color-blue"] .mapz__tabname.active {
  color: #063462;
}

html[color-schema="color-black"] .mapz-card__box:hover:before {
  background-color: transparent;
}

html[color-schema="color-black"] .mapz-card__box:hover .mapz-card__cont {
  color: #000000 !important;
}

html[color-schema="color-black"] .mapz {
  background: #000000;
}

html[color-schema="color-black"] .mapz-card {
  background: #000000;
  border: 1px solid #ffffff;
}

html[color-schema="color-black"] .mapz-card__link {
  color: #ffffff;
}

html[color-schema="color-black"] .mapz-card__header {
  background: #000000;
  border-bottom: 1px solid #ffffff;
}

html[color-schema="color-black"] .mapz-card__title {
  color: #ffffff;
}

html[color-schema="color-black"] .mapz-card__content:after {
  display: none;
  height: 0;
}

html[color-schema="color-black"] .mapz-card__icon .icon {
  fill: #ffffff !important;
}

html[color-schema="color-black"] .mapz-card__name, html[color-schema="color-black"] .mapz-card__gray {
  color: #ffffff !important;
}

html[color-schema="color-black"] .mapz__tabname {
  color: #ffffff;
}

html[color-schema="color-black"] .mapz__tabname:hover {
  color: #ffffff;
  text-decoration: underline;
}

html[color-schema="color-black"] .mapz__tabname:after {
  background-color: #ffffff;
}

html[color-schema="color-black"] .mapz__tabname.active {
  color: #ffffff;
}

html[color-schema="color-beige"] .mapz-card__box:hover:before {
  background-color: transparent;
}

html[color-schema="color-beige"] .mapz-card__box:hover .mapz-card__cont {
  color: #000000 !important;
}

html[color-schema="color-beige"] .mapz {
  background: #f7f3d6;
}

html[color-schema="color-beige"] .mapz-card {
  background: #f7f3d6;
  border: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .mapz-card__box:after {
  background-color: #4d4b43;
}

html[color-schema="color-beige"] .mapz-card__link {
  color: #4d4b43;
}

html[color-schema="color-beige"] .mapz-card__header {
  background: #f7f3d6;
  border-bottom: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .mapz-card__title {
  color: #4d4b43;
}

html[color-schema="color-beige"] .mapz-card__content:after {
  display: none;
  height: 0;
}

html[color-schema="color-beige"] .mapz-card__icon .icon {
  fill: #4d4b43 !important;
}

html[color-schema="color-beige"] .mapz-card__name, html[color-schema="color-beige"] .mapz-card__gray {
  color: #4d4b43 !important;
}

html[color-schema="color-beige"] .mapz__tabname {
  color: #4d4b43;
}

html[color-schema="color-beige"] .mapz__tabname:hover {
  color: #4d4b43;
  text-decoration: underline;
}

html[color-schema="color-beige"] .mapz__tabname:after {
  background-color: #4d4b43;
}

html[color-schema="color-beige"] .mapz__tabname.active {
  color: #4d4b43;
}

@media only screen and (max-width: 1269px) {
  /* Tablet 1024 */
  .mapz {
    padding: 60px 0 0;
  }
}

@media only screen and (max-width: 991px) {
  /* Tablet 768 */
  .mapz {
    padding: 60px 0 0;
  }
  .mapz-mobile {
    margin-top: 32px;
  }
}

@media only screen and (max-width: 767px) {
  /* Mobile 360 */
  .mapz {
    padding: 50px 0 0;
  }
  .mapz-mobile {
    margin-top: 16px;
  }
}

@media only screen and (max-width: 560px) {
  /* Mobile 360 */
  .mapz-cards.active .mapz__close {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .mapz__close .btn {
    width: 100%;
    margin-top: 15px;
  }
}

.popover-inner .slid {
  padding-top: 0;
  padding-bottom: 0;
}

.popover-inner .card-slider-item {
  padding-bottom: 0;
}

.popover-inner .availability__item {
  padding-left: 0;
}

@media screen and (max-width: 576px) {
  .popover-inner .slick-list {
    overflow: visible;
  }
}

/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/
/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/
/*
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/
.mCustomScrollbar {
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
  /* direct pointer events to js */
}

.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
  -ms-touch-action: auto;
  touch-action: auto;
}

.mCustomScrollBox {
  /* contains plugin's markup */
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr;
  padding-bottom: 10px;
}

.mCSB_container {
  /* contains the original content */
  overflow: hidden;
  width: auto;
  height: auto;
}

/*
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_inside > .mCSB_container {
  margin-right: 20px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
}

/* non-visible scrollbar */
.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
  /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0;
}

/* RTL direction/left-side scrollbar */
.mCSB_scrollTools {
  /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
}

.mCSB_outside + .mCSB_scrollTools {
  right: -26px;
}

/* scrollbar position: outside */
.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  /* RTL direction/left-side scrollbar */
  right: auto;
  left: 0;
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  left: -26px;
}

/* RTL direction/left-side scrollbar (scrollbar position: outside) */
.mCSB_scrollTools .mCSB_draggerContainer {
  /* contains the draggable element and dragger rail markup */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
  width: 6px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
}

.mCSB_scrollTools .mCSB_dragger {
  /* the draggable element */
  cursor: pointer;
  width: 100%;
  height: 30px;
  /* minimum dragger height */
  z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  /* the dragger element */
  position: relative;
  width: 6px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
  text-align: center;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 12px;
  /* auto-expanded scrollbar */
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 8px;
  /* auto-expanded scrollbar */
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
  display: block;
  position: absolute;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown {
  bottom: 0;
}

/*
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-bottom: 30px;
}

.mCSB_horizontal.mCSB_outside > .mCSB_container {
  min-height: 100%;
}

.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}

/* non-visible scrollbar */
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  width: auto;
  height: 19px;
  top: auto;
  right: 51px;
  bottom: 0;
  left: 42px;
}

.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: -26px;
}

/* scrollbar position: outside */
.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
  margin: 0 30px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 1px;
  margin: 7px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 30px;
  /* minimum dragger width */
  height: 100%;
  left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 9px;
  margin: 3px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  /* auto-expanded scrollbar */
  margin: 2px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 8px;
  /* auto-expanded scrollbar */
  margin: 4px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  display: block;
  position: absolute;
  width: 10px;
  height: 19px;
  overflow: hidden;
  margin: 0 auto;
  opacity: 1;
  cursor: pointer;
  background: url("../img/scroll-arrow.png") no-repeat;
  top: -2px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft::after,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight::after {
  content: "";
  background: url("../img/scroll-arrow.png") no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity .3s linear;
  transition: opacity .3s linear;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft:hover::after,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight:hover::after {
  opacity: 1;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  left: 0;
  background-position: 0 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft::after {
  background-position: 0 -21px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  right: 0;
  background-position: -17px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight::after {
  background-position: -17px -21px;
}

/*
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_container_wrapper {
  position: absolute;
  height: auto;
  width: auto;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: 30px;
  margin-bottom: 30px;
}

.mCSB_container_wrapper > .mCSB_container {
  padding-right: 30px;
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 20px;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 20px;
}

/* non-visible horizontal scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 0;
}

/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 0;
}

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 20px;
}

/* non-visible scrollbar/RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 0;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper {
  /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px;
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
  padding-right: 0;
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
  padding-bottom: 0;
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
  /* non-visible scrollbar */
  margin-left: 0;
}

/* non-visible horizontal scrollbar */
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}

/*
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
  -webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
}

/*
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/
/*
----------------------------------------
6.1 THEMES
----------------------------------------
*/
/* default theme ("light") */
.mCSB_scrollTools {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 0;
  filter: "alpha(opacity=0)";
  -ms-filter: "alpha(opacity=0)";
}

.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover > .mCSB_scrollTools,
.mCustomScrollBox:hover ~ .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.mCSB_scrollTools .mCSB_draggerRail {
  background: #000;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #000;
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background: #3586C4;
}

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background: #3586C4;
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  background-image: url(mCSB_buttons.png);
  /* css sprites */
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 0;
  /*
    sprites locations
    light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
    dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
    */
}

.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -20px;
  /*
    sprites locations
    light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
    dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
    */
}

.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -40px;
  /*
    sprites locations
    light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
    dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
    */
}

.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -56px;
  /*
    sprites locations
    light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
    dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
    */
}

.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active {
  opacity: 0.9;
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}

/* theme: "dark" */
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}

/* ---------------------------------------- */
/* theme: "light-2", "dark-2" */
.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px 0;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -20px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -40px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -56px;
}

/* theme: "dark-2" */
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px 0;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -20px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -40px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -56px;
}

/* ---------------------------------------- */
/* theme: "light-thick", "dark-thick" */
.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px 0;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 6px;
  margin: 5px auto;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px 0;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -20px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -40px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -56px;
}

/* theme: "dark-thick" */
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px 0;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -20px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -40px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -56px;
}

/* ---------------------------------------- */
/* theme: "light-thin", "dark-thin" */
.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 2px;
  margin: 7px auto;
}

/* theme "dark-thin" */
.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}

/* ---------------------------------------- */
/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */
.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger {
  height: 14px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 14px;
  margin: 0 1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 14px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 14px;
  margin: 1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 16px;
  /* auto-expanded scrollbar */
  height: 16px;
  margin: -1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 4px;
  /* auto-expanded scrollbar */
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 16px;
  /* auto-expanded scrollbar */
  width: 16px;
  margin: 0 -1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 4px;
  /* auto-expanded scrollbar */
  margin: 6px 0;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 -72px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -92px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -112px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -128px;
}

/* theme "rounded-dark", "rounded-dots-dark" */
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px -72px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -92px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -112px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -128px;
}

/* theme "rounded-dots", "rounded-dots-dark" */
.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail {
  width: 4px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  background-color: transparent;
  background-position: center;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
  background-repeat: repeat-y;
  opacity: 0.3;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}

.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  height: 4px;
  margin: 6px 0;
  background-repeat: repeat-x;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px -72px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -92px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -112px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -128px;
}

/* theme "rounded-dots-dark" */
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px -72px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -92px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -112px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -128px;
}

/* ---------------------------------------- */
/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-y;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0.5)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-x;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.5)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

/* theme "3d", "3d-dark" */
.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 70px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 70px;
}

.mCS-3d.mCSB_scrollTools,
.mCS-3d-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  border-radius: 16px;
}

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 8px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 8px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 8px;
  margin: 4px 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 8px;
  margin: 4px auto;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

/* theme "3d-dark" */
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

/* ---------------------------------------- */
/* theme: "3d-thick", "3d-thick-dark" */
.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}

.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools,
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  border-radius: 7px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  border-radius: 5px;
}

.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical,
.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  right: 1px;
}

.mCS-3d-thick.mCSB_scrollTools_vertical,
.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools_horizontal,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  bottom: 1px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
          box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
  width: 12px;
  margin: 2px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  width: auto;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

/* theme: "3d-thick-dark" */
.mCS-3d-thick-dark.mCSB_scrollTools {
  -webkit-box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #777;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #fff;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

/* ---------------------------------------- */
/* theme: "minimal", "minimal-dark" */
.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  right: 0;
  margin: 12px 0;
}

.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: 0;
  margin: 0 12px;
}

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  left: 0;
  right: auto;
}

.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 50px;
}

.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 50px;
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}

/* theme: "minimal-dark" */
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}

/* ---------------------------------------- */
/* theme "light-3", "dark-3" */
.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  width: 6px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
}

.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
}

.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 6px;
  margin: 5px 0;
}

.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 12px;
}

.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 12px;
  margin: 2px 0;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

/* theme "dark-3" */
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

/* ---------------------------------------- */
/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */
.mCS-inset.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 12px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
}

.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  margin: 3px 5px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 6px;
  margin: 5px 3px;
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 12px;
  margin: 2px 0;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

/* theme "inset-2", "inset-2-dark" */
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  border-color: #000;
  border-color: rgba(0, 0, 0, 0.2);
}

/* theme "inset-3", "inset-3-dark" */
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

/* ---------------------------------------- */
.pt-20 {
  padding-top: 20px;
}

.sec-msc .show-more__btn {
  font-size: 16px;
}

.sec-msc__title {
  color: #39bb9d;
  font-size: 29px;
}

.sec-msc_1 .sec-msc__title {
  margin-bottom: 40px;
}

.sec-msc_1 img {
  max-width: 100%;
}

.sec-msc__info-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sec-msc__content {
  margin-bottom: 80px;
}

.sec-msc__info-left_about p {
  margin-bottom: 10px;
}

.sec-msc__info-left_about h4 {
  font-size: 1.6rem;
  margin-bottom: 0;
}

.sec-msc__info-left_about ul {
  padding-left: 20px;
  list-style: disc;
}

p.sec-msc__more-space {
  margin-bottom: 30px;
}

.d-sm-none {
  display: block;
}

.d-sm-block {
  display: none;
}

.sec-msc_2,
.sec-msc_3,
.sec-msc_4,
.sec-msc_6 {
  padding: 50px 0 0;
}

.sec-msc_4 {
  padding-bottom: 50px;
}

.color-bordo {
  color: #b24d67;
}

.msc-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 362px;
  margin-bottom: 30px;
}

.msc-item__img {
  margin-bottom: 16px;
}

.msc-item__info {
  text-align: center;
  height: 120px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
}

.sec-msc .container {
  position: relative;
}

.sec-msc .show-more__btn {
  font-size: 15px;
  font-weight: 400;
  color: #494b4e;
  position: absolute;
  content: '';
  padding: 10px 60px 10px 10px;
  top: 0;
  right: 0;
}

.sec-msc .show-more__btn::before {
  top: 48%;
  right: 15px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.sec-msc .show-more__btn:hover {
  color: #b24d67;
}

/*news*/
.msc-news-card {
  display: block;
  overflow: hidden;
  cursor: pointer;
  width: 386px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.msc-news-card:hover .msc-news-card__text {
  color: #e20338;
}

.msc-news-card__photo {
  border-radius: 6px;
  position: relative;
  height: 200px;
  overflow: hidden;
}

.msc-news-card__body {
  padding: 28px 0px 26px;
}

.msc-news-card__content {
  position: relative;
  height: 72px;
  margin-bottom: 15px;
  overflow: hidden;
}

.msc-news-card__text {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.msc-news-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.msc-news-card__date {
  font-size: 15px;
  color: #939598;
  line-height: 1.2;
}

.sec-msc_1__img {
  height: 560px;
}

.sec-msc_1__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  margin-top: 20px;
}

@media (max-width: 501px) {
  .sec-msc_1__btn {
    margin-top: 5px;
  }
}

.sec-msc_1__btn a {
  background: transparent;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #E20338;
}

.sec-msc_1__btn a svg {
  margin-left: 13px;
}

.sec-msc_1__btn a svg path {
  fill: #E20338;
}

@media (max-width: 501px) {
  .sec-msc_1__btn a {
    width: 100%;
    border: 1px solid #E20338;
    border-radius: 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0;
  }
  .sec-msc_1__btn a:hover {
    background: #E20338;
    color: #fff;
  }
  .sec-msc_1__btn a svg path:hover {
    fill: #fff;
  }
}

/*======= MSC styles START===============*/
.sec-msc__content .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.msc-slider-1 {
  position: relative;
  /*margin-bottom: 70px;*/
  margin-bottom: 0px;
}

.sec-msc__slider_1 .slick-list {
  border-radius: 4px;
}

.msc-slider-1__slide {
  overflow: hidden;
  border-radius: 4px;
}

.msc-slider-1__slide {
  /*height: 560px;*/
  height: auto;
}

@media (max-width: 1270px) {
  .msc-slider-1__slide {
    /*height: 454px;*/
	height: auto;
  }
}

.msc-slider-1__slide img {
  width: 100%;
  border-radius: 4px;
}

.msc-slider__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-right: 15px;
  color: #D2D3D4;
  font-size: 14px;
  border: 1px solid #D2D3D4;
  border-radius: 50%;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  cursor: pointer;
  background-color: #b24d67;
  opacity: 0.7;
}

.msc-slider__arrow:hover {
  color: #ffffff;
  background-color: #b24d67;
  border: 1px solid #b24d67;
}

.sec-msc__slider .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 4px;
  background-color: #e20338;
  opacity: 0.5;
}

.sec-msc__slider .slick-dots {
  text-align: left !important;
}

/*======= MSC styles START===============*/
@media (min-width: 1650px) {
  .sec-msc_1__img {
    height: 680px;
  }
  .msc-slider-1__slide {
    height: 418px;
  }
  .new-priority-item {
    margin-left: 10px;
    margin-right: 5px;
    width: 32%;
  }
}

@media (max-width: 1270px) {
  .sec-msc_1__img {
    height: 454px;
  }
}

@media only screen and (max-width: 1340px) {
  .navigator-map-tabcontainer .navigator-map-linkcontainer {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
}

/*news end*/
/*MSC sliders*/
.sec-msc__slider_1 .msc-slider__control {
  position: absolute;
  right: 15px;
  bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px;
}

@media (max-width: 577px) {
  .sec-msc__slider_1 .msc-slider__control {
    right: 15px !important;
  }
}

.sec-msc__slider_1 .msc-slider__arrow:last-child {
  margin-right: 0;
}

.sec-msc__slider_1 .slick-dots {
  position: absolute;
  content: '';
  margin-bottom: 0;
  /*bottom: -60px;*/
  bottom: 30px;
  left: 0;
  /*text-align: left;*/
  text-align: right !important;
  /*padding: 0;*/
  padding-right: 180px;
}

.sec-msc__slider_3,
.sec-msc__slider_2 {
  margin-left: -15px;
  margin-right: -15px;
}

.msc-foto .msc-slider-3 .slick-dots,
.sec-msc_3 .msc-slider-2 .slick-dots {
  left: 15px;
  padding-left: 15px;
}

@media (max-width: 577px) {
  .msc-slider-1 .slick-list {
    margin: 0 !important;
  }
}

@media (max-width: 991px) {
  .sec-msc__content .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.search-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.search-tabs .custom-tab-item {
  width: 50%;
  min-width: 50%;
  text-align: center;
  border: none;
}

.search-tabs .custom-tab-item a {
  display: block;
  width: 100%;
  font-size: 16px;
  color: #231f20;
  padding: 16px 0;
  font-weight: bold;
  border: 1px solid #dde0e3;
}

.search-tabs .custom-tab-item.active {
  border: none;
}

.search-tabs .custom-tab-item.active a {
  background: #e20338;
  border-color: #e20338;
  border-radius: 4px 0 0 4px;
  color: #ffffff;
}

.search-tabs .custom-tab-item.active a:focus, .search-tabs .custom-tab-item.active a:active, .search-tabs .custom-tab-item.active a:hover {
  background: #e20338;
  border-color: #e20338;
  color: #ffffff;
}

.search-tabs .custom-tab-item:first-child a {
  border-radius: 4px 0 0 4px;
}

.search-tabs .custom-tab-item:first-child.active a {
  border-radius: 4px 0 0 4px;
}

.search-tabs .custom-tab-item:last-child a {
  border-radius: 0 4px 4px 0;
}

.search-tabs .custom-tab-item:last-child.active a {
  border-radius: 0 4px 4px 0;
}

@media screen and (max-width: 576px) {
  .search-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
  .search-tabs .custom-tab-item {
    width: 100%;
    min-width: 100%;
    margin-bottom: 20px;
  }
  .search-tabs .custom-tab-item.active a {
    border-radius: 4px;
  }
  .search-tabs .custom-tab-item:first-child a {
    border-radius: 4px;
  }
  .search-tabs .custom-tab-item:first-child.active a {
    border-radius: 4px;
  }
  .search-tabs .custom-tab-item:last-child a {
    border-radius: 4px;
  }
  .search-tabs .custom-tab-item:last-child.active a {
    border-radius: 4px;
  }
}

@media screen and (max-width: 991px) {
  .msc-slider-1 {
    /*margin-bottom: 110px;*/
	margin-bottom: 20px;
  }
  .sec-msc__slider_1 {
    margin-left: auto;
    margin-right: auto;
  }
  .sec-msc__slider_1 .slick-slid {
    position: relative;
  }
  .sec-msc__slider_1 .slick-slid img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    position: absolute;
  }
}

.sec-msc_1__img img {
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .sec-msc_1__img {
    height: auto;
  }
}

.sec-msc_1__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 20px;
}

@media (max-width: 501px) {
  .sec-msc_1__btn {
    margin-top: 5px;
  }
}

.sec-msc_1__btn a {
  background: transparent;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 20px;
  line-height: 17px;
  color: #E20338;
}

.sec-msc_1__btn a svg {
  margin-left: 13px;
}

.sec-msc_1__btn a svg path {
  fill: #E20338;
}

@media (max-width: 501px) {
  .sec-msc_1__btn a {
    width: 100%;
    border: 1px solid #E20338;
    border-radius: 8px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 0;
  }
}

.sec-msc_1 img {
  width: 100%;
  /*height: 100%;*/
}

@media screen and (max-width: 520px) {
  .msc-slider-1__slide {
    width: auto;
  }
  .d-sm-none {
    display: none;
  }
  .sec-msc_1 {
    touch-action: auto;
    -ms-touch-action: auto;
  }
  /*.sec-msc_1 img {
        width: calc(100vw - 32px);
        height: auto;
        max-width: none;
        border-radius: 4px;
    }
    .msc-slider-1__slide img {
        width: 100%;
    }*/
  .d-sm-block {
    display: block;
  }
}

@media screen and (max-width: 1020px) {
  .msc-slider__arrow:hover {
    color: #494b4e;
    background-color: #fff !important;
  }
}

@media screen and (max-width: 767px) {
  .msc-slider__arrow:hover {
    color: #494b4e;
    background-color: #fff !important;
  }
}

html[color-theme="theme-red"] .sec-msc .slick-dots li button:focus,
html[color-theme="theme-red"] .sec-msc .slick-dots li.slick-active button {
  background-color: #b24d67;
  opacity: 1;
}

.msc-slider-2__slide,
.msc-slider-3__slide {
  margin: 0 15px;
}

.msc-slider-3__slide {
  margin-left: 0;
  margin-right: 0;
}

.msc-foto-card {
  margin: 0 15px;
  overflow: hidden;
}

/*MSC sliders end*/
/*tabs-events*/
.sec-map__le .sec-map__tex {
  display: inline-block !important;
}

.msc-event__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.msc-event__nav.nav > li {
  min-width: 130px;
}

.sec-msc__slider_2 .msc-slider__control {
  bottom: 50px;
}

.sec-msc__slider_1 .msc-slider__arrow:last-child:focus {
  background-color: #fff !important;
}

@media screen and (max-width: 767px) {
  .mos-primeSlider__control {
    display: none;
  }
  .sec-msc_2,
  .sec-msc_3,
  .sec-msc_4,
  .sec-msc_6 {
    padding: 50px 0 0;
  }
  .sec-msc__content {
    margin-bottom: 50px;
  }
  .msc-event h2.sec-msc__title {
    margin-bottom: 46px;
  }
  .sec-msc .show-more__btn {
    width: 160px;
    padding-right: 30px;
    top: -10px;
  }
  .sec-msc__slider_2 .msc-slider__control {
    bottom: 109px;
  }
  a.show-more__link {
    position: relative !important;
    margin: 20px auto 0 auto !important;
    display: block;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .sec-msc .show-more__btn-up {
    top: -45px;
    width: auto;
  }
  .sec-msc_2 {
    padding-top: 70px;
  }
  .sec-msc__info-right {
    display: column;
  }
  .sec-msc__info-right img {
    display: block;
    margin: auto;
    margin-top: 30px;
  }
  .msc-item {
    height: auto;
    margin-bottom: 60px;
  }
  .msc-item:last-child {
    margin-bottom: 50px;
  }
  .msc-item__info {
    height: auto;
  }
}

@media screen and (min-width: 992px) {
  .msc-event__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    margin-bottom: 0;
  }
}

.msc-event__nav.nav-tabs > li > a {
  line-height: 1.5;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.msc-event__nav .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.msc-event__nav.nav-tabs {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 15px;
}

.msc-event__nav.nav > li > a {
  padding: 10px 17px;
}

.msc-event__nav.nav > li > a::before {
  position: absolute;
  content: '';
  top: 50%;
  right: 27px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
  background: #b24d67;
  width: 6px;
  height: 6px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 767px) {
  .msc-event__nav.nav > li > a {
    padding: 17px 22px;
  }
}

@media screen and (min-width: 992px) {
  .msc-event__nav.nav > li > a {
    padding: 17px 27px 17px 34px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .msc-event__nav.nav-tabs {
    border-bottom: 1px solid transparent;
    padding-bottom: 0;
  }
  .msc-event__nav.nav-tabs > li > a {
    text-align: left;
  }
}

.msc-event__nav.nav-tabs > li > a:hover {
  border-color: transparent;
  background-color: #ffffff;
}

.msc-event__nav.nav-tabs > li.active > a,
.msc-event__nav.nav-tabs > li.active > a:hover,
.msc-event__nav.nav-tabs > li.active > a:focus {
  border: 1px solid #ffffff;
  background-color: #ffffff;
}

@media screen and (min-width: 992px) {
  .msc-event__nav.nav-tabs > li.active > a::before,
  .msc-event__nav.nav-tabs > li.active > a:hover::before,
  .msc-event__nav.nav-tabs > li.active > a:focus::before {
    opacity: 1;
    visibility: visible;
  }
}

.msc-event__nav.nav-tabs > li {
  margin-bottom: 3px;
}

/*tabs-events end*/
.msce-item {
  padding: 20px;
  margin-bottom: 15px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  overflow: hidden;
  border-radius: 4px;
}

@media screen and (min-width: 767px) {
  .msce-item {
    padding: 30px;
  }
}

@media screen and (min-width: 576px) {
  .msc-event__item.msce-item {
    padding: 20px 10px 20px 15px;
  }
  .msc-event__item.msce-item .msce-item__date {
    margin-right: 10px;
    width: 68px;
  }
}

.msce-item__date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 74px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: right;
  margin-right: 30px;
  text-align: center;
}

.msce-item__date .num {
  font-size: 60px;
  color: #b24d67;
  font-weight: bold;
  line-height: 0.9;
}

.msce-item__date .month {
  font-size: 15px;
  color: #939598;
}

.msce-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.msce-item__title {
  font-size: 18px;
  font-weight: 500;
}

.msce-item__category {
  font-size: 15px;
  color: #939598;
}

.msc-foto-card__photo {
  display: block;
  width: 386px;
  height: 223px;
  border-radius: 4px;
  overflow: hidden;
}

.msc-foto {
  margin-bottom: 120px;
}

.msc-foto .msc-slider__control {
  position: absolute;
  bottom: -70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.msc-foto .slick-dots {
  position: absolute;
  content: '';
  margin-bottom: 0;
  bottom: -60px;
  left: 0;
  text-align: left;
  padding: 0;
}

.msc-livroom__descr {
  margin-bottom: 40px;
}

.msc-livroom__border {
  border-top: 1px solid #dddddd;
  width: 100%;
  padding-top: 50px;
}

.msclv-item {
  max-width: 283px;
  margin-bottom: 35px;
  height: 280px;
  overflow: hidden;
}

.msclv-item__img {
  border-radius: 4px;
  overflow: hidden;
  height: 162px;
  margin-bottom: 20px;
}

.msclv-item__title {
  font-weight: 500;
  margin-bottom: 18px;
}

.msclv-item__text {
  color: #939598;
}

.sec-msc__slider_2 .slick-dots {
  padding-top: 0;
}

@media screen and (max-width: 992px) {
  .msclv-item {
    max-width: 100%;
  }
  .msclv-item__img {
    position: relative;
    padding-bottom: 57%;
    overflow: hidden;
  }
  .msclv-item__img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    position: absolute;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .sec-msc__slider_2,
  .sec-msc__slider_3 {
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
  .msc-slider-2__slide,
  .msc-slider-3__slide {
    margin: 0 10px;
  }
  .msclv-item {
    margin-left: auto;
    margin-right: auto;
  }
  .msc-livroom__border {
    padding-top: 50px;
  }
  .msclv-item {
    max-width: 100%;
    height: auto;
  }
  .msc-livroom__list .col-xs-12 {
    width: 50%;
  }
  .msc-news-card {
    width: auto;
  }
  .msc-foto-card {
    width: auto;
    overflow: hidden;
    border-radius: 4px;
  }
}

@media screen and (max-width: 576px) {
  .msc-livroom__list .col-xs-12 {
    width: 100%;
  }
  .msclv-item {
    max-width: 100%;
    height: auto;
  }
  .msc-news-card {
    width: 100%;
  }
  .msc-news-card__photo {
    position: relative;
    padding-bottom: 57%;
    overflow: hidden;
  }
  .msc-news-card__photo img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: auto;
  }
  .msc-foto-card {
    width: 100%;
  }
  .msc-foto-card__photo {
    position: relative;
    padding-bottom: 57%;
    overflow: hidden;
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .msc-foto-card__photo a {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media screen and (max-width: 420px) {
  .msc-slider-2__slide,
  .msc-slider-3__slide {
    margin: 0;
  }
}

@media screen and (max-width: 576px) {
  .sec-msc__slider_2 .slick-dots {
    opacity: 0;
    visibility: hidden;
  }
}

html[color-schema='color-brown'] .sec-msc__title {
  color: #a9e44d;
}

html[color-schema='color-blue'] .sec-msc__title {
  color: #063462;
}

html[color-schema='color-black'] .sec-msc__title {
  color: #ffffff;
}

html[color-schema='color-beige'] .sec-msc__title {
  color: #4d4b43;
}

.navigator-map {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  position: relative;
}

.navigator-map-container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
}

.navigator-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navigator-map-location, .navigator-map-zoom, .navigator-map-menu-icon {
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-location:hover, .navigator-map-zoom:hover, .navigator-map-menu-icon:hover {
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.navigator-map-aside-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  /* ползунок скроллбара */
}

.navigator-map-aside-body::-webkit-scrollbar {
  width: 4px;
  /* ширина для вертикального скролла */
  height: 6px;
  /* высота для горизонтального скролла */
  background-color: #fff;
}

.navigator-map-aside-body::-webkit-scrollbar-thumb {
  background-color: #C7D0D0;
  border-radius: 9em;
}

.navigator-map-tabs-container {
  padding: 0 20px;
}

@media only screen and (max-width: 1340px) {
  .navigator-map-tabs-container {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 450px) {
  .navigator-map-tabs-container {
    padding: 0 20px;
  }
}

.navigator-map-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  margin-bottom: 15px;
  position: relative;
  /* ползунок скроллбара */
}

.navigator-map-tabs::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #E1E3E7;
  content: "";
}

.navigator-map-tabs::-webkit-scrollbar {
  width: 4px;
  /* ширина для вертикального скролла */
  height: 6px;
  /* высота для горизонтального скролла */
  background-color: #fff;
}

.navigator-map-tabs::-webkit-scrollbar-thumb {
  background-color: #C7D0D0;
  border-radius: 9em;
}

.navigator-map-tabcontainer.active {
  display: block;
}

.inclusion-dropdown {
  background: #F7F7F8;
  border-radius: 4px;
}

@media only screen and (max-width: 450px) {
  .inclusion-dropdown {
    margin-bottom: 0;
  }
}

.inclusion-dropdown-arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-linkcontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.navigator-map-filter-reset-btn {
  padding: 0 10px;
  height: 50px;
  background: #E1E3E7;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-size: 16px;
  line-height: 50px;
  color: #231F20;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

@media only screen and (max-width: 1500px) {
  .navigator-map-filter-reset-btn {
    height: 44px;
    line-height: 44px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 720px) {
  .navigator-map-filter-reset-btn {
    display: none;
  }
}

.navigator-map-filter-reset-btn:hover {
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.navigator-map-tabcontainer .navigator-map-linkcontainer {
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
}

@media only screen and (max-width: 1340px) {
  .navigator-map-tabcontainer .navigator-map-linkcontainer {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
}

@media only screen and (max-width: 450px) {
  .navigator-map-tabcontainer .navigator-map-linkcontainer {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
}

.navigator-map-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  color: #231F20;
  cursor: pointer;
}

.navigator-map-checkbox:last-child {
  margin-bottom: 0;
}

.navigator-map-checkbox .jq-checkbox {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.inclusion-dropdown.open .inclusion-dropdown-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.inclusion-dropdown-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px;
  cursor: pointer;
}

.inclusion-dropdown-icon {
  width: 36px;
  height: 36px;
  background: #231F20;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 9px;
  position: relative;
}

@media only screen and (max-width: 1500px) {
  .inclusion-dropdown-icon {
    width: 32px;
    height: 32px;
  }
}

.inclusion-dropdown-status {
  position: absolute;
  right: -3px;
  top: -3px;
  border-radius: 50%;
  background: #E20338;
  border: 2px solid #F7F7F8;
  width: 10px;
  height: 10px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.inclusion-dropdown-reset:hover svg {
  fill: #939598;
}

.inclusion-dropdown-reset {
  cursor: pointer;
}

.inclusion-dropdown-reset svg {
  fill: #C7D0D0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.inclusion-dropdown-icons {
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inclusion-dropdown-icons > *:first-child {
  margin-left: 0;
}

.inclusion-dropdown-icons > * {
  margin-left: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inclusion-dropdown-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #231F20;
}

@media only screen and (max-width: 1500px) {
  .inclusion-dropdown-text {
    font-size: 15px;
  }
}

@media only screen and (max-width: 1340px) {
  .inclusion-dropdown-text {
    font-size: 14px;
  }
}

.inclusion-dropdown-container {
  padding: 14px 25px;
  border-top: 1px solid #E1E3E7;
  display: none;
}

.navigator-map-tabcontainer {
  display: none;
  font-size: 16px;
  line-height: 22px;
  color: #231F20;
}

@media only screen and (max-width: 1500px) {
  .navigator-map-tabcontainer {
    font-size: 15px;
  }
}

.navigator-map-tabcontainer p {
  font-size: 16px;
  line-height: 22px;
  color: #231F20;
}

@media only screen and (max-width: 1500px) {
  .navigator-map-tabcontainer p {
    font-size: 15px;
  }
}

.navigator-map-tabcontainer ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}

.navigator-map-tabcontainer ul li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #231F20;
  content: '';
}

.navigator-map-tabcontainer > * {
  margin-bottom: 15px;
}

.navigator-map-tab {
  margin-right: 40px;
  padding-bottom: 28px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #231F20;
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 1500px) {
  .navigator-map-tab {
    font-size: 15px;
    padding-bottom: 19px;
  }
}

.navigator-map-tab::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 0px;
  background: #E20338;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-tab.active {
  pointer-events: none;
  color: #E20338;
}

.navigator-map-tab.active::before {
  height: 4px;
}

.navigator-map-tab:hover {
  color: #E20338;
}

.navigator-map-aside-header, .navigator-map-aside-buttons {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.navigator-map-aside-search-results {
  border-top: 1px solid #E1E3E7;
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 5px 5px;
  z-index: 4;
  max-height: calc(100vh - 220px);
  overflow-y: auto;
  width: 100%;
  /* ползунок скроллбара */
}

.navigator-map-aside-search-results::-webkit-scrollbar {
  width: 4px;
  /* ширина для вертикального скролла */
  height: 6px;
  /* высота для горизонтального скролла */
  background-color: #fff;
}

.navigator-map-aside-search-results::-webkit-scrollbar-thumb {
  background-color: #C7D0D0;
  border-radius: 9em;
}

@media only screen and (max-width: 450px) {
  .navigator-map-aside-search-results {
    max-height: calc(100vh - 275px);
  }
}

.navigator-map-aside-search-more {
  padding: 15px;
  text-align: center;
  width: 100%;
  border-top: 1px solid #E1E3E7;
  font-size: 13px;
  line-height: 14px;
  color: #939598;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  display: inline-block;
}

.navigator-map-aside-search-more:hover {
  background: #F7F7F8;
}

.navigator-map-aside-search-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.navigator-map-aside-search-item svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: #E1E3E7;
}

.navigator-map-aside-search-item:hover .navigator-map-aside-search-item-title {
  color: #E20338;
}

.navigator-map-aside-search-item:hover svg {
  fill: #E20338;
}

.navigator-map-aside-search-item:first-child {
  padding-top: 20px;
}

.navigator-map-aside-search-item:last-child {
  padding-bottom: 20px;
}

.navigator-map-aside-search-item-title {
  font-size: 15px;
  line-height: 18px;
  color: #231F20;
  margin-bottom: 8px;
}

.navigator-map-aside-search-item-text {
  font-size: 13px;
  line-height: 13px;
  color: #939598;
}

.navigator-map-aside-search-item-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.navigator-map-aside {
  width: 390px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: visible;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.navigator-map-container-map {
  position: absolute;
  width: 100%;
  height: 100%;
}

.navigator-map-controls, .navigator-map-info, .navigator-map-black-button, .navigator-map-menu {
  position: absolute;
  z-index: 4;
}

.navigator-map-info {
  bottom: 25px;
  right: 25px;
  max-width: calc(100% - 300px);
}

.navigator-map-controls {
  bottom: 85px;
  right: 25px;
}

.navigator-map-menu {
  top: 25px;
  right: 25px;
}

.navigator-map-black-button {
  left: 25px;
  bottom: 25px;
}

.navigator-map-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 0 10px;
}

.navigator-map-info-item-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.navigator-map-info-item {
  padding: 10px;
  font-size: 14px;
  line-height: 18px;
  color: #231F20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navigator-map-black-button-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.navigator-map-black-button-icon svg {
  fill: white;
  max-width: 100%;
  max-height: 100%;
}

.navigator-map-black-button {
  padding: 13px 24px 13px 10px;
  background: #231F20;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.navigator-map-menu-container {
  display: none;
  background: #FFFFFF;
  -webkit-box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
  width: 236px;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  padding: 15px;
}

.navigator-map-menu-item {
  padding: 15px 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 1px solid #D5DAE0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #231F20;
}

.navigator-map-menu-item svg {
  width: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  padding-left: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-menu-item path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-menu-item:last-child {
  border-bottom: none;
  padding-bottom: 6px;
}

.navigator-map-menu-item:hover svg, .navigator-map-menu-item:hover path {
  stroke: #231F20;
}

.navigator-map-menu-item-bg {
  padding: 10px;
  background: #F1F2F2;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 16px;
  color: #939598;
}

.navigator-map-menu-item-bg .navigator-map-menu-item-icon {
  width: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  padding-left: 3px;
}

.navigator-map-menu-item-bg .navigator-map-menu-item-icon img {
  max-width: 100%;
}

.navigator-map-menu-item-bg:hover {
  color: #231F20;
}

.navigator-map-menu-icon {
  width: 50px;
  height: 50px;
  padding: 18px 0;
  background: #FFFFFF;
  border-radius: 4px;
  position: relative;
}

.navigator-map-menu-icon span {
  width: 100%;
  height: 2px;
  background: #231F20;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 20px;
}

.navigator-map-menu-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}

.navigator-map-menu.open .navigator-map-menu-icon span {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 10px);
}

.navigator-map-menu.open .navigator-map-menu-icon span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navigator-map-menu.open .navigator-map-menu-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.navigator-map-menu.open .navigator-map-menu-icon span:nth-child(2) {
  width: 0;
  left: 50%;
}

.navigator-map-aside-header {
  padding: 30px 20px 0 20px;
  position: relative;
  z-index: 4;
  background: #fff;
}

.navigator-map-aside-logo {
  display: inline-block;
  margin-bottom: 30px;
  padding-left: 10px;
  padding-right: 10px;
}

.navigator-map-aside-logo img {
  max-width: 100%;
  max-height: 100%;
}

.navigator-map-aside-search {
  position: relative;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navigator-map-aside-new .navigator-map-aside-search {
  margin-bottom: 10px;
}

.navigator-map-aside-search-input {
  position: relative;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.navigator-map-aside-search-input input {
  padding: 22px 93px 22px 15px;
  font-size: 16px;
  line-height: 100%;
  color: #231F20;
  outline: none;
  border: none;
  width: 100%;
}

.navigator-map-aside-search-input input::-webkit-input-placeholder {
  color: #939598;
}

.navigator-map-aside-search-input input::-moz-placeholder {
  color: #939598;
}

.navigator-map-aside-search-input input:-ms-input-placeholder {
  color: #939598;
}

.navigator-map-aside-search-input input::-ms-input-placeholder {
  color: #939598;
}

.navigator-map-aside-search-input input::placeholder {
  color: #939598;
}

.navigator-map-linkcontainer:first-child .navigator-map-link:first-child {
  padding-top: 25px;
}

.navigator-map-linkcontainer:first-child .navigator-map-link:last-child {
  padding-bottom: 25px;
}

.navigator-map-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.navigator-map-link svg {
  fill: #E1E3E7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 1340px) {
  .navigator-map-link {
    padding: 15px;
  }
}

@media only screen and (max-width: 450px) {
  .navigator-map-link {
    padding: 15px 20px;
  }
}

.navigator-map-link:hover {
  background: #F7F7F8;
}

.navigator-map-link:hover .navigator-map-link-title {
  color: #E20338;
}

.navigator-map-link:hover svg {
  fill: #E20338;
}

.navigator-map-link-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #231F20;
  margin-bottom: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-link-text {
  font-size: 14px;
  line-height: 14px;
  color: #939598;
}

.navigator-map-back {
  font-size: 16px;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #E20338;
  padding-bottom: 25px;
  position: relative;
}

.navigator-map-back::before {
  position: absolute;
  left: -20px;
  right: -20px;
  bottom: 0;
  height: 1px;
  background: #E1E3E7;
  content: '';
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 1340px) {
  .navigator-map-back::before {
    left: -15px;
    right: -15px;
  }
}

@media only screen and (max-width: 450px) {
  .navigator-map-back::before {
    left: -20px;
    right: -20px;
  }
}

.navigator-map-back svg {
  margin-right: 5px;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-back:hover {
  color: #E20338;
}

.navigator-map-back:hover svg {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}

.navigator-map-aside-search-controls {
  top: 18px;
  right: 15px;
  position: absolute;
  overflow: hidden;
  width: 70px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.navigator-map-aside-search-controls svg {
  width: 24px;
  height: 24px;
}

.navigator-map-aside-search-close {
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid #E1E3E7;
  margin-right: -44px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.navigator-map-iconlink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  position: relative;
}

.navigator-map-iconlink::before {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: #D5DAE0;
  content: '';
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-iconlink:first-child::before {
  display: none;
}

.navigator-map-iconlink .navigator-map-iconlink-arrow svg {
  fill: #E1E3E7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-iconlink:hover {
  background: #F7F7F8;
}

.navigator-map-iconlink:hover::before {
  left: 0;
  right: 0;
}

.navigator-map-iconlink:hover + .navigator-map-iconlink::before {
  left: 0;
  right: 0;
}

.navigator-map-iconlink:hover .navigator-map-iconlink-arrow svg {
  fill: #E20338;
}

.navigator-map-iconlink:nth-child(10n) .navigator-map-iconlink-title {
  color: #618D9C;
}

.navigator-map-iconlink:nth-child(10n) .navigator-map-iconlink-icon svg {
  fill: #618D9C;
}

.navigator-map-iconlink:nth-child(10n + 1) .navigator-map-iconlink-title {
  color: #F15A63;
}

.navigator-map-iconlink:nth-child(10n + 1) .navigator-map-iconlink-icon svg {
  fill: #F15A63;
}

.navigator-map-iconlink:nth-child(10n + 2) .navigator-map-iconlink-title {
  color: #8080C0;
}

.navigator-map-iconlink:nth-child(10n + 2) .navigator-map-iconlink-icon svg {
  fill: #8080C0;
}

.navigator-map-iconlink:nth-child(10n + 3) .navigator-map-iconlink-title {
  color: #EF8834;
}

.navigator-map-iconlink:nth-child(10n + 3) .navigator-map-iconlink-icon svg {
  fill: #EF8834;
}

.navigator-map-iconlink:nth-child(10n + 4) .navigator-map-iconlink-title {
  color: #618D9C;
}

.navigator-map-iconlink:nth-child(10n + 4) .navigator-map-iconlink-icon svg {
  fill: #618D9C;
}

.navigator-map-iconlink:nth-child(10n + 5) .navigator-map-iconlink-title {
  color: #2ABB9C;
}

.navigator-map-iconlink:nth-child(10n + 5) .navigator-map-iconlink-icon svg {
  fill: #2ABB9C;
}

.navigator-map-iconlink:nth-child(10n + 6) .navigator-map-iconlink-title {
  color: #B01A1A;
}

.navigator-map-iconlink:nth-child(10n + 6) .navigator-map-iconlink-icon svg {
  fill: #B01A1A;
}

.navigator-map-iconlink:nth-child(10n + 7) .navigator-map-iconlink-title {
  color: #FF8040;
}

.navigator-map-iconlink:nth-child(10n + 7) .navigator-map-iconlink-icon svg {
  fill: #FF8040;
}

.navigator-map-iconlink:nth-child(10n + 8) .navigator-map-iconlink-title {
  color: #800040;
}

.navigator-map-iconlink:nth-child(10n + 8) .navigator-map-iconlink-icon svg {
  fill: #800040;
}

.navigator-map-iconlink:nth-child(10n + 9) .navigator-map-iconlink-title {
  color: #FF8040;
}

.navigator-map-iconlink:nth-child(10n + 9) .navigator-map-iconlink-icon svg {
  fill: #FF8040;
}

.navigator-map-iconlink-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navigator-map-iconlink-icon svg {
  max-width: 100%;
  max-height: 100%;
}

.navigator-map-iconlink-text {
  font-size: 14px;
  line-height: 18px;
  color: #231F20;
}

.navigator-map-iconlink-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 6px;
}

.navigator-map-iconlink-arrow {
  width: 24px;
  height: 24px;
  margin-left: auto;
}

.navigator-map-iconlink-arrow svg {
  max-height: 100%;
  max-width: 100%;
}

.navigator-map-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.navigator-map-zoom {
  border-radius: 8px;
  background: #fff;
}

.navigator-map-zoom-in, .navigator-map-zoom-out {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.navigator-map-aside-search-input.fill-text .navigator-map-aside-search-close {
  margin-right: 0;
}

.navigator-map-aside-search-input.fill-text ~ .navigator-map-aside-search-results {
  display: block;
}

.navigator-map-aside-arrow {
  padding: 12px 9px;
  background: #0160E4;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0px 4px 4px 0px;
  position: absolute;
  top: 20px;
  left: 100%;
  display: none;
}

.navigator-map-aside-arrow svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: #fff;
}

.navigator-map-aside-arrow path {
  fill: #fff;
}

.inclusion-containner {
  padding: 15px 20px;
}

@media only screen and (max-width: 1340px) {
  .inclusion-containner {
    padding: 15px;
  }
}

@media only screen and (max-width: 1340px) {
  .inclusion-containner {
    padding: 15px 20px;
  }
}

.navigator-map-linkcontainer-border {
  position: relative;
}

.navigator-map-linkcontainer-border .inclusion-containner:first-child {
  padding-top: 25px;
  position: relative;
}

@media only screen and (max-width: 450px) {
  .navigator-map-linkcontainer-border .inclusion-containner:first-child {
    padding-top: 15px;
  }
}

.navigator-map-linkcontainer-border .inclusion-containner:first-child::before {
  position: absolute;
  content: '';
  left: 20px;
  right: 20px;
  height: 1px;
  background: #E1E3E7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 0;
}

@media only screen and (max-width: 1340px) {
  .navigator-map-linkcontainer-border .inclusion-containner:first-child::before {
    left: 15px;
    right: 15px;
  }
}

@media only screen and (max-width: 450px) {
  .navigator-map-linkcontainer-border .inclusion-containner:first-child::before {
    left: 20px;
    right: 20px;
  }
}

.navigator-map-linkcontainer-border .navigator-map-link:first-child {
  padding-top: 25px;
}

@media only screen and (max-width: 450px) {
  .navigator-map-linkcontainer-border .navigator-map-link:first-child {
    padding-top: 15px;
  }
}

.navigator-map-linkcontainer-border .navigator-map-link:first-child:hover::before {
  left: 0;
  right: 0;
}

.navigator-map-linkcontainer-border .navigator-map-link:first-child::before {
  position: absolute;
  content: '';
  left: 20px;
  right: 20px;
  height: 1px;
  background: #E1E3E7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 0;
}

@media only screen and (max-width: 1340px) {
  .navigator-map-linkcontainer-border .navigator-map-link:first-child::before {
    left: 15px;
    right: 15px;
  }
}

@media only screen and (max-width: 450px) {
  .navigator-map-linkcontainer-border .navigator-map-link:first-child::before {
    left: 20px;
    right: 20px;
  }
}

.navigator-map-aside-buttons {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 20px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: auto;
}

.navigator-map-aside-button-reset {
  width: calc(50% - 8px);
  border: 1px solid #ECEEEF;
  border-radius: 4px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #939598;
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-aside-button-reset.active {
  pointer-events: auto;
  border-color: #E20338;
  color: #E20338;
}

.navigator-map-aside-button-reset.active:hover {
  background: #E20338;
  color: #fff;
}

.navigator-map-aside-button-red {
  width: calc(50% - 8px);
  background: #E20338;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.navigator-map-aside-button-red svg {
  margin-right: 8px;
}

.navigator-map-current-services {
  padding: 25px 20px;
  margin-bottom: 15px;
}

.navigator-map-current-services-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #231F20;
  margin-bottom: 10px;
}

.navigator-map-current-services-title:only-child {
  margin-bottom: 0;
}

.navigator-map-current-services-text {
  font-size: 14px;
  line-height: 18px;
  color: #939598;
}

@media only screen and (max-width: 1500px) {
  .navigator-map-current-services {
    padding: 20px;
    margin-bottom: 10px;
  }
  .navigator-map-current-services-title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 6px;
  }
  .navigator-map-current-services-text {
    font-size: 13px;
    line-height: 15px;
  }
}

@media only screen and (max-width: 1340px) {
  .navigator-map-current-services {
    padding: 20px 15px 20px 15px;
  }
}

@media only screen and (max-width: 450px) {
  .navigator-map-current-services {
    padding: 20px 20px 15px 20px;
    margin-bottom: 0;
  }
}

.inclusion-dropdown-reset {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.active-filter .inclusion-dropdown-status {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.active-filter .inclusion-dropdown-reset {
  opacity: 1;
  pointer-events: auto;
}

.navigator-map-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 25px;
  top: 25px;
}

@media only screen and (max-width: 1500px) {
  .navigator-map-filter {
    left: 20px;
    top: 20px;
  }
}

@media only screen and (max-width: 1340px) {
  .navigator-map-filter {
    left: 44px;
  }
  .navigator-map-filter .navigator-map-filter-dropdown:not(.navigator-map-filter-inclusion) {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .navigator-map-filter .navigator-map-filter-dropdown.navigator-map-filter-inclusion {
    display: none;
  }
}

.navigator-map-filter-button {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
  position: relative;
}

@media only screen and (max-width: 1500px) {
  .navigator-map-filter-button {
    width: 44px;
    height: 44px;
  }
}

.navigator-map-filter-button svg {
  fill: #231F20;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-filter-button.active {
  background: #E20338;
}

.navigator-map-filter-button.active svg {
  fill: #fff;
}

.navigator-map-filter-button.active ~ * {
  pointer-events: none;
  color: rgba(35, 31, 32, 0.4);
}

.navigator-map-filter-button.active ~ * .navigator-map-filter-dropdown-button {
  color: rgba(35, 31, 32, 0.4) !important;
  background: #fff !important;
}

.navigator-map-filter-button.active ~ * .navigator-map-filter-dropdown-button svg {
  fill: #939598 !important;
}

.navigator-map-filter-button.active ~ * .navigator-map-filter-dropdown-button-icon {
  opacity: 0.4;
}

.navigator-map-filter-button.active ~ * > span {
  background: #fff !important;
  color: rgba(35, 31, 32, 0.4) !important;
}

.navigator-map-filter-button:hover {
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.filter-active.navigator-map-filter-button .navigator-map-filter-button-icon {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.active.filter-active.navigator-map-filter-button .navigator-map-filter-button-icon {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.navigator-map-filter-button .navigator-map-filter-button-icon {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0);
          transform: scale(0);
  position: absolute;
  width: 10px;
  height: 10px;
  background: #E20338;
  border: 2px solid #fff;
  border-radius: 50%;
  right: 9px;
  top: 9px;
}

.navigator-map-filter-checkbox .jq-checkbox.checked + span {
  background: #E20338;
  color: #fff;
}

.navigator-map-filter-checkbox .jq-checkbox {
  display: none;
}

.navigator-map-filter-checkbox {
  font-size: 16px;
  line-height: 22px;
  color: #231F20;
  cursor: pointer;
}

.navigator-map-filter-checkbox > span {
  padding: 0 20px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  margin-right: 10px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  font-weight: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 1500px) {
  .navigator-map-filter-checkbox > span {
    height: 44px;
    line-height: 44px;
    font-size: 15px;
  }
}

.navigator-map-filter-checkbox:hover span {
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 1500px) {
  .navigator-map-filter-checkbox {
    font-size: 13px;
  }
}

@media only screen and (max-width: 720px) {
  .navigator-map-filter > .navigator-map-filter-checkbox {
    display: none;
  }
}

.navigator-map-filter-dropdown.filter-on .navigator-map-filter-dropdown-button {
  color: #FFFFFF;
  background: #E20338;
}

.navigator-map-filter-dropdown.filter-on .navigator-map-filter-dropdown-button svg {
  fill: #ffffff;
}

.navigator-map-aside-filter-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #231F20;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 1500px) {
  .navigator-map-aside-filter-title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
}

.navigator-map-aside-filter-title .navigator-map-aside-filter-title-close {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.navigator-map-aside-filter-section {
  padding: 15px 20px;
  border-bottom: 1px solid #E1E3E7;
}

.navigator-map-aside-filter-section .navigator-map-filter-checkbox {
  font-weight: normal;
}

.navigator-map-aside-filter-section .navigator-map-filter-checkbox .jq-checkbox {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.navigator-map-aside-filter-section .navigator-map-filter-checkbox {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navigator-map-aside-filter-section .navigator-map-filter-checkbox-more, .navigator-map-aside-filter-section .organization-select2-container-more, .navigator-map-aside-filter-section .organization-select2-container-hide {
  padding-top: 5px;
  font-size: 14px;
  line-height: 18px;
  color: #E20338;
}

.navigator-map-aside-filter-section:last-child {
  border-bottom: none;
}

@media only screen and (max-width: 1340px) {
  .navigator-map-aside-filter-section {
    padding: 15px;
  }
}

@media only screen and (max-width: 450px) {
  .navigator-map-aside-filter-section {
    padding: 15px 20px;
  }
}

.navigator-map-aside-filter-checkboxstext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.navigator-map-aside-filter-checkboxstext .navigator-map-filter-checkbox {
  margin-right: 8px;
  font-weight: normal;
}

.navigator-map-aside-filter-checkboxstext .navigator-map-filter-checkbox .jq-checkbox {
  display: none;
}

.navigator-map-aside-filter-checkboxstext .navigator-map-filter-checkbox .jq-checkbox.checked + span {
  background: #E20338;
  color: #fff;
}

.navigator-map-aside-filter-checkboxstext .navigator-map-filter-checkbox > span {
  padding: 6px 9px;
  display: inline-block;
  background: #F1F2F2;
  border-radius: 2px;
  font-size: 14px;
  line-height: 17px;
  font-weight: normal;
  color: #231F20;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: auto;
  min-height: 0px;
  overflow: hidden;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navigator-map-filter-dropdown.open .navigator-map-filter-dropdown-button > svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.navigator-map-filter-dropdown {
  margin-right: 10px;
}

.navigator-map-filter-dropdown .navigator-map-filter-dropdown-button svg {
  fill: #939598;
}

.navigator-map-filter-dropdown-button-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  margin-left: -15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-filter-dropdown-button-icon svg {
  max-width: 100%;
  max-height: 100%;
}

.navigator-map-filter-dropdown-button {
  font-size: 16px;
  line-height: 50px;
  padding: 0 20px;
  color: #231F20;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

@media only screen and (max-width: 1500px) {
  .navigator-map-filter-dropdown-button {
    height: 44px;
    line-height: 44px;
    font-size: 15px;
  }
}

.navigator-map-filter-dropdown-button > svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: 8px;
}

.navigator-map-filter-dropdown-button:hover {
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.navigator-map-filter-dropdown-item {
  padding: 15px;
  border-bottom: 1px solid #D5DAE0;
}

.navigator-map-filter-dropdown-item:last-child {
  border-bottom: none;
}

.navigator-map-filter-dropdown-container {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 236px;
  background: #FFFFFF;
  -webkit-box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  display: none;
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  /* ползунок скроллбара */
}

.navigator-map-filter-dropdown-container::-webkit-scrollbar {
  width: 4px;
  /* ширина для вертикального скролла */
  height: 6px;
  /* высота для горизонтального скролла */
  background-color: #fff;
}

.navigator-map-filter-dropdown-container .navigator-map-filter-categories-dropdowns label {
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navigator-map-filter-dropdown-container .navigator-map-filter-categories-dropdowns .jq-checkbox {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.navigator-map-filter-dropdown-container::-webkit-scrollbar-thumb {
  background-color: #C7D0D0;
  border-radius: 9em;
}

.navigator-map-filter-dropdown-container .navigator-map-filter-dropdown-item {
  width: 236px;
}

.navigator-map-filter-dropdown {
  position: relative;
}

.navigator-map-filter-dropdown-item .jq-checkbox {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.navigator-map-filter-dropdown-item .navigator-map-filter-checkbox {
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  color: #231F20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.organization-select2-container-more, .organization-select2-container-hide {
  margin-top: 10px;
}

.navigator-map-aside-filter-title-close {
  display: none;
  cursor: pointer;
}

.navigator-map-filter-checkbox-more, .organization-select2-container-more, .organization-select2-container-hide {
  display: none;
  cursor: pointer;
}

.navigator-map-aside-filter-checkboxstext .navigator-map-filter-checkbox {
  margin-bottom: 0;
}

.navigator-map-aside-filter-checkboxstext .navigator-map-filter-checkbox > span {
  margin-right: 0;
}

.organization-item-link-text {
  font-size: 14px;
  line-height: 18px;
  color: #939598;
}

.organization-item-link-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #231F20;
  margin-bottom: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.organization-item-link {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #F1F2F2;
  border-radius: 4px;
  width: 100%;
}

.organization-item-link svg {
  fill: #E1E3E7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.organization-item-link:hover .organization-item-link-title {
  color: #E20338;
}

.organization-item-link:hover svg {
  fill: #E20338;
}

.form-group .form-group-search-icon {
  position: absolute;
  bottom: 13px;
  right: 20px;
  background: #fff;
}

.btn-back-button {
  margin-left: 0 !important;
  width: 300px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-back-button .icon-left-arrow {
  margin-right: 12px;
}

.map-icon-balon {
  padding: 8px 8px 8px 28px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  max-width: 200px;
}

.navigator-map .popover-round {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.navigator-map .popover-round div {
  width: 36px;
  height: 36px;
  border: 6px solid transparent;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.mymap-ballon {
  position: absolute;
}

.navigator-map .popover-content-text {
  padding: 0px 20px 0px 28px;
  font-size: 14px;
  line-height: 16px;
  color: #231F20;
  margin-left: 20px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.navigator-map .popover-content-text span {
  width: 100%;
  display: inline-block;
  padding: 8px 0;
}

.navigator-map .popover-content-text span:nth-child(n + 2) {
  border-top: 1px solid #E1E3E7;
}

.navigator-map .popover-content {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navigator-map .popover {
  padding: 0;
  border: none !important;
  background: transparent;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.navigator-organization-info-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #231F20;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1500px) {
  .navigator-organization-info-name {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 6px;
  }
}

.navigator-organization-info-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 18px;
  color: #939598;
  margin-bottom: 18px;
}

@media only screen and (max-width: 1500px) {
  .navigator-organization-info-location {
    font-size: 13px;
  }
}

.navigator-organization-info-location svg {
  margin-right: 8px;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.navigator-organization-info-button {
  padding: 16px;
  border: 1px solid #E20338;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #E20338;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 1500px) {
  .navigator-organization-info-button {
    padding: 10px;
    font-size: 15px;
  }
}

.navigator-organization-info-button svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 6px;
  fill: #E20338;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-organization-info-button:hover {
  color: #fff;
  background: #E20338;
}

.navigator-organization-info-button:hover svg {
  fill: #fff;
}

.navigator-organization-block {
  border-top: 1px solid #E1E3E7;
  padding: 20px;
}

@media only screen and (max-width: 1340px) {
  .navigator-organization-block {
    padding: 15px;
  }
}

@media only screen and (max-width: 450px) {
  .navigator-organization-block {
    padding: 20px;
  }
}

.navigator-organization-block-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}

.navigator-inclusion-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.navigator-inclusion-item:last-child {
  margin-bottom: 0;
}

.navigator-inclusion-item-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 14px;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navigator-inclusion-item-icon img {
  max-width: 100%;
  max-height: 100%;
}

.navigator-inclusion-item-text {
  font-size: 14px;
  line-height: 130%;
  color: #231F20;
}

.navigator-organization-block-head-title {
  font-size: 14px;
  line-height: 18px;
  color: #939598;
}

.navigator-organization-block-head-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.navigator-organization-block-head-icon svg {
  max-width: 100%;
  max-height: 100%;
}

.navigator-tel-link {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #231F20;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-tel-link:hover {
  color: #000;
}

.navigator-organization-block-body {
  font-size: 14px;
  line-height: 18px;
  color: #231F20;
}

.navigator-organization-block-body p {
  margin-bottom: 15px;
}

.navigator-organization-block-body p:last-child {
  margin-bottom: 0;
}

.navigator-organization-block-body:not(:last-child) {
  margin-bottom: 22px;
}

.navigator-organization-block-contacts .navigator-organization-block-head {
  margin-bottom: 5px;
}

.navigator-link {
  font-size: 14px;
  line-height: 18px;
  color: #E20338;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: keep-all;
  line-break: auto;
  -webkit-hyphens: manual;
      -ms-hyphens: manual;
          hyphens: manual;
  border-bottom: 1px solid transparent;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-link:hover {
  color: #E20338;
  border-bottom: 1px solid #E20338;
}

.navigator-dropdown-time-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 14px;
  color: #939598;
  margin-bottom: 12px;
}

.navigator-dropdown-time-item:first-child {
  padding-top: 10px;
  border-top: 1px solid #E1E3E7;
}

.navigator-dropdown-time-item:last-child {
  margin-bottom: 0;
}

.navigator-dropdown-time-container {
  display: none;
}

.navigator-organization-block-body {
  padding-left: 28px;
}

.navigator-dropdown-time-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  padding-bottom: 20px;
}

.navigator-dropdown-time-button:hover .navigator-dropdown-time-arrow {
  color: #E20338;
}

.navigator-dropdown-time-button:hover .navigator-dropdown-time-arrow svg {
  fill: #E20338;
}

.navigator-dropdown-time-current p {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #231F20;
  margin-bottom: 2px;
}

.navigator-dropdown-time-current span {
  font-size: 12px;
  line-height: 14px;
  color: #939598;
}

.navigator-dropdown-time-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 14px;
  line-height: 18px;
  color: #939598;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-dropdown-time-arrow svg {
  margin-left: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: #939598;
}

.navigator-dropdown-time.open .navigator-dropdown-time-arrow svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.navigator-organization-info:not(:first-child) {
  border-top: 1px solid #E1E3E7;
}

.navigator-organization-block:first-child {
  border-top: none;
}

.navigator-organization-block-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #231F20;
}

.navigator-organization-block-head-arrow {
  margin-left: auto;
}

.navigator-organization-body-services-item {
  font-size: 14px;
  line-height: 130%;
  color: #231F20;
  margin-bottom: 10px;
}

.navigator-organization-body-services-item:last-child {
  margin-bottom: 0;
}

.navigator-organization-block-head-arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-organization-block-head-dropdown-btn {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.navigator-map-tabcontainer-tag {
  font-size: 16px;
  line-height: 18px;
  color: #939598;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  margin-top: 5px;
}

.navigator-map-tabcontainer-tag svg {
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.navigator-organization-block-head.closed {
  margin-bottom: 0;
}

.navigator-organization-block-head.closed .navigator-organization-block-head-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.navigator-organization-info-img {
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
  margin-bottom: 20px;
}

@media only screen and (max-width: 1340px) {
  .navigator-organization-info-img {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
}

@media only screen and (max-width: 450px) {
  .navigator-organization-info-img {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
}

.navigator-organization-info-img img {
  width: 100%;
}

.navigator-organization-info {
  padding: 20px 20px 25px 20px;
}

@media only screen and (max-width: 1340px) {
  .navigator-organization-info {
    padding: 15px;
  }
}

@media only screen and (max-width: 450px) {
  .navigator-organization-info {
    padding: 20px;
  }
}

.navigator-map-aside-filter-section-inclusion .navigator-map-filter-checkbox {
  margin-bottom: 17px;
  padding-bottom: 17px;
  border-bottom: 1px solid #D5DAE0;
}

.navigator-map-filter-checkboxs-dropdown-head {
  margin-bottom: 17px;
  padding-bottom: 17px;
  width: 100%;
  border-bottom: 1px solid #D5DAE0;
}

.navigator-map-filter-checkboxs-dropdown-container {
  padding-left: 16px;
}

.navigator-map-filter-checkboxs-dropdown-container > .navigator-map-filter-checkbox {
  margin-bottom: 17px;
  padding-bottom: 17px;
  width: 100%;
  border-bottom: 1px solid #D5DAE0;
}

.navigator-map-filter-checkboxs-dropdown-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navigator-map-filter-checkboxs-dropdown-head .navigator-map-filter-checkbox {
  margin-bottom: 0;
}

.navigator-map-filter-checkboxs-dropdown-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-filter-checkboxs-dropdown.open > .navigator-map-filter-checkboxs-dropdown-head .navigator-map-filter-checkboxs-dropdown-button {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.navigator-map-filter-categories-dropdowns {
  padding: 15px 15px 0 15px;
  width: 412px;
}

.navigator-map-filter-dropdown-more {
  font-size: 14px;
  line-height: 18px;
  color: #E20338;
  display: inline-block;
  width: 100%;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-filter-dropdown-more:hover {
  background: #F7F7F8;
}

.navigator-map-back-link {
  padding: 15px;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  margin-top: auto;
}

.navigator-map-back-link a {
  padding: 12px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  color: #939598;
  border: 1px solid #E1E3E7;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-back-link a:hover {
  border-color: #231F20;
  color: #231F20;
}

.navigator-map-filter-dropdown-container .navigator-map-filter-dropdown-item.navigator-map-filter-dropdown-more {
  width: 100%;
}

.navigator-map-aside-filter-checkboxs .navigator-map-filter-checkbox, .navigator-map-filter-dropdown-container .navigator-map-filter-checkbox {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-aside-filter-checkboxs .navigator-map-filter-checkbox:hover, .navigator-map-filter-dropdown-container .navigator-map-filter-checkbox:hover {
  color: #E20338;
}

.navigator-map-filter-checkbox .organization-color {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 4px;
  margin-top: 6px;
  padding: 0;
}

.navigator-map-aside-filter-checkboxs {
  position: relative;
}

.navigator-map-organizations-block {
  padding: 20px 15px 0 15px;
  width: 400px;
}

.navigator-map-organizations-block label {
  font-weight: normal;
}

.navigator-map-organizations-block .jq-checkbox {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.navigator-map-organizations-block .navigator-map-filter-checkbox {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navigator-map-organizations-block .organization-color {
  margin-top: 0;
}

body .organization-select2-container .select2-container.select2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

body .organization-select2-container .select2-container.select2 + .select2-container {
  position: static !important;
  width: 100%;
}

body .organization-select2-container .select2-container--default .select2-results__option--selected {
  display: none;
}

body .organization-select2-container .select2-results__option--selectable {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #D5DAE0;
  background: transparent;
  font-size: 14px;
}

body .organization-select2-container .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: transparent;
  color: #E20338;
}

body .organization-select2-container .select2-container--default .select2-search--inline {
  position: relative;
}

body .organization-select2-container .select2-container--default .select2-search--inline::before {
  content: '';
  position: absolute;
  right: 40px;
  top: 11px;
  width: 24px;
  height: 24px;
  background-image: url("./../img/general/select2-search.svg");
}

body .organization-select2-container .select2-container--default .select2-search--inline .select2-search__field {
  height: 50px;
  line-height: 16px;
  padding: 17px 45px;
  width: 100% !important;
  margin: 0;
  font-size: 16px;
  color: #231F20;
  display: block;
  background: #FFFFFF;
  border: 1px solid #D5DAE0;
  border-radius: 5px;
}

@media only screen and (max-width: 480px) {
  body .organization-select2-container .select2-container--default .select2-search--inline .select2-search__field {
    height: 44px;
    padding: 13px 45px 13px 13px;
    -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
  }
}

body .organization-select2-container .select2-search-close-button {
  position: absolute;
  right: 64px;
  top: 15px;
  cursor: pointer;
  border-radius: 3px;
  background: #C4C4C4;
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .organization-select2-container .select2-search-close-button svg {
  width: 90%;
  height: 90%;
}

body .organization-select2-container .select2-search-close-button svg path {
  fill: #fff !important;
}

body .organization-select2-container .select2-container--default .select2-results > .select2-results__options {
  max-height: none;
  /* ползунок скроллбара */
}

body .organization-select2-container .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 4px;
  /* ширина для вертикального скролла */
  height: 6px;
  /* высота для горизонтального скролла */
  background-color: #fff;
}

body .organization-select2-container .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  background-color: #C7D0D0;
  border-radius: 9em;
}

body .organization-select2-container .select2-results__option.select2-results__message {
  display: none;
}

body .organization-select2-container .selectDropdownStatic {
  position: static;
  border: none;
  width: 100% !important;
}

body .organization-select2-container .select2-container--default .select2-selection--multiple {
  border: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

body .organization-select2-container .select2-container--default .select2-selection--multiple:focus {
  border: none;
  padding: 0;
}

body .organization-select2-container .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  right: 6px;
  left: auto;
  padding: 0;
  width: 16px;
  height: 16px;
  border: none;
  top: 5px;
  border-radius: 50%;
  background: #939598;
  color: #fff;
  font-size: 17px;
  line-height: 17px;
  font-weight: 100;
  cursor: pointer;
}

body .organization-select2-container .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  border: none;
  background: #939598;
  color: #fff;
}

body .organization-select2-container .select2-container--default .select2-selection--multiple .select2-selection__choice {
  padding: 5px 20px 5px 10px;
  font-size: 13px;
  line-height: 18px;
  color: #231F20;
  border-radius: 4px;
  background: rgba(225, 227, 231, 0.5);
  border: none;
  margin: 4px 0 0 0;
  width: 100%;
}

.navigator-map-back + .aside-mobile-filter {
  margin-top: 15px;
}

.navigator-map-aside-filter-checkboxs .organization-select2-container {
  margin-top: 15px;
}

.navigator-map-aside-search-input {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-aside-search-input {
  width: 100%;
  margin-left: auto;
}

.navigator-map-aside-search-default-hidden {
  height: 64px;
}

.navigator-map-aside-search-default-hidden .navigator-map-aside-search-input {
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
  height: 64px;
  cursor: pointer;
}

.navigator-map-aside-search-default-hidden .navigator-map-aside-search-input input {
  color: transparent;
  padding: 0;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

.navigator-map-aside-search-default-hidden .navigator-map-aside-search-input input::-webkit-input-placeholder {
  color: transparent;
}

.navigator-map-aside-search-default-hidden .navigator-map-aside-search-input input::-moz-placeholder {
  color: transparent;
}

.navigator-map-aside-search-default-hidden .navigator-map-aside-search-input input:-ms-input-placeholder {
  color: transparent;
}

.navigator-map-aside-search-default-hidden .navigator-map-aside-search-input input::-ms-input-placeholder {
  color: transparent;
}

.navigator-map-aside-search-default-hidden .navigator-map-aside-search-input input::placeholder {
  color: transparent;
}

.navigator-map-aside-search-default-hidden .navigator-map-aside-search-controls {
  right: 20px;
}

.navigator-map-aside-search-default-hidden .navigator-map-aside-search-icon svg {
  width: 24px;
  height: 24px;
}

.navigator-map-aside-search-default-hidden .navigator-map-aside-search-close {
  display: none;
}

.navigator-map-aside-search-default-hidden + .navigator-map-back {
  padding-bottom: 50px;
  margin-top: -75px;
  width: calc(100% - 75px);
}

.navigator-map-aside-search-default-hidden + .navigator-map-back::before {
  left: 0;
  height: 2px;
  right: -75px;
}

@media only screen and (max-width: 1340px) {
  .navigator-map-aside-search-default-hidden {
    height: 55px;
  }
  .navigator-map-aside-search-default-hidden .navigator-map-aside-search-input {
    width: 55px;
    height: 55px;
  }
  .navigator-map-aside-search-default-hidden .navigator-map-aside-search-controls {
    right: 16px;
  }
  .navigator-map-aside-search-default-hidden + .navigator-map-back {
    padding-bottom: 36px;
    margin-top: -68px;
  }
}

.result-services-info-title {
  font-size: 15px;
  line-height: 18px;
  color: #231F20;
  margin-bottom: 5px;
}

.result-services-info-text {
  font-size: 12px;
  line-height: 16px;
  color: #939598;
  margin-bottom: 5px;
  padding-right: 20px;
}

.result-organization-info-title {
  font-size: 16px;
  line-height: 20px;
  color: #231F20;
  margin-bottom: 8px;
}

.result-organization-info-text {
  font-size: 14px;
  line-height: 14px;
  color: #939598;
}

.result-services-info-count {
  font-size: 13px;
  line-height: 13px;
  color: #E20338;
}

.result-line-category {
  padding: 0 15px;
  position: relative;
  margin-top: 18px;
  margin-bottom: 9px;
}

.result-line-category::before {
  position: absolute;
  right: 15px;
  left: 15px;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #E1E3E7;
  content: '';
}

.result-line-category span {
  display: inline-block;
  background: #fff;
  position: relative;
  z-index: 2;
  padding-right: 20px;
  font-size: 11px;
  line-height: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #939598;
  font-weight: 600;
}

.navigator-map-aside-search-result-organization {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 15px;
}

.navigator-map-aside-search-result-organization:first-child {
  padding-top: 18px;
}

.navigator-map-aside-search-result-organization:last-child {
  padding-bottom: 18px;
}

.navigator-map-aside-search-result-organization .navigator-map-iconlink-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.navigator-map-aside-search-result-organization .navigator-map-iconlink-arrow svg {
  fill: #E1E3E7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-aside-search-result-organization:hover .navigator-map-iconlink-arrow svg {
  fill: #231F20;
}

.navigator-map-aside-search-result-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 15px;
}

.navigator-map-aside-search-result-services:first-child {
  padding-top: 18px;
}

.navigator-map-aside-search-result-services:last-child {
  padding-bottom: 18px;
}

.navigator-map-aside-search-result-services .navigator-map-iconlink-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.navigator-map-aside-search-result-services .navigator-map-iconlink-arrow svg {
  fill: #E1E3E7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-aside-search-result-services:hover .navigator-map-iconlink-arrow svg {
  fill: #231F20;
}

.navigator-map-aside-search-result-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 15px;
}

.navigator-map-aside-search-result-category:first-child {
  padding-top: 18px;
}

.navigator-map-aside-search-result-category:last-child {
  padding-bottom: 18px;
}

.navigator-map-aside-search-result-category .navigator-map-iconlink-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.navigator-map-aside-search-result-category .navigator-map-iconlink-arrow svg {
  fill: #E1E3E7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-aside-search-result-category:hover .navigator-map-iconlink-arrow svg {
  fill: #231F20;
}

.navigator-map-aside-search-result-category:nth-child(10n) .navigator-map-iconlink-title {
  color: #618D9C;
}

.navigator-map-aside-search-result-category:nth-child(10n) .navigator-map-iconlink-icon svg {
  fill: #618D9C;
}

.navigator-map-aside-search-result-category:nth-child(10n + 1) .navigator-map-iconlink-title {
  color: #F15A63;
}

.navigator-map-aside-search-result-category:nth-child(10n + 1) .navigator-map-iconlink-icon svg {
  fill: #F15A63;
}

.navigator-map-aside-search-result-category:nth-child(10n + 2) .navigator-map-iconlink-title {
  color: #800040;
}

.navigator-map-aside-search-result-category:nth-child(10n + 2) .navigator-map-iconlink-icon svg {
  fill: #800040;
}

.navigator-map-aside-search-result-category:nth-child(10n + 3) .navigator-map-iconlink-title {
  color: #EF8834;
}

.navigator-map-aside-search-result-category:nth-child(10n + 3) .navigator-map-iconlink-icon svg {
  fill: #EF8834;
}

.navigator-map-aside-search-result-category:nth-child(10n + 4) .navigator-map-iconlink-title {
  color: #618D9C;
}

.navigator-map-aside-search-result-category:nth-child(10n + 4) .navigator-map-iconlink-icon svg {
  fill: #618D9C;
}

.navigator-map-aside-search-result-category:nth-child(10n + 5) .navigator-map-iconlink-title {
  color: #2ABB9C;
}

.navigator-map-aside-search-result-category:nth-child(10n + 5) .navigator-map-iconlink-icon svg {
  fill: #2ABB9C;
}

.navigator-map-aside-search-result-category:nth-child(10n + 6) .navigator-map-iconlink-title {
  color: #B01A1A;
}

.navigator-map-aside-search-result-category:nth-child(10n + 6) .navigator-map-iconlink-icon svg {
  fill: #B01A1A;
}

.navigator-map-aside-search-result-category:nth-child(10n + 7) .navigator-map-iconlink-title {
  color: #FF8040;
}

.navigator-map-aside-search-result-category:nth-child(10n + 7) .navigator-map-iconlink-icon svg {
  fill: #FF8040;
}

.navigator-map-aside-search-result-category:nth-child(10n + 8) .navigator-map-iconlink-title {
  color: #800040;
}

.navigator-map-aside-search-result-category:nth-child(10n + 8) .navigator-map-iconlink-icon svg {
  fill: #800040;
}

.navigator-map-aside-search-result-category:nth-child(10n + 9) .navigator-map-iconlink-title {
  color: #FF8040;
}

.navigator-map-aside-search-result-category:nth-child(10n + 9) .navigator-map-iconlink-icon svg {
  fill: #FF8040;
}

@media only screen and (max-width: 1500px) {
  .navigator-map-filter-checkboxs-dropdown-container {
    padding-left: 10px;
  }
  .navigator-map-filter-checkboxs-dropdown-container > .navigator-map-filter-checkbox {
    margin-bottom: 11px;
    padding-bottom: 11px;
  }
  .navigator-map-filter-checkboxs-dropdown-head {
    margin-bottom: 11px;
    padding-bottom: 11px;
  }
  .navigator-map-menu {
    top: 20px;
    right: 20px;
  }
  .navigator-map-filter-dropdown, .navigator-map-filter-checkbox > span {
    margin-right: 8px;
  }
  .navigator-map-filter-dropdown-button-icon {
    margin-left: -5px;
  }
  .navigator-map-filter-dropdown-button {
    padding: 0 12px;
  }
  .navigator-map-filter-checkbox > span {
    padding: 0 12px;
  }
  .navigator-map-menu-icon {
    width: 44px;
    height: 44px;
    padding: 15px 0;
  }
  .navigator-map-zoom-in, .navigator-map-zoom-out, .navigator-map-location {
    width: 30px;
    height: 30px;
  }
  .navigator-map-zoom-in svg, .navigator-map-zoom-out svg, .navigator-map-location svg {
    width: 18px;
    height: 18px;
  }
  .navigator-map-info-item {
    padding: 8px;
    font-size: 12px;
    line-height: 14px;
  }
  .navigator-map-black-button {
    font-size: 15px;
    line-height: 19px;
    padding: 10px;
    cursor: pointer;
  }
  .navigator-map-controls {
    bottom: 75px;
  }
  .navigator-map-aside {
    width: 350px;
  }
  .navigator-map-iconlink-text {
    font-size: 13px;
    line-height: 17px;
  }
  .navigator-map-iconlink-title {
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 20px;
  }
  .navigator-map-aside-filter-checkboxstext .navigator-map-filter-checkbox > span {
    font-size: 12px;
    line-height: 17px;
  }
}

@media only screen and (max-width: 1340px) {
  .navigator-map-iconlink-icon {
    width: 30px;
    height: 30px;
    margin-right: 12px;
  }
  .navigator-map-aside-header {
    padding: 20px 15px 0 15px;
  }
  .navigator-map-iconlink {
    padding: 18px 15px;
  }
  .navigator-map-iconlink::before {
    left: 15px;
    right: 15px;
  }
  .navigator-map-black-button-text {
    display: none;
  }
  .navigator-map-aside {
    width: 300px;
  }
  .navigator-map-black-button-icon {
    margin-right: 0;
  }
  .navigator-map-aside-search-input input {
    padding: 17px 80px 18px 15px;
  }
  .navigator-map-aside-search-controls svg {
    width: 20px;
    height: 20px;
  }
  .navigator-map-aside-search-controls {
    height: 20px;
  }
  .navigator-map-aside-search-controls {
    top: 15px;
    right: 15px;
  }
  .navigator-map-info {
    max-width: calc(100% - 100px);
  }
  .navigator-map-info {
    padding: 0 4px;
    bottom: 20px;
    right: 20px;
  }
  .navigator-map-black-button {
    left: 20px;
    bottom: 20px;
  }
  .navigator-map-controls {
    right: 20px;
  }
  .navigator-map-info-item {
    padding: 8px 4px;
  }
  .navigator-map-info-item-icon {
    margin-right: 6px;
  }
  .navigator-map-aside-arrow {
    display: block;
    z-index: 1;
    cursor: pointer;
  }
  .navigator-map-aside-arrow svg {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .navigator-map-aside {
    margin-left: -300px;
  }
  .navigator-map-aside .navigator-map-aside-arrow svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .navigator-map-aside.open {
    margin-left: 0;
  }
  .navigator-map-aside.open .navigator-map-aside-arrow svg {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .navigator-map-iconlink-text {
    font-size: 12px;
    line-height: 14px;
  }
  .navigator-map-iconlink-title {
    font-size: 14px;
    line-height: 18px;
  }
}

@media only screen and (max-width: 1020px) {
  .navigator-map-info {
    display: none;
  }
  .navigator-map-controls {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.navigator-map-aside-filter-buttons .navigator-map-aside-button-red {
  display: none;
}

.navigator-map-aside-filter-buttons .navigator-map-aside-button-reset {
  width: 100%;
}

@media only screen and (max-width: 500px) {
  .navigator-map-aside-filter-buttons .navigator-map-aside-button-red {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navigator-map-aside-filter-buttons .navigator-map-aside-button-reset {
    width: calc(50% - 8px);
  }
}

@media only screen and (max-width: 450px) {
  .inclusion-dropdown-container {
    padding: 14px 10px;
  }
  .navigator-map-aside-buttons:not(.navigator-map-aside-filter-buttons) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navigator-map-aside {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    margin-left: 0;
    left: 0;
    z-index: 20;
    background: #fff;
  }
  .navigator-map-aside.open {
    top: 0;
  }
  .navigator-map-aside-header {
    z-index: 3;
  }
  .navigator-map-aside-body, .navigator-map-aside-buttons {
    z-index: 2;
  }
  .navigator-map-aside-body.active-filter-aside {
    z-index: 23;
  }
  .navigator-map-aside-arrow {
    position: fixed;
    left: 50%;
    top: auto;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 10px 20px;
    -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px 4px 0px 0px;
  }
  .navigator-map-aside-arrow svg {
    display: none;
  }
  .navigator-map-aside-arrow span {
    width: 32px;
    height: 3px;
    background: #231F20;
    opacity: 0.4;
    border-radius: 4px;
    display: block;
  }
  .navigator-map-menu-container {
    width: 210px;
  }
  .navigator-map-black-button {
    top: 15px;
    left: 15px;
    right: auto;
    bottom: auto;
  }
  .navigator-map-controls {
    right: 15px;
  }
  .navigator-map-menu {
    right: 15px;
    top: 15px;
  }
  .navigator-map-iconlink {
    padding: 20px 20px;
  }
  .navigator-map-iconlink::before {
    left: 20px;
    right: 20px;
  }
  .navigator-map-aside-header {
    padding: 20px 20px 0 20px;
  }
}

.navigator-map-aside-filter {
  display: none;
}

.active-filter-aside > *:not(.navigator-map-aside-filter) {
  display: none;
}

.active-filter-aside .navigator-map-aside-filter {
  display: block;
}

.active-filter-aside ~ .navigator-map-aside-filter-buttons {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.aside-mobile-filter {
  display: none;
  padding-bottom: 10px;
  position: relative;
}

@media only screen and (max-width: 500px) {
  .aside-mobile-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.aside-mobile-filter::before {
  content: '';
  position: absolute;
  left: -20px;
  right: -20px;
  height: 1px;
  bottom: 0;
  background: #E1E3E7;
}

@media only screen and (max-width: 1340px) {
  .aside-mobile-filter::before {
    left: -15px;
    right: -15px;
  }
}

@media only screen and (max-width: 450px) {
  .aside-mobile-filter::before {
    left: -20px;
    right: -20px;
  }
}

.aside-mobile-filter > * {
  margin-right: 10px;
}

.aside-mobile-filter > *:last-child {
  margin-right: 0;
}

.aside-mobile-filter .navigator-map-filter-checkbox > span {
  margin-right: 0;
  line-height: 44px;
  height: 44px;
  font-size: 15px;
  background: #F1F2F2;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0 10px;
}

.aside-mobile-filter .navigator-map-filter-button {
  width: 44px;
  height: 44px;
}

.aside-mobile-filter .navigator-map-filter-button .navigator-map-filter-button-icon {
  border-color: #F1F2F2;
}

.aside-mobile-filter .navigator-map-filter-button {
  background: #F1F2F2;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navigator-map-aside-filter-main-title {
  display: none;
}

@media only screen and (max-width: 500px) {
  .navigator-map-filter {
    display: none;
  }
  .navigator-map-aside-filter-main-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 20px 0 20px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #231F20;
  }
  .navigator-map-aside-filter-main-close {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    cursor: pointer;
  }
  .active-filter-aside ~ .navigator-map-aside-filter-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  .navigator-map-aside-filter {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 64px;
    right: 0;
    overflow-y: auto;
    z-index: 10;
    background: #fff;
  }
}

@media only screen and (min-width: 1501px) {
  .navigator-map-filter-button .navigator-map-filter-button-icon {
    top: 11px;
    right: 11px;
  }
}

.navigator-map-info-container {
  bottom: 20px;
  right: 20px;
  left: 20px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.navigator-map-info-container .navigator-map-info {
  position: static;
  max-width: 100%;
  margin-left: 20px;
}

.navigator-map-statistic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 9px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

@media only screen and (max-width: 1690px) {
  .navigator-map-statistic {
    display: none;
  }
}

.navigator-map-statistic-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  position: relative;
  font-size: 14px;
  line-height: 18px;
  color: #231F20;
}

.navigator-map-statistic-item svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 7px;
}

.navigator-map-statistic-item:not(:first-child)::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  content: '';
  background: #E1E3E7;
}

.navigator-map-search-btn {
  position: absolute;
  left: 10px;
  top: 15px;
  right: 68px;
  height: 44px;
  padding: 10px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  line-height: 100%;
  color: #939598;
}

.navigator-map-search-btn span {
  display: block;
  padding-top: 2px;
}

.navigator-map-search-btn svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media only screen and (max-width: 480px) {
  .navigator-map-mobile-hide {
    display: none;
  }
  .navigator-map-menu {
    top: 15px;
    right: 10px;
  }
  .navigator-map-controls {
    right: 15px;
  }
}

.navigator-map-container::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(35, 31, 32, 0);
  content: '';
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}

.navigator-map-container-blured::before {
  background: rgba(35, 31, 32, 0.6);
  pointer-events: auto;
}

.nav-category-close, .mob-filter-container-close {
  position: absolute;
  top: 37px;
  right: 12px;
  z-index: 3;
}

.nav-category-search {
  padding-right: 28px;
  height: 44px;
  position: relative;
  margin-bottom: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.nav-category-search input {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 100%;
  height: 100%;
  padding-right: 65px;
  padding-left: 15px;
  border: none;
  outline: none;
  font-size: 14px;
  line-height: 100%;
  color: #231F20;
}

.nav-category-search input::-webkit-input-placeholder {
  color: #939598;
}

.nav-category-search input::-moz-placeholder {
  color: #939598;
}

.nav-category-search input:-ms-input-placeholder {
  color: #939598;
}

.nav-category-search input::-ms-input-placeholder {
  color: #939598;
}

.nav-category-search input::placeholder {
  color: #939598;
}

.nav-category-search-close-text-hidden {
  font-size: 14px;
  color: transparent;
  pointer-events: none;
  max-width: calc(100% - 21px);
}

.nav-category-search-clear-container {
  position: absolute;
  left: 15px;
  top: 15px;
  right: 73px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  pointer-events: none;
}

.nav-category-search-btn {
  width: 34px;
  height: 34px;
  position: absolute;
  right: 33px;
  top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav-category-search-btn svg {
  stroke: #939598;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav-category-search-btn {
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}

.nav-category-search.have-text .nav-category-search-btn {
  background: #E20338;
  pointer-events: auto;
}

.nav-category-search.have-text .nav-category-search-btn svg {
  stroke: #fff;
}

.nav-category-search.have-text .nav-category-search-clear-container {
  opacity: 1;
}

.nav-category-search.have-text .nav-category-search-clear {
  pointer-events: auto;
}

.nav-category-search-clear {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 5px;
  pointer-events: none;
}

.nav-block-body, .nav-block-search-result {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow-y: auto;
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
}

.nav-block-search-result {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nav-block-search-result > * {
  padding-left: 20px;
  padding-right: 20px;
}

.nav-block-search-result-empty {
  margin: auto;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #939598;
}

.nav-category.search-result .nav-block-search-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-category.search-result .nav-block-body {
  display: none;
}

.nav-organization-info {
  position: fixed;
  top: 100%;
  bottom: 0;
  background: #FFFFFF;
  border-radius: 8px 8px 0px 0px;
  width: 100%;
  z-index: 10;
  padding: 25px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav-organization-info.nav-organization-info-open {
  top: calc(100% - 170px);
}

.nav-organization-info:not(.nav-organization-info-openfull) .navigator-organization-block {
  display: none;
}

.nav-organization-info:not(.nav-organization-info-openfull) .navigator-organization-info-button:not(.nav-organization-info-fullopen) {
  display: none;
}

.nav-organization-info:not(.nav-organization-info-openfull) .navigator-organization-info {
  padding-bottom: 0;
}

.nav-organization-info.nav-organization-info-openfull {
  top: 175px;
}

.nav-organization-info.nav-organization-info-openfull .nav-organization-info-fullopen {
  display: none;
}

.nav-organization-info::before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 10px;
  width: 30px;
  height: 4px;
  background: rgba(35, 31, 32, 0.16);
  border-radius: 100px;
  content: '';
}

@media only screen and (max-width: 450px) {
  .navigator-map-aside-new.navigator-map-aside-organization {
    position: fixed;
    top: 100%;
    bottom: 0;
    background: #FFFFFF;
    border-radius: 8px 8px 0px 0px;
    width: 100%;
    z-index: 10;
    padding: 25px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .navigator-map-aside-new.navigator-map-aside-organization .navigator-organization-info-button {
    padding: 0;
    border: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    background: transparent;
    color: #E20338;
  }
  .navigator-map-aside-new.navigator-map-aside-organization .navigator-organization-info-button svg {
    fill: #E20338;
  }
  .navigator-map-aside-new.navigator-map-aside-organization .navigator-map-aside-header {
    padding: 0;
  }
  .navigator-map-aside-new.navigator-map-aside-organization .nav-organization-info-close {
    z-index: 22;
  }
  .navigator-map-aside-new.navigator-map-aside-organization .navigator-organization-info-img {
    display: none;
  }
  .navigator-map-aside-new.navigator-map-aside-organization .navigator-organization-block, .navigator-map-aside-new.navigator-map-aside-organization .navigator-organization-info {
    padding-left: 0;
    padding-right: 0;
  }
  .navigator-map-aside-new.navigator-map-aside-organization .navigator-organization-block-title {
    max-height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .navigator-map-aside-new.navigator-map-aside-organization .navigator-organization-info-location {
    max-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .navigator-map-aside-new.navigator-map-aside-organization .navigator-organization-info-location svg {
    margin-bottom: -5px;
  }
  .navigator-map-aside-new.navigator-map-aside-organization .aside-mobile-filter {
    margin-top: 0;
    padding-bottom: 0;
  }
  .navigator-map-aside-new.navigator-map-aside-organization.open:not(.openfull) {
    top: calc(100% - 155px);
  }
  .navigator-map-aside-new.navigator-map-aside-organization.open:not(.openfull) .navigator-organization-block.navigator-organization-small-view-title {
    padding-top: 0;
    max-width: calc(100% - 25px);
  }
  .navigator-map-aside-new.navigator-map-aside-organization.open:not(.openfull) .navigator-map-aside-header {
    display: none;
  }
  .navigator-map-aside-new.navigator-map-aside-organization.open:not(.openfull) .navigator-organization-block:not(.navigator-organization-small-view-location):not(.navigator-organization-small-view-title) {
    display: none;
  }
  .navigator-map-aside-new.navigator-map-aside-organization.open:not(.openfull) .navigator-organization-small-view-title {
    padding-bottom: 4px;
  }
  .navigator-map-aside-new.navigator-map-aside-organization.open:not(.openfull) .navigator-organization-small-view-location {
    border-top: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navigator-map-aside-new.navigator-map-aside-organization.open:not(.openfull) .navigator-organization-small-view-location .navigator-organization-info-location {
    margin-bottom: 10px;
  }
  .navigator-map-aside-new.navigator-map-aside-organization.open:not(.openfull) .navigator-organization-small-view-location .navigator-organization-info-button:not(.nav-organization-info-fullopen), .navigator-map-aside-new.navigator-map-aside-organization.open:not(.openfull) .navigator-organization-small-view-location .navigator-organization-info-img {
    display: none;
  }
  .navigator-map-aside-new.navigator-map-aside-organization.openfull {
    top: 175px;
  }
  .navigator-map-aside-new.navigator-map-aside-organization.openfull .nav-organization-info-fullopen.navigator-organization-info-button {
    display: none;
  }
}

@media only screen and (min-width: 451px) {
  .nav-organization-info-fullopen.navigator-organization-info-button {
    display: none;
  }
}

.nav-category {
  position: fixed;
  top: 100%;
  bottom: 0;
  background: #FFFFFF;
  border-radius: 8px 8px 0px 0px;
  width: 100%;
  z-index: 10;
  padding: 25px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav-category.nav-category-open {
  top: 15px;
}

.nav-category::before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 10px;
  width: 30px;
  height: 4px;
  background: rgba(35, 31, 32, 0.16);
  border-radius: 100px;
  content: '';
}

.mob-filter-container {
  position: fixed;
  top: 100%;
  bottom: 0;
  background: #FFFFFF;
  border-radius: 8px 8px 0px 0px;
  width: 100%;
  z-index: 10;
  padding: 25px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: 75px;
}

.mob-filter-container.mob-filter-container-open {
  top: 15px;
}

.mob-filter-container::before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 10px;
  width: 30px;
  height: 4px;
  background: rgba(35, 31, 32, 0.16);
  border-radius: 100px;
  content: '';
}

.nav-block-organization-info > * {
  padding-left: 0;
  padding-right: 0;
  margin-left: 20px;
  margin-right: 20px;
}

.nav-block-organization-info > *:first-child {
  padding-top: 5px;
}

.nav-block-organization-info .navigator-organization-info-button {
  padding: 0;
  border: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: transparent;
  color: #E20338;
}

.nav-block-organization-info .navigator-organization-info-button svg {
  fill: #E20338;
}

.nav-block-organization-info .navigator-organization-info-location {
  margin-bottom: 14px;
}

.nav-block-organization-info .navigator-dropdown-time-item {
  color: #231F20;
}

.nav-organization-info-open:not(.nav-organization-info-openfull) .navigator-organization-info-name {
  max-height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.nav-organization-info-open:not(.nav-organization-info-openfull) .navigator-organization-info-location {
  max-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.nav-organization-info-open:not(.nav-organization-info-openfull) .navigator-organization-info-location svg {
  margin-bottom: -5px;
}

.nav-organization-info-img {
  position: fixed;
  top: 100%;
  height: 175px;
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 9;
}

.nav-organization-info-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav-organization-info-img.visible {
  top: 15px;
}

.nav-organization-info-close {
  position: absolute;
  top: 15px;
  right: 13px;
}

@media only screen and (min-width: 451px) {
  .navigator-map-container-blured::before, .mob-filter-container, .map-filter-btn, .nav-organization-info, .nav-organization-info-img, .nav-category {
    display: none;
  }
}

.map-filter-btn {
  position: fixed;
  right: 7px;
  bottom: 9px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 4px 20px rgba(72, 207, 175, 0.5);
          box-shadow: 0px 4px 20px rgba(72, 207, 175, 0.5);
  z-index: 7;
}

.map-filter-btn svg {
  display: block;
}

.mob-filter-container .navigator-map-aside-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-block-body-filters {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 15px;
}

.nav-block-body-filters .nav-block-body-filters-body {
  padding: 0;
}

.nav-block-body-filters .navigator-map-filter-checkboxs-dropdown-head {
  margin-bottom: 7px;
  padding-bottom: 7px;
}

.mob-filter-container .nav-block-body-filters {
  -webkit-transition: none;
  transition: none;
}

.nav-block-body-filters-title {
  font-size: 11px;
  line-height: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #939598;
  font-weight: 500;
  position: relative;
  margin-bottom: 12px;
}

.nav-block-body-filters-title::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 2px;
  width: 100%;
  background: #E1E3E7;
  content: '';
  z-index: -1;
}

.nav-block-body-filters-title span {
  background: #fff;
  display: inline-block;
  padding-right: 5px;
  position: relative;
  z-index: 2;
  padding-top: 3px;
}

.filter-button-close {
  display: none;
}

.filter-button-close svg {
  display: block;
}

.nav-block-body-filters.visible-filter {
  position: fixed;
  top: auto;
  bottom: 0;
  background: #FFFFFF;
  border-radius: 8px 8px 0px 0px;
  width: 100%;
  z-index: 8;
  padding: 25px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 75px;
  max-height: calc(100vh - 15px);
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 0;
  display: none;
}

.nav-block-body-filters.visible-filter .navigator-map-aside-buttons {
  position: fixed;
  bottom: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  left: 0px;
  width: 100%;
}

.nav-block-body-filters.visible-filter .nav-block-body-filters-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #231F20;
  margin-bottom: 12px;
  text-transform: none;
}

.nav-block-body-filters.visible-filter .nav-block-body-filters-title::before {
  display: none;
}

.nav-block-body-filters.visible-filter .filter-button-close {
  top: 15px;
  right: 15px;
  position: absolute;
  display: block;
  z-index: 10;
}

.nav-block-body-filters.visible-filter::before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 10px;
  width: 30px;
  height: 4px;
  background: rgba(35, 31, 32, 0.16);
  border-radius: 100px;
  content: '';
}

.nav-block-body-filters.visible-filter-open {
  opacity: 1;
  pointer-events: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-block-body-filters-body.navigator-map-aside-filter-section {
  border: none;
}

.nav-block-body .navigator-map-iconlink .navigator-map-iconlink-icon svg {
  width: 100%;
  height: 100%;
}

.navigator-map-aside-helpsearch {
  position: relative;
}

@media only screen and (min-width: 451px) {
  .navigator-map-aside-helpsearch:hover .navigator-map-aside-helpsearch-body {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    display: block !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .navigator-map-aside-helpsearch:hover .navigator-map-aside-helpsearch-btn-text {
    opacity: 0.4;
  }
}

@media only screen and (max-width: 450px) {
  .navigator-map-aside-helpsearch {
    padding-right: 28px;
  }
  .navigator-map-aside-helpsearch .navigator-map-aside-helpsearch-btn-arrow {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .navigator-map-aside-helpsearch .navigator-map-aside-helpsearch-btn.active .navigator-map-aside-helpsearch-btn-arrow {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .navigator-map-aside-helpsearch .navigator-map-aside-helpsearch-body {
    position: static;
    width: 100%;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }
  .navigator-map-aside-helpsearch .navigator-map-aside-helpsearch-body div {
    padding: 8px 15px;
    font-size: 13px;
    line-height: 18px;
    color: #6A6A6A;
    background: #F1F2F2;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.navigator-map-aside-helpsearch-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 8px;
  cursor: pointer;
}

.navigator-map-aside-helpsearch-btn-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 100%;
  color: #E20338;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigator-map-aside-helpsearch-btn-text svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 5px;
  fill: #E20338;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 2px;
}

.navigator-map-aside-helpsearch-btn-arrow {
  display: none;
}

@media only screen and (max-width: 450px) {
  .navigator-map-aside-helpsearch-btn-arrow {
    display: block;
  }
}

.navigator-map-aside-helpsearch-body {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.navigator-map-aside-helpsearch-body div {
  padding: 15px;
  width: 100%;
  background: #FFFFFF;
  -webkit-box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-size: 14px;
  line-height: 18px;
  color: #6A6A6A;
}

@media only screen and (max-width: 450px) {
  .navigator-map-aside-new .aside-mobile-filter {
    padding-bottom: 0;
  }
  .navigator-map-search-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navigator-map-aside-arrow {
    display: none;
  }
  .navigator-map-aside-new.open {
    top: 15px;
    bottom: 0;
    height: auto;
  }
  .navigator-map-aside-new {
    border-radius: 8px 8px 0 0;
  }
  .navigator-map-aside-new .select2-search.select2-search--inline {
    padding-right: 28px;
  }
  .navigator-map-aside-new .select2-search.select2-search--inline::before {
    left: auto;
    right: 50px;
  }
  .navigator-map-aside-new .organization-select2-container-hide, .navigator-map-aside-new .organization-select2-container-more, .navigator-map-aside-new .organization-select2-container {
    margin-bottom: 20px;
  }
  .navigator-map-aside-new .navigator-map-aside-filter-section {
    border: none;
  }
  .navigator-map-aside-new .navigator-map-aside-filter-section-inclusion .navigator-map-filter-checkbox {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .navigator-map-aside-new .organization-select2-container .select2-results__option--selectable {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .navigator-map-aside-new .navigator-map-aside-filter-title span {
    display: inline-block;
    font-weight: 600;
    font-size: 11px;
    line-height: 17px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #939598;
    background: #fff;
    padding-right: 12px;
  }
  .navigator-map-aside-new .navigator-map-aside-filter-title {
    position: relative;
    z-index: 1;
  }
  .navigator-map-aside-new .navigator-map-aside-filter-title::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 2px;
    width: 100%;
    background: #E1E3E7;
    content: '';
    z-index: -1;
  }
  .navigator-map-aside-new .navigator-map-aside-filter-title span {
    padding-top: 3px;
  }
  .navigator-map-aside-new .navigator-map-aside-filter {
    top: 15px;
    border-radius: 8px 8px 0 0;
    padding-top: 10px;
  }
  .navigator-map-aside-new .navigator-map-aside-filter::before {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 10px;
    width: 30px;
    height: 4px;
    background: rgba(35, 31, 32, 0.16);
    border-radius: 100px;
    content: '';
    z-index: 4;
  }
  .navigator-map-aside-new .navigator-map-aside-filter-main-title {
    display: none;
  }
  .navigator-map-aside-new .navigator-map-aside-search {
    margin-bottom: 18px;
  }
  .navigator-map-aside-new .navigator-map-aside-search-input input {
    padding: 12px 80px 12px 15px;
  }
  .navigator-map-aside-new .navigator-map-aside-search {
    margin-right: 28px;
  }
  .navigator-map-aside-new .navigator-map-aside-search-controls {
    top: 12px;
  }
  .navigator-map-aside-new .aside-mobile-filter .navigator-map-filter-checkbox {
    display: none;
  }
  .navigator-map-aside-new::before {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 10px;
    width: 30px;
    height: 4px;
    background: rgba(35, 31, 32, 0.16);
    border-radius: 100px;
    content: '';
    z-index: 4;
  }
  .navigator-map-aside-new .navigator-map-aside-logo {
    display: none;
  }
  .navigator-map-aside-new .navigator-map-aside-header {
    padding-top: 25px;
    border-radius: 8px 8px 0 0;
  }
  .navigator-map-aside-new .navigator-map-filter-button {
    position: fixed;
    right: 7px;
    bottom: 9px;
    border-radius: 50%;
    -webkit-box-shadow: 0px 4px 20px rgba(72, 207, 175, 0.5);
            box-shadow: 0px 4px 20px rgba(72, 207, 175, 0.5);
    z-index: 7;
    width: 50px;
    height: 50px;
    background: #48CFAF;
  }
  .navigator-map-aside-new .navigator-map-filter-button svg {
    fill: #fff;
  }
  .navigator-map-aside-new .aside-mobile-filter::before {
    display: none;
  }
  .navigator-map-aside-new .navigator-map-aside-buttons:not(.navigator-map-aside-filter-buttons) {
    display: none;
  }
}

@media only screen and (min-width: 451px) {
  .nav-category-close.navigator-hide-aside, .nav-category-close.nav-filter-close-btn {
    display: none;
  }
}

@media only screen and (max-width: 450px) {
  .navigator-map-aside-new.open .navigator-map-aside-search-results {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 110px;
    border-top: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    max-height: none;
  }
  .navigator-map-aside-new.navigator-map-aside-organization.open .navigator-map-aside-search-results {
    top: 260px;
  }
}

@media only screen and (max-width: 480px) {
  .navigator-map-aside-new .navigator-map-aside-filter {
    display: block;
    top: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    bottom: 0;
  }
  .active-filter-aside .navigator-map-aside-filter {
    top: 15px;
    bottom: 64px;
  }
  .navigator-map-aside-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: -80px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
    position: fixed;
    left: 0;
  }
  .active-filter-aside ~ .navigator-map-aside-filter-buttons {
    bottom: 0;
  }
  .navigator-map-aside-filter-title-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: rgba(147, 149, 152, 0.5);
    border-radius: 50%;
  }
  .navigator-map-aside-filter-title-close::before {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: calc(100% + 5px);
    background: #ffffff;
    content: '';
    z-index: -1;
  }
  .navigator-map-aside-filter-title-close svg {
    width: 18px;
    height: 18px;
    margin: 1px;
  }
  .navigator-map-aside-filter-title-close svg path {
    fill: #fff !important;
  }
}

@media only screen and (min-width: 451px) {
  .organization-select2-container-hide + .navigator-map-aside-filter-title {
    margin-top: 20px;
  }
}

.sec-map__block {
  height: 600px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .sec-map__block {
    height: 450px;
  }
}

@media screen and (max-width: 576px) {
  .sec-map__block {
    height: 350px;
  }
}

.new-panel {
  height: auto;
  padding: 20px 30px 15px 30px;
  width: 385px;
  max-width: 385px;
}

@media screen and (max-width: 576px) {
  .new-panel {
    padding: 20px 15px 15px 15px;
    width: 300px;
    max-width: 300px;
  }
}

.new-panel .map-city__name {
  font-size: 20px;
  margin-bottom: 20px;
  width: 300px;
}

@media screen and (max-width: 576px) {
  .new-panel .map-city__name {
    font-size: 18px;
    width: 260px;
  }
}

.new-panel .map-city__address {
  width: 300px;
}

@media screen and (max-width: 576px) {
  .new-panel .map-city__address {
    font-size: 15px;
    width: 260px;
  }
}

.new-panel .map-city__link {
  position: relative;
  width: 100%;
  left: 0;
  top: 0;
}

.new-panel .arrow {
  display: none;
}

.new-panel .popover-inner {
  position: relative;
}

.new-panel .popover-inner > ymaps {
  width: 100% !important;
  height: auto !important;
}

.popover {
  display: block;
}

.filter-events {
  margin-top: -10px;
}

.filter-events__box {
  display: block;
}

.filter-events__box.active {
  display: block;
}

@media screen and (max-width: 768px) {
  .filter-events__box {
    display: none;
  }
}

.filter-events__trigger {
  font-size: 16px;
  color: #939598;
  position: relative;
  width: 100%;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  padding: 10px 0;
  display: none;
}

@media screen and (max-width: 768px) {
  .filter-events__trigger {
    display: block;
  }
}

.filter-events__trigger:after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  background-position: center;
  background-size: contain;
  background-image: url("../img/general/arrow-down.png");
  background-repeat: no-repeat;
}

.filter-events__trigger.active:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.filter-events__wrap {
  padding: 25px 0 5px 0;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 50px;
}

@media screen and (max-width: 1270px) {
  .filter-events__wrap {
    padding-bottom: 25px;
  }
}

.filter-events .btn-group {
  margin-bottom: 15px;
}

.filter-events__label {
  font-size: 1.5rem;
  color: #939598;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 5px;
}

.filter-events__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.filter-events__date input.form-control {
  padding-left: 20px;
}

@media screen and (max-width: 992px) {
  .filter-events__date .form-group {
    width: 48%;
  }
}

@media screen and (max-width: 400px) {
  .filter-events__date {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .filter-events__date .form-group {
    width: 100%;
  }
}

.filter-events__dash {
  padding: 0 10px;
  display: block;
  margin-bottom: 20px;
}

@media screen and (max-width: 400px) {
  .filter-events__dash {
    display: none;
  }
}

.row-event-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.row-event-list .col-lg-4 {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .row-event-list .col-lg-4 {
    width: 100%;
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-bottom: 30px;
  }
}

.event-item {
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  overflow: hidden;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .event-item {
    margin-bottom: 30px;
  }
}

.event-item:hover {
  cursor: pointer;
}

.event-item:hover .event-item__title {
  color: #e20338;
}

.event-item__image {
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
}

.event-item__image img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-item__content {
  padding: 20px 30px 30px 30px;
}

@media screen and (max-width: 576px) {
  .event-item__content {
    padding: 20px 15px 30px 15px;
  }
}

.event-item__date {
  font-size: 1.8rem;
  color: #b24d67;
  line-height: 1.333;
  margin-bottom: 10px;
}

.event-item__type {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffff;
  background: #39bb9d;
  padding: 7px 15px;
  position: absolute;
  top: 20px;
  left: 25px;
  border-radius: 4px;
  line-height: 1;
}

.event-item__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #14171e;
  line-height: 1.333;
  height: 120px;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

@media screen and (max-width: 768px) {
  .event-item__title {
    height: auto;
    margin-bottom: 10px;
  }
}

.event-item__address {
  font-size: 1.5rem;
  color: #939598;
  line-height: 1.4;
  position: relative;
}

.event-item__address .icon-mark-2 {
  margin-right: 5px;
  color: #939598;
}

@media screen and (max-width: 768px) {
  .event-item__address {
    margin-top: 30px;
  }
}

.events-control .wrap-pagination {
  margin: 20px 0;
}

.events-control .btn-block + .btn-block {
  margin-top: 0;
}

.events-control .btn-block {
  width: calc(100% / 3);
  min-width: 220px;
}

@media screen and (max-width: 767px) {
  .events-control .btn-block {
    width: 250px;
    margin: 0 auto 20px auto;
  }
}

.events-control__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 15px;
}

@media screen and (max-width: 767px) {
  .events-control__btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.events-control__btn .btn-border {
  width: calc(100% / 3 - 24px);
}

@media screen and (max-width: 1270px) {
  .events-control__btn .btn-border {
    width: calc(100% / 2 - 16px);
  }
}

@media screen and (max-width: 767px) {
  .events-control__btn .btn-border {
    width: 250px;
  }
}

.filter-events__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.filter-events__wrapper .form-group {
  width: 220px;
}

@media screen and (max-width: 576px) {
  .filter-events__wrapper .form-group {
    width: 100%;
  }
}

.filter-events__wrapper .filter-events__label {
  width: 100%;
}

@media screen and (max-width: 992px) {
  .filter-events__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.filter-events__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 230px);
}

@media screen and (max-width: 1270px) {
  .filter-events__tabs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (max-width: 992px) {
  .filter-events__tabs {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 10px;
  }
}

.filter-events__tab {
  margin-bottom: 20px;
  font-size: 16px;
  color: black;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  padding: 16px 24px;
  background: #ebebeb;
  border: 1px solid #ebebeb;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

@media screen and (max-width: 1270px) {
  .filter-events__tab {
    margin-right: 10px;
  }
  .filter-events__tab:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 992px) {
  .filter-events__tab {
    padding: 16px 14px;
  }
}

@media screen and (max-width: 768px) {
  .filter-events__tab {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

.filter-events__tab.archive-tab {
  background: #ffffff;
}

.filter-events__tab.active {
  border: 1px solid #e20338;
  background: #e20338;
  color: #ffffff;
}

.filter-events__tab:hover {
  color: #ffffff;
  background: #e20338;
}

.form-group__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-group__tab {
  display: block;
  border-radius: 4px;
  font-size: 14px;
  color: black;
  padding: 4px 10px;
  background: #ebebeb;
  border: 1px solid #ebebeb;
  margin: 5px 10px 5px 0;
  cursor: pointer;
}

.form-group__tab.archive-tab {
  background: #ffffff;
}

.form-group__tab.active {
  border: 1px solid #e20338;
  background: #e20338;
  color: #ffffff;
}

.form-group__tab:hover {
  color: #ffffff;
  background: #e20338;
}

.select-checkbox {
  margin-top: 10px;
}

.select-date.open .btn-defaul.active {
  background: #ffffff !important;
  border-color: #dcdcdc;
}

.select-date.open .btn-defaul.active span {
  color: #231f20 !important;
}

.select-date .dropdown-toggle.btn-default:hover .filter-option:before,
.select-date .dropdown-toggle.btn-default:focus .filter-option:before {
  background-image: url("../img/general/calendar-line-hover.svg");
}

.select-date .btn-default[aria-expanded="true"] .filter-option:before {
  background-image: url("../img/general/calendar-white.svg") !important;
}

.select-date .dropdown-toggle.btn-default .filter-option {
  position: relative;
  padding-left: 25px;
}

.select-date .dropdown-toggle.btn-default .filter-option:before {
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/general/calendar-line.svg");
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.select-date .dropdown-toggle.btn-default .filter-option:hover:before, .select-date .dropdown-toggle.btn-default .filter-option:focus:before {
  background-image: url("../img/general/calendar-line-hover.svg");
}

.select-date .dropdown-menu.inner li a {
  padding-left: 50px;
}

.select-date .dropdown-menu.inner li a[aria-selected="true"] span:after {
  display: block;
}

.select-date .dropdown-menu.inner li a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  margin: auto;
  height: 18px;
  width: 18px;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
}

.select-date .dropdown-menu.inner li a span {
  position: relative;
}

.select-date .dropdown-menu.inner li a span:after {
  content: '';
  height: 11px;
  width: 5px;
  border-right: 1.5px solid #e20338;
  border-bottom: 1.5px solid #e20338;
  position: absolute;
  top: -4px;
  bottom: 0;
  left: -18px;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: none;
}

.mr-bottom-10 {
  margin-bottom: 10px;
}

.mr-bottom-50 {
  margin-bottom: 50px;
}

@media screen and (max-width: 992px) {
  .sec-msc__l {
    height: auto !important;
  }
  .sec-msc__l .sec-map__block {
    background: none !important;
    height: auto !important;
  }
  .sec-msc__l .sec-map__block img {
    display: block !important;
  }
}

.sec-map__line b p {
  margin-left: 32px !important;
}

.news-card {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}

.news-title {
  padding-bottom: 25px;
  border-bottom: 1px solid transparent;
}

.news-card {
  cursor: pointer;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.sec-news .col-xs-12:last-child .news-card {
  margin-bottom: 0;
}

.news-card:hover .news-card__text {
  color: #e20338;
}

.news-card__photo {
  border-radius: 6px;
  position: relative;
  width: 100%;
  height: 242px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.news-card__body {
  padding: 28px 0px 26px;
}

.news-card__content {
  position: relative;
  height: 72px;
  margin-bottom: 15px;
  overflow: hidden;
}

.news-card__text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 500;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.news-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news-card__date {
  font-size: 15px;
  font-size: 1.5rem;
  color: #939598;
  line-height: 1.2;
}

.news-prime-blok h2.news-title {
  padding-bottom: 0;
  border-bottom: 1px solid transparent;
}

/* show-more styles */
.sec-news .show-more {
  border-top: 1px solid transparent;
  margin-top: 0;
}

.sec-news .show-more__btn {
  padding: 10px 55px 20px 20px;
  color: #231f20;
}

.sec-news .show-more__btn img {
  margin-left: 5px;
}

.sec-news .show-more__btn::before {
  top: 35%;
  right: 30px;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* show-more styles end*/
.news-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: 'Golos' !important;
  padding: 0px;
  margin-bottom: 30px;
}

.news-page > .col-lg-8 {
  padding: 0px;
}

@media (max-width: 1270px) {
  .news-page > .col-lg-8 {
    width: 60%;
  }
}

@media (max-width: 992px) {
  .news-page > .col-lg-8 {
    width: 50%;
  }
}

@media (max-width: 753px) {
  .news-page > .col-lg-8 {
    width: 100%;
  }
}

.news-page__content {
  padding: 0;
}

.news-page__content h1 {
  font-weight: 700;
  font-size: 32px;
  font-size: 3.2rem;
  color: #231F20;
  margin-bottom: 25px;
}

@media (max-width: 1367px) {
  .news-page__content h1 {
    font-size: 30px;
  }
}

@media (max-width: 1025px) {
  .news-page__content h1 {
    font-size: 26px;
  }
}

@media (max-width: 769px) {
  .news-page__content h1 {
    font-size: 22px;
  }
}

.news-page__content_main_int {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

.news-page__content_main_int div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-page__content_main_int div p {
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  color: #848E99;
  margin-left: 12px;
}

@media (max-width: 1025px) {
  .news-page__content_main_int div p {
    font-size: 14px;
  }
}

.news-page__content_main_item_img {
  height: auto;
}

.news-page__content_main_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.news-page__content_main_item_info {
  margin: 30px 0;
}

@media (max-width: 769px) {
  .news-page__content_main_item_info {
    margin: 25px 0;
  }
}

.news-page__content_main_item_info p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  margin-bottom: 25px;
}

@media (max-width: 1025px) {
  .news-page__content_main_item_info p {
    font-size: 16px;
  }
}

.news-page__content_main_item_info p:last-child {
  margin-bottom: 0;
}

.news-page__content_main_item_info p span {
  font-weight: 400;
}

.news-page__content_main_item_info p a {
  color: #E20338;
  cursor: pointer;
}

.news-page__content_main_item_info .info-bold {
  font-weight: 600;
}

.news-page__content_main_item_banner {
  width: 100%;
  margin-bottom: 30px;
  border-bottom: 1px solid #D5DAE0;
}

.news-page__content_main_item_banner div {
  width: 100%;
  height: 212px;
}

@media (min-width: 1650px) {
  .news-page__content_main_item_banner div {
    height: 305px;
  }
}

@media (max-width: 1025px) {
  .news-page__content_main_item_banner div {
    height: auto;
  }
  .news-page__content_main_item_banner div img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.news-page__content_main_item_banner div img {
  width: 100%;
  height: 100%;
}

.news-page__content_main_item_banner p {
  padding: 30px 0;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  text-align: center;
}

@media (max-width: 769px) {
  .news-page__content_main_item_banner p {
    font-size: 12px;
  }
}

.news-page__content_main_item_tags {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #D5DAE0;
}

.news-page__content_main_item_tags p {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  color: #848E99;
  margin-bottom: 10px;
}

@media (max-width: 1025px) {
  .news-page__content_main_item_tags p {
    font-size: 14px;
  }
}

@media (max-width: 769px) {
  .news-page__content_main_item_tags p {
    font-size: 12px;
  }
}

.news-page__content_main_item_tags div span {
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  color: #231F20;
}

@media (max-width: 769px) {
  .news-page__content_main_item_tags div span {
    font-size: 12px;
  }
}

.news-page__content_main_item_tags .tags-block {
  margin-bottom: 30px;
}

.news-page__content_main_item_tags .tags-block div a {
  padding: 4px 5px;
  background: #F7F7F8;
  border-radius: 5px;
  font-size: 14px;
  font-size: 1.4rem;
  margin-right: 5px;
  display: inline-block;
  margin-bottom: 5px;
}

@media (max-width: 769px) {
  .news-page__content_main_item_tags .tags-block div a {
    font-size: 12px;
  }
}

.news-page__content_main_item_tags .tags-block div a:hover {
  color: #ffffff;
  background-color: #e20338;
}

.news-page__content_main_item_tags .categories-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-page__content_main_item_tags .categories-block p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 140px;
}

@media (max-width: 769px) {
  .news-page__content_main_item_tags .categories-block p {
    font-size: 12px;
    margin-right: 60px;
  }
}

.news-page__content_main_item_tags .categories-block p span {
  margin-top: 10px;
}

@media (max-width: 769px) {
  .news-page__content_main_item_tags .categories-block p span {
    font-size: 12px;
  }
}

.news-page__content_main_item_tags .categories-block p:last-child {
  margin-right: 0;
}

.news-page__content_main_item_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 30px;
}

@media (max-width: 1367px) {
  .news-page__content_main_item_social {
    margin-bottom: 80px;
    border-bottom: 1px solid #D5DAE0;
  }
}

@media (max-width: 992px) {
  .news-page__content_main_item_social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (max-width: 769px) {
  .news-page__content_main_item_social {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 753px) {
  .news-page__content_main_item_social {
    margin-bottom: 40px;
  }
}

.news-page__content_main_item_social .news-back {
  width: 275px;
}

@media (max-width: 992px) {
  .news-page__content_main_item_social .news-back {
    margin-bottom: 22px;
  }
}

.news-page__content_main_item_social .news-back button {
  width: 100%;
  border: 1px solid #E20338;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  color: #E20338;
  background: transparent;
  padding: 15px 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

@media (max-width: 1025px) {
  .news-page__content_main_item_social .news-back button {
    font-size: 12px;
  }
}

.news-page__content_main_item_social .news-back button:hover {
  color: #ffffff;
  background-color: #e20338;
}

.news-page__content_main_item_social .news-social p {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  color: #848E99;
  margin-bottom: 10px;
}

@media (max-width: 1025px) {
  .news-page__content_main_item_social .news-social p {
    font-size: 14px;
  }
}

@media (max-width: 769px) {
  .news-page__content_main_item_social .news-social p {
    font-size: 12px;
  }
}

.news-page__content_main_item_social .news-social div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-page__content_main_item_social .news-social div a {
  display: block;
  margin-right: 5px;
  border: 1px solid #848E99;
  border-radius: 8px;
  padding: 8px;
  width: 42px;
  height: 42px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.news-page__content_main_item_social .news-social div a svg path {
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.news-page__content_main_item_social .news-social div a:hover {
  border: 1px solid #E20338;
}

.news-page__content_main_item_social .news-social div a:hover svg path {
  fill: #E20338;
}

.news-page__content_main_item_social .news-social div a:last-child {
  margin-right: 0;
}

.note {
  padding-left: 30px;
  display: block;
}

.note__date {
  font-size: 1.4rem;
  color: #939598;
  margin-bottom: 15px;
  position: relative;
}

.note__circle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: -30px;
  top: 4px;
}

.note__name {
  font-size: 1.6rem;
  line-height: 2.1rem;
}

.note__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
}

.note__tag {
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 4px;
  font-size: 1.4rem;
  border-radius: 4px;
  white-space: nowrap;
  background-color: #f1f2f2;
  margin-right: 4px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.note__image {
  height: 180px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.nw-bar {
  border: 1px solid #00853b;
  border-radius: 4px;
  background-color: #ffffff;
  padding-left: 48px;
  padding-right: 48px;
  padding-top: 50px;
  padding-bottom: 45px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.nw-bar:after {
  position: absolute;
  content: '';
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/general/img_ess.png);
  width: 371px;
  height: 270px;
}

@media only screen and (max-width: 768px) {
  .nw-bar:after {
    background-size: contain;
  }
}

.nw-bar__title {
  color: #00853b;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.9px;
  margin-bottom: 48px;
}

.nw-bar__desc {
  color: #14171e;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 13px;
}

.nw-bar__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nw-bar__link {
  font-weight: 700;
  color: #a91e2d;
  font-size: 48px;
  font-weight: 500;
  text-decoration: none;
}

.nw-bar__clock {
  margin-left: 30px;
  border-radius: 18px;
  background-color: #f1f2f2;
  padding-right: 13px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 14px;
  font-weight: 700;
  color: #14171e;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 40px;
  position: relative;
  z-index: 1;
}

.nw-bar__clock:after {
  left: 9px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/general/clock.png);
}

@media only screen and (max-width: 1024px) {
  .nw-bar {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .nw-bar__title {
    font-size: 12px;
    letter-spacing: 0.6px;
    margin-bottom: 40px;
    max-width: 350px;
  }
  .nw-bar__desc {
    font-size: 18px;
    line-height: 24px;
    max-width: 350px;
  }
  .nw-bar__link {
    font-size: 36px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  .nw-bar__clock {
    font-size: 12px;
    letter-spacing: 0.6px;
  }
  .nw-bar:after {
    width: 298px;
    height: 230px;
  }
}

@media only screen and (max-width: 767px) {
  .nw-bar {
    padding-bottom: 100px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 26px;
  }
  .nw-bar__title {
    letter-spacing: 0.6px;
    font-size: 12px;
    margin-bottom: 30px;
  }
  .nw-bar__desc {
    color: #14171e;
    font-size: 14px;
    line-height: 18px;
  }
  .nw-bar__footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .nw-bar__link {
    display: block;
    font-size: 24px;
    line-height: 32px;
  }
  .nw-bar__clock {
    margin-left: 0;
  }
  .nw-bar:after {
    width: 232px;
    height: 192px;
    right: 0;
    bottom: 0;
    top: auto;
    -webkit-transform: none;
            transform: none;
  }
}

@media only screen and (max-width: 600px) {
  .nw-bar {
    padding-bottom: 195px;
  }
}

.participant {
  background: #F1F2F2;
  padding: 60px 0 0 0;
  margin-bottom: 70px;
}

.participant h2 {
  font-family: 'Golos';
  font-weight: 700;
  font-size: 28px;
  color: #0055A3;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .participant h2 {
    font-size: 22px;
  }
}

@media (max-width: 470px) {
  .participant h2 {
    font-size: 20px;
  }
}

.participant__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1025px) {
  .participant__block {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.participant__block_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 70px;
}

@media (max-width: 576px) {
  .participant__block_item {
    margin-bottom: 30px;
  }
}

.participant__block_item_number {
  background: #FFFFFF;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Golos';
  font-weight: 600;
  font-size: 34px;
  color: #E20338;
  margin-bottom: 20px;
}

@media (max-width: 470px) {
  .participant__block_item_number {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

.participant__block_item_info p {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #231F20;
}

@media (max-width: 470px) {
  .participant__block_item_info p {
    font-size: 14px;
  }
}

.participant__block_item_info p a {
  color: #E20338;
}

.aside--phelp .aside__list-nav > li:after {
  display: none;
}

.aside--phelp .link-color {
  padding-top: 15px;
  padding-bottom: 15px;
}

.phelp__form {
  border-radius: 3px;
  padding-top: 37px;
  padding-bottom: 40px;
  padding-left: 35px;
  padding-right: 35px;
  color: #fff;
  background-color: #6dd6d1;
}

.phelp__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.phelp__box {
  margin-left: 15px;
  margin-right: 15px;
}

.phelp__box:first-child {
  width: 420px;
}

.phelp__box:last-child {
  width: 290px;
}

.phelp .input {
  position: relative;
}

.phelp .input .btn {
  border: none;
  color: #231f20;
}

.phelp .input input {
  padding-left: 20px;
  padding-right: 65px;
  border: none;
  height: 56px;
  width: 100%;
  border-radius: 4px;
  outline: none;
}

.phelp .input input::-webkit-input-placeholder {
  color: #939598;
}

.phelp .input input::-moz-placeholder {
  color: #939598;
}

.phelp .input input:-ms-input-placeholder {
  color: #939598;
}

.phelp .input input::-ms-input-placeholder {
  color: #939598;
}

.phelp .input input::placeholder {
  color: #939598;
}

.phelp .input__input {
  position: relative;
}

.phelp .input__search {
  position: absolute;
  right: 0;
  top: 0;
  height: 56px;
  width: 56px;
  background-color: transparent;
  border: none;
  color: #0aa2a8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  outline: none;
}

.phelp .input__label {
  margin-bottom: 10px;
}

.phelp-items {
  margin-top: 40px;
}

.phelp-banner {
  background-position: center center;
  background-size: cover;
  background-image: url(../img/general/banner.png);
  background-repeat: no-repeat;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 43px;
  padding-bottom: 43px;
  margin-top: 20px;
}

.phelp-banner__btn {
  width: 306px;
  max-width: 306px;
  line-height: 54px;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 54px;
  border: 2px solid #fff;
  color: #fff;
}

.phelp-banner__btn:focus {
  color: #fff;
}

.phelp-banner__btn:hover, .phelp-banner__btn:active {
  background-color: #e20338;
  border-color: #e20338;
  color: #fff;
}

.phelp-banner__btn:active {
  margin-top: 1px;
}

.phelp-pagi .wrap-pagination {
  margin-bottom: 0;
  margin-top: 30px;
}

@media (max-width: 1280px) {
  .phelp__box:first-child {
    width: 402px;
  }
  .phelp__box:last-child {
    width: 260px;
  }
}

@media (max-width: 1270px) {
  .phelp__box:first-child {
    width: 265px;
  }
  .phelp__box:last-child {
    width: 210px;
  }
  .phelp .input input {
    padding-left: 15px;
    padding-right: 70px;
  }
  .phelp .input .btn {
    padding-left: 10px;
    padding-right: 30px;
  }
  .phelp-banner {
    padding-top: 30px;
    padding-bottom: 30px;
    background-position: center left;
  }
  .phelp-banner__btn {
    padding-left: 10px;
    padding-right: 10px;
    width: 280px;
    max-width: 280px;
  }
}

@media (max-width: 992px) {
  .phelp__box:first-child {
    width: 398px;
  }
  .phelp__box:last-child {
    width: 220px;
  }
}

@media (max-width: 767px) {
  .phelp__flex {
    margin-left: 0;
    margin-right: 0;
  }
  .phelp__form {
    padding-top: 23px;
    padding-bottom: 23px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .phelp__box {
    margin-left: 0;
    margin-right: 0;
  }
  .phelp__box:not(:last-child) {
    margin-bottom: 22px;
  }
  .phelp__box:first-child, .phelp__box:last-child {
    width: 100%;
  }
  .phelp .input__label {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }
  .phelp-banner {
    background-image: none;
    position: relative;
    overflow: hidden;
    position: relative;
    background-color: #6dd6d1;
    border-radius: 3px;
    height: 100px;
    padding: 0;
    padding-left: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    padding-left: 15px;
  }
  .phelp-banner:after {
    top: 0;
    bottom: 0;
    right: 0;
    content: '';
    bottom: 0;
    background-image: url(../img/general/mpx.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 200px;
    position: absolute;
  }
  .phelp-banner__btn {
    max-width: 155px;
    text-align: left;
    border: none !important;
    padding: 0;
    line-height: 2.4rem;
    font-weight: 700;
    font-size: 1.8rem;
    display: block !important;
    height: auto;
  }
}

@media (max-width: 400px) {
  .phelp-banner:after {
    right: -60px;
  }
}

@media (max-width: 340px) {
  .phelp-banner:after {
    right: -90px;
  }
}

.photo-page .seach-block {
  margin-bottom: 25px;
  border-bottom: 1px solid #d5dae0;
}

.photo-page--tag-block {
  margin-bottom: 53px;
  border-bottom: 1px solid #d5dae0;
}

.photo-page--tag-block .tag-block__title {
  margin-bottom: 20px;
}

.photo-page--pagination .flex-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.photo-page--pagination .wrap-pagination {
  margin: 0;
}

.photo-page--pagination .btn {
  width: 385px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.photo-page--pagination .btn-brown-border {
  border-color: #d5dae0;
  color: #939598;
  font-weight: 500;
}

.photo-page--pagination .btn-brown-border:hover,
.photo-page--pagination .btn-brown-border:focus {
  color: #ffffff;
  background: #e20338;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.photo-card {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}

.photo-title {
  padding-bottom: 25px;
  border-bottom: 1px solid #d5dae0;
}

h1.photo-title {
  margin-bottom: 0;
}

.photo-card {
  cursor: pointer;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.sec-photo .col-xs-12:last-child .photo-card {
  margin-bottom: 0;
}

.photo-card:hover .photo-card__text {
  color: #e20338;
}

.photo-card__photo {
  border-radius: 6px;
  position: relative;
  width: 100%;
  height: 242px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.photo-card__body {
  padding: 28px 0px 26px;
}

.photo-card__content {
  position: relative;
  height: 72px;
  margin-bottom: 15px;
  overflow: hidden;
}

.photo-card__text {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.photo-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.photo-card__date {
  font-size: 15px;
  color: #939598;
  line-height: 1.2;
}

.photo-card__preview {
  border-radius: 6px;
  position: relative;
  width: 100%;
  height: 242px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 992px) {
  .photo-page--pagination .flex-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.crd {
  border-top: 1px solid #dde0e3;
}

.crd__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 30px;
}

.crd__box:not(:last-child) {
  padding-bottom: 40px;
  border-bottom: 1px solid #dde0e3;
}

.crd__image {
  width: 155px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.crd__image svg {
  width: 95px;
  height: 95px;
  fill: #49a9b8 !important;
  stroke: #49a9b8 !important;
}

.crd__text {
  line-height: 2.8rem;
  font-size: 1.8rem;
}

.crd__text b {
  font-weight: 700;
}

.crd__text p:not(:last-child) {
  margin-bottom: 45px;
}

.crd__content {
  width: calc(100% - 155px);
}

.crd__link {
  margin-top: 22px;
}

@media only screen and (max-width: 480px) {
  .crd__image {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .crd__content {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .crd__text {
    font-size: 1.6rem;
    line-height: 2.1rem;
  }
  .crd__link {
    margin-left: auto;
    margin-right: auto;
  }
}

.records {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #D5DAE0;
}

@media only screen and (max-width: 550px) {
  .records {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.records__preview {
  width: 240px;
  height: 150px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}

@media only screen and (max-width: 550px) {
  .records__preview {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 450px) {
  .records__preview {
    width: 100%;
    height: 200px;
  }
}

@media only screen and (max-width: 400px) {
  .records__preview {
    width: 100%;
    height: 150px;
  }
}

.records__preview > * {
  width: 100%;
  height: 100%;
  margin: 0;
}

.records__preview .video-layer {
  width: 100%;
  height: 100%;
}

.records__preview .media-card__video-bg .btn-play {
  margin-top: 0;
}

.records__preview .soxex {
  display: none;
}

.records__preview-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.records__preview .img-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.records__preview .img-bg-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.records__preview .i {
  color: #fff;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.records__preview .i span {
  margin-left: 10px;
  font-size: 12px;
  line-height: 14px;
  color: #FFFFFF;
}

.records__type {
  padding-left: 15px;
  font-size: 12px;
  line-height: 15px;
  color: #939598;
  margin-bottom: 18px;
  position: relative;
}

@media only screen and (max-width: 650px) {
  .records__type {
    margin-bottom: 10px;
  }
}

.records__type::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: #939598;
  border-radius: 50%;
  content: '';
}

.records__date {
  font-size: 16px;
  line-height: 21px;
  color: #939598;
  margin-bottom: 9px;
}

@media only screen and (max-width: 650px) {
  .records__date {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

.records__name {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #231F20;
  margin-bottom: 20px;
}

@media only screen and (max-width: 650px) {
  .records__name {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 12px;
  }
}

.records__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.records__tags span:first-child {
  font-size: 16px;
  line-height: 21px;
  color: #231F20;
  margin-right: 8px;
  margin-bottom: 4px;
}

@media only screen and (max-width: 650px) {
  .records__tags span:first-child {
    font-size: 14px;
  }
}

.records__tags-tag {
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  color: #231F20;
  background: #F1F2F2;
  border-radius: 2px;
  margin-right: 4px;
  padding: 2px 4px;
  margin-bottom: 4px;
}

.records__icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(35, 31, 32, 0.3)), to(rgba(35, 31, 32, 0.3)));
  background: -webkit-linear-gradient(bottom, rgba(35, 31, 32, 0.3), rgba(35, 31, 32, 0.3));
  background: linear-gradient(0deg, rgba(35, 31, 32, 0.3), rgba(35, 31, 32, 0.3));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.records:hover .records__preview-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.records-video {
  cursor: pointer;
}

.records-video .records__type {
  color: #48D6D2;
}

.records-video .records__type::before {
  background: #48D6D2;
}

.records-photo {
  cursor: pointer;
}

.records-photo .records__type {
  color: #E20338;
}

.records-photo .records__type::before {
  background: #E20338;
}

.records__albom {
  display: none;
}

.tag-block__showmore {
  font-size: 1.5rem;
  color: #E20338;
  padding: 5px 9px;
  border-radius: 4px;
  margin-bottom: 10px;
  margin-right: 10px;
  border: 1px solid #E20338;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.tag-block__showmore:hover {
  background: #E20338;
  color: #fff;
}

.play-icon {
  width: 54px;
  height: 54px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

.play-icon .icon-play {
  margin-left: 4px;
}

.tag-block__ell.hidden {
  display: none;
}

.reports-table__table td:first-child, .reports-table__table th:first-child {
  max-width: 80px;
}

.reports-table__table td:nth-child(2) {
  width: 400px;
  min-width: 400px;
}

.reports {
  position: relative;
}

.reports-pagination {
  margin-top: 40px;
}

.reports-table {
  position: relative;
  margin-top: 15px;
  padding-bottom: 28px;
  overflow-x: scroll;
}

.reports-table .mCSB_scrollTools.mCSB_scrollTools_horizontal.fixed {
  position: fixed !important;
  bottom: 25px;
}

.reports-table::-webkit-scrollbar {
  width: 18px;
  height: 18px;
}

.reports-table .mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.reports-table .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
  background-color: #e20338;
  height: 14px;
  margin-top: 2px;
}

.reports-table .mCSB_draggerContainer {
  height: 18px;
  background-color: #ffd3dd;
}

.reports-table .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAAASCAIAAABpUz8yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA39pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDphMWYzYTkwYS0zMzBiLThmNGQtODJmYy0wZjQwNzEyYmRkY2IiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QjU4M0NGN0Q0QTE2MTFFQTkwNTJBQkIxRUI4N0U4ODgiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjU4M0NGN0M0QTE2MTFFQTkwNTJBQkIxRUI4N0U4ODgiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOmMzYjYwMTAxLTZhMTQtYzU0OC1iNGVmLWE3MjUxYjcwM2ZmZSIgc3RSZWY6ZG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjgyMzI3ZGQ2LTY4OGEtOTM0Yi1iOGM0LTIxNzI4YjkyYjg0ZSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pt1slb0AAABlSURBVHjaYvx/5R4D2UBbkWHwASaGYQdGvTTqpUHppeb5DP//Dy8vrdzJ0LJgaPmKiIQ31HxFXF6C+Gq0eBjcXgp3Z6hJGEZegviHkXG4eGmo+QcIGEebraMl3qiXRr2EHQAEGABYWBk9QdY5rAAAAABJRU5ErkJggg==");
  width: 70px;
  height: 18px;
  margin-right: -39px;
  background-position: center center;
  top: 0;
}

.reports-table .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  width: 70px;
  height: 18px;
  margin-left: -39px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAAASCAIAAABpUz8yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA39pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDphMWYzYTkwYS0zMzBiLThmNGQtODJmYy0wZjQwNzEyYmRkY2IiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTI0NDQ2QUQ0QTE2MTFFQUI1OERBMTkyRUU4RTI4RjgiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTI0NDQ2QUM0QTE2MTFFQUI1OERBMTkyRUU4RTI4RjgiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOmMzYjYwMTAxLTZhMTQtYzU0OC1iNGVmLWE3MjUxYjcwM2ZmZSIgc3RSZWY6ZG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjgyMzI3ZGQ2LTY4OGEtOTM0Yi1iOGM0LTIxNzI4YjkyYjg0ZSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PpcXkgsAAABeSURBVHjaYvz//z/DIARX75OtlYlh2IFRL416adRLRIMJK4eXl4D+mbN+GHmJkH+GmpeI8M9o8TDgoCCcISVw2MUSEb5iGXoJC+grvIBxtNk6WjyMemnUS9gBQIABAAhYFgueThdFAAAAAElFTkSuQmCC");
  background-position: center center;
  top: 0;
}

.reports-table td:nth-child(2) {
  font-size: 1.4rem;
  width: 645px;
}

.reports-table tr:nth-child(even) td {
  background-color: #f1f2f2;
}

.reports-table__table {
  min-width: 2400px;
  border-bottom: 1px solid #dde0e3;
}

.reports-table th {
  background-color: #f1f2f2;
  height: 60px;
  vertical-align: middle;
}

.reports-table th,
.reports-table td {
  height: 60px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 2.1rem;
  font-size: 1.6rem;
  border: 1px solid #dde0e3;
}

.reports-table td {
  border-top: 0;
  border-bottom: 0;
}

.reports-tabs .tabs-nav-wrap {
  margin-bottom: 30px;
}

.reports-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.reports-btn {
  width: 146px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: #02c8cb;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 700;
}

.reports-btn:hover {
  color: #fff;
}

.reports-notify {
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 1.4rem;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  background-color: #ffeeee;
  color: #231f20;
}

.reports-notify__icon {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 12px;
  border-radius: 50%;
  color: #fff;
  background-color: #e20338;
  font-size: 12px;
}

.reports-notify span {
  color: #e20338;
}

.reports-content__row {
  border-radius: 4px;
  background-color: #eeeeee;
  padding: 10px;
  padding-left: 20px;
  font-weight: 700;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2px;
}

.reports-input__input, .reports-input__select {
  background-color: #fff;
  color: #231f20;
  padding-left: 15px;
  padding-right: 15px;
  border: 1px solid #d1d1d1;
  height: 41px;
  font-size: 1.6rem;
  font-weight: 400;
  border-radius: 4px;
}

.reports-input__input {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
}

.reports-input__select {
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reports-input input[type=number]::-webkit-inner-spin-button,
.reports-input input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  display: none;
}

.reports-input input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

.reports-input input {
  height: 41px;
  width: 80px;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #fff;
  outline: none;
  color: #231f20;
  border-radius: 4px;
  border: 1px solid #d1d1d1;
  font-weight: 400;
}

.reports-input .dropdown-toggle {
  width: 200px !important;
  height: 41px;
  float: none !important;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  padding-left: 15px;
  padding-right: 35px;
}

.reports-input .dropdown-menu > li > a,
.reports-input .dropdown-menu-header > li > a {
  padding: 7px 15px;
}

.reports-input .bootstrap-select.btn-group .dropdown-toggle .filter-option {
  color: #231f20;
}

.reports-input .dropdown-menu > li:first-child a,
.reports-input .dropdown-menu-header > li:first-child a {
  padding-top: 5px;
}

.reports-input .dropdown-menu > li > a:after,
.reports-input .dropdown-menu-header > li > a:after {
  left: 15px;
  right: 15px;
}

.reports-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

.reports-footer .btn-block {
  background-color: #02c8cb;
  border-color: #02c8cb;
  color: #fff;
}

.reports-footer__back .btn {
  width: 240px;
}

.reports-footer__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
}

.reports-footer__controls .btn {
  width: 220px;
}

.reports-footer__controls .btn:not(:last-child) {
  margin-right: 20px;
}

html[color-schema="color-black"] .reports-content__row,
html[color-schema="color-black"] .reports-notify,
html[color-schema="color-black"] .reports-btn {
  border: 1px solid #fff;
  background-color: transparent;
}

html[color-schema="color-black"] .reports-input .bootstrap-select.btn-group .dropdown-toggle .filter-option {
  color: #fff;
}

html[color-schema="color-black"] .reports-notify {
  color: #fff;
}

html[color-schema="color-black"] .reports-notify span {
  color: #fff;
}

html[color-schema="color-black"] .reports-notify__icon {
  background-color: #fff;
  color: #000;
}

html[color-schema="color-blue"] .reports-content__row,
html[color-schema="color-blue"] .reports-notify,
html[color-schema="color-blue"] .reports-btn,
html[color-schema="color-blue"] .reports-input__input,
html[color-schema="color-blue"] .reports-input__select,
html[color-schema="color-blue"] .reports-input input {
  border: 1px solid #063462;
  background-color: transparent;
}

html[color-schema="color-blue"] .reports-input .bootstrap-select.btn-group .dropdown-toggle .filter-option,
html[color-schema="color-blue"] .reports-input__input,
html[color-schema="color-blue"] .reports-input__select {
  color: #063462;
}

html[color-schema="color-blue"] .reports-notify {
  color: #063462;
}

html[color-schema="color-blue"] .reports-notify span {
  color: #063462;
}

html[color-schema="color-blue"] .reports-notify__icon {
  background-color: #063462;
  color: #9dd1ff;
}

html[color-schema="color-beige"] .reports-content__row,
html[color-schema="color-beige"] .reports-notify,
html[color-schema="color-beige"] .reports-btn,
html[color-schema="color-beige"] .reports-input__input,
html[color-schema="color-beige"] .reports-input__select,
html[color-schema="color-beige"] .reports-input input {
  border: 1px solid #4d4b43;
  background-color: transparent;
}

html[color-schema="color-beige"] .reports-input .bootstrap-select.btn-group .dropdown-toggle .filter-option,
html[color-schema="color-beige"] .reports-input__input,
html[color-schema="color-beige"] .reports-input__select {
  color: #4d4b43;
}

html[color-schema="color-beige"] .reports-notify {
  color: #4d4b43;
}

html[color-schema="color-beige"] .reports-notify span {
  color: #4d4b43;
}

html[color-schema="color-beige"] .reports-notify__icon {
  background-color: #4d4b43;
  color: #f7f3d6;
}

html[color-schema="color-brown"] .reports-content__row,
html[color-schema="color-brown"] .reports-notify,
html[color-schema="color-brown"] .reports-btn,
html[color-schema="color-brown"] .reports-input__input,
html[color-schema="color-brown"] .reports-input__select,
html[color-schema="color-brown"] .reports-input input {
  border: 1px solid #a9e44d;
  background-color: transparent;
}

html[color-schema="color-brown"] .reports-input .bootstrap-select.btn-group .dropdown-toggle .filter-option,
html[color-schema="color-brown"] .reports-input__input,
html[color-schema="color-brown"] .reports-input__select,
html[color-schema="color-brown"] .reports-input input {
  color: #a9e44d;
}

html[color-schema="color-brown"] .reports-notify {
  color: #a9e44d;
}

html[color-schema="color-brown"] .reports-notify span {
  color: #a9e44d;
}

html[color-schema="color-brown"] .reports-notify__icon {
  background-color: #a9e44d;
  color: #3b2716;
}

.school-kinship {
  margin-bottom: 70px;
}

.school-kinship__title {
  font-family: 'Golos';
  font-weight: 700;
  font-size: 32px;
  color: #231F20;
  margin-bottom: 40px;
}

@media (max-width: 471px) {
  .school-kinship__title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 443px) {
  .school-kinship__title {
    font-size: 25px;
  }
}

.school-kinship__block > p {
  font-family: 'Golos';
  font-weight: 600;
  font-size: 20px;
  color: #231F20;
  margin-bottom: 40px;
  max-width: 74%;
}

@media (max-width: 1649px) {
  .school-kinship__block > p {
    max-width: 85%;
  }
}
@media (max-width: 1269px) {
  .school-kinship__block > p {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .school-kinship__block > p br {
    display: none;
  }
}

@media (max-width: 471px) {
  .school-kinship__block > p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media (max-width: 443px) {
  .school-kinship__block > p {
    font-size: 12px;
  }
}

.school-kinship__banner1 {
  background-image: url(../img/general/sckPicture/banner1.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 250px;
}

@media (max-width: 992px) {
  .school-kinship__banner1 {
    background-size: cover;
  }
}

.school-kinship__possibility {
  margin: 70px 0;
}

@media (max-width: 470px) {
  .school-kinship__possibility {
    margin: 35px 0;
  }
}

.school-kinship__possibility h2 {
  font-family: 'Golos';
  font-weight: 700;
  font-size: 28px;
  color: #0055A3;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .school-kinship__possibility h2 {
    font-size: 22px;
  }
}

@media (max-width: 470px) {
  .school-kinship__possibility h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.school-kinship__possibility_items {
  padding-left: 15px;
}

.school-kinship__possibility_items li {
  list-style: disc !important;
  font-weight: 400;
  font-size: 16px;
  color: #231F20;
  padding-bottom: 20px;
}

@media (max-width: 470px) {
  .school-kinship__possibility_items li {
    font-size: 14px;
  }
}

.school-kinship__possibility_items li:last-child {
  padding-bottom: 0;
}

.school-kinship__project h2 {
  font-family: 'Golos';
  font-weight: 700;
  font-size: 28px;
  color: #0055A3;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .school-kinship__project h2 {
    font-size: 22px;
  }
}

@media (max-width: 470px) {
  .school-kinship__project h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.school-kinship__project_info p {
  font-weight: 400;
  font-size: 16px;
  color: #231F20;
  padding-bottom: 25px;
}

@media (max-width: 470px) {
  .school-kinship__project_info p {
    font-size: 14px;
  }
}

.school-kinship__project_info span {
  font-weight: 400;
  font-size: 16px;
  color: #231F20;
}

@media (max-width: 470px) {
  .school-kinship__project_info span {
    font-size: 14px;
  }
}
.sec-tinao__content {
  margin-bottom: 32px;
}
.sec-tinao .big {
  font-size: 28px;
  margin-bottom: 22px;
}
.sec-tinao .d-md-none {
  display: none;
}
@media (max-width: 768px) {
  .sec-tinao .big {
    font-size: 18px;
  }
  .sec-tinao .d-none {
    display: none;
  }
  .sec-tinao .d-md-none {
    display: block;
  }
}
.sec-tinao .red {
  color: #D34141;
}
.sec-tinao .blue {
  color: #1E718C;
}
.sec-tinao__img img {
  width: 100%;
}
.sec-tinao_about p {
  font-size: 20px;
  margin-bottom: 8px;
}
.sec-tinao__title {
  color: #1E718C;
}
.sec-tinao__content.services .item{
  display: block;
  padding: 16px 16px;
  border: 1px solid #1E718C;
  font-size: 18px;
  min-height: 250px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.sec-tinao.sec-map {
  margin-bottom: 32px;
}
.sec-tinao.nw-bar {
  border: 1px solid #1F6E8A;
  border-radius: 25px;
}
.sec-tinao.nw-bar .nw-bar__title {
  color: #1F6E8A;
}
.sec-tinao.nw-bar:after {
  background-image: url(../img/general/img_ess_02.png);
  width: 490px;
  height: 280px;
}
@media (max-width: 768px) {
.sec-tinao.nw-bar:after {
    width: 380px;
    height: 215px;
  }
}
.sec-tinao .sec-map__na {
  color: #1E718C;
  font-weight: 800;
}
@media (max-width: 768px) {
  .sec-tinao .sec-map__line img {
    top: 4px;
    width: 25px;
  }
}
.sec-tinao .sec-map__line-content {
  vertical-align: middle;
  line-height: 35px;
}
.sec-tinao .inline {
  display: inline-block;
  vertical-align: middle;
  line-height: initial;
}
.sec-tinao .arr {
  display: inline-block;
  background: url(../img/general/arr.svg) no-repeat center center/contain;
  width: 9px;
  height: 8px;
}
.snapmpz {
  background-position: center center;
  overflow: hidden;
  border-radius: 4px;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 385px;
  max-width: 325px;
  margin-bottom: 30px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 35px;
  padding-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
}

.snapmpz__title {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.snapmpz__number {
  height: 32px;
  border: 2px solid #fff;
  border-radius: 16px;
  font-size: 1.6rem;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.snav-title {
  font-weight: 700;
  font-size: 2.4rem;
  margin-top: 60px;
  margin-bottom: 20px;
}

.snav__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}

.snav__box {
  width: calc(100% / 3 - 30px);
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 30px;
  border-radius: 4px;
  border: 1px solid #e1e3e7;
  min-height: 100px;
  position: relative;
}

.snav__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.snav__icon {
  width: 60px;
  min-width: 60px;
}

.snav__co {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.snav__title {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.snav__type {
  position: absolute;
  bottom: 0;
  right: 0;
  border-top-left-radius: 4px;
  background-image: -webkit-linear-gradient(45deg, #7adbe4 0%, #61d1c0 100%);
  background-image: -ms-linear-gradient(45deg, #7adbe4 0%, #61d1c0 100%);
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 12px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

.snav__number {
  color: #939598;
}

.snav-lib {
  padding-top: 18px;
  color: #939598;
}

.snav-lib a {
  color: #44a8b6;
  border-bottom: 1px solid #44a8b6;
}

.snav-lib a:hover {
  border-color: transparent;
}

.snav-input {
  width: 100%;
  position: relative;
}

.snav-input input {
  background-color: transparent;
  padding: 0;
  outline: none;
  border: 1px solid #e1e3e7;
  padding-left: 20px;
  padding-right: 80px;
  width: 100%;
  height: 60px;
  border-radius: 4px;
}

.snav-input .btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  background-color: transparent;
  color: #44a8b6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  min-width: 60px;
}

.fox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .fox .main {
    width: calc(66.66666667% - 20px);
  }
  .fox .aside {
    width: 33.33333333%;
    margin-left: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .fox .main {
    width: 100%;
  }
  .fox .aside {
    width: 100%;
    margin-left: 0;
  }
}

#togglerSize {
  display: none !important;
}

@media only screen and (max-width: 991px) {
  .snav-title {
    margin-top: 30px;
  }
  .snapmpz {
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .snapmpz__title {
    font-size: 2rem;
  }
  .aside {
    margin-top: 20px;
  }
  .snav__box {
    width: calc(100% / 2 - 30px);
  }
}

@media only screen and (max-width: 767px) {
  .snav__box {
    width: calc(100% - 30px);
  }
}

.soc-center {
  margin-bottom: 50px;
}

.soc-center .text-left {
  text-align: left !important;
}

.soc-center .tabs-nav-wrap {
  margin-bottom: 40px;
}

.soc-center__info {
  border-radius: 4px;
  background-color: #f1f2f2;
  padding: 35px;
  margin-bottom: 50px;
  padding-bottom: 15px;
}

.soc-center__image {
  padding-bottom: 70%;
  position: relative;
  overflow: hidden;
  border: 1px solid #d5dae0;
  border-radius: 4px;
  z-index: 1;
}

.soc-center__image img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  height: 100%;
  z-index: 3;
}

.soc-center__not-image {
  display: block;
  height: 110px;
  width: 110px;
  border-radius: 50%;
  background-color: #e7e8ea;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../img/general/icon/building_img_icon.svg");
  background-size: 50px;
  background-position: center;
  background-repeat: no-repeat;
}

.soc-center__local, .soc-center__metro, .soc-center__phone, .soc-center__zon, .soc-center__mail, .soc-center__network {
  font-weight: 600;
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
  font-size: 16px;
  color: #444444;
  line-height: 1.313;
}

.soc-center__local label, .soc-center__metro label, .soc-center__phone label, .soc-center__zon label, .soc-center__mail label, .soc-center__network label {
  font-weight: 400;
}

.soc-center__local label:before, .soc-center__metro label:before, .soc-center__phone label:before, .soc-center__zon label:before, .soc-center__mail label:before, .soc-center__network label:before {
  content: '';
  display: block;
  width: 30px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: auto;
  position: absolute;
  top: 0;
  left: 0px;
}

.soc-center__local a, .soc-center__metro a, .soc-center__phone a, .soc-center__zon a, .soc-center__mail a, .soc-center__network a {
  display: block;
  text-decoration: none;
}

.soc-center__local a:hover, .soc-center__metro a:hover, .soc-center__phone a:hover, .soc-center__zon a:hover, .soc-center__mail a:hover, .soc-center__network a:hover {
  color: #e20338;
  text-decoration: underline;
}

.soc-center__local label:before {
  background-image: url("../img/general/map-pin-line.svg");
}

.soc-center__phone label:before {
  background-image: url("../img/general/phone-line.svg");
}

.soc-center__metro label:before {
  background-image: url("../img/general/metro.png");
}

.soc-center__zon label:before {
  background-image: url("../img/general/error-warning-line.svg");
}

.soc-center__mail label:before {
  background-image: url("../img/general/icon-mail.svg");
}

.soc-center__network label:before {
  background-image: url("../img/general/icon-internet.svg");
}

.soc-center__tab-content {
  display: none;
}

.soc-center__table {
  margin-top: 30px;
  border-top: 1px solid #d5dae0;
}

.soc-center__row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #d5dae0;
}

.soc-center__row:last-child .soc-center__col1:before {
  display: none;
}

.soc-center__row.hide {
  display: none;
}

.soc-center__row.show-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.soc-center__more {
  border-top: 1px solid #d5dae0;
  background-color: #f1f2f2;
  z-index: 2;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-top: -2px;
  padding-top: 10px;
  cursor: pointer;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.soc-center__more svg {
  width: 9px;
  height: 5px;
}

.soc-center__more p {
  font-weight: 500;
  margin-right: 10px;
  font-size: 14px;
  line-height: 18px;
  color: #231F20;
}

.soc-center__more[data-open="open"] svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.soc-center__more[data-open="close"] svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.soc-center__col1 {
  width: 35px;
  min-width: 35px;
  position: relative;
}

.soc-center__col1:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  left: 0;
  bottom: -30px;
  background-color: #f1f2f2;
}

.soc-center__col1 img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 28px;
}

.soc-center__col2 {
  font-size: 16px;
  color: #444444;
  line-height: 1;
}

.soc-center__col3 {
  margin-left: auto;
  font-size: 16px;
  color: #444444;
  font-weight: bold;
  line-height: 1.313;
  text-align: right;
  max-width: 500px;
}

.soc-center__col3 span {
  display: block;
  font-size: 12px;
  color: #939598;
  line-height: 1;
  font-weight: 400;
  margin-bottom: -10px;
}

.soc-center__content p {
  font-size: 16px;
  color: #444444;
  line-height: 1.375;
  margin-bottom: 20px;
  font-weight: 400;
}

.soc-center__content ul {
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 20px;
}

.soc-center__content ul li {
  line-height: 1.375;
  color: #444444;
}

.soc-center__gallery {
  margin-bottom: 40px;
}

.soc-center__gallery-item {
  padding-bottom: 70%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 30px;
}

.soc-center__gallery-item img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  height: 100%;
}

.soc-center__gallery-btn {
  margin: 10px auto 0 auto;
  border-color: #c8c8c8;
  max-width: 320px;
}

.main .soc-center .btn-back {
  margin-top: 50px;
  max-width: 300px;
}

.mapz__maps .availability__item {
  margin-bottom: 0;
  padding-top: 15px;
  margin-top: 20px;
  background: transparent;
  position: relative;
  width: 100%;
}

.mapz__maps .availability__item::before {
  position: absolute;
  left: -30px;
  top: 0;
  height: 1px;
  width: calc(100% + 60px);
  background: #E1E3E7;
  content: '';
}

@media only screen and (max-width: 576px) {
  .mapz__maps .availability__item::before {
    left: -15px;
    width: calc(100% + 30px);
  }
}

.mapz__maps .popover .popover-inner > ymaps {
  overflow: visible !important;
}

.availability {
  margin-bottom: 25px;
}

.availability__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 5px 15px 5px 5px;
  background: #F1F2F2;
  border-radius: 6px;
}

@media only screen and (max-width: 1269px) {
  .availability__item {
    width: calc(50% - 5px);
    margin-right: 0;
  }
}

@media only screen and (max-width: 600px) {
  .availability__item {
    width: 100%;
  }
}

.availability__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 1269px) {
  .availability__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.availability__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.availability__icon img {
  max-width: 100%;
  max-height: 100%;
}

.availability__text {
  font-size: 14px;
  line-height: 130%;
  color: #231F20;
}

@media (max-width: 992px) {
  .availability__item:nth-child(3) .availability__text {
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .soc-center .tabs-nav-wrap {
    margin-bottom: 30px;
  }
  .soc-center__info {
    padding: 25px 15px;
    margin-bottom: 50px;
  }
  .soc-center__image {
    margin-bottom: 30px;
  }
  .soc-center__table {
    margin-top: 10px;
  }
}

@media (max-width: 992px) {
  .soc-center__info > .row:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .soc-center__info > .row:first-child > .col-xs-6:last-child {
    width: 100% !important;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 630px) {
  .soc-center__info .col-xs-6 {
    width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .soc-center__col1 {
    display: none;
  }
  .soc-center__col2 {
    font-size: 15px;
    min-width: 100px;
  }
  .soc-center__col3 {
    font-size: 15px;
  }
  .soc-center__gallery-item {
    margin-bottom: 20px;
  }
  .soc-center__gallery .col-xs-6 {
    width: 100%;
  }
}

.inf-supervisor {
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  margin-bottom: 15px;
  padding: 28px 35px 25px 35px;
}

@media only screen and (max-width: 768px) {
  .inf-supervisor {
    padding: 28px 15px 20px 15px;
  }
}

.inf-supervisor__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}

@media only screen and (max-width: 450px) {
  .inf-supervisor__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.inf-supervisor__image {
  width: 124px;
  min-width: 124px;
  height: 124px;
  border-radius: 50%;
  margin-right: 35px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 576px) {
  .inf-supervisor__image {
    margin-right: 15px;
    width: 110px;
    min-width: 110px;
    height: 110px;
  }
}

@media only screen and (max-width: 450px) {
  .inf-supervisor__image {
    margin: auto;
    margin-bottom: 15px;
    width: 124px;
    min-width: 124px;
    height: 124px;
  }
}

.inf-supervisor__image img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 450px) {
  .inf-supervisor__content {
    text-align: center;
    width: 100%;
  }
}

.inf-supervisor__content .h4 {
  margin-bottom: 5px;
}

.inf-supervisor__content p {
  font-size: 16px;
  line-height: 22px;
  color: #14171e;
  margin-bottom: 0;
}

.inf-supervisor__content .gray {
  color: #939598;
  margin-bottom: 5px;
}

.inf-supervisor .soc-center__col1:before {
  background-color: #ffffff;
}

.inf-supervisor .soc-center__table {
  margin-top: 0;
}

.inf-supervisor .soc-center__more {
  background-color: #ffffff;
  padding-top: 20px;
}

html[color-schema='color-brown'] .inf-supervisor__content p, html[color-schema='color-brown'] .inf-supervisor__content .gray {
  color: #a9e44d;
}

html[color-schema='color-brown'] .soc-center__info {
  background: #3b2716;
  border: 1px solid #a9e44d;
}

html[color-schema='color-brown'] .soc-center__local, html[color-schema='color-brown'] .soc-center__metro, html[color-schema='color-brown'] .soc-center__phone, html[color-schema='color-brown'] .soc-center__zon {
  color: #a9e44d;
}

html[color-schema='color-blue'] .inf-supervisor__content p, html[color-schema='color-blue'] .inf-supervisor__content .gray {
  color: #063462;
}

html[color-schema='color-blue'] .soc-center__info {
  background: #9dd1ff;
  border: 1px solid #063462;
}

html[color-schema='color-blue'] .soc-center__local, html[color-schema='color-blue'] .soc-center__metro, html[color-schema='color-blue'] .soc-center__phone, html[color-schema='color-blue'] .soc-center__zon {
  color: #063462;
}

html[color-schema='color-black'] .inf-supervisor__content p, html[color-schema='color-black'] .inf-supervisor__content .gray {
  color: #ffffff;
}

html[color-schema='color-black'] .soc-center__info {
  background: #000000;
  border: 1px solid #ffffff;
}

html[color-schema='color-black'] .soc-center__local, html[color-schema='color-black'] .soc-center__metro, html[color-schema='color-black'] .soc-center__phone, html[color-schema='color-black'] .soc-center__zon {
  color: #ffffff;
}

html[color-schema='color-beige'] .inf-supervisor__content p, html[color-schema='color-beige'] .inf-supervisor__content .gray {
  color: #4d4b43;
}

html[color-schema='color-beige'] .soc-center__info {
  background: #f7f3d6;
  border: 1px solid #4d4b43;
}

html[color-schema='color-beige'] .soc-center__local, html[color-schema='color-beige'] .soc-center__metro, html[color-schema='color-beige'] .soc-center__phone, html[color-schema='color-beige'] .soc-center__zon {
  color: #4d4b43;
}

.socialforum__container {
  position: relative;
}

.socialforum-share {
  position: absolute;
  top: -87px;
  right: 0;
}

h1.page-title.page-title_socialForum {
  margin-bottom: 15px;
}

.special-projects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.special-projects__ell {
  position: relative;
  width: 208px;
  padding: 0 15px;
  text-align: center;
  margin-bottom: 40px;
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.special-projects__icon-wr {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100px;
  margin-bottom: 30px;
}

/*.special-projects__ell:hover .special-projects__title {
    color: #e20338;
}*/
.areas-practice__ell:hover .areas-practice__icon-wr:before {
  display: none;
  opacity: 0;
}

/*.areas-practice__ell:hover .areas-practice__title {
    color: #e20338;
}*/
.special-projects__icon {
  max-height: 100%;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.special-projects__title {
  line-height: 1.5;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

@media screen and (max-width: 1269px) {
  .special-projects__ell {
    width: 20%;
  }
}

@media screen and (max-width: 991px) {
  .special-projects__ell {
    width: 50%;
  }
}

.survey {
  background-image: url(../img/general/sckPicture/banner2.svg);
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 0px;
  margin-bottom: 70px;
}

@media (max-width: 481px) {
  .survey {
    background-position: 60%;
  }
}

.survey__text span {
  background-color: #0092D0;
  padding: 8px 15px;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 16px;
}

@media (max-width: 1270px) {
  .survey__text span {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .survey__text span {
    font-size: 22px;
  }
}

@media (max-width: 760px) {
  .survey__text span {
    font-size: 18px;
  }
}

@media (max-width: 616px) {
  .survey__text span {
    font-size: 16px;
  }
}

@media (max-width: 470px) {
  .survey__text span {
    font-size: 14px;
    padding: 6px 12px;
  }
}

.survey h2 {
  margin-top: 20px;
  font-family: "GOSTUI2";
  font-weight: 700;
  font-size: 34px;
  color: #231F20;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .survey h2 {
    font-size: 22px;
  }
}

@media (max-width: 760px) {
  .survey h2 {
    font-size: 18px;
  }
}

@media (max-width: 470px) {
  .survey h2 {
    font-size: 16px;
  }
}

@media (max-width: 321px) {
  .survey h2 {
    font-size: 14px;
  }
}

.survey__button {
  padding: 16px 45px;
  background: #E20338;
  border-radius: 4px;
  font-family: "GOSTUI2";
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  margin-top: 44px;
  display: inline-block;
}

@media (max-width: 768px) {
  .survey__button {
    margin-top: 20px;
  }
}

@media (max-width: 470px) {
  .survey__button {
    font-size: 14px;
  }
}

.survey__button:hover {
  background-color: #b0022c;
  border-color: #b0022c;
  color: #fff;
}

body .breadcrumb-section-new .aside__buttons-top .btn {
  padding: 14px;
}

body .breadcrumb-section-new {
  padding-top: 40px;
}

.breadcrumb-section-new .aside, .new-aside-long .aside {
  width: 24.4%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.breadcrumb-section-new .aside__buttons-top > .btn,
.breadcrumb-section-new .aside__buttons-top > .wrap-popover-sharp {
  width: 50%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.new-aside-long .sidebar-test__text p {
  color: #231F20;
}

.new-aside-long .sidebar-test__header {
  font-size: 18px;
}

.start-test-container {
  padding: 40px 40px 30px 40px;
  background: rgba(233, 239, 253, 0.5);
  border-radius: 4px;
  margin-bottom: 40px;
}

.start-test-inner {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 40px 40px 50px 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.start-test-inner-title {
  font-weight: 682;
  font-size: 24px;
  line-height: 130%;
  color: #231F20;
  max-width: 391px;
  margin-bottom: 30px;
}

.start-test-inner .btn {
  max-width: 192px;
  width: 100%;
}

.start-test-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 30px;
}

.start-test-social-link {
  margin-right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #91B3FA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.start-test-social-link:hover {
  background: #80a1e8;
}

.start-test-social-link:last-child {
  margin-right: 0;
}

html .test-buttons .btn-test-border {
  background-color: transparent;
  color: #e20338;
}

html .test-buttons .btn-test-border svg {
  stroke: #E20338;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

html .test-buttons .btn-test-border:hover {
  color: #fff;
}

html .test-buttons .btn-test-border:hover svg {
  stroke: #fff;
}

.test-question-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  padding-bottom: 52.63%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}

.test-buttons .btn-final {
  max-width: 346px;
  width: 100%;
  min-width: 0px;
  margin: 0 auto;
}

.test-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 15px;
}

.test-buttons .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 160px;
  position: relative;
}

@media (max-width: 992px) {
  .test-buttons .btn {
    min-width: 120px;
    padding: 10px;
  }
}

.test-buttons .btn svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
}

.test-buttons .btn svg:first-child {
  left: 28px;
  right: auto;
  top: 21px;
}

@media (max-width: 991px) {
  .test-buttons .btn svg:first-child {
    left: 17px;
    top: 16px;
  }
}

.test-buttons .btn svg:last-child {
  left: auto;
  right: 28px;
  top: 21px;
}

@media (max-width: 991px) {
  .test-buttons .btn svg:last-child {
    right: 17px;
    top: 16px;
  }
}

.test-container {
  padding: 30px 40px 50px 40px;
  background: rgba(233, 239, 253, 0.5);
  border-radius: 4px;
}

.test-question {
  font-weight: bold;
  font-size: 24px;
  line-height: 130%;
  color: #231F20;
  margin-bottom: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.test-answer {
  padding: 18px 30px;
  background: #FFFFFF;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 15px;
  cursor: pointer;
}

.test-answer .jq-radio {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 16px;
}

.test-answer-text {
  font-size: 16px;
  line-height: 130%;
  font-weight: normal;
  color: #000000;
}

.result-test-container {
  padding: 30px 40px 40px 40px;
  background: rgba(233, 239, 253, 0.5);
  border-radius: 4px;
}

.result-test-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 24px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 420px) {
  .result-test-title {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.result-test-block {
  padding: 25px 30px 30px 30px;
  background: #FFFFFF;
  border-radius: 4px;
}

.result-test-block-inner {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 130%;
  color: #000000;
}

.result-test-block-inner a {
  color: #e20338;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 1px solid rgba(226, 3, 56, 0.38);
}

.result-test-block-inner a:hover {
  border-bottom: 1px solid rgba(226, 3, 56, 0);
}

.result-test-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 22px 15px 22px 30px;
  background: #FFFFFF;
  border-radius: 4px;
  margin-bottom: 10px;
}

.result-test-address-name {
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #231F20;
  margin-bottom: 4px;
}

.result-test-address-location {
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #939598;
}

.result-test-address-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 20px;
}

.result-test-address-icon svg {
  fill: #D5DAE0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.result-test-address:hover .result-test-address-icon svg {
  fill: #e20338;
}

.btn-aside-recomendation {
  position: relative;
}

.btn-aside-recomendation svg {
  position: absolute;
  top: 14px;
  left: 60px;
}

.sidebar-test-recomendation {
  padding: 30px;
  border: 1px solid #D5DAE0;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sidebar-test-recomendation .btn {
  max-width: 100%;
  width: 100%;
}

.sidebar-test-recomendation-title {
  margin-bottom: 64px;
  font-weight: bold;
  font-size: 18px;
  line-height: 140%;
  max-width: 216px;
  color: #231F20;
}

.sidebar-test-recomendation-title.sidebar-test-services-title {
  margin-bottom: 40px;
}

.result-test-block-inner:last-child {
  margin-bottom: 0;
}

.result-test-block .btn {
  max-width: 326px;
  width: 100%;
}

.test-container-inner [disabled].btn.btn-primary {
  pointer-events: none;
}

.test-container-inner [disabled].btn.btn-primary span {
  color: #fff;
}

.nav-btn-blue a {
  background: #00CDEF !important;
}

.nav-btn-blue a:hover {
  background: #0c6e8c !important;
}

@media only screen and (max-width: 1279px) {
  .breadcrumb-section-new .aside, .new-aside-long .aside {
    width: 31.4%;
  }
}

@media only screen and (max-width: 1269px) {
  .btn-aside-recomendation svg {
    left: 33px;
  }
}

@media only screen and (max-width: 991px) {
  .breadcrumb-section-new .aside, .new-aside-long .aside {
    width: 41.4%;
    margin-top: 0 !important;
  }
}

@media only screen and (max-width: 768px) {
  .sidebar-test-recomendation {
    padding: 15px;
  }
  .result-test-title {
    font-size: 19px;
    margin-bottom: 15px;
    line-height: 23px;
  }
  .result-test-block {
    padding: 15px;
  }
  .result-test-block-inner {
    font-size: 14px;
  }
  .sidebar-test-recomendation-title {
    margin-bottom: 30px;
  }
  .sidebar-test-recomendation-title.sidebar-test-services-title {
    margin-bottom: 30px;
  }
  .result-test-address-icon {
    margin-left: 0;
  }
  .result-test-address-name, .result-test-address-location {
    font-size: 12px;
    line-height: 15px;
  }
  .result-test-address-location {
    margin-top: 5px;
  }
  .result-test-address {
    padding: 15px;
  }
  .start-test-container {
    padding: 15px;
    margin-bottom: 20px;
  }
  .result-test-container {
    padding: 20px;
    margin-top: 20px;
  }
  .start-test-inner {
    padding: 20px;
  }
  .new-aside-long .sidebar-test {
    padding: 20px;
  }
  .start-test-social {
    padding-top: 20px;
  }
  .new-aside-long .sidebar-test__header {
    font-size: 15px;
  }
  .start-test-inner-title {
    font-size: 21px;
  }
  .test-container {
    padding: 20px;
  }
  .test-question {
    font-size: 19px;
    margin-bottom: 15px;
  }
  .test-answer {
    padding: 15px;
  }
  .test-answer-text {
    font-size: 14px;
  }
}

@media (max-width: 753px) {
  .breadcrumb-section-new .aside, .new-aside-long .aside {
    width: 100% !important;
    margin-top: 20px !important;
  }
}

@media only screen and (max-width: 460px) {
  .test-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0;
  }
  .test-buttons .btn {
    max-width: 100%;
    width: 100%;
    margin-top: 15px;
  }
}

.download-title-btn-container {
  margin-left: auto;
}

@media only screen and (max-width: 420px) {
  .download-title-btn-container {
    width: 100%;
    margin-left: 0;
  }
}

.download-title-btn {
  padding: 12px 47px;
  border: 1px solid #D5DAE0;
  border-radius: 2px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #848E99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 420px) {
  .download-title-btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
    max-width: 100%;
    margin-top: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 12px 20px;
  }
}

.download-title-btn:hover {
  background: #D5DAE0;
  color: #fff !important;
}

.download-title-btn:hover svg, .download-title-btn:hover path {
  fill: #fff !important;
}

.download-title-btn svg, .download-title-btn path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}

.start-test-inner-text {
  max-width: 420px;
  font-size: 18px;
  line-height: 130%;
  color: #000000;
  margin-bottom: 45px;
}

.start-test-inner-list {
  font-size: 20px;
  line-height: 130%;
  font-weight: 600;
  color: #231F20;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 6px;
}

.start-test-inner-list::before {
  content: '';
  border-bottom: 1px dashed #EBF3FA;
  width: 100%;
  max-width: calc(100% - 120px);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.start-test-inner-list li {
  padding-left: 33px;
  position: relative;
  margin-bottom: 15px;
}

.start-test-inner-list li:last-child {
  margin-bottom: 0;
}

.start-test-inner-list li::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: #2655C9;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #FFFFFF;
  text-align: center;
  border-radius: 50%;
}

.sidebar-test.sidebar-test-new {
  padding: 40px 30px 30px 30px;
  background: #F3F6FD;
  border-radius: 4px;
  border: none;
}

.sidebar-test-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 22px;
  color: #231F20;
}

.sidebar-test-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  line-height: 26px;
  color: #231F20;
  margin-bottom: 15px;
}

.sidebar-test-list-item:last-child {
  margin-bottom: 0;
}

.sidebar-test-list-item svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
  margin-top: 1px;
}

.test-container.new-test-container {
  padding-top: 50px;
  position: relative;
  margin-top: 20px;
}

.new-test-container-count {
  font-size: 14px;
  line-height: 130%;
  color: #231F20;
}

.result__test-count {
  font-size: 16px;
  line-height: 20px;
  color: rgba(132, 142, 153, 0.6);
  position: absolute;
  left: 20px;
  top: 22px;
}

.result-test-address.result-test-address-new {
  position: relative;
  padding-left: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.result-test-address.result-test-address-new .result-test-address-name {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.result-test-address.result-test-address-new:hover {
  -webkit-box-shadow: 0px 4px 5px rgba(181, 184, 190, 0.2);
          box-shadow: 0px 4px 5px rgba(181, 184, 190, 0.2);
}

.result-test-address.result-test-address-new:hover .result-test-address-name {
  color: #e20338;
}

.download-title-btn.download-title-btn-no-border {
  border: none;
  padding: 0;
}

.download-title-btn.download-title-btn-no-border:hover {
  color: #e20338 !important;
  background: transparent;
}

.download-title-btn.download-title-btn-no-border:hover svg, .download-title-btn.download-title-btn-no-border:hover path {
  fill: #e20338 !important;
}

.result-test-date-create {
  font-size: 14px;
  line-height: 18px;
  color: #848E99;
  padding-top: 5px;
}

@media only screen and (max-width: 1269px) {
  .sidebar-test-list-item {
    font-size: 16px;
    line-height: 24px;
  }
  .sidebar-test-list-item svg {
    margin-right: 10px;
  }
  .sidebar-test-title {
    font-size: 17px;
    line-height: 22px;
  }
  .start-test-inner-list {
    font-size: 18px;
  }
  .start-test-inner-list li::before {
    top: -2px;
  }
  .start-test-inner-text {
    font-size: 16px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .sidebar-test.sidebar-test-new {
    padding: 40px 40px 30px 40px;
  }
}

@media only screen and (max-width: 768px) {
  .sidebar-test.sidebar-test-new {
    padding: 15px;
  }
  .start-test-inner-list {
    font-size: 16px;
  }
  .new-test-container-count {
    right: 15px;
  }
  .result__test-count {
    top: 15px;
    font-size: 12px;
    line-height: 16px;
    left: 15px;
  }
  .result-test-address.result-test-address-new {
    padding-left: 35px;
  }
  .result-test-date-create {
    font-size: 12px;
    line-height: 16px;
  }
}

@media only screen and (max-width: 420px) {
  .download-title-btn.download-title-btn-no-border {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media only screen and (min-width: 1270px) {
  .aside.text-base .sidebar-test__text p {
    font-size: 17px;
  }
}

.sidebar-test {
  border: 1px solid gainsboro;
  border-radius: 4px;
  background-color: #ffffff;
  padding: 30px 30px 10px 30px;
}

@media only screen and (max-width: 576px) {
  .sidebar-test {
    padding: 30px 15px 10px 15px;
  }
}

.sidebar-test__header {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  padding: 15px 20px;
  border-radius: 4px;
  color: #444444;
  font-weight: bold;
  text-transform: uppercase;
  background: #f1f2f2;
}

.sidebar-test__header span {
  width: 22px;
  height: 22px;
  border: 2px solid #e20338;
  border-radius: 50%;
  text-align: center;
  color: #e20338;
  font-size: 12px;
  text-transform: none;
  line-height: 20px;
  font-weight: bold;
  margin-right: 10px;
}

.sidebar-test__text p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #444444;
  line-height: 1.375;
}

.sidebar-test__text b {
  font-weight: 600;
}

.test-qstn__header {
  padding-bottom: 25px;
  border-bottom: 1px solid #dcdcdc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (max-width: 768px) {
  .test-qstn__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.test-qstn__name {
  font-size: 18px;
  color: black;
  font-weight: bold;
  line-height: 1.222;
}

@media only screen and (max-width: 768px) {
  .test-qstn__name {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.test-qstn__count {
  min-width: 100px;
  font-size: 14px;
  color: #939598;
  line-height: 1;
  padding-top: 3px;
  margin-left: 10px;
}

@media only screen and (max-width: 768px) {
  .test-qstn__count {
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.test-qstn__body {
  padding: 40px 15px 0 15px;
}

@media only screen and (max-width: 576px) {
  .test-qstn__body {
    padding: 30px 0px;
  }
}

.test-qstn__image {
  border-radius: 4px;
  width: 362px;
  padding-bottom: calc(362px * 0.7);
  position: relative;
  overflow: hidden;
  margin: 0 auto 25px auto;
}

@media (max-width: 992px) {
  .test-qstn__image {
    width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .test-qstn__image {
    width: 100%;
    padding-bottom: calc(100% * 0.7);
  }
}

.test-qstn__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}

.test-qstn__checkbox {
  background: #ffffff;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media only screen and (max-width: 576px) {
  .test-qstn__checkbox {
    padding: 20px 10px;
  }
}

.test-qstn__checkbox label {
  display: block;
  margin-left: 10px;
  font-weight: 400;
  font-size: 16px;
  color: black;
  width: calc(100% - 60px);
}

.test-qstn__checkbox label:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.test-qstn__checkbox.checkbox-not-checked {
  background: #f8f9f9;
}

.test-qstn__checkbox.checkbox-not-checked .jq-radio {
  background: #f8f9f9;
}

.test-qstn__footer {
  margin-top: 30px;
  position: relative;
}

.test-qstn__footer .btn {
  width: 280px;
  margin: auto;
  display: block;
}

@media only screen and (max-width: 576px) {
  .test-qstn__footer .btn {
    width: 100%;
  }
}

.test-qstn__footer .disabled {
  color: #ffffff !important;
}

.test-qstn__comeback {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto !important;
  margin: auto;
  height: 16px;
  font-size: 15px;
  line-height: 1;
  color: #444444;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  width: 66px;
}

@media only screen and (max-width: 576px) {
  .test-qstn__comeback {
    margin-top: 20px;
    position: relative;
  }
}

.test-qstn__comeback .fa {
  font-size: 12px;
  color: #444444;
  line-height: 15px;
  margin-right: 10px;
}

.test-qstn__comeback:hover {
  color: #e20338;
}

.test-qstn__comeback:hover .fa {
  color: #e20338;
}

@media (max-width: 1270px) {
  .test-qstn__footer button:first-child {
    margin-bottom: 15px !important;
  }
}

.test-result {
  background-image: url("../img/general/test-bg-result.png");
}

.test-result__box {
  border-radius: 4px;
  background: #ffffff;
  width: 510px;
  margin: 25px auto;
  overflow: hidden;
  position: relative;
  padding: 30px 30px 50px 30px;
  -webkit-box-shadow: 0px 10px 25px -23px #e20338;
          box-shadow: 0px 10px 25px -23px #e20338;
}

@media only screen and (max-width: 768px) {
  .test-result__box {
    width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .test-result__box {
    width: 100%;
    padding: 30px 15px 50px 15px;
  }
}

.test-result__img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 240px;
  max-width: 280px;
  height: auto;
  z-index: 0;
}

@media only screen and (max-width: 768px) {
  .test-result__img {
    max-width: 220px;
  }
}

@media only screen and (max-width: 576px) {
  .test-result__img {
    max-width: 170px;
    opacity: 0.7;
  }
}

.test-result__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

@media only screen and (max-width: 576px) {
  .test-result__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.test-result__name {
  font-size: 16px;
  color: black;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
}

@media only screen and (max-width: 576px) {
  .test-result__name {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.test-result__type {
  font-size: 12px;
  color: #e20338;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.333;
}

@media only screen and (max-width: 576px) {
  .test-result__type {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 15px;
  }
}

.test-result__res {
  font-size: 48px;
  color: #e20338;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.208;
  margin-bottom: 20px;
  z-index: 2;
  position: relative;
}

@media only screen and (max-width: 576px) {
  .test-result__res {
    font-size: 40px;
  }
}

.test-result__res span {
  display: block;
  font-size: 14px;
  color: #303030;
  line-height: 1.571;
  opacity: 0.502;
  margin-bottom: 5px;
}

.test-result__text {
  display: block;
  width: auto;
  font-size: 16px;
  color: black;
  line-height: 1.313;
  font-weight: 600;
  z-index: 2;
  position: relative;
}

@media only screen and (max-width: 576px) {
  .test-result__text {
    width: 100%;
  }
}

.test-result__text a {
  color: #e20338;
}

.test-result__text p img {
  width: 100%;
  height: auto;
  margin-top: 30px;
}

.test-result__text img {
  width: 100%;
  height: auto;
  margin-top: 30px;
}

.test-result__share {
  margin-top: 30px;
  margin-bottom: 10px;
}

.test-result__share p {
  text-align: center;
  opacity: 0.502;
  font-size: 16px;
  color: #303030;
  line-height: 1.2;
}

.test-result .btn-repeat {
  width: 220px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 15px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.test-result .btn-repeat span {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/general/repeat.png");
  width: 24px;
  height: 27px;
  display: block;
  margin-right: 15px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.test-result .btn-repeat:hover span {
  background-image: url("../img/general/repeat-hover.png");
}

.test-result__social {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  margin-top: 15px;
}

.test-result__social-item {
  display: block;
}

.test-result__social-item a {
  display: block;
  border-radius: 50%;
  background-color: white;
  width: 54px;
  height: 54px;
  text-align: center;
  line-height: 54px;
  margin: 0 10px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

@media only screen and (max-width: 576px) {
  .test-result__social-item a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 7px;
  }
}

.test-result__social-item a:hover .fa {
  color: #e20338;
}

.test-result__social-item .fa {
  font-size: 25px;
  line-height: 54px;
  color: #c8c8c8;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

@media only screen and (max-width: 576px) {
  .test-result__social-item .fa {
    font-size: 20px;
    line-height: 50px;
  }
}

.test-link {
  border-radius: 4px;
  border: 1px solid #e20338;
  padding: 33px 35px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.test-link__image {
  position: absolute;
  max-height: 80%;
  max-width: 80%;
  display: block;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.test-link__type {
  font-size: 12px;
  color: #e20338;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.333;
  margin-bottom: 15px;
}

.test-link__name {
  width: 170px;
  height: 130px;
  font-size: 24px;
  color: #14171e;
  font-weight: bold;
  line-height: 1.2;
}

.test-link .btn {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .test-link .btn {
    max-width: 350px;
  }
}

@media only screen and (max-width: 576px) {
  .test-link .btn {
    max-width: 100%;
  }
}

.test-link .row-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 992px) {
  .test-link .row-btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (max-width: 576px) {
  .test-link .row-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.test-link .row-btn .btn:first-child {
  margin-bottom: 15px;
}

@media only screen and (max-width: 992px) {
  .test-link .row-btn .btn:first-child {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 576px) {
  .test-link .row-btn .btn:first-child {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 992px) {
  .test-link .row-btn .btn {
    width: calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}

@media only screen and (max-width: 576px) {
  .test-link .row-btn .btn {
    width: 100%;
    max-width: 350px;
  }
}

.test-list__item {
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  margin-bottom: 15px;
  padding: 25px 35px;
}

@media only screen and (max-width: 1260px) {
  .test-list__item {
    padding: 25px 20px;
  }
}

@media only screen and (max-width: 992px) {
  .test-list__item {
    padding: 25px 35px;
  }
}

@media only screen and (max-width: 767px) {
  .test-list__item {
    padding: 25px 20px;
  }
}

@media only screen and (max-width: 576px) {
  .test-list__item {
    padding: 20px 15px;
  }
}

.test-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 576px) {
  .test-list__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.test-list__row.row-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.test-list__col1 {
  width: 38%;
  min-width: 38%;
}

@media only screen and (max-width: 576px) {
  .test-list__col1 {
    width: 100%;
    min-width: 100%;
  }
}

.test-list__col2 {
  width: calc(62% - 30px);
  min-width: calc(62% - 30px);
}

@media only screen and (max-width: 1260px) {
  .test-list__col2 {
    width: calc(62% - 20px);
    min-width: calc(62% - 20px);
  }
}

@media only screen and (max-width: 576px) {
  .test-list__col2 {
    width: 100%;
    min-width: 100%;
  }
}

.test-list__image {
  padding-bottom: 77.6%;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 576px) {
  .test-list__image {
    padding-bottom: 57%;
  }
}

.test-list__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

.test-list__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1260px) {
  .test-list__flex {
    margin-bottom: 20px;
  }
}

.test-list__type {
  font-size: 12px;
  color: #e20338;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.333;
}

.test-list__question {
  border-radius: 10px;
  line-height: 1;
  padding: 7px 10px 5px 10px;
  background-color: rgba(213, 217, 221, 0.38);
  font-size: 12px;
  color: #0c6e8c;
  font-weight: bold;
  text-transform: uppercase;
}

.test-list__title {
  font-size: 24px;
  color: #14171e;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.1;
}

@media only screen and (max-width: 576px) {
  .test-list__title {
    font-size: 20px;
  }
}

.test-list__about {
  font-size: 16px;
  color: #14171e;
  line-height: 1.375;
  margin-bottom: 25px;
  height: 88px;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 576px) {
  .test-list__about {
    height: auto;
    -webkit-line-clamp: 8;
  }
}

.test-list__ended {
  text-align: right;
  font-size: 14px;
  color: #444444;
  line-height: 1.714;
}

.test-list__ended span {
  font-weight: bold;
}

@media only screen and (max-width: 576px) {
  .test-list__ended {
    margin-top: 15px;
    text-align: center;
  }
}

.test-list .btn {
  width: 100%;
}

.sidebar-test-list {
  margin-bottom: 30px;
  margin-top: 35px;
}

.sidebar-test-list__title {
  font-size: 18px;
  color: #14171e;
  font-weight: bold;
  margin-bottom: 15px;
}

.sidebar-test-list__link {
  display: block;
  font-size: 16px;
  color: #14171e;
  line-height: 1.5;
  margin-bottom: 10px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.sidebar-test-list__link span {
  border-bottom: 1px solid #e20338;
}

.sidebar-test-list__link:hover {
  text-decoration: none;
  color: #e20338;
}

.sidebar-test-list .btn {
  width: 100%;
  margin-top: 20px;
}

.test-hint {
  width: 100%;
  padding-left: 60px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.5s, opacity 0.1s linear;
  transition: visibility 0.5s, opacity 0.1s linear;
  height: 0;
}

.test-hint.show {
  visibility: visible;
  opacity: 1;
  height: auto;
}

.test-hint__text {
  padding-top: 15px;
  font-weight: 400;
  font-size: 16px;
  color: black;
}

.test-hint.correct .js-hint-title:before {
  background-image: url("../img/general/correct-fill.svg");
}

.test-hint.incorrect .js-hint-title:before {
  background-image: url("../img/general/incorrect-fill.svg");
}

.js-hint-title {
  position: relative;
}

.js-hint-title:before {
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  position: absolute;
  top: 13px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  left: -30px;
}

.text-block {
  word-break: break-word;
}

html[color-schema='color-brown'] .test-link {
  border: 1px solid #a9e44d;
}

html[color-schema='color-brown'] .test-link__type {
  color: #a9e44d;
}

html[color-schema='color-brown'] .test-link__name {
  color: #a9e44d;
}

html[color-schema='color-brown'] .tag-block__ell {
  background: #3b2716;
  border: 1px solid #a9e44d;
}

html[color-schema='color-brown'] .tag-block.tag-block--side {
  border: 1px solid #a9e44d;
}

html[color-schema='color-brown'] .tag-block__title {
  color: #a9e44d;
}

html[color-schema='color-brown'] .sec-mos.sec-mos--contact {
  background: #3b2716;
}

html[color-schema='color-brown'] .sec-mos.sec-mos--contact.light-green-bg {
  background: #3b2716 !important;
}

html[color-schema='color-brown'] .sec-mos.sec-mos--contact .text-white .mos-title {
  color: #a9e44d;
}

html[color-schema='color-blue'] .test-link {
  border: 1px solid #063462;
}

html[color-schema='color-blue'] .test-link__type {
  color: #063462;
}

html[color-schema='color-blue'] .test-link__name {
  color: #063462;
}

html[color-schema='color-blue'] .tag-block__ell {
  background: #9dd1ff;
  border: 1px solid #063462;
}

html[color-schema='color-blue'] .tag-block.tag-block--side {
  border: 1px solid #063462;
}

html[color-schema='color-blue'] .tag-block__title {
  color: #063462;
}

html[color-schema='color-blue'] .sec-mos.sec-mos--contact {
  background: #9dd1ff;
}

html[color-schema='color-blue'] .sec-mos.sec-mos--contact.light-green-bg {
  background: #9dd1ff !important;
}

html[color-schema='color-blue'] .sec-mos.sec-mos--contact .text-white .mos-title {
  color: #063462;
}

html[color-schema='color-black'] .test-link {
  border: 1px solid #ffffff;
}

html[color-schema='color-black'] .test-link__type {
  color: #ffffff;
}

html[color-schema='color-black'] .test-link__name {
  color: #ffffff;
}

html[color-schema='color-black'] .tag-block__ell {
  background: #000000;
  border: 1px solid #ffffff;
}

html[color-schema='color-black'] .tag-block.tag-block--side {
  border: 1px solid #ffffff;
}

html[color-schema='color-black'] .tag-block__title {
  color: #ffffff;
}

html[color-schema='color-black'] .sec-mos.sec-mos--contact {
  background: #000000;
}

html[color-schema='color-black'] .sec-mos.sec-mos--contact.light-green-bg {
  background: #000000 !important;
}

html[color-schema='color-black'] .sec-mos.sec-mos--contact .text-white .mos-title {
  color: #ffffff;
}

html[color-schema='color-beige'] .test-link {
  border: 1px solid #4d4b43;
}

html[color-schema='color-beige'] .test-link__type {
  color: #4d4b43;
}

html[color-schema='color-beige'] .test-link__name {
  color: #4d4b43;
}

html[color-schema='color-beige'] .tag-block__ell {
  background: #f7f3d6;
  border: 1px solid #4d4b43;
}

html[color-schema='color-beige'] .tag-block.tag-block--side {
  border: 1px solid #4d4b43;
}

html[color-schema='color-beige'] .tag-block__title {
  color: #4d4b43;
}

html[color-schema='color-beige'] .sec-mos.sec-mos--contact {
  background: #f7f3d6;
}

html[color-schema='color-beige'] .sec-mos.sec-mos--contact.light-green-bg {
  background: #f7f3d6 !important;
}

html[color-schema='color-beige'] .sec-mos.sec-mos--contact .text-white .mos-title {
  color: #4d4b43;
}

.tst__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.tst-box {
  width: calc(100% / 2 - 30px);
  margin-left: 15px;
  margin-right: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  margin-bottom: 30px;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tst-box__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 18px;
  height: 192px;
}

.tst-box__image {
  width: 280px;
  max-width: 280px;
  margin-right: 30px;
  height: 180px;
  border-radius: 4px;
  background-position: center center;
  background-size: cover;
  min-width: 280px;
  margin-right: 30px;
  position: relative;
}

.tst-box__btn .btn {
  width: 200px;
}

.tst-box__category {
  position: absolute;
  top: 10px;
  left: 10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding-top: 6.5px;
  padding-bottom: 6.5px;
  text-transform: uppercase;
}

.tst-box__title {
  line-height: 2.4rem;
  font-weight: 700;
  font-size: 1.8rem;
  max-height: 192px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.tst-box__content {
  line-height: 2.1rem;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 25px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.tst-box__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tst-box__info {
  color: #444444;
  font-size: 1.4rem;
}

@media (max-width: 1270px) {
  .tst-box {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .tst-box__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
  }
  .tst-box__title {
    width: 100%;
    margin-top: 12px;
    font-size: 2rem;
    line-height: 2.2rem;
    height: 66px;
  }
  .tst-box__content {
    margin-bottom: 15px;
    max-height: 220px;
    overflow: hidden;
    position: relative;
  }
  .tst-box__content:after {
    content: "";
    display: block;
    position: absolute;
    top: 180px;
    height: 40px;
    width: 100%;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    opacity: 1;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#ffffff));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  }
  .tst-box__image {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .tst-box {
    width: calc(100% - 30px);
  }
  .tst-box__content {
    height: auto;
  }
  .tst-box__title {
    height: auto;
  }
}

@media (max-width: 380px) {
  .tst-box__image {
    width: 100%;
    min-width: 100%;
  }
  .tst-box__footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .tst-box__info {
    margin-top: 15px;
    text-align: center;
    width: 100%;
  }
  .tst-box .btn {
    width: 100%;
  }
  .tst-box__btn {
    width: 100%;
  }
}

html[img-display='hide'] .tst .tst-box__image {
  display: none;
}

html[img-display='hide'] .tst .tst-box__header {
  height: auto;
}

html[img-display='mono'] .tst .tst-box__image {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

html[color-schema='color-black'] .test-result__text a {
  color: #000;
}

html[color-schema='color-black'] .tst-box {
  border-color: #fff;
}

html[color-schema='color-black'] .test-qstn__checkbox,
html[color-schema='color-black'] .test-qstn__checkbox.checkbox-not-checked {
  background-color: transparent;
  border: 1px solid #fff;
}

html[color-schema='color-black'] .sidebar-test {
  border: 1px solid #fff;
  background-color: transparent;
}

html[color-schema='color-black'] .sidebar-test__text {
  color: #fff;
}

html[color-schema='color-black'] .sidebar-test__header {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}

html[color-schema='color-black'] .sidebar-test__header span {
  color: #fff;
  border-color: #fff;
}

html[color-schema='color-black'] .test-result__social-item a:hover .fa,
html[color-schema='color-black'] .test-result__type,
html[color-schema='color-black'] .test-result__res {
  color: #000;
}

html[color-schema='color-blue'] .tst-box {
  border-color: #063462;
}

html[color-schema='color-beige'] .tst-box {
  border-color: #4d4b43;
}

html[color-schema='color-brown'] .tst-box__info {
  color: #a9e44d;
}

html[color-schema='color-brown'] .tst-box {
  border-color: #a9e44d;
}

.gestures-holiday {
  padding-top: 60px;
  width: 800px;
  max-width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .gestures-holiday {
    padding-top: 20px;
  }
}

.gestures-holiday__img {
  position: absolute;
  right: -740px;
  top: 140px;
}

@media (max-width: 1600px) {
  .gestures-holiday__img {
    display: none;
  }
}

.gestures-holiday-list {
  position: relative;
}

.gestures-holiday-list::before {
  content: '';
  position: absolute;
  left: 150px;
  top: 0px;
  width: 1px;
  height: 100%;
  background: #DDE0E3;
}

@media (max-width: 767px) {
  .gestures-holiday-list::before {
    left: 100px;
  }
}

.gestures-holiday-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .gestures-holiday-item {
    margin-bottom: 25px;
  }
}

.gestures-holiday-item__date {
  width: 150px;
  font-size: 18px;
  line-height: 24px;
  color: #D91B5B;
  font-weight: 700;
}

@media (max-width: 767px) {
  .gestures-holiday-item__date {
    width: 100px;
    font-size: 13px;
    line-height: 21px;
  }
}

.gestures-holiday-item__text {
  width: calc(100% - 150px);
  padding-left: 35px;
  position: relative;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

@media (max-width: 767px) {
  .gestures-holiday-item__text {
    font-size: 14px;
    width: calc(100% - 100px);
  }
}

.gestures-holiday-item__text:before {
  content: '';
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 13px;
  background: #D91B5B;
  left: -6px;
  top: 6px;
}

.gestures-bnr-statistic {
  background: url("../img/general/gestures/bnr-statistic-main.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 560px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 50px;
}

.gestures-bnr-statistic__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gestures-bnr-statistic__top img {
  margin-right: 30px;
}

.gestures-bnr-statistic__top img:last-child {
  margin-right: 0px;
}

.gestures-bnr-statistic-info {
  background: #F1F2F2;
  border-radius: 4px;
  padding: 30px 35px;
  width: 385px;
  max-width: 100%;
}

.gestures-bnr-statistic-info-item {
  margin-bottom: 40px;
}

.gestures-bnr-statistic-info-item:last-child {
  margin-bottom: 0px;
}

.gestures-bnr-statistic-info-item__number {
  font-size: 40px;
  line-height: 51px;
  font-weight: 600;
  color: #D91B5B;
}

.gestures-bnr-statistic-info-item__text {
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.gestures-inspiration {
  margin-bottom: 50px;
}

.gestures-inspiration-chempion-list {
  padding-top: 40px;
  padding-bottom: 40px;
}

.gestures-inspiration-chempion-item {
  padding: 30px;
  background: #F1F2F2;
  border-radius: 4px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .gestures-inspiration-chempion-item {
    padding: 15px;
    margin-bottom: 20px;
  }
}

.gestures-inspiration-chempion-item__image {
  width: 265px;
}

.gestures-inspiration-chempion-item__image img {
  max-width: 100%;
}

@media (max-width: 767px) {
  .gestures-inspiration-chempion-item__image {
    width: 100%;
    margin-bottom: 15px;
  }
}

.gestures-inspiration-chempion-item__info {
  width: calc(100% - 265px);
  padding-left: 30px;
}

@media (max-width: 767px) {
  .gestures-inspiration-chempion-item__info {
    padding-left: 0px;
    width: 100%;
  }
}

.gestures-inspiration-chempion-item__name {
  font-size: 24px;
  line-height: 32px;
  color: #231F20;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .gestures-inspiration-chempion-item__name {
    font-size: 18px;
    line-height: 24px;
  }
}

.gestures-inspiration-chempion-item__text p {
  font-size: 16px;
  line-height: 24px;
  color: #231F20;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .gestures-inspiration-chempion-item__text p {
    font-size: 14px;
    line-height: 21px;
  }
}

.gestures-inspiration-aside-block {
  width: 100%;
  padding: 30px;
  border-radius: 4px;
  border: 1px solid #DDE0E3;
}

.gestures-inspiration-aside-block__logo {
  margin-bottom: 25px;
}

@media (max-width: 980px) {
  .gestures-inspiration-aside-block {
    margin-bottom: 30px;
  }
}

.gestures-inspiration-family-list {
  padding-bottom: 40px;
}

.gestures-inspiration-family-item {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.gestures-inspiration-family-item__image {
  width: 310px;
}

@media (max-width: 767px) {
  .gestures-inspiration-family-item__image {
    width: 100%;
    margin-bottom: 15px;
  }
}

.gestures-inspiration-family-item__image img {
  max-width: 100%;
}

.gestures-inspiration-family-item__info, .gestures-inspiration-family-item__more {
  width: calc(100% - 310px);
  padding-left: 30px;
}

@media (max-width: 767px) {
  .gestures-inspiration-family-item__info, .gestures-inspiration-family-item__more {
    padding-left: 0px;
    width: 100%;
  }
}

.gestures-inspiration-family-item__name {
  font-size: 24px;
  line-height: 32px;
  color: #231F20;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .gestures-inspiration-family-item__name {
    font-size: 18px;
    line-height: 24px;
  }
}

.gestures-inspiration-family-item__text p {
  font-size: 16px;
  line-height: 24px;
  color: #231F20;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .gestures-inspiration-family-item__text p {
    font-size: 14px;
    line-height: 21px;
  }
}

.gestures-inspiration-family-item__text p:nth-child(1n + 6) {
  display: none;
}

.gestures-inspiration-family-item__text p.active {
  display: block !important;
}

.gestures-inspiration-family-item__more {
  cursor: pointer;
  text-align: center;
  font-weight: 500;
}

.gestures-inspiration-family-item__more.active img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.gestures-inspiration-family-item__more img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-left: 5px;
}

.gestures-musey .gestures-main-aside {
  padding: 0px;
}

.gestures-musey .gestures-main-aside__main, .gestures-musey .gestures-main-aside__aside {
  margin-bottom: 30px;
}

.gestures-musey__tag {
  font-size: 16px;
  line-height: 22px;
  color: #D91B5B;
}

.gestures-musey-social__title {
  font-size: 16px;
  line-height: 22px;
  color: #231F20;
  font-weight: 700;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .gestures-musey-social__title {
    margin-bottom: 15px;
  }
}

.gestures-musey-social-item {
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
}

.gestures-musey-social-item:hover .gestures-musey-social-item__ico {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.gestures-musey-social-item:hover .gestures-musey-social-item__title {
  border-color: #fff;
}

.gestures-musey-social-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gestures-musey-social-item__ico {
  width: 42px;
  height: 42px;
  border-radius: 42px;
  background: #F1F2F2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.gestures-musey-social-item__title {
  margin-left: 15px;
  max-width: calc(100% - 58px);
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: rgba(226, 3, 56, 0.5);
  text-align: left;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media (max-width: 767px) {
  .gestures-musey-social-item__title {
    font-size: 12px;
    line-height: 16px;
  }
}

.gestures-musey-timetable-item {
  padding: 30px;
  border-radius: 4px;
  background: #fff;
  margin-bottom: 20px;
  display: block;
}

.gestures-musey-timetable-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .gestures-musey-timetable-item__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.gestures-musey-timetable-item__date {
  font-size: 18px;
  line-height: 24px;
  color: #D91B5B;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .gestures-musey-timetable-item__date {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.gestures-musey-timetable-item__register {
  font-size: 16px;
  line-height: 22px;
  color: #939598;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .gestures-musey-timetable-item__register {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.gestures-musey-timetable-item__register img {
  margin-left: 5px;
}

.gestures-musey-timetable-item__text {
  font-size: 16px;
  line-height: 24px;
  color: #231F20;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .gestures-musey-timetable-item__text {
    font-size: 14px;
    line-height: 21px;
  }
}

.gestures-musey-timetable-item__master {
  font-size: 18px;
  line-height: 28px;
  color: #231F20;
}

@media (max-width: 767px) {
  .gestures-musey-timetable-item__master {
    font-size: 14px;
    line-height: 21px;
  }
}

.gestures-musey-places {
  padding-bottom: 105px;
}

.gestures-musey-places .slick-track {
  padding-bottom: 30px;
}

.gestures-musey-places .slick-arrow {
  width: 54px;
  height: 54px;
  border-radius: 54px;
  background: #D91B5B !important;
  background: none;
  border: 0px;
  bottom: 0px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}

.gestures-musey-places .slick-arrow.slick-prev {
  right: 65px;
}

.gestures-musey-places .slick-arrow.slick-next {
  right: 0px;
}

.gestures-musey-places .slick-dots {
  position: absolute;
  left: 0px;
  bottom: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0px;
  height: auto;
}

.gestures-musey-places .slick-dots li.slick-active button {
  background: #D91B5B !important;
}

.gestures-musey-places-item {
  padding: 30px;
  background: #fff;
  border-radius: 4px;
  display: block;
}

.gestures-musey-places-item:before {
  content: '';
  position: absolute;
  width: 90%;
  height: 100%;
  left: 5%;
  background: #FFFFFF;
  opacity: 0.6;
  border-radius: 4px;
  bottom: 0px;
  -webkit-transition: 1s;
  transition: 1s;
}

.gestures-musey-places-item:after {
  content: '';
  position: absolute;
  width: 80%;
  height: 100%;
  left: 10%;
  background: #FFFFFF;
  opacity: 0.4;
  border-radius: 4px;
  bottom: 0px;
  -webkit-transition: 1s;
  transition: 1s;
}

.gestures-musey-places-item.slick-active:before {
  bottom: -10px;
}

.gestures-musey-places-item.slick-active:after {
  bottom: -20px;
}

.gestures-musey-places-item__wrap {
  position: relative;
  z-index: 3;
  display: block;
}

.gestures-musey-places-item__wrap > * {
  display: block;
}

.gestures-musey-places-item__title {
  font-size: 24px;
  line-height: 32px;
  color: #D91B5B;
  font-weight: 700;
  margin-bottom: 10px;
}

.gestures-musey-places-item__description {
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 35px;
}

.gestures-musey-places-item__more {
  font-size: 16px;
  line-height: 22px;
  color: #939598;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gestures-musey-places-item__more img {
  margin-left: 5px;
}

.gestures-history {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gestures-history-info {
  width: 385px;
  max-height: 1110px;
  overflow: auto;
  padding-right: 10px;
  position: relative;
}

.gestures-history-info-wrapper {
  position: relative;
}

.gestures-history-info-wrapper:after {
  left: 0;
  right: 4px;
  bottom: 0;
  height: 200px;
  content: '';
  z-index: 3;
  position: absolute;
  pointer-events: none;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(bottom, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 980px) {
  .gestures-history-info {
    width: 100%;
    max-height: 500px;
  }
}

.gestures-history-info::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.gestures-history-info::-webkit-scrollbar-button {
  background-color: red;
  display: none;
}

.gestures-history-info::-webkit-scrollbar-track {
  background-color: blue;
}

.gestures-history-info::-webkit-scrollbar-track-piece {
  background-color: #ffffff;
}

.gestures-history-info::-webkit-scrollbar-thumb {
  height: 50px;
  background: #D91B5B;
  border-radius: 4px;
}

.gestures-history-info::-webkit-scrollbar-corner {
  background-color: green;
}

.gestures-history-info::-webkit-resizer {
  background-color: yellow;
}

.gestures-history-info-item {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 30px 25px;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}

.gestures-history-info-item__date {
  font-size: 20px;
  line-height: 24px;
  color: #D91B5B;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.gestures-history-info-item__text {
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  display: block;
}

.gestures-history-video {
  width: calc(100% - 400px);
}

@media (max-width: 980px) {
  .gestures-history-video {
    width: 100%;
    margin-top: 30px;
  }
}

.gestures-quotes {
  padding: 30px 60px;
  border-radius: 4px;
  background: #F1F2F2;
  position: relative;
  margin-bottom: 40px;
}

.gestures-quotes.gestures-quotes-white {
  margin-top: 35px;
  margin-bottom: 70px;
}

@media (max-width: 767px) {
  .gestures-quotes {
    padding: 15px;
  }
}

.gestures-quotes-white {
  background: #fff;
}

.gestures-quotes:before {
  content: '';
  width: 70px;
  height: 70px;
  background: url("../img/general/gestures/quotes-ico.svg") no-repeat center;
  position: absolute;
  right: -35px;
  top: -35px;
}

@media (max-width: 980px) {
  .gestures-quotes:before {
    right: 10px;
    top: 10px;
  }
}

@media (max-width: 767px) {
  .gestures-quotes:before {
    right: -15px;
    top: -25px;
  }
}

.gestures-quotes__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .gestures-quotes__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
  }
}

.gestures-quotes__avatar {
  width: 200px;
  height: 200px;
  border-radius: 200px;
}

@media (max-width: 980px) {
  .gestures-quotes__avatar {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 767px) {
  .gestures-quotes__avatar {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
}

.gestures-quotes__info {
  padding-left: 50px;
  width: calc(100% - 200px);
}

@media (max-width: 980px) {
  .gestures-quotes__info {
    width: calc(100% - 140px);
  }
}

@media (max-width: 767px) {
  .gestures-quotes__info {
    width: 100%;
    padding: 0px;
  }
}

.gestures-quotes__name {
  font-size: 30px;
  line-height: 38px;
  color: #231F20;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (max-width: 980px) {
  .gestures-quotes__name {
    font-size: 21px;
    line-height: 26px;
  }
}

.gestures-quotes__description {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #939598;
}

@media (max-width: 980px) {
  .gestures-quotes__description {
    font-size: 14px;
    line-height: 21px;
  }
}

.gestures-quotes__text {
  font-size: 24px;
  line-height: 38px;
  color: #231F20;
}

@media (max-width: 980px) {
  .gestures-quotes__text {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  .gestures-quotes__text {
    font-size: 14px;
    line-height: 21px;
  }
}

.gestures-video-item {
  padding-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #DDE0E3;
  display: block;
  text-decoration: none;
}

@media (max-width: 767px) {
  .gestures-video-item {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.gestures-video-item:hover .gestures-video-item__image:before {
  opacity: 0;
}

.gestures-video-item:hover .gestures-video-item__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.gestures-video-item:hover .gestures-video-item__title {
  color: #D91B5B;
}

.gestures-video-item__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.gestures-video-item__image {
  width: 245px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .gestures-video-item__image {
    width: 100%;
    margin-bottom: 15px;
  }
}

.gestures-video-item__image img {
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.gestures-video-item__image:before, .gestures-video-item__image:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}

.gestures-video-item__image:before {
  background: #000;
  opacity: 0.3;
  z-index: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.gestures-video-item__image:after {
  background: url("../img/general/gestures/video-ico.svg");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.gestures-video-item__info {
  width: calc(100% - 245px);
  padding-left: 30px;
}

@media (max-width: 767px) {
  .gestures-video-item__info {
    width: 100%;
    padding-left: 0px;
  }
}

.gestures-video-item__title {
  font-size: 18px;
  line-height: 24px;
  color: #231F20;
  margin-bottom: 15px;
  display: block;
  font-weight: 700;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.gestures-video-item__description {
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  display: block;
}

.gestures-work {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 100px;
}

@media (max-width: 980px) {
  .gestures-work {
    margin-top: 40px;
  }
}

.gestures-work__logo {
  margin-bottom: 20px;
}

.gestures-work__address {
  font-size: 16px;
  line-height: 22px;
  color: #D91B5B;
  font-weight: 700;
}

.gestures-work-moments {
  margin-bottom: 20px;
}

.gestures-work-moments-item {
  padding: 30px;
  background: #fff;
  width: 100%;
  margin-bottom: 20px;
}

.gestures-work-moments-item__top {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .gestures-work-moments-item__top {
    margin-bottom: 15px;
  }
}

.gestures-work-moments-item__ico {
  width: 48px;
  margin-right: 40px;
}

.gestures-work-moments-item__ico img {
  max-width: 100%;
}

@media (max-width: 767px) {
  .gestures-work-moments-item__ico {
    width: 40px;
    margin-right: 15px;
  }
}

.gestures-work-moments-item__title {
  font-size: 24px;
  line-height: 32px;
  color: #D91B5B;
  font-weight: 700;
}

@media (max-width: 767px) {
  .gestures-work-moments-item__title {
    font-size: 18px;
    line-height: 24px;
  }
}

.gestures-work-moments-item__text {
  font-size: 18px;
  line-height: 28px;
  color: #231F20;
  font-weight: 700;
}

@media (max-width: 767px) {
  .gestures-work-moments-item__text {
    font-size: 14px;
    line-height: 21px;
  }
}

.news-theme {
  padding: 60px 16px 0px 0px;
  border-top: 1px solid #D5DAE0;
}

@media (max-width: 1367px) {
  .news-theme {
    display: none;
  }
}

.news-theme h3 {
  font-weight: 700;
  font-size: 29px;
  font-size: 2.9rem;
  color: #231F20;
  margin-bottom: 45px;
}

.news-theme__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-theme__link > div {
  padding: 30px;
  cursor: pointer;
  color: inherit;
  width: 24%;
  border: 1px solid #e6e7e8;
  border-radius: 8px;
  min-height: 250px;
  -webkit-transition: .4s;
  transition: .4s;
}

.news-theme__link > div:hover {
  -webkit-box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
          box-shadow: 0 3px 30px 0px rgba(165, 187, 182, 0.4);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.news-theme__link > div > a .date-public {
  color: #848E99;
  margin-bottom: 10px;
}

.news-theme__link > div > a p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

/* Removed information about Yandex maps */
.ymaps-2-1-77-gototech {
  display: none !important;
}

.ymaps-2-1-77-copyright__agreement {
  display: none !important;
}

.media-card__video,
.img-bg-wrap {
  cursor: pointer;
}

/*  TODO REMOVE */
/* Inspirated from  http://www.alessioatzeni.com/wp-content/tutorials/html-css/CSS3-loading-animation-loop/index.html */
.ouro {
  position: relative;
  display: inline-block;
  height: 46px;
  width: 46px;
  margin: 1em;
  border-radius: 50%;
  background: none repeat scroll 0 0 #dddddd;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) inset, 0 0 25px rgba(0, 0, 255, 0.075);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) inset, 0 0 25px rgba(0, 0, 255, 0.075);
}

.ouro:after {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  display: block;
  height: 28px;
  width: 28px;
  background: none repeat scroll 0 0 #f2f2f2;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ouro > span {
  position: absolute;
  height: 100%;
  width: 50%;
  overflow: hidden;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.anim {
  position: absolute;
  left: 100%;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: none repeat scroll 0 0 #508ec3;
  opacity: 0.8;
  -webkit-animation: ui-spinner-rotate-left 3s infinite;
  animation: ui-spinner-rotate-left 3s infinite;
  -webkit-transform-origin: 0 50% 0;
  transform-origin: 0 50% 0;
}

.left .anim {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.right .anim {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  left: -100%;
  -webkit-transform-origin: 100% 50% 0;
  transform-origin: 100% 50% 0;
}

/* v2 */
.ouro2 .anim {
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

.ouro2 .right .anim {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

/* v3 */
.ouro3 .anim {
  -webkit-animation-delay: 0s;
  -webkit-animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-timing-function: linear;
}

.ouro3 .right .anim {
  -webkit-animation-name: ui-spinner-rotate-right;
  -webkit-animation-delay: 0;
  -webkit-animation-delay: 1.5s;
  animation-name: ui-spinner-rotate-right;
  animation-delay: 0;
  animation-delay: 1.5s;
}

/* round variation */
.round .ouro:after {
  display: none;
}

/* double variation */
.double .ouro:after {
  height: 33px;
  width: 33px;
  left: 7px;
  top: 7px;
  border: 10px solid #ddd;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@keyframes ui-spinner-rotate-right {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes ui-spinner-rotate-left {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes ui-spinner-rotate-right {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes ui-spinner-rotate-left {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

/*
 * Some bugs with Chrome (Android), Safari and Opera, I'll try to see how http://atomeye.com/projects/sass-css-spinner.html made his code.
 */
/* END */
.loadr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.loadr__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #eee;
  border-radius: 2px;
  margin: 20px;
  padding: 30px;
  width: calc(100% / 2 - 40px);
}

.loadr__box img {
  width: 560px;
  height: 560px;
}

.spoiler-box--edit .spoiler-box-title {
  font-weight: 700;
  text-transform: none;
}

.vac__box {
  border-top: 1px solid #e1e3e7;
  display: block;
  text-decoration: none;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 40px;
  position: relative;
}

.vac__box:after {
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 9px;
  position: absolute;
  z-index: 2;
  background-image: url(../img/general/asd.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.vac__title {
  color: #231f20;
  margin-bottom: 11px;
  font-weight: 500;
}

.vac__sub {
  color: #848e99;
  font-size: 1.4rem;
}

.vac__box:hover .vac__title {
  color: #e20338;
}

.spoiler-box--edit {
  margin: 19px 0;
}

.spoiler-box--edit b {
  font-weight: 500;
}

.lohex {
  max-width: 386px;
  width: 386px;
}

.lohex .popover-content {
  padding: 0;
}

.poppers__content {
  max-height: 610px;
  overflow: hidden;
  overflow-y: scroll;
  position: relative;
}

.poppers__header {
  height: 56px;
  border-bottom: 1px solid #e1e3e7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #848e99;
  position: relative;
}

.poppers .spoiler-box__content__footer {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.poppers .spoiler-box__txt {
  width: 100%;
  margin-bottom: 12px;
}

.poppers .spoiler-box__button {
  width: 100%;
  margin-left: 0;
}

.poppers .spoiler-box__button .btn {
  min-width: 100px;
}

.poppers__item {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.poppers__item:after {
  left: 30px;
  right: 30px;
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: #e1e3e7;
}

.poppers__close {
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 50%;
  width: 22px;
  height: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.poppers__close:after {
  width: 14px;
  height: 2px;
  background-color: #848e99;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.poppers__close:before {
  width: 14px;
  height: 2px;
  background-color: #848e99;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.spoiler-box--edit:hover,
.spoiler-box--edit.open {
  -webkit-box-shadow: 0 5px 15px rgba(200, 200, 200, 0.5);
          box-shadow: 0 5px 15px rgba(200, 200, 200, 0.5);
}

.spoiler-box--edit .spoiler-box__btn {
  padding-top: 20px;
  padding-bottom: 20px;
}

.spoiler-box--edit .spoiler-box__content {
  border-top: none;
  position: relative;
}

.spoiler-box--edit .spoiler-box__content:after {
  left: 35px;
  right: 35px;
  background-color: #e1e3e7;
  height: 1px;
  top: 0;
  position: absolute;
  z-index: 2;
  content: "";
}

.btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 15px;
}

.soc-center .btn-icon {
  display: inline-block;
  margin-left: 0;
  margin-top: 30px;
}

.btn-default-color {
  fill: #e20338;
}

.btn-default-color:hover {
  fill: #e20338;
}

html[color-theme="theme-red"] .btn-primary,
html[color-theme="theme-red"] .jq-file__browse {
  fill: #fff;
}

.popover.top > .arrow {
  border-top-color: transparent;
}

.poppover-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #231f20;
  font-size: 14px;
  letter-spacing: 0.14px;
}

.poppover-circle {
  border-radius: 50%;
  width: 28px;
  height: 28px;
  background-color: #e20338;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-left: 10px;
}

.svgMaps {
  max-width: 100%;
  height: auto;
}

.mapers {
  width: 100%;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.mapers .st:hover {
  fill: #e20338 !important;
}

.mapers .st.disabled {
  fill: #f1f2f2 !important;
}

.spoiler-box__content__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

.spoiler-box__txt {
  font-size: 1.4rem;
  color: #848e99;
}

.spoiler-box__txt span {
  margin-left: 20px;
  margin-right: 20px;
}

.spoiler-box__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 310px;
  margin-left: 20px;
}

.spoiler-box__button .btn-default-color {
  font-weight: 500;
}

.spoiler-box__button .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 48px;
  width: calc(100% / 2 - 7px);
}

.sec-map--padder .tabs-nav-wrap {
  margin-bottom: 0;
  border: none;
}

.events-control--center {
  padding-bottom: 20px;
}

.aside__subtitle {
  padding-left: 30px;
  position: relative;
  font-size: 12px;
  color: #e20338;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
  margin-bottom: 21px;
}

.aside__subtitle img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
}

.aside__subsubs {
  color: #231f20;
  font-weight: 500;
}

.map-city__link--clear {
  display: inline;
  text-align: left;
  color: #2abb9d;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.map-city__link--clear:after {
  position: absolute;
  top: 50%;
  right: -10px;
  width: 5px;
  height: 9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  background-image: url(../img/general/ax.png);
  background-position: center center;
  background-size: cover;
}

.sec-msc__content {
  /*margin-bottom: 50px;*/
  margin-bottom: 20px;
}

.sec-news .show-more {
  border-top: 1px solid #d5dae0;
  padding-top: 15px;
}

.sec-news .news-card__photo {
  background-position: top center;
}

.sec-map__items {
  background-color: #f1f2f2;
  padding-top: 60px;
  padding-bottom: 80px;
}

.sec-map__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #d5dae0;
  padding-bottom: 35px;
}

.sec-map__item:not(:first-child) {
  padding-top: 47px;
}

.sec-map__items {
  font-size: 1.6rem;
}

.sec-map__items img {
  margin-right: 12px;
}

.sec-map__na {
  color: #39bb9d;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.sec-map__tex {
  color: #939598;
  font-size: 1.5rem;
}

.sec-map__tex,
.sec-map__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-map__line {
  color: #444444;
}

.sec-map__line:not(:last-child) {
  margin-bottom: 16px;
}

.sec-map__le,
.sec-map__re {
  width: 50%;
}

.sec-map__le {
  padding-right: 40px;
}

#blckMetroInner span {
  background-repeat: no-repeat !important;
  position: absolute;
  z-index: 1;
}

.events-control--center .btn {
  margin-left: auto;
  margin-right: auto;
  width: 385px;
  max-width: calc(100% - 32px);
}

.filter-events--edit .filter-events__wrapper .form-group {
  width: 100%;
}

.filter-events--edit .filter-events__wrapper {
  display: block;
}

.filter-events--edit .filter-events__tab {
  margin-bottom: 30px;
  margin-left: 10px;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 500;
}

.filter-events--edit .filter-events__tab:hover,
.filter-events--edit .filter-events__tab.active {
  color: #fff;
}

.filter-events--edit .tabs-nav-wrap {
  border: none;
  margin-bottom: 0;
}

.sec-msc-top .sec-map__block {
  height: 100%;
}

.sec-msc-top .sec-msc-fle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sec-msc-top .sec-msc__content {
  margin-bottom: 0;
}

.sec-msc-top .sec-msc__bg {
  border-radius: 4px;
  background-color: #f1f2f2;
  padding: 35px;
}

.sec-msc-top .sec-msc__bg .sec-msc__title {
  margin-bottom: 26px;
}

.sec-msc-top .sec-msc__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sec-msc-top .sec-msc__row:not(:last-child) {
  margin-bottom: 18px;
}

.sec-msc-top .sec-msc__img {
  width: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 35px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sec-msc-top .sec-msc__con {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.sec-msc-top .sec-msc__r {
  width: 624px;
  margin-left: 30px;
}

.sec-msc-top .sec-msc__l {
  width: 565px;
}

.sec-circle {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 0px;
  margin-right: 0px;
  display: inline-block;
}

.filter-events--edit .filter-events__tab-reset {
  border-radius: 4px;
  cursor: pointer;
  display: block;
  padding: 16px 24px;
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: 15px;
  color: #939598;
  height: 54px;
  font-weight: 400;
}

.filter-events--edit .filter-events__tab-reset span {
  border-bottom: 1px dotted #939598;
}

.filter-events--edit .filter-events__tab-reset img {
  margin-right: 12px;
}

.filter-events__tabs {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 29px;
}

/*tabs wrap*/
.tabs-nav-wrap {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.tabs-nav-wrap .title-page {
  margin-left: 0;
  margin-right: auto;
}

.tabs-nav-wrap .nav-tabs {
  margin-left: auto;
}

/*aside*/
.aside__box a.text-dark:hover {
  color: #e20338;
}

.aside__box a.text-dark.active {
  color: #e20338;
}

/* forum styles */
.sec-forum-photo,
.sec-forum-video {
  padding: 20px 0;
}

@media only screen and (min-width: 992px) {
  .pd-bottom-90 {
    padding-bottom: 90px !important;
  }
  .sec-forum-video,
  .sec-forum-photo {
    padding: 50px 0 0;
  }
}

.forum-news-card {
  display: block;
  overflow: hidden;
  margin-bottom: 24px;
}

.forum-photo-card {
  margin-bottom: 24px;
}

.forum-news-card {
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.sec-forum-news .show-more,
.sec-forum-video .show-more,
.sec-forum-photo .show-more {
  margin-top: 0;
}

.forum-photo-card:hover .forum-photo-card__text {
  color: #e20338;
}

.sec-forum-news .col-xs-12:last-child .forum-news-card {
  margin-bottom: 0;
}

.forum-photo-card__preview {
  cursor: pointer;
}

.forum-news-card:hover .forum-news-card__text {
  color: #e20338;
}

.forum-news-card__photo {
  border-radius: 6px;
  position: relative;
  width: 100%;
  height: 242px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.forum-news-card__body,
.forum-photo-card__body {
  padding: 28px 0px 26px;
}

.forum-news-card__content,
.forum-photo-card__content {
  position: relative;
  height: 100px;
  margin-bottom: 15px;
  overflow: hidden;
}

.forum-news-card__text,
.forum-photo-card__text {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.forum-news-card__footer,
.forum-photo-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.forum-news-card__date,
.forum-photo-card__date {
  font-size: 15px;
  color: #939598;
  line-height: 1.2;
}

.forum-photo-card__preview {
  border-radius: 6px;
  position: relative;
  width: 100%;
  height: 242px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.i-photo-camera {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  width: auto;
  height: 35px;
  padding-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 15px;
}

.i-photo-camera::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 40px;
  height: 30px;
  background: url("../img/general/photo-camera.png") no-repeat;
}

.forum-photo-card__preview:hover ~ .forum-photo-card__body .forum-news-card__text {
  color: #e20338;
}

.briefly-about-forum {
  margin-bottom: 40px;
}

.briefly-about-forum p {
  margin-bottom: 11px;
}

/* forum styles end*/
/* show-more styles */
.show-more {
  border-top: 1px solid #b0b5c0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.show-more__btn {
  position: relative;
  padding: 20px 30px 30px 30px;
  color: #939598;
  font-size: 15px;
  cursor: pointer;
}

html[color-schema="color-brown"] .show-more {
  border-top: 1px solid #a9e44d;
}

html[color-schema="color-brown"] .show-more__btn {
  color: #a9e44d;
}

html[color-schema="color-blue"] .show-more {
  border-top: 1px solid #063462;
}

html[color-schema="color-blue"] .show-more__btn {
  color: #063462;
}

html[color-schema="color-black"] .show-more {
  border-top: 1px solid #ffffff;
}

html[color-schema="color-black"] .show-more__btn {
  color: #ffffff;
}

html[color-schema="color-beige"] .show-more {
  border-top: 1px solid #4d4b43;
}

html[color-schema="color-beige"] .show-more__btn {
  color: #4d4b43;
}

/* show-more styles end*/
/* forum banner */
.forum-banner {
  background: url("../img/general/red-pattern.jpg");
  background-position: 0 50px;
  padding: 30px;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.forum-banner::before {
  position: absolute;
  content: "";
  top: -120px;
  left: -730px;
  height: 1000px;
  width: 900px;
  background: #0356d4;
  -webkit-transform: rotate(-36deg);
          transform: rotate(-36deg);
}

.forum-banner__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}

.forum-banner__item_1,
.forum-banner__item_2,
.forum-banner__item_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.forum-banner__date,
.forum-banner__place {
  font-size: 32px;
  z-index: 1;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: center;
}

.forum-banner__date {
  width: 210px;
}

.forum-banner__place {
  text-transform: uppercase;
  width: 160px;
}

.forum-banner__item_3 {
  position: relative;
}

.forum-banner__item_3 .btn {
  width: 240px;
  position: relative;
}

.forum-banner .forum-banner__item_3 .btn-brown-border {
  border-color: #f9c8d3;
}

.forum-banner .forum-banner__item_3 .btn-brown-border:hover,
.forum-banner .forum-banner__item_3 .btn-brown-border:focus {
  border-color: #ffffff;
  -webkit-box-shadow: 0 4px 13px 0px rgba(148, 1, 36, 0.7);
  box-shadow: 0 4px 13px 0px rgba(148, 1, 36, 0.7);
}

.forum-banner .forum-banner__item_1 .forum-banner__label:hover,
.forum-banner .forum-banner__item_1 .forum-banner__title:hover,
.forum-banner .forum-banner__item_2 .forum-banner__date:hover,
.forum-banner .forum-banner__item_2 .forum-banner__place:hover {
  color: #ffffff;
}

.forum-banner__label {
  font-size: 14px;
  opacity: 0.6;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 28px;
  z-index: 1;
  position: relative;
}

.forum-banner__title {
  font-size: 32px;
  line-height: 1.2;
  z-index: 0;
  position: relative;
  text-align: center;
}

@media only screen and (min-width: 400px) {
  .forum-banner::before {
    top: -170px;
    left: -660px;
  }
}

@media only screen and (min-width: 768px) {
  .forum-banner::before {
    top: -170px;
    left: -550px;
  }
}

@media only screen and (min-width: 992px) {
  .forum-banner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 50px;
  }
  .forum-banner::before {
    left: -387px;
  }
  .forum-banner__item_2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
  .forum-banner__item_3 .btn {
    width: 320px;
  }
}

@media only screen and (min-width: 1270px) {
  .sec-news--tree .news-card--hasimage {
    padding-bottom: 50px;
  }
  .sec-news--tree .news-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #d5dae0;
    margin-bottom: 0;
  }
  .sec-news--tree .news-card__photo {
    width: 390px;
    height: 263px;
    min-width: 390px;
    margin-right: 30px;
  }
  .sec-news--tree .news-card__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sec-news--tree .news-card .news-card__photo + .news-card__body .news-card__text {
    font-size: 28px;
    font-weight: 700;
    line-height: 28px;
    color: #000000;
  }
  .sec-news--tree .news-card .news-card__content {
    height: auto;
  }
  .sec-news--tree .news-card .news-card__photo + .news-card__body .news-card__content {
    height: 144px;
  }
  .forum-banner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
  .forum-banner__item_1 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .forum-banner__title {
    text-align: left;
  }
  .forum-banner__item_2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 0;
  }
  .forum-banner__item_3 {
    margin-bottom: 0;
  }
  .forum-banner__date,
  .forum-banner__place {
    text-align: left;
    font-size: 36px;
    width: 220px;
  }
}

/* forum banner end*/
/*  styles  form-5 & modal */
.btn-call-form-5[data-toggle="modal"] {
  padding: 16px;
  width: 100%;
  margin-top: 30px;
}

.modal.in .modal-dialog {
  border-radius: 5px;
}

.modal .two-btn .btn {
  font-weight: bold;
}

.modal .modal-title {
  font-size: 28px !important;
}

.form-5 .two-btn .btn-primary {
  margin-right: 30px;
}

.form-5 > .bg-box {
  margin: 0;
  padding: 25px 30px;
}

.form-box--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form-box--inner .form-group:first-child {
  margin-right: 30px;
}

.form-box--inner .form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
}

.modal-dialog .modal-content {
  padding: 0;
  background: #ffffff;
}

.modal-header {
  padding: 33px 60px;
}

.modal-lg {
  width: 820px;
}

.modal .close {
  top: 43px;
  right: 60px;
}

.modal .close::after,
.modal .close::before {
  background: url("../img/general/icon/close.svg") no-repeat;
  opacity: 1;
}

.modal .close:hover::after,
.modal .close:hover::before {
  opacity: 0.5;
}

html[color-theme="theme-red"] .modal .form-5 .checked + label {
  color: #231f20;
}

html[color-theme="theme-red"] .modal .form-5 .checked + label a {
  color: #e20338;
}

html[color-theme="theme-red"] .checked:hover + label {
  color: #231f20;
}

html[color-theme="theme-red"] .checked:hover + label a {
  color: #e20338;
}

html[color-theme="theme-red"] .modal .form-5 .wrap-check:hover label {
  color: #231f20;
}

html[color-theme="theme-red"] .modal .form-5 .wrap-check:hover label a {
  color: #e20338;
}

html[color-theme="theme-red"] .modal .form-5 .jq-radio.checked,
html[color-theme="theme-red"] .modal .form-5 .jq-checkbox.checked {
  border-color: #dde0e3 !important;
  background: #ffffff !important;
}

.modal .form-5 .jq-checkbox.checked .jq-checkbox__div {
  background: url(../img/general/icon/check-red.svg) no-repeat center;
}
.mos-slider__sl.soc_help img {
    margin: 0 5px;
}
.mos-slider__sl.soc_help .slick-dots {display: none!important;}
.education .sub_title {font-weight: bold;margin: -20px 0 20px 0;}
.education .education__list{margin-bottom: 4rem;}

@media only screen and (max-width: 768px) {
  .icons.new-icons-bg .container.container-large {
    width: 100%;
  }
}

@media only screen and (max-width: 992px) {
  .events-control--center {
    padding-bottom: 30px;
  }
  .sec-msc-top .sec-msc__l,
  .sec-msc-top .sec-msc__r {
    width: 100%;
  }
  .sec-msc-top .sec-msc-fle {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sec-msc__l {
    height: 400px;
    margin-bottom: 20px;
  }
  .sec-msc-top .sec-msc__r {
    margin-left: 0;
  }
  .icons__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
    display: -webkit-box;
  }
  .icons.new-icons-bg .icons__box {
    border-bottom: none;
  }
  .icons.new-icons-bg .container.container-large {
    overflow-x: auto;
    overflow-y: hidden;
  }
  .icons.new-icons-bg > div::-webkit-scrollbar {
    width: 0px !important;
    /* ширина scrollbar */
    opacity: 0 !important;
    height: 1px !important;
  }
  .icons.new-icons-bg > div::-webkit-scrollbar-track {
    background: transparent !important;
    /* цвет дорожки */
  }
  .icons.new-icons-bg > div::-webkit-scrollbar-thumb {
    background-color: transparent !important;
    /* цвет плашки */
  }
  .icons.new-icons-bg .icons__flex {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    height: auto;
    margin-left: 0;
    margin-right: 0;
  }
  .icons.new-icons-bg {
    display: block;
  }
  /* .icons__box {
    padding-top: 3px;
    padding-bottom: 3px;
  } */
  .modal-lg {
    width: auto;
  }
}

/*  styles  form-5 & modal end*/
/*  styles  form-5 & modal in @media*/
@media only screen and (max-width: 992px) {
  .icons {
    display: none;
  }
  .pushy-inner .icons {
    display: block;
  }
}

.vac .tabs-nav-wrap .page-title {
  white-space: normal;
}

@media only screen and (max-width: 767px) {
  .svgMaps {
    width: 100%;
  }
  .svgMaps__wrapper {
    overflow: hidden;
    width: 100%;
  }
  .popover.lohex {
    position: fixed;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    max-width: 100vw;
    z-index: 2000;
    margin: 0 !important;
  }
  .popover.lohex .poppers__content {
    max-height: calc(100vh - 56px);
  }
  .sec-map__line {
    padding-left: 35px;
    position: relative;
  }
  .sec-map__line img {
    position: absolute;
    top: 2px;
    left: 0;
  }
  .sec-map__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sec-map__item {
    padding-bottom: 15px;
  }
  .sec-map__le,
  .sec-map__re {
    width: 100%;
    padding-right: 0;
  }
  .sec-map__le {
    margin-bottom: 10px;
  }
  .sec-map__item:not(:first-child) {
    padding-top: 15px;
  }
  .sec-map__items {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .modal-header {
    padding: 27px 44px;
  }
  .modal .close {
    right: 44px;
  }
}

@media only screen and (max-width: 620px) {
  .pushy-inner .icons .container {
    padding-top: 0;
    padding-bottom: 0;
  }
  .spoiler-box__txt span {
    margin-left: 5px;
    margin-right: 5px;
  }
  .spoiler-box__button {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .spoiler-box__button .btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    min-width: 100%;
  }
  .tabs-nav-wrap .nav.nav-tabs {
    width: 100%;
  }
  .vac .tabs-nav-wrap .nav.nav-tabs {
    text-align: left;
    float: none !important;
  }
  .vac .tabs-nav-wrap .page-title {
    width: 100%;
    float: none !important;
  }
  .vac .tabs-nav-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: block;
  }
  .vac .tabs-nav-wrap .nav.nav-tabs {
    width: 100%;
    text-align: left;
    max-width: 100%;
    min-width: 100%;
  }
  .icons__flex {
    margin-left: -30px;
    margin-right: -30px;
  }
  .icons__box {
    border-bottom: 1px solid #bdc2d0;
    padding: 10px;
    height: 57px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  .icons__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .pushy-inner .icons .container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .form-box--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .form-box--inner .form-group:first-child {
    margin-right: 0;
  }
  .form-5 .two-btn .btn-primary {
    margin-right: 0;
  }
  .modal-lg {
    width: 400px;
  }
  .modal-header {
    padding: 20px 40px 20px 15px;
  }
  .modal-body {
    padding: 15px;
  }
  .modal .bg-box,
  .modal .bg-text-box,
  .modal .bg-box--wide {
    padding: 0;
  }
  .modal .close {
    right: 17px;
  }
}

@media only screen and (max-width: 420px) {
  .pushy-inner .icons {
    margin-left: -15px;
    margin-right: -15px;
  }
  .pushy-inner .icons .container {
    padding-left: 0;
    padding-right: 0;
  }
  .icons__flex {
    margin-left: 0;
    margin-right: 0;
  }
  .modal-lg {
    width: 300px;
  }
  .modal .close {
    top: 27px;
  }
}

/*mos longevity */
@media only screen and (max-width: 991px) {
  .mos-slider .slick-dots {
    display: none !important;
  }
  .mos-slider {
    position: relative;
  }
  .spoiler-box__content__footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .spoiler-box__txt {
    width: 100%;
  }
  .spoiler-box__button {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 576px) {
  .areas-practice .areas-practice__ell .areas-practice__icon-wr .tooltip-areas.tooltip {
    width: calc(100vw - 32px);
  }
  .areas-practice .areas-practice__ell:nth-child(odd) .areas-practice__icon-wr .tooltip-areas.tooltip {
    left: 0 !important;
  }
  .areas-practice .areas-practice__ell:nth-child(even) .areas-practice__icon-wr .tooltip-areas.tooltip {
    left: auto !important;
    right: 0 !important;
  }
}

.news-title--small {
  padding-bottom: 0;
  margin-bottom: 25px;
}

.tabs-nav-wrap--left.tabs-nav-wrap .nav.nav-tabs {
  text-align: left;
}

@media only screen and (max-width: 1270px) {
  .sec-msc-top .sec-msc__r {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .sec-msc-top .sec-msc__bg {
    padding: 17px;
  }
}

@media (min-width: 1366px) and (max-width: 1919px) {
  body .main-news-bg {
    padding-top: 45px !important;
  }

  .new-press-center {
    padding-top: 60px !important;
  }

  .news-digest {
    padding-top: 10px !important;
    padding-bottom: 6px !important;

  }

  .news-digest .slick-dots {
    margin-top: 55px;
  }

  .banners-slider {
    padding-bottom: 10px !important;
  }

  .activity-widget {
    padding-top: 13px !important;
    padding-bottom: 0 !important;
  }

  .our-events {
    padding-top: 36px !important;
  }

  .projects {
    padding-top: 60px !important;
    padding-bottom: 32px !important;
  }

  .useful-slider-block .slick-dots {
    margin-top: 36px !important;
  }

  .useful-materials {
    padding-bottom: 29px !important;
  }

  .docs-section {
    padding-bottom: 36px !important;
  }

  .links-sites .new-slider-block .slick-dots {
    margin-top: 35px;
  }

  .footer {
    padding-top: 63px;
  }
}

@media (min-width: 992px) and (max-width: 1365px) {
  .blind-btn {
    display: none !important;
  }
  .header-nav>li {
    margin-left: 0 !important;
    margin-right: 30px;
  }

  body .main-news-bg {
    padding-top: 40px !important;
  }

  .news-digest {
    padding-top: 5px !important;
  }
  .new-slider-block .slick-dots,
  .new-banner-container .slick-dots,
  .useful-slider-block .slick-dots {
    margin-top: 30px;
  }
  .news-digest,
  .banners-slider {
    padding-bottom: 15px !important;
  }
  .soc-nav-section {
    padding-top: 55px !important;
  }
  .activity-widget {
    padding-top: 15px !important;
    padding-bottom: 0 !important;
  }

  .our-events {
    padding-top: 31px !important;
  }

  .projects {
    padding-top: 55px !important;
    padding-bottom: 21px !important;
  }

  .useful-materials {
    padding-bottom: 25px !important;
  }

  .docs-section {
    padding-bottom: 31px !important;
  }

  .links-sites {
    padding-bottom: 43px !important;
  }

  .footer {
    padding-top: 65px;
    padding-bottom: 35px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .press-center-container-item {
    margin-bottom: 30px;
  }
  .banner__block_mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 52px;
  }

  
  .news-digest {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .new-slider-block .slick-dots {
    margin-top: 20px;
  }

  .soc-nav-section {
    padding-top: 55px !important;
    padding-bottom: 15px !important;
  }

  .main-help-container {
    margin-bottom: 31px;
  }

  .new-content-block .slick-dots {
    margin-top: 25px;
  }

  body .main-news-bg {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .activity-widget {
    padding-bottom: 50px !important;
  }

  .icons__box {
    padding: 12px;
  }

  .our-events {
    padding-top: 0 !important;
  }

  .projects {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .new-priority-item {
    margin-bottom: 20px;
  }

  .useful-slider-block .slick-dots {
    margin-top: 20px;
  }

  .useful-materials {
    padding-bottom: 55px !important;
  }
  .docs-section {
    padding-bottom: 31px !important;
  }
  .links-sites {
    padding-bottom: 75px !important;
  }
  .footer {
    padding-top: 67px !important;
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .new-press-center {
    padding-top: 55px !important;
  }
  .new-content-block .slick-dots {
    margin-top: 25px;
  }

  .banner__block_mob {
    margin-top: 52px;
  }

  .icons__box {
    padding: 13px 0 11px 10px;
    height: auto;
  }
  .news-digest {
    margin-bottom: 30px;
  }
  .main-help-container {
    margin-bottom: 45px;
  }
  .soc-nav-section {
    padding-top: 55px !important;
    padding-bottom: 25px !important;
  }

  .activity-widget {
    padding-bottom: 25px !important;
  }

  .projects {
    padding-top: 52px !important;
    padding-bottom: 55px !important;
  }
  .header__widget-list .toggle-search-panel span,
  .header__widget-list > li.header__admin-btn .close-search-panel {
    display: none;
  }

  .useful-slider-block .slick-dots {
    margin-top: 20px;
  }

  .useful-materials {
    padding-bottom: 56px !important;
  }
  .new-doc-link-block:last-of-type {
    margin-bottom: 55px;
  }

  .press-center-container-item {
    margin-bottom: 20px;
  }
  .press-center-container-item:last-of-type {
    margin-bottom: 55px;
  }
  .new-priority-item:last-of-type {
    margin-bottom: 20px;
  }
  .pd-top-70 {
    padding-top: 55px !important;
  }
  .new-cite-useful .new-slider-block-item:last-child {
    margin-bottom: 25px;
  }
  body .main-news-bg {
    padding-bottom: 52px !important;
  }
  .header {
    height: 130px;
  }
  .body .header .navbar-logo {
    margin-top: 5px;
  }
  .header__bottom-panel {
    height: 80px;
  }
  .header__main-nav {
    height: 80px;
  }
  .footer {
    padding-bottom: 22px;
    padding-top: 40px;
  }
}

/*end mos longevity */

.soc-banner__content{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}

.soc-banner__item{
  width: calc(33.3% - 15px);
  background: #F7F7F8;
  border-radius: 6px;
  padding: 26px 26px 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  transition: all .3s ease;
}

.soc-banner__item span:first-child{
  height: 84px;
}

.soc-banner__item span:nth-child(2){
  margin-top: 11px;
  font-family: 'Golos';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

.soc-banner__item .icon-arrow-top{
  position: absolute;
  top: 26px;
  right: 26px;
  color: #D5DAE0;
  font-size: 12px;
  transition: all .3s ease;
}

.soc-banner__item:hover{
  color: #e20338;
  -webkit-box-shadow: 0 3px 30px 0px rgb(165 187 182 / 70%);
  box-shadow: 0 3px 30px 0px rgb(165 187 182 / 70%);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.soc-banner__item:hover .icon-arrow-top{
  color: #e20338;
}

.soc-banner__item-mfp img{
  max-width: 130px;
}

.soc-banner__item-mkp img{
  max-width: 74px;
}

.soc-banner__item-kos img{
  max-width: 57px;
}

@media (max-width: 1280px) {
  .soc-banner__item:nth-child(1){
    width: 100%;
  }

  .soc-banner__item:nth-child(2), .soc-banner__item:nth-child(3){
    width: calc(50% - 15px);
  }
}

@media (max-width: 991px) {
  .soc-banner__item:nth-child(1), .soc-banner__item:nth-child(2), .soc-banner__item:nth-child(3){
    width: 100%;
  }
}

html[garniture="serif"] .soc-banner__item span:nth-child(2){
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif !important;
}

html[color-schema="color-black"] .soc-banner__item{
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: none;
  text-decoration: underline;
}
html[color-schema="color-black"] .soc-banner__item:hover {
  -webkit-transform: none;
  transform: none;
}
html[color-schema="color-black"] .soc-banner__item .icon-arrow-top{
  color: #ffffff;
}
html[color-schema="color-black"] .soc-banner__item:hover .icon-arrow-top{
  color: #ffffff;
}

html[color-schema="color-blue"] .soc-banner__item{
  color: #063462;
  background-color: #9dd1ff;;
  border: 1px solid #063462;
  box-shadow: none;
  text-decoration: underline;
}
html[color-schema="color-blue"] .soc-banner__item:hover {
  -webkit-transform: none;
  transform: none;
}
html[color-schema="color-blue"] .soc-banner__item .icon-arrow-top{
  color: #063462;
}
html[color-schema="color-blue"] .soc-banner__item:hover .icon-arrow-top{
  color: #063462;
}

html[color-schema="color-beige"] .soc-banner__item{
  color: #000000;
  background-color: #f7f3d6;;
  border: 1px solid #000000;
  box-shadow: none;
  text-decoration: underline;
}
html[color-schema="color-beige"] .soc-banner__item:hover {
  -webkit-transform: none;
  transform: none;
}
html[color-schema="color-beige"] .soc-banner__item .icon-arrow-top{
  color: #000000;
}
html[color-schema="color-beige"] .soc-banner__item:hover .icon-arrow-top{
  color: #000000;
}

html[color-schema="color-brown"] .soc-banner__item{
  color: #a9e44d;
  background-color: #3b2716 ;;
  border: 1px solid #a9e44d;
  box-shadow: none;
  text-decoration: underline;
}
html[color-schema="color-brown"] .soc-banner__item:hover {
  -webkit-transform: none;
  transform: none;
}
html[color-schema="color-brown"] .soc-banner__item .icon-arrow-top{
  color: #a9e44d;
}
html[color-schema="color-brown"] .soc-banner__item:hover .icon-arrow-top{
  color: #a9e44d;
}