:root {
  --roboto: "Roboto", sans-serif;
  --primary: #202120;
  --gray: #999999;
  --gray-dark: #7b7b7b;
  --blue: #004081;
  --blue-light: #4a91ca;
  --link-blue: #0072c6;
  --link-blue-hover: #005da2;
  --link-brown: #8c732f;
  --link-brown-hover: #715d26;
  --border: #cdcdcd;
}
body,
html {
  padding: 0;
  margin: 0;
  outline: 0;
  height: 100%;
}
html {
  font-size: 1em;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--roboto);
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.4;
  color: var(--primary);
  background: #f4f4f4;
  overflow-x: hidden;
}
* {
  outline: none !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.Wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  overflow: hidden;
}
.Content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  position: relative;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.Container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .Container {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Container {
    width: 760px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .Container {
    width: 1000px;
  }
}
@media (min-width: 1280px) {
  .Container {
    width: 1240px;
  }
}
a {
  color: #0072c6;
  text-decoration: none;
}
a:hover {
  color: #0063ad;
  text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
/* UI Elements */
.Link {
  display: inline-block;
  color: var(--link-blue);
  text-decoration: none;
  transition: color 0.2s;
}
.Link:hover {
  color: var(--link-blue-hover);
  text-decoration: underline;
}
.Link._underline {
  border-bottom: 1px solid;
}
.Link._underline:hover {
  text-decoration: none;
}
.Link._b500 {
  font-weight: 500;
}
.Link._brown {
  color: var(--link-brown);
}
.Link._brown:hover {
  color: var(--link-brown-hover);
}
.Input {
  padding: 0px 10px;
  border: 0;
  border-radius: 4px;
  width: 100%;
  height: 35px;
  background: white;
  border: 1px solid var(--border);
  font-family: var(--roboto);
  font-size: 14px;
}

.Input[type="date"] {
    font-size: 12px;
}


.Input[type="file"] {
  padding-top: 6px;
  padding-bottom: 6px;
}
.Textarea {
  display: block;
  padding: 10px 10px;
  border: 0;
  border-radius: 4px;
  width: 100%;
  height: 70px;
  background: white;
  border: 1px solid var(--border);
  font-family: var(--roboto);
  font-size: 14px;
}
select {
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 35px;
  padding: 0px 10px;
}
.Box {
  width: 100%;
  padding: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.Box_Title {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: bold;
}
.Box_Title._api {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .Box_Title._api {
    display: block;
    margin-top: 4px;
  }
}
.Box_Title._api .Box_Title__Links {
  display: flex;
  font-size: 14px;
  font-weight: 400;
}
.Box_Title._api .Box_Title__Links a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .Box_Title._api .Box_Title__Links a {
    margin-left: 0;
    margin-right: 4px;
  }
}
.Box_Title._api .Box_Title__Links span {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .Box_Title._api .Box_Title__Links span {
    margin-left: 0;
    margin-right: 4px;
  }
}
.Box_Subtitle {
  margin-top: 14px;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: bold;
}
.Box_Subtitle:first-child {
  margin-top: 0;
}
.Box_Text {
  font-size: 14px;
  margin-bottom: 14px;
}
.Button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 34px;
  background: var(--link-blue);
  color: white;
  border: 0;
  border-radius: 4px;
  padding: 0 16px;
  transition: 0.2s;
  cursor: pointer;
  font-family: var(--roboto);
}
.Button:hover {
  background: var(--link-blue-hover);
  color: white;
  text-decoration: none;
}
.Button._white {
  background: #e7e7e7;
  color: var(--primary);
}
.Button._white:hover {
  background: var(--border);
}
.Button._brown {
  background: #aea26d;
}
.Button._brown:hover {
  background: #a5985d;
}
.Button._block {
  width: 100%;
}
._mb20 {
  margin-bottom: 20px;
}
/* Checkbox */
.Checkbox__Input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.Checkbox__Label {
  display: block;
  cursor: pointer;
}
.Checkbox__Row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding: 6px 0 6px;

}
.Checkbox__Col._box {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 8px;
}
.Checkbox._boxRight .Checkbox__Col._box {
  margin-left: 8px;
  margin-right: 0;
}
.Checkbox__Box {
  display: block;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid var(--gray);
  position: relative;
  border-radius: 3px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background-position: center;
}
.Checkbox__Input:checked ~ .Checkbox__Col .Checkbox__Box {
  background-color: var(--link-blue);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExLjY2NTQgMy41TDUuMjQ4NyA5LjkxNjY3TDIuMzMyMDMgNyIgc3Ryb2tlPSIjRkNGQ0ZDIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  border: 2px solid var(--link-blue);
}
.Checkbox__Input:checked:disabled + ._box .Checkbox__Box {
  background-color: var(--gray);
  border: 2px solid var(--gray);
}
.Checkbox__Col._text {
  width: calc(100% - 28px);
  display: flex;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.Checkbox._error .Checkbox__Input:not(:checked) ~ .Checkbox__Col .Checkbox__Title {
  color: red;
}
.Checkbox__Input ~ .Checkbox {
  display: none;
}
.Checkbox__Input:checked ~ .Checkbox {
  display: block;
  margin-left: 28px;
}
.Radio__Input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.Radio__Label {
  display: block;
  cursor: pointer;
}
.Radio__Row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding: 6px 0 6px;
}
.Radio__Title {
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.Radio__Input:checked ~ .Radio__Col._text .Radio__Title {
  background-color: var(--link-blue);
  color: white;
  border-color: var(--link-blue);
}
.Radio__Col._text {
  width: calc(100% - 28px);
  display: flex;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.Radio__Input ~ .Radio {
  display: none;
}
.Radio__Input:checked ~ .Radio {
  display: block;
  margin-left: 28px;
}
.Pagination {
  display: flex;
  justify-content: center;
  padding-top: 14px;
  margin-top: 20px;
  border-top: 1px solid var(--border);
}
.Pagination a {
  margin-left: 6px;
  margin-right: 6px;
  color: var(--gray-dark);
}
.Pagination a:hover {
  color: var(--link-blue-hover);
}
.Pagination a._current {
  color: var(--link-blue);
  font-weight: 600;
  pointer-events: none;
}
.Pagination a svg {
  display: block;
  fill: currentColor;
}
.Header_Top {
  background-color: #152f50;
}
.Header_Top__Inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
}
@media (max-width: 767px) {
  .Header_Top__Inner {
    font-size: 12px;
  }
}
.Header_Top__Inner .Link {
  margin-right: 15px;
  color: white;
}
@media (max-width: 767px) {
  .Header_Top__Inner .Link {
    margin-right: 13px;
  }
}
.Header_Top__Inner .Link:hover,
.Header_Top__Inner .Link._active {
  color: #70b2eb;
}
.Header_Top__Inner .Link:last-child {
  margin-right: 0;
}
.Header_Top__Left {
  display: flex;
}
.Header_Middle {
  background-color: white;
}
.Header_Middle__Inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
}
@media (max-width: 1023px) {
  .Header_Middle__Inner {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .Header_Middle__Inner {
    text-align: center;
  }
  .Header_Middle__Inner a {
    margin-right: 10px;
  }
  .Header_Middle__Inner a:last-child {
    margin-right: 0;
  }
}
.Header_Bottom__Inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0px;
}
@media (max-width: 767px) {
  .Header_Bottom__Inner {
    flex-direction: column;
  }
}
.Header_Bottom__Logo {
  width: 250px;
}
@media (max-width: 1023px) {
  .Header_Bottom__Logo {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .Header_Bottom__Logo {
    width: 220px;
    margin-right: 20px;
    margin-bottom: 10px;
  }
}
.Header_Bottom__Logo img {
  max-width: 100%;
}
.Header_Bottom__Title {
  font-size: 32px;
  text-align: center;
}
@media (max-width: 1023px) {
  .Header_Bottom__Title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .Header_Bottom__Title {
    font-size: 22px;
  }
}
.Header_Bottom__Date {
  width: 250px;
  text-align: right;
}
@media (max-width: 1023px) {
  .Header_Bottom__Date {
    width: 200px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .Header_Bottom__Date {
    display: none;
  }
}
.Header_Bottom__Date span {
  color: var(--gray);
}
/* Menu */
.Menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 500px;
  background: #17210F;
  transition: all 800ms cubic-bezier(0.8, 0, 0.33, 1);
  transform: translateX(-100%);
  border-radius: 0 400px 400px 0;
  opacity: 0;
  overflow-y: auto;
  overscroll-behavior: none;
  z-index: 10;
}
@media (max-width: 767px) {
  .Menu {
    width: 100%;
  }
}
.Menu::-webkit-scrollbar {
  width: 4px;
  background: rgba(255, 255, 255, 0);
}
.Menu::-webkit-scrollbar-thumb {
  background: var(--green);
}
.Menu._open {
  transform: translateX(0%);
  border-radius: 0;
  opacity: 1;
}
.Menu._open::-webkit-scrollbar {
  background: rgba(255, 255, 255, 0.5);
}
.Menu__Closer {
  position: absolute;
  top: 50px;
  right: 50px;
}
@media (max-width: 767px) {
  .Menu__Closer {
    right: 24px;
    top: 24px;
  }
}
.Menu__Inner {
  width: 100%;
  min-height: 100%;
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  color: white;
}
@media (max-height: 865px) {
  .Menu__Inner {
    padding: 52px 100px;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .Menu__Inner {
    justify-content: flex-start;
    padding: 24px;
  }
}
.Menu__Row {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-height: 865px) {
  .Menu__Row {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .Menu__Row {
    margin-bottom: 30px;
  }
}
.Menu__Row:last-child {
  margin-bottom: 0;
}
.Menu__Title {
  margin-bottom: 20px;
  font-family: var(--oswald);
  font-size: 20px;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.5;
}
@media (max-height: 865px) {
  .Menu__Title {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.Menu__Link {
  display: inline-block;
  color: white;
  font-size: 20px;
  line-height: 1.45;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}
@media (max-height: 865px) {
  .Menu__Link {
    font-size: 16px;
  }
}
.Menu__Link:hover {
  border-color: var(--green);
}
.Menu__Address {
  margin-bottom: 20px;
  font-family: var(--oswald);
  font-size: 20px;
  line-height: 1.5;
}
@media (max-height: 865px) {
  .Menu__Address {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.Menu__Phones {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.5;
}
@media (max-height: 865px) {
  .Menu__Phones {
    font-size: 16px;
  }
}
.Menu__Phones .Link {
  margin-top: 4px;
  font-family: var(--oswald);
}
.Menu__Phone {
  font-family: var(--oswald);
  color: white;
}
.Menu__Social {
  display: flex;
}
.Menu__SocialLink {
  width: 50px;
  height: 50px;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (max-height: 865px) {
  .Menu__SocialLink {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1279px) {
  .Menu__SocialLink {
    width: 40px;
    height: 40px;
  }
}
.Menu__SocialLink:last-child {
  margin-right: 0;
}
.Menu__SocialLink._tg {
  background: #08c;
}
.Menu__SocialLink._wa {
  background: #25d366;
}
/* Search Form */
.SearchForm {
  display: flex;
}
@media (max-width: 1279px) {
  .SearchForm {
    display: block;
  }
}
.SearchForm div {
  display: flex;
  flex-grow: 1;
  margin-right: 14px;
}
@media (max-width: 1279px) {
  .SearchForm div {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.SearchForm input {
  border-radius: 4px 0 0 4px;
}
.SearchForm select {
  border-left: 0;
  border-radius: 0 4px 4px 0;
}
.SearchForm button {
  background: var(--link-blue);
  color: white;
  border: 0;
  border-radius: 4px;
  padding: 0 16px;
  cursor: pointer;
  transition: 0.2s;
}
@media (max-width: 1279px) {
  .SearchForm button {
    width: 100%;
  }
}
.SearchForm button:hover {
  background: var(--link-blue-hover);
}
.SearchForm._documents,
.SearchForm._regulations {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.SearchForm._documents:after,
.SearchForm._regulations:after {
  content: '';
  position: absolute;
  left: -14px;
  right: -14px;
  bottom: 0;
  height: 1px;
  background: var(--border);
}
.SearchForm._regulations input {
  border-radius: 4px;
}
/* Main Page */
.Content_Row {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .Content_Row {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}
.Content_Col {
  width: 100%;
  margin-left: 10px;
  margin-right: 10px;
}
@media (max-width: 1023px) {
  .Content_Col {
    margin-left: 0;
    margin-right: 0;
  }
}
.Content_Col._side {
  width: 300px;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .Content_Col._side {
    width: 100%;
    margin-bottom: 20px;
  }
}
.Content_Col._main {
  flex-grow: 1;
}
.PageMain_Menu {
  width: 100%;
  margin-bottom: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.PageMain_Menu a {
  display: block;
  padding: 14px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 767px) {
  .PageMain_Menu a {
    padding: 10px;
  }
}
.PageMain_Menu a:last-child {
  border: 0;
}
.PageMain_Menu a._active {
  background: var(--link-blue);
  color: white;
  pointer-events: none;
}
.PageMain_Top {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .PageMain_Top {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}
.PageMain_Top_Left {
  margin-right: 10px;
  margin-left: 10px;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .PageMain_Top_Left {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.PageMain_Top_Right {
  width: 280px;
  margin-left: 10px;
  margin-right: 10px;
  flex-shrink: 0;
}
@media (max-width: 1279px) {
  .PageMain_Top_Right {
    width: 230px;
  }
}
@media (max-width: 767px) {
  .PageMain_Top_Right {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.PageMain_Top_Right .Box {
  height: 100%;
  padding: 0;
}
.PageMain_Top_Right .Box_Content {
  height: 100%;
}
.PageMain_Top_Right .Box a {
  height: 100%;
  display: flex;
  align-items: center;
}
.PageMain_Top_Right img {
  width: 100%;
  display: block;
}
.RecentPublished {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}
@media (max-width: 1279px) {
  .RecentPublished {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}
.RecentPublished_Col {
  width: 33.33%;
  padding-left: 10px;
  padding-right: 10px;
  flex-shrink: 0;
}
@media (max-width: 1279px) {
  .RecentPublished_Col {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }
  .RecentPublished_Col:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
  }
}
.RecentPublished_Title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
}
.RecentPublished_Items {
  margin-bottom: 20px;
}
.RecentPublished_Item {
  margin-bottom: 20px;
}
.RecentPublished_Item:last-child {
  margin-bottom: 0;
}
.RecentPublished_Item__Date {
  margin-bottom: 4px;
  font-size: 12px;
  color: var(--gray);
}
.RecentPublished_Item__Link {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.PravoEas {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.PravoEas_Left {
  margin-right: 20px;
  color: var(--link-blue-hover);
}
.PravoEas_Title {
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: bold;
}
.PravoEas_Text {
  font-size: 16px;
}
.PravoEas_Button {
  font-weight: 500;
  font-size: 16px;
  min-height: 40px;
}
.Main_Bottom {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .Main_Bottom {
    flex-direction: column;
  }
}
.Main_Bottom a {
  width: calc(20% - 20px);
  text-align: center;
}
@media (max-width: 767px) {
  .Main_Bottom a {
    width: 100%;
    margin-bottom: 20px;
  }
  .Main_Bottom a:last-child {
    margin-bottom: 0;
  }
}
.Main_Bottom a ._img {
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .Main_Bottom a ._img {
    height: auto;
  }
}
.Main_Bottom a ._img img {
  display: block;
  max-width: 100%;
}
.Footer {
  border-top: 1px solid var(--border);
  padding: 20px 0px;
  margin-top: 20px;
}
.Footer_Row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .Footer_Row {
    flex-direction: column;
  }
}
.Footer_Col {
  display: flex;
}
@media (max-width: 767px) {
  .Footer_Col {
    margin-bottom: 10px;
  }
  .Footer_Col:last-child {
    margin-bottom: 0;
  }
}
.Footer_Col a {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .Footer_Col a {
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
  }
}
/* Filter */
.DocsFilter_Block {
  margin-bottom: 20px;
}
.DocsFilter_Block:last-child {
  margin-bottom: 0;
}
.DocsFilter_Block_Title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}
.DocsFilter_Block_Title .Button {
  margin-top: 10px;
  width: 100%;
}
.DocsFilter_Block._clear {
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.DocsFilter_Numbers_Form {
  display: flex;
  margin-bottom: 10px;
}
.DocsFilter_Numbers_Form .Button {
  margin-left: 10px;
}
.DocsFilter_Numbers_Item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.DocsFilter_Numbers_Item:last-child {
  border: 0;
}
.DocsFilter_Numbers_Item_Remove {
  cursor: pointer;
  flex-shrink: 0;
}
.DocsFilter_Numbers_Item_Remove:hover path {
  fill: var(--blue);
}
.DocsFilter_Date {
  display: flex;
  align-items: center;
}
.DocsFilter_Date input {
  flex-grow: 1;
}
.DocsFilter_Date_Sep {
  flex-shrink: 0;
  margin: 0 10px;
}
.SearchResult_Heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .SearchResult_Heading {
    display: block;
  }
}
.SearchResult_Heading__Sort {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .SearchResult_Heading__Sort {
    margin-top: 8px;
  }
}
.SearchResult_Heading__SortBtn {
  padding: 0;
  width: 34px;
  margin-left: 10px;
}
.SearchResult_Heading__SortBtn svg {
  transition: 0.3s;
}
.SearchResult_Heading__SortBtn._desc svg {
  transform: scaleY(-1);
}
/* Doc search */
.DocSearchResult_Items {
  margin-bottom: 20px;
}
.DocSearchResult_Item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.DocSearchResult_Item:last-child {
  margin-bottom: 0;
}
.DocSearchResult_Item__Date {
  margin-bottom: 4px;
  font-size: 12px;
  color: var(--gray);
}
@media (max-width: 767px) {
  .DocSearchResult_Item__Date {
    margin-bottom: 8px;
  }
}
.DocSearchResult_Item__Link {
  margin-bottom: 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  font-size: 16px;
}
@media (max-width: 767px) {
  .DocSearchResult_Item__Link {
    margin-bottom: 8px;
  }
}
.DocSearchResult_Item__Text {
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .DocSearchResult_Item__Text {
    margin-bottom: 8px;
  }
}
.DocSearchResult_Item__Langs {
  display: flex;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .DocSearchResult_Item__Langs {
    margin-bottom: 8px;
  }
}
.DocSearchResult_Item__Langs a {
  margin-right: 10px;
  font-size: 13px;
}
.DocSearchResult_Item__Dates {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4px;
  color: var(--gray-dark);
  font-size: 13px;
}
@media (max-width: 767px) {
  .DocSearchResult_Item__Dates {
    display: block;
    margin-bottom: 8px;
  }
}
.DocSearchResult_Item__Dates div {
  margin-bottom: 2px;
}
.DocSearchResult_Item__DatesRight {
  text-align: right;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .DocSearchResult_Item__DatesRight {
    text-align: left;
  }
}
.DocSearchResult_Item__FilesHeading {
  display: flex;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 0;
  cursor: pointer;
}
.DocSearchResult_Item__FilesHeadingIcon {
  width: 22px;
}
.DocSearchResult_Item__FilesHeadingIcon svg {
  display: block;
  transform: rotate(0deg);
  transition: 0.3s;
}
.DocSearchResult_Item__FilesHeading._open .DocSearchResult_Item__FilesHeadingIcon svg {
  transform: rotate(90deg);
}
.DocSearchResult_Item__FilesInner {
  display: none;
  margin-top: 8px;
}
.DocSearchResult_Item__File {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 767px) {
  .DocSearchResult_Item__File {
    display: block;
    padding: 8px 0;
  }
}
.DocSearchResult_Item__File:last-child {
  border: 0;
}
.DocSearchResult_Item__FileInfo {
  display: flex;
  align-items: center;
  font-size: 13px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .DocSearchResult_Item__FileInfo {
    display: block;
    margin-bottom: 4px;
    padding-right: 0;
  }
  .DocSearchResult_Item__FileInfo > a {
    font-size: 14px;
  }
}
.DocSearchResult_Item__FileInfo a {
  margin-right: 10px;
}
.DocSearchResult_Item__FileInfo > div {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
@media (max-width: 767px) {
  .DocSearchResult_Item__FileInfo > div {
    margin-bottom: 4px;
  }
}
.DocSearchResult_Item__FileType {
  width: 36px;
  text-align: center;
  border: 1px solid;
  border-radius: 4px;
  font-size: 10px;
  margin-right: 10px;
  font-weight: 700;
  padding: 0 4px;
  color: white;
  background: var(--blue-light);
}
.DocSearchResult_Item__FileLinks {
  display: flex;
  align-items: center;
  font-size: 13px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .DocSearchResult_Item__FileLinks {
    margin-top: 4px;
  }
}
.DocSearchResult_Item__FileLinks a {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .DocSearchResult_Item__FileLinks a {
    margin-left: 0;
    margin-right: 10px;
  }
}
/* Doc Detail */
.DocDetail_Row {
  display: flex;
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .DocDetail_Row {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .DocDetail_Row:first-child {
    margin-top: 0;
  }
}
.DocDetail_Col._title {
  width: 270px;
  padding-right: 32px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .DocDetail_Col._title {
    width: 100%;
    padding-right: 0;
    font-weight: 500;
    margin-bottom: 4px;
  }
}
.DocDetail_Col._full-title {
  font-size: 18px;
}
@media (max-width: 767px) {
  .DocDetail_Col._full-title {
    font-size: 16px;
  }
}
.DocDetail_Files {
  margin-top: 20px;
}
.DocDetail_Files_Group {
  margin-bottom: 20px;
}
.DocDetail_Files_Group:last-child {
  margin-bottom: 0;
}
.DocDetail_Files_Title {
  margin-bottom: 4px;
  font-weight: 500;
}
/* Comment Form */
.CommentForm_Row {
  display: flex;
  margin-top: 8px;
  margin-bottom: 8px;
}
.CommentForm_Row:last-child {
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .CommentForm_Row {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .CommentForm_Row:first-child {
    margin-top: 0;
  }
}
.CommentForm_Row._submit {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .CommentForm_Row._submit button {
    width: 100%;
  }
}
.CommentForm_Col._title {
  width: 270px;
  padding-right: 32px;
  padding-top: 10px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .CommentForm_Col._title {
    width: 100%;
    padding-right: 0;
    font-weight: 500;
    margin-bottom: 4px;
    padding-top: 0;
  }
}
.CommentForm_Col._value {
  flex-grow: 1;
}
.CommentForm span {
  color: red;
}
.CommentForm input,
.CommentForm textarea {
  width: 100%;
}
.CommentForm input[readonly] {
  opacity: 0.5;
  cursor: default;
}
/* Modals */
.Modal__Close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
@media (max-width: 767px) {
  .Modal__Close {
    top: 20px;
    right: 15px;
  }
}
.Modal__Close svg path {
  transition: 0.1s;
}
.Modal__Close:hover svg path {
  fill: var(--link-blue-hover);
}
.Modal__Inner {
  padding: 20px;
}
.Modal__Inner > div:last-child {
  margin-bottom: 0;
}
.Modal__Icon {
  display: block;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .Modal__Icon {
    margin-bottom: 16px;
    width: 80px;
    height: 80px;
  }
}
.Modal__Title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .Modal__Title {
    padding-right: 24px;
  }
}
.Modal__Text {
  margin-bottom: 16px;
  font-size: 14px;
}
.Modal__Buttons {
  display: flex;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .Modal__Buttons {
    display: block;
  }
}
.Modal__Buttons .Button {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .Modal__Buttons .Button {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.Modal__Buttons .Button:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .Modal__Buttons .Button:last-child {
    margin-bottom: 0;
  }
}
.Modal__FormCol {
  margin-bottom: 15px;
}
.Modal__Form .Button {
  width: 100%;
}
.Modal_Subscribe_Form__Col {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.Modal_Subscribe_Form .DocsFilter_Block_Title .Button {
  width: auto;
}
.Modal_Subscribe_Form__Radio {
  display: flex;
}
.Modal_Subscribe_Form__Radio .Radio {
  margin-right: 4px;
}
.Modal_Subscribe_Filter .modal-content {
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.3);
}
table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
}
table tr {
  background-color: white;
  border: 1px solid #ddd;
  padding: 0.35em;
}
table tr:nth-child(odd) {
  background-color: #f9f9f9;
}
thead tr {
  background-color: white !important;
}
table th,
table td {
  padding: 0.625em;
  text-align: left;
}
table th {
  font-size: 0.85em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  table {
    border: 0;
  }
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625em;
  }
  table td {
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    text-align: left;
  }
  table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  table td:last-child {
    border-bottom: 0;
  }
}
.Box_Content._zasedaniya table {
  margin-bottom: 20px;
}
.Box_Content._zasedaniya table th,
.Box_Content._zasedaniya table td {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .Box_Content._zasedaniya table th,
  .Box_Content._zasedaniya table td {
    text-align: left;
  }
}
.Box_Content._api table {
  border: 0;
}
.Box_Content._api table a {
  word-break: break-all;
}
.Zasedaniye_Info__Row {
  display: flex;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .Zasedaniye_Info__Row {
    display: block;
  }
}
.Zasedaniye_Info__Col._title {
  width: 300px;
  flex-shrink: 0;
  font-weight: 500;
}
@media (max-width: 767px) {
  .Zasedaniye_Info__Col._title {
    width: 100%;
  }
}
