a.pdf,
a.ppt,
a.doc,
a.xls,
a.zip,
a.url,
a.geo {
  display: inline-flex;
  align-items: flex-start;
  column-gap: 4px;
  color: #586577;
  margin-bottom: 12px;
}
@media (any-hover: hover) {
  a.pdf:hover,
  a.ppt:hover,
  a.doc:hover,
  a.xls:hover,
  a.zip:hover,
  a.url:hover,
  a.geo:hover {
    color: var(--gold);
  }
}
a.pdf:before,
a.ppt:before,
a.doc:before,
a.xls:before,
a.zip:before,
a.url:before,
a.geo:before {
  width: 24px;
  height: 24px;
  padding-top: 4px;
}
a.pdf:before {
  content: url('/assets/img/icon-pdf.svg');
}
a.ppt:before {
  content: url('/assets/img/icon-ppt.svg');
}
a.doc:before {
  content: url('/assets/img/icon-doc.svg');
}
a.xls:before {
  content: url('/assets/img/icon-xls.svg');
}
a.zip:before {
  content: url('/assets/img/icon-zip.svg');
}
a.url:before {
  content: url('/assets/img/icon-url.svg');
}
a.geo:before {
  content: url('/assets/img/icon-geo.svg');
}
.Button {
  margin: 0;
  padding: 0;
  padding-block: 0;
  padding-inline: 0;
  border: 0;
  color: var(--primary);
  background: transparent;
  cursor: pointer;
}
.ButtonSimple {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin: 0;
  padding: 8px 12px;
  border-radius: 5px;
  border: 0;
  color: var(--primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  background-color: transparent;
  cursor: pointer;
}
@media (any-hover: hover) {
  .ButtonSimple {
    transition: 0.2s;
  }
  .ButtonSimple:hover {
    color: var(--primary);
    background: #F6F6F6;
  }
}
.ButtonSimple._active {
  background: #F6F6F6;
  color: var(--gold);
}
.ButtonBorder {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  margin: 0;
  padding: 11px 23px;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  background-color: transparent;
  border-radius: 8px;
  border: 1px solid var(--primary);
  cursor: pointer;
}
.ButtonBorder._blue {
  background: var(--primary);
  color: var(--white);
  font-weight: 400;
}
@media (max-width: 1023px) {
  .ButtonBorder {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (any-hover: hover) {
  .ButtonBorder {
    transition: 0.2s;
  }
  .ButtonBorder:hover {
    color: var(--white);
    background: var(--primary);
  }
  .ButtonBorder._blue:hover {
    background: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  margin: 0;
  padding: 11px 23px;
  font-size: 18px;
  line-height: 130%;
  background: var(--primary);
  color: var(--white);
  font-weight: 400;
  border-radius: 8px;
  border: 1px solid var(--primary);
  cursor: pointer;
}
@media (max-width: 1023px) {
  .btn {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (any-hover: hover) {
  .btn {
    transition: 0.2s;
  }
  .btn:hover {
    background: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
  }
}
.btn.btn_border-red {
  font-weight: 500;
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
@media (any-hover: hover) {
  .btn.btn_border-red {
    transition: 0.2s;
  }
  .btn.btn_border-red:hover {
    color: var(--white);
    background: var(--primary);
  }
}
.ButtonMore {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--gray);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
.ButtonMore._white {
  background: var(--white);
  border-color: var(--white);
}
@media (max-width: 1023px) {
  .ButtonMore {
    font-size: 16px;
    line-height: 1.4;
  }
  .ButtonMore svg {
    width: 17px;
    height: 17px;
  }
}
@media (any-hover: hover) {
  .ButtonMore {
    transition: 0.2s;
  }
  .ButtonMore:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
  }
}
input::placeholder,
textarea::placeholder {
  color: var(--gray) !important;
}
.Input {
  position: relative;
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #D8D8D8;
  background: var(--white);
  transition: 0.3s;
}
.Input._simple {
  height: 45px;
}
.Input._textarea {
  align-items: flex-start;
}
.Input._textarea._big {
  height: 181px;
}
.Input._textarea textarea {
  height: 100%;
  resize: none;
  padding-right: 48px !important;
}
.Input._textarea .Input__Clear {
  top: 9px;
}
.Input:hover {
  border-color: var(--link-hover);
}
.Input__Label {
  position: absolute;
  left: 14px;
  font-size: 16px;
  font-weight: 400;
  color: var(--gray);
  transform-origin: left top;
  transition: 0.3s;
  pointer-events: none;
}
.Input__Icon {
  margin-left: 12px;
}
.Input__Icon + .Input__Label {
  left: 46px;
}
.Input._error .Input__Label {
  color: #F30F1E;
}
.Input:has(input:focus),
.Input:has(textarea:focus) {
  border-color: var(--link-hover);
}
.Input__Input {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  border: 0;
  background: transparent;
  padding: 26px 54px 8px 14px;
  border-radius: inherit;
  text-overflow: ellipsis;
}
.Input._simple .Input__Input {
  padding: 11px 44px 11px 24px;
}
.Input._error .Input__Input {
  color: #F30F1E;
}
.Input._date .Input__Input {
  padding: 26px 14px 8px 14px;
  color: transparent;
  transition: 0.3s;
}
.Input._date .Input__Input:focus {
  color: var(--primary);
}
.Input._date:has(input:not([value=""])) .Input__Input {
  color: var(--primary);
}
.Input__Clear {
  display: none;
  position: absolute;
  right: 15px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--gray);
}
@media (any-hover: hover) {
  .Input__Clear {
    transition: 0.3s;
  }
  .Input__Clear:hover {
    color: var(--link-hover);
  }
}
.Input__Clear:hover {
  display: block;
}
.Input__Clear svg {
  display: block;
  width: 24px;
  height: 24px;
}
.Input:has(input:focus:not([value=""])) .Input__Clear,
.Input:has(textarea:focus:not([value=""])) .Input__Clear {
  display: block;
}
.Input:has(input[value=""]) .Input__Clear,
.Input:has(textarea[value=""]) .Input__Clear {
  display: none !important;
}
.Input._error .Input__Clear {
  color: #F30F1E;
}
.Input__DateSelect {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding-right: 15px;
  padding-left: 0;
  display: flex;
  align-items: center;
  background: var(--white);
  color: var(--gray);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}
.Input__DateSelect svg {
  width: 24px;
  height: 24px;
}
@media (any-hover: hover) {
  .Input__DateSelect {
    transition: 0.3s;
  }
  .Input__DateSelect:hover {
    color: var(--link-hover);
  }
}
.Input__Error {
  display: none;
  position: absolute;
  top: 100%;
  left: 18px;
  margin-top: 7px;
  color: #F30F1E;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}
.Input._error {
  border-color: #F30F1E !important;
}
.Input._error .Input__Error {
  display: block;
}
.Tabs__Heading {
  display: flex;
  flex-wrap: wrap;
  column-gap: 48px;
  row-gap: 24px;
  margin-bottom: 32px;
  padding: 4px;
}
@media (max-width: 1023px) {
  .Tabs__Heading {
    column-gap: 40px;
    margin-bottom: 24px;
    padding: 0;
  }
}
.Tabs__HeadingItem {
  margin: 0;
  padding-block: 0;
  padding-inline: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  font-size: 30px;
  font-weight: 500;
  line-height: 130%;
  font-optical-sizing: none;
  color: var(--gray);
}
@media (max-width: 1023px) {
  .Tabs__HeadingItem {
    font-size: 24px;
  }
}
.Tabs__HeadingItem._active {
  color: var(--primary);
  border-color: currentColor;
}
@media (any-hover: hover) {
  .Tabs__HeadingItem {
    transition: 0.2s;
  }
  .Tabs__HeadingItem:hover {
    color: var(--primary);
  }
}
.Tabs__Tab {
  display: none;
}
.Tabs__Tab._active {
  display: block;
}
.Tabs__TabMore {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media (max-width: 1023px) {
  .Tabs__TabMore {
    margin-top: 24px;
  }
}
.SpoilerList:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .SpoilerList:not(:last-child) {
    margin-bottom: 12px;
  }
}
.Spoiler {
  display: flex;
  column-gap: 40px;
  width: 100%;
  margin-bottom: 24px;
  padding: 32px;
  background: var(--bg-gray);
  border-radius: 10px;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .Spoiler {
    column-gap: 16px;
    margin-bottom: 12px;
    padding: 16px;
  }
}
.Spoiler:last-child {
  margin-bottom: 0;
}
.Spoiler__Number {
  min-width: 26px;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: var(--gray);
}
@media (max-width: 1023px) {
  .Spoiler__Number {
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .Spoiler__Number {
    transition: 0.2s;
  }
}
@media (any-hover: hover) {
  .Spoiler:hover .Spoiler__Number {
    color: var(--gold);
  }
}
.Spoiler__Content {
  flex-grow: 1;
}
.Spoiler__Title {
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  color: var(--gold);
}
@media (max-width: 1023px) {
  .Spoiler__Title {
    font-size: 18px;
  }
}
.Spoiler__Hidden {
  cursor: auto;
}
.Spoiler__Arrow {
  flex-shrink: 0;
  transition: 0.5s;
}
.Spoiler._active .Spoiler__Arrow {
  transform: rotate(180deg);
}
.Spoiler__Items {
  margin-top: 12px;
}
.Spoiler__Item {
  display: flex;
  column-gap: 24px;
  padding-top: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1023px) {
  .Spoiler__Item {
    column-gap: 12px;
  }
}
.Spoiler__ItemArrowWrapper {
  height: 22px;
  display: flex;
  align-items: center;
}
@media (any-hover: hover) {
  .Spoiler__ItemArrow {
    transition: 0.2s;
  }
  .Spoiler__Item:hover .Spoiler__ItemArrow {
    fill: var(--gold);
  }
}
.Spoiler__ItemTitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}
.Spoiler._type-2 {
  column-gap: 24px;
}
@media (max-width: 1023px) {
  .Spoiler._type-2 {
    column-gap: 16px;
  }
}
@media (max-width: 767px) {
  .Spoiler._type-2 {
    column-gap: 0px;
  }
}
.Spoiler._type-2 .Spoiler__Title {
  color: var(--primary);
}
@media (any-hover: hover) {
  .Spoiler._type-2 .Spoiler__Title {
    transition: 0.2s;
  }
  .Spoiler._type-2:hover .Spoiler__Title {
    color: var(--gold);
  }
}
@media (max-width: 767px) {
  .Spoiler._type-2 .Spoiler__Hidden {
    margin-left: -26px;
    margin-right: -24px;
  }
}
.Spoiler._type-2 .SpoilerInner {
  margin-top: 24px;
  max-width: unset;
}
.Spoiler._type-2 .Spoiler__Hidden {
  margin-left: -50px;
  margin-right: -56px;
}
@media (max-width: 1023px) {
  .Spoiler._type-2 .Spoiler__Hidden {
    margin-left: -34px;
    margin-right: -32px;
  }
}
.Spoiler._type-2 .SpoilerBlock {
  padding: 24px;
  border-radius: 10px;
  background: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 767px) {
  .Spoiler._type-2 .SpoilerBlock {
    padding: 0px 16px;
  }
}
.select-wrapper {
  position: relative;
  width: 100%;
  z-index: 5;
}
.select-wrapper:has(.custom-select.open) {
  z-index: 6;
}
/* Скрываем оригинальный select, но оставляем его функциональным */
.native-select {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  left: 0;
  top: 0;
  z-index: 1;
}
/* Стили для кастомного select (отображается всегда) */
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select__trigger {
  position: relative;
  padding: 10px 24px;
  height: 45px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
._not-selected .custom-select__trigger {
  color: var(--gray);
}
.custom-select__trigger span {
  display: flex;
  align-items: center;
  column-gap: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.custom-select__trigger:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTciIHZpZXdCb3g9IjAgMCAxNiAxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNCA2LjVMOCAxMC41TDEyIDYuNSIgc3Ryb2tlPSIjNzM3RDhEIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+DQo=");
  transition: transform 0.3s ease;
  height: 17px;
}
.custom-select__flag {
  display: block;
}
/* На устройствах с hover добавляем выпадающий список */
@media (any-hover: hover) {
  .native-select {
    pointer-events: none;
  }
  .custom-select__trigger:hover {
    border-color: var(--gray);
  }
  .custom-select.open .custom-select__trigger {
    border-color: var(--gray);
  }
  .custom-select.open .custom-select__trigger:after {
    transform: rotate(180deg);
  }
  .custom-select__options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0px 2px 10px 2px rgba(22, 39, 65, 0.1);
    max-height: 80vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1;
  }
  .custom-select.open .custom-select__options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .custom-select__option {
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .custom-select__option:hover {
    background-color: var(--bg-gray);
  }
  .custom-select__option.selected {
    background-color: var(--bg-gray);
    color: var(--gold);
  }
  .custom-select__option.disabled {
    color: #999;
    cursor: not-allowed;
    background-color: #f9f9f9;
  }
}
@media (any-hover: hover) and (min-width: 1280px) {
  .custom-select._wide .custom-select__options {
    left: auto;
    right: 0;
    width: max-content;
    max-width: 630px;
  }
}
/* На устройствах без hover скрываем выпадающий список */
@media (hover: none) {
  .custom-select__options {
    display: none;
  }
}
.Pagination {
  display: flex;
  justify-content: center;
  column-gap: 12px;
  margin-top: 48px;
  padding-top: 24px;
}
@media (max-width: 1023px) {
  .Pagination {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .Pagination {
    column-gap: 12px;
  }
  .Pagination .ButtonSimple:not(._prev):not(._next) {
    width: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .Pagination._desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .Pagination._mobile {
    display: none;
  }
}
.Highlight {
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}
.Highlight._blue {
  border-radius: 8px;
  background: linear-gradient(111deg, #162741 7.98%, #032F71 92.18%);
  color: var(--white);
  line-height: 140%;
}
.DocsList .DocsGrid__Item {
  margin-bottom: 16px;
}
.DocsList .DocsGrid__Item:last-child {
  margin-bottom: 0;
}
.DocsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 16px;
}
@media (max-width: 1023px) {
  .DocsGrid {
    grid-template-columns: 1fr;
  }
}
.DocsGrid__Item {
  position: relative;
  display: flex;
  padding: 32px;
  border-radius: 10px;
  background: var(--bg-gray);
  overflow: hidden;
}
@media (max-width: 1023px) {
  .DocsGrid__Item {
    padding: 16px;
  }
}
.DocsGrid__Item._link {
  align-items: center;
}
.DocsGrid__ItemBg {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1023px) {
  .DocsGrid__ItemBg {
    transform: scale(0.72);
    transform-origin: right bottom;
    bottom: -2px;
    right: -8px;
  }
}
.DocsGrid__ItemIcon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  color: var(--gray);
}
@media (any-hover: hover) {
  .DocsGrid__ItemIcon {
    transition: 0.2s;
  }
}
.DocsGrid__ItemIcon:not(:last-child) {
  margin-right: 8px;
}
.DocsGrid__Item._link .DocsGrid__ItemIcon {
  margin-right: 24px;
}
.DocsGrid__Item:hover .DocsGrid__ItemIcon {
  color: var(--gold);
}
.DocsGrid__ItemTitle {
  position: relative;
  z-index: 1;
  margin-right: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  flex-grow: 1;
}
@media (max-width: 1023px) {
  .DocsGrid__ItemTitle {
    margin-right: 16px;
    font-size: 16px;
    line-height: 1.4;
  }
}
.ActsList__Heading {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: var(--gray);
}
@media (max-width: 1023px) {
  .ActsList__Heading {
    margin-bottom: 12px;
  }
}
.ActsList__Item {
  display: flex;
  column-gap: 80px;
  margin-bottom: 24px;
  padding: 32px;
  border-radius: 10px;
  background: var(--bg-gray);
}
@media (max-width: 1023px) {
  .ActsList__Item {
    column-gap: 16px;
    padding: 16px;
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .ActsList__Item {
    position: relative;
    flex-direction: column;
  }
}
.ActsList__Item:last-child {
  margin-bottom: 0;
}
.ActsList__ItemLeft {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1023px) {
  .ActsList__ItemLeft {
    flex-shrink: 1;
  }
}
@media (max-width: 767px) {
  .ActsList__ItemLeft {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 8px;
    margin-bottom: 16px;
  }
}
.ActsList__ItemNumber {
  margin-bottom: 8px;
  font-size: 46px;
  font-weight: 600;
  line-height: 100%;
  color: var(--gold);
}
@media (max-width: 767px) {
  .ActsList__ItemNumber {
    margin-bottom: 0;
  }
}
.ActsList__ItemNumberText {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: var(--gray);
}
.ActsList__ItemCenter {
  flex-grow: 1;
}
.ActsList__ItemDate {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: var(--gray);
}
.ActsList__ItemTitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .ActsList__ItemTitle {
    font-size: 16px;
    line-height: 1.4;
  }
}
.ActsList__ItemArrow {
  flex-shrink: 0;
  transition: 0.2s;
  color: var(--gray);
}
@media (max-width: 767px) {
  .ActsList__ItemArrow {
    position: absolute;
    right: 16px;
    top: 16px;
  }
}
@media (any-hover: hover) {
  .ActsList__Item:hover .ActsList__ItemArrow {
    color: var(--gold);
  }
}
ul,
ol {
  margin: 0;
  padding-left: 31px;
}
@media (max-width: 1023px) {
  ul,
  ol {
    padding-left: 26px;
  }
}
.custom-file-upload {
  width: 100%;
}
.upload-button {
  padding: 24px;
  height: 176px;
  border-radius: 8px;
  border: 1px dashed var(--gray);
  background: var(--bg-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  transition: 0.2s;
  cursor: pointer;
}
.upload-button:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.uploaded-files-wrapper {
  margin-top: 24px;
}
.uploaded-files__title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: var(--gray);
}
.uploaded-files {
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 12px;
}
.file-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  position: relative;
}
.file-item:last-child {
  margin-bottom: 0;
}
.file-info {
  display: flex;
  align-items: center;
}
.file-name {
  flex-grow: 1;
  margin-right: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.file-size {
  color: #777;
  font-size: 0.9em;
  margin-right: 10px;
}
.delete-file {
  color: var(--gray);
  cursor: pointer;
  transition: 0.2s;
}
@media (any-hover: hover) {
  .delete-file:hover {
    color: var(--gold);
  }
}
.delete-file svg {
  color: currentColor;
}
progress.progress-bar {
  margin-top: 4px;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
}
progress.progress-bar::-webkit-progress-bar {
  background-color: #b4b9c1;
  border-radius: 2px;
}
progress.progress-bar::-webkit-progress-value {
  background-color: #46B564;
  transition: width 0.3s;
  border-radius: 2px;
}
progress.progress-bar::-moz-progress-bar {
  background-color: #46B564;
}
/* UI Checkbox */
.Checkbox {
  display: flex;
}
.Checkbox + .Checkbox {
  margin-top: 12px;
}
.CheckboxLabel {
  font-size: 16px;
  font-weight: 400;
}
.CheckboxItem {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 12px;
  transition: 0.2s;
  cursor: pointer;
}
.CheckboxItem__Label {
  cursor: pointer;
}
.CheckboxItem__Checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid var(--line);
  transition: 0.2s;
  flex-shrink: 0;
  background: var(--white);
}
.CheckboxItem__Checkbox:hover {
  border-color: var(--primary);
}
.CheckboxItem__CheckboxCheck {
  display: none;
}
.CheckboxItem input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
  top: 0;
}
.CheckboxItem input:checked + .CheckboxItem__Checkbox {
  border-color: var(--primary);
}
.CheckboxItem input:checked + .CheckboxItem__Checkbox .CheckboxItem__CheckboxCheck {
  display: block;
}
/* UI Radio */
.Radio {
  display: flex;
}
.Radio + .Radio {
  margin-top: 12px;
}
.RadioLabel {
  font-size: 16px;
  font-weight: 400;
}
.RadioItem {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 12px;
  transition: 0.2s;
  cursor: pointer;
}
.RadioItem__Label {
  cursor: pointer;
}
.RadioItem__Radio {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: 0.2s;
  flex-shrink: 0;
  background: var(--white);
}
.RadioItem__Radio:hover {
  border-color: var(--primary);
}
.RadioItem__RadioCheck {
  display: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}
.RadioItem input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
  top: 0;
}
.RadioItem input:checked + .RadioItem__Radio {
  border-color: var(--primary);
}
.RadioItem input:checked + .RadioItem__Radio .RadioItem__RadioCheck {
  display: block;
}
.FormField {
  margin-bottom: 24px;
}
.FormField:last-child {
  margin-bottom: 0;
}
.FormField .FormAgree {
  margin-top: 11px;
}
.FeedbackForm {
  padding: 48px;
  border-radius: 10px;
  background: var(--bg-gray);
}
@media (max-width: 1023px) {
  .FeedbackForm {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .FeedbackForm {
    padding: 16px;
    margin-left: -16px;
    margin-right: -16px;
  }
}
.FeedbackForm__Block {
  margin-bottom: 62px;
}
@media (max-width: 1023px) {
  .FeedbackForm__Block {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .FeedbackForm__Block {
    margin-bottom: 32px;
  }
}
.FeedbackForm__Block:last-child {
  margin-bottom: 0;
}
.FeedbackForm__BlockTitle {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 767px) {
  .FeedbackForm__BlockTitle {
    font-size: 18px;
  }
}
.FeedbackForm__BlockTitle span {
  color: #CC193D;
}
.FeedbackForm__BlockSubtitle {
  margin-top: -4px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .FeedbackForm__BlockSubtitle {
    font-size: 14px;
    margin-top: -8px;
  }
}
.FeedbackForm__BlockContent {
  padding: 24px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
@media (max-width: 767px) {
  .FeedbackForm__BlockContent {
    padding: 12px;
  }
}
.FeedbackForm__BlockContent._no-border {
  border: none;
  padding: 0;
}
.FeedbackForm__FieldLabel {
  margin-bottom: 4px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: var(--gray);
}
.FeedbackForm__FieldLabel span {
  color: #CC193D;
}
.FeedbackForm__Submit {
  margin-top: 32px;
}
.FeedbackForm__Direction {
  max-width: 880px;
}
@media (max-width: 1279px) {
  .FeedbackForm__Direction {
    max-width: 100%;
  }
}
.FeedbackForm__Personal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1279px) {
  .FeedbackForm__Personal {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1023px) {
  .FeedbackForm__Personal {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1279px) and (min-width: 1024px) {
  .FeedbackForm__Personal .FeedbackForm__Field:nth-child(1) {
    grid-column: 1 / 3;
  }
}
.FeedbackForm__OrgTop {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .FeedbackForm__OrgTop {
    margin-bottom: 16px;
  }
}
@media (max-width: 1023px) {
  .FeedbackForm__OrgTop .Input._textarea._name {
    height: 65px;
  }
}
@media (max-width: 767px) {
  .FeedbackForm__OrgTop .Input._textarea._name {
    height: 108px;
  }
}
@media (max-width: 767px) {
  .FeedbackForm__OrgTop .Input._textarea._address {
    height: 66px;
  }
}
.FeedbackForm__OrgBottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1023px) {
  .FeedbackForm__OrgBottom {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1279px) and (min-width: 1024px) {
  .FeedbackForm__OrgBottom .FeedbackForm__Field:nth-child(1) {
    grid-column: 1 / 3;
  }
}
.FeedbackForm__QuestionFile {
  display: grid;
  grid-template-columns: 1fr 392px;
  gap: 24px;
}
@media (max-width: 1279px) {
  .FeedbackForm__QuestionFile {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
  }
  .FeedbackForm__QuestionFile .custom-file-upload {
    display: flex;
    column-gap: 24px;
  }
  .FeedbackForm__QuestionFile .custom-file-upload div:first-child {
    width: 380px;
  }
  .FeedbackForm__QuestionFile .uploaded-files-wrapper {
    margin-top: 0;
  }
}
@media (max-width: 1023px) {
  .FeedbackForm__QuestionFile .custom-file-upload div:first-child {
    width: 294px;
  }
}
@media (max-width: 767px) {
  .FeedbackForm__QuestionFile {
    row-gap: 16px;
  }
  .FeedbackForm__QuestionFile .custom-file-upload {
    flex-direction: column;
    row-gap: 24px;
  }
  .FeedbackForm__QuestionFile .custom-file-upload div:first-child {
    width: 100%;
  }
}
.FeedbackForm__Text {
  margin-bottom: 48px;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 1023px) {
  .FeedbackForm__Text {
    margin-bottom: 24px;
    font-size: 16px;
  }
}
.FeedbackForm__Text span {
  font-weight: 500;
}
.FeedbackForm__Text span.red {
  color: #CC193D;
}
.FeedbackForm__Text span.gold {
  color: var(--gold);
}
.FeedbackForm__Applicant {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 32px;
  align-items: flex-end;
}
@media (max-width: 1023px) {
  .FeedbackForm__Applicant {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .FeedbackForm__Applicant {
    row-gap: 16px;
  }
}
@media (max-width: 1279px) and (min-width: 1024px) {
  .FeedbackForm__Applicant ._type {
    grid-column: 1 / 3;
  }
}
@media (max-width: 1279px) and (min-width: 1024px) {
  .FeedbackForm__Applicant ._address {
    grid-column: 1 / 3;
  }
}
.FeedbackForm__TwoCols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 32px;
  align-items: flex-end;
}
@media (max-width: 1279px) {
  .FeedbackForm__TwoCols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .FeedbackForm__TwoCols {
    row-gap: 16px;
  }
}
.FeedbackForm__BlockContent._checkboxes {
  max-width: 928px;
}
@media (max-width: 1279px) {
  .FeedbackForm__BlockContent._checkboxes {
    max-width: 100%;
  }
}
.FeedbackForm__Checkboxes .Input._simple._textarea {
  height: 77px;
  margin-top: 8px;
}
.FeedbackForm__Subject {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 32px;
}
@media (max-width: 1279px) {
  .FeedbackForm__Subject {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .FeedbackForm__Subject {
    row-gap: 16px;
  }
}
.FeedbackForm__Subject .Input._simple._textarea {
  height: 105px;
}
.FeedbackForm__Prev {
  max-width: 880px;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media (max-width: 1279px) {
  .FeedbackForm__Prev {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .FeedbackForm__Prev {
    row-gap: 16px;
  }
}
.FeedbackForm__Prev .Input._simple._textarea {
  height: 105px;
}
.FeedbackForm__PrevRadio {
  display: inline-flex;
  column-gap: 4px;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}
.FeedbackForm__PrevRadioLabel {
  cursor: pointer;
}
.FeedbackForm__PrevRadioLabel input {
  display: none;
}
.FeedbackForm__PrevRadioLabel .FeedbackForm__PrevRadioItem {
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  border-radius: 5px;
  transition: 0.2s;
}
@media (any-hover: hover) {
  .FeedbackForm__PrevRadioLabel:hover .FeedbackForm__PrevRadioItem {
    color: var(--gold);
  }
}
.FeedbackForm__PrevRadioLabel input:checked + .FeedbackForm__PrevRadioItem {
  color: var(--gold);
  background: var(--bg-gray);
}
.FeedbackForm__Bottom {
  display: flex;
}
@media (max-width: 1279px) {
  .FeedbackForm__Bottom {
    display: block;
  }
}
.FeedbackForm__BottomLeft {
  flex-grow: 1;
}
.FeedbackForm__BottomLeft .FeedbackForm__BlockTitle {
  margin-top: 40px;
}
@media (max-width: 1279px) {
  .FeedbackForm__BottomLeft .FeedbackForm__BlockTitle {
    margin-top: 32px;
  }
}
.FeedbackForm__BottomLeft .FeedbackForm__BlockTitle:first-child {
  margin-top: 0;
}
.FeedbackForm__BottomLeft .Input._simple._textarea {
  height: 105px;
}
.FeedbackForm__BottomRight {
  flex-shrink: 0;
  width: 416px;
  padding-left: 24px;
  margin-left: 24px;
  border-left: 1px solid var(--line);
}
@media (max-width: 1279px) {
  .FeedbackForm__BottomRight {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    padding-top: 32px;
    margin-top: 32px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}
@media (max-width: 1279px) {
  .FeedbackForm__Bottom .custom-file-upload {
    display: flex;
    column-gap: 24px;
  }
  .FeedbackForm__Bottom .custom-file-upload div:first-child {
    width: 380px;
  }
  .FeedbackForm__Bottom .uploaded-files-wrapper {
    margin-top: 0;
  }
}
@media (max-width: 1023px) {
  .FeedbackForm__Bottom .custom-file-upload div:first-child {
    width: 294px;
  }
}
@media (max-width: 767px) {
  .FeedbackForm__Bottom .custom-file-upload {
    flex-direction: column;
    row-gap: 24px;
  }
  .FeedbackForm__Bottom .custom-file-upload div:first-child {
    width: 100%;
  }
}
.VacanciesResultsTable {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}
.VacanciesResultsTable__Row {
  display: grid;
  grid-template-columns: 60px 380fr 612fr 248fr 140px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1279px) {
  .VacanciesResultsTable__Row {
    grid-template-columns: 48px 200px 1fr 165px 116px;
  }
}
@media (max-width: 1023px) {
  .VacanciesResultsTable__Row {
    grid-template-columns: 48px 200px 1fr 116px;
    row-gap: 12px;
  }
}
@media (max-width: 767px) {
  .VacanciesResultsTable__Row {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
  }
}
.VacanciesResultsTable__Row._heading {
  padding-top: 0;
  padding-bottom: 12px;
  color: var(--gray);
}
@media (max-width: 767px) {
  .VacanciesResultsTable__Row._heading {
    display: none;
  }
}
@media (max-width: 1023px) {
  .VacanciesResultsTable__Row._heading .VacanciesResultsTable__Col:nth-child(4) {
    display: none;
  }
}
.VacanciesResultsTable__Col {
  padding-right: 40px;
}
@media (max-width: 1023px) {
  .VacanciesResultsTable__Col {
    grid-row-start: 2;
  }
}
@media (max-width: 767px) {
  .VacanciesResultsTable__Col:before {
    content: "" attr(data-title) "";
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: var(--gray);
  }
}
.VacanciesResultsTable__Col:first-child {
  padding-right: 24px;
}
@media (max-width: 767px) {
  .VacanciesResultsTable__Col:first-child {
    display: none;
  }
}
.VacanciesResultsTable__Col:nth-child(2) {
  min-width: 280px;
}
@media (max-width: 1279px) {
  .VacanciesResultsTable__Col:nth-child(2) {
    min-width: unset;
  }
}
.VacanciesResultsTable__Col:nth-child(4) {
  min-width: 205px;
}
@media (max-width: 1279px) {
  .VacanciesResultsTable__Col:nth-child(4) {
    min-width: unset;
  }
}
@media (max-width: 1023px) {
  .VacanciesResultsTable__Col:nth-child(4) {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-column-end: 5;
    font-size: 14px;
    opacity: 0.8;
  }
  .VacanciesResultsTable__Col:nth-child(4):before {
    content: "" attr(data-title) "";
    display: inline;
    color: var(--primary);
  }
}
@media (max-width: 767px) {
  .VacanciesResultsTable__Col:nth-child(4) {
    order: -1;
  }
}
.VacanciesResultsTable__Col:last-child {
  padding-right: 0;
}
.VacanciesResultsTable__Col a {
  color: var(--gold);
  text-decoration: underline;
}
.DefaultTable {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}
.DefaultTable thead {
  text-align: left;
}
.DefaultTable td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}
.DefaultTable td:first-child {
  padding-left: 0;
}
.DefaultTable td:last-child {
  padding-right: 0;
}
.DefaultTable th {
  padding: 0 20px 12px 20px;
  white-space: nowrap;
  color: var(--gray);
  font-weight: 400;
  border-bottom: 1px solid var(--line);
}
.DefaultTable th:first-child {
  padding-left: 0;
}
.DefaultTable th:last-child {
  padding-right: 0;
}
@media (max-width: 1023px) {
  .DefaultTable thead {
    display: none;
  }
  .DefaultTable tr,
  .DefaultTable td {
    display: block;
    padding-left: 0;
    padding-right: 0;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .DefaultTable td {
    border: 0;
  }
  .DefaultTable tr {
    border-bottom: 1px solid var(--line);
  }
  .DefaultTable td:before {
    content: "" attr(data-title) "";
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: var(--gray);
  }
}
.DefaultTable a.pdf,
.DefaultTable a.ppt,
.DefaultTable a.doc,
.DefaultTable a.xls,
.DefaultTable a.zip,
.DefaultTable a.url,
.DefaultTable a.geo {
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 5px;
  border: 1px solid var(--line);
  background: var(--bg-gray);
}
.document-list-pane-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 8px;
  border-radius: 8px;
  background: var(--bg-gray);
}
.document-list-pane-item-ico {
  margin-right: 16px;
}
.document-list-pane-item-ico svg {
  display: block;
}
@media (max-width: 767px) {
  .document-list-pane-item-ico svg {
    width: 32px;
    height: auto;
  }
}
.document-list-pane-item-body {
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 767px) {
  .document-list-pane-item-body {
    font-size: 16px;
  }
}
/* form old styles */
.field {
  margin: 0 0 20px 0;
  padding: 0 0 0 0;
  position: relative;
}
.field .field-label,
.field > label {
  margin: 0 0 12px 0;
  padding: 0;
  display: block;
  font-size: 20px;
  line-height: 1.1;
  font-weight: normal;
  color: #142642;
}
.field_inline {
  margin: 0 0 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.field_inline-textarea {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.field_inline-textarea .field-label,
.field_inline-textarea > label {
  margin-top: 10px;
  padding: 0 15px 0 40px;
}
.field_inline .field-label,
.field_inline > label {
  margin: 0;
  padding: 0 15px 0 40px;
  width: 180px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  font-size: 16px;
  font-weight: bold;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.4;
}
.form-appeal-footer {
  padding-left: 40px;
}
.form-appeal-footer .field {
  margin-bottom: 40px;
}
@media only screen and (max-width: 780px) {
  .form-appeal-footer {
    padding-left: 0;
  }
  .field-file-upload-label {
    width: 140px;
    padding-left: 0;
  }
  .field_inline .field-label,
  .field_inline label {
    width: 140px;
    padding-left: 0;
  }
}
@media only screen and (max-width: 640px) {
  .field-file-upload-label {
    padding: 0;
    margin-bottom: 10px;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
  .field_inline {
    display: block;
  }
  .field_inline .field-label,
  .field_inline label {
    margin-top: 0;
    margin-bottom: 10px;
    margin-left: 0;
    padding: 0;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
}
.has-success .field-input,
.field_success .field-input {
  border: 1px solid green;
}
.has-success .field-input:focus,
.field_success .field-input:focus,
.bx-no-touch .has-success .field-input:hover,
.bx-no-touch .field_success .field-input:hover {
  border: 1px solid green;
}
.has-success .field__req,
.field_success .field__req {
  display: none;
}
.has-success .field__status_succes,
.field_success .field__status_succes {
  display: inline-block;
}
.has-error .field-input,
.form-appeal .field_error .field-input,
.field_error .field-input {
  border-color: #cc193d;
  color: #cc193d;
}
.has-error .field-tips_error,
.form-appeal .field_error .field-tips_error,
.field_error .field-tips_error {
  display: block;
}
.has-error .field__status_succes,
.form-appeal .field_error .field__status_succes,
.field_error .field__status_succes {
  display: none;
}
.field_confirm .field__status_succes {
  display: inline-block;
}
.field_confirm.field_error .field__status_succes {
  display: none;
}
.field_confirm .field__req {
  display: none;
}
.form-appeal .field-input.parsley-error,
.field-input.parsley-error {
  border-color: #cc193d;
  color: #cc193d;
}
.field-tips {
  margin: 5px 0 0;
  line-height: normal;
  font-size: 13px;
  text-align: left;
}
.field-tips_error,
i.field-tips_error {
  margin-top: 5px;
  color: #cc193d;
  line-height: 1.2;
  font-size: 14px;
  font-weight: normal;
}
.wrap-field-input__textarea .field-tips_error {
  top: auto;
  bottom: calc(100% + 10px);
}
.wrap-field-input__textarea .field-tips_error:after {
  top: auto;
  bottom: 0;
}
.wrap-field-input__textarea .field-tips_error:before {
  top: auto;
  bottom: -6px;
}
.form-appeal .field-tips_error {
  position: absolute;
  left: 0;
  bottom: -21px;
}
.field-input-radio .field-tips_error {
  top: 30px;
  left: 0;
}
.field-input-radio .field-tips_error:after,
.field-input-radio .field-tips_error:before {
  margin-left: 0;
  left: 5px;
  z-index: -1;
}
.field-input-radio .field-tips_error:after {
  z-index: 0;
}
.h--tooltip-top .field-tips_error {
  top: auto;
  bottom: 48px;
  left: 0;
}
.h--tooltip-top .field-tips_error:after,
.h--tooltip-top .field-tips_error:before {
  margin-left: 0;
  left: 7px;
  bottom: -6px;
  top: auto;
  z-index: -1;
}
.h--tooltip-top .field-tips_error:after {
  z-index: 0;
  bottom: 0;
  left: 3px;
}
.field_error .field-input-radio input[type="checkbox"] + i + span:before,
.field_error .field-input-radio input[type="checkbox"] + span:before {
  border-color: #cc193d;
}
.wrap-field-input {
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}
.wrap-field-input_date .ico-field-date {
  position: absolute;
  top: calc(50% - 3px);
  right: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 11;
}
.field-input {
  margin: 0;
  padding: 0 24px;
  width: 100%;
  height: 45px;
  position: relative;
  line-height: 1;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.field-input::-webkit-input-placeholder {
  color: var(--gray);
}
.field-input::-ms-input-placeholder {
  color: var(--gray);
}
.field-input::placeholder {
  color: var(--gray);
}
.field-input:focus {
  border-color: var(--primary);
}
.field-input[disabled] {
  background: #f5f7fa;
  border-color: #ccd1d9;
  color: #aab2bd;
  -webkit-text-fill-color: #aab2bd;
  -webkit-opacity: 1;
}
.bx-no-touch .field-input[disabled]:hover {
  border-color: #ccd1d9;
  color: #aab2bd;
  -webkit-text-fill-color: #aab2bd;
}
.bx-no-touch .field-input[disabled]:hover ~ .wrap-field-input__icon:before {
  background-color: #ccd1d9;
}
.bx-no-touch .field-input[disabled]:hover ~ .wrap-field-input__icon svg {
  fill: #ccd1d9;
}
.field-input[disabled]:focus {
  border-color: #ccd1d9;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #aab2bd;
  -webkit-text-fill-color: #aab2bd;
}
.field-input[disabled] ~ .wrap-field-input__icon {
  cursor: default;
}
.parsley-error .field-input {
  background: #fff4f4;
}
.js--datetimepicker ~ .wrap-field-input__icon {
  cursor: pointer;
}
.field-input-textarea {
  margin: 0;
  padding: 12px 0 0 24px;
  width: 100%;
  height: 140px;
  max-height: 120px;
  position: relative;
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 400;
  vertical-align: top;
  background: #fff;
  border: 1px solid #d8d8d8;
  text-align: left;
  text-transform: normal;
  border-radius: 8px;
  resize: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 2;
}
.field-input-textarea::-webkit-input-placeholder {
  color: var(--gray);
}
.field-input-textarea::-ms-input-placeholder {
  color: var(--gray);
}
.field-input-textarea::placeholder {
  color: var(--gray);
}
.field-input-textarea:focus {
  border-color: var(--primary);
}
.wrap-field-input-select {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 50px;
  display: inline-block;
  font-family: "roboto", Arial, serif;
  position: relative;
  line-height: 1;
  border: 2px solid #c5c8ce;
  background: transparent;
  border-radius: 0;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.wrap-field-input-select .field-input-select {
  margin: 0;
  padding: 0 15px 0 15px;
  width: 100%;
  height: 46px;
  line-height: 46px;
  position: relative;
  font-family: "roboto", Arial, serif;
  font-weight: 300;
  color: #142642;
  font-size: 14px;
  border: none;
  background-color: transparent;
  background-image: none;
  text-transform: none;
  z-index: 2;
  appearance: none;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.wrap-field-input-select .field-input-select:focus {
  outline: none;
}
.wrap-field-input-select .field-input-select::-ms-expand {
  display: none;
}
.field .field-input-radio {
  margin: 0 15px 0 0;
  font-size: 16px;
  display: inline-block;
  position: relative;
  text-align: left;
}
.field .field-input-radio:last-child {
  margin-right: 0;
}
.field_check .field-input-radio {
  min-height: 28px;
  display: inline-block;
}
.field_radio .field-group {
  padding: 0;
  width: 100%;
  display: inline-block;
}
.field_radio .field-label,
.field_check .field-label {
  margin: 0 0 8px 0;
  font-weight: bold;
  font-size: 14px;
}
.field_check,
.field_radio {
  margin-bottom: 9px;
}
.field_radio .field-input-radio {
  display: inline-block;
}
.field-from-to {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.field-from-to .field {
  margin-bottom: 0;
}
.field-from-to .field-input {
  margin: 0;
  padding: 0 15px;
  width: 100%;
  max-width: 95px;
  height: 28px;
  font-size: 13px;
}
.field-from-to__devider {
  margin: 0 7px;
}
.field-input-radio {
  margin-bottom: 20px;
  width: auto;
  display: inline-block;
  position: relative;
  font-weight: normal;
  font-size: 16px;
  cursor: pointer;
}
.field-input-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
}
.field-input-radio input[type="radio"] + span {
  padding: 0 0 0 30px;
  display: inline-block;
  line-height: 1.1;
  vertical-align: top;
}
.field-input-radio input[type="radio"] + span:before {
  content: '';
  margin: 0;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  background: #fff;
  border-radius: 100%;
  border: 1px solid var(--line);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.field-input-radio input[type="radio"]:checked + span:before {
  border-color: var(--primary);
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 35px var(--primary);
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 35px var(--primary);
}
.bx-no-touch .field-input-radio input[type="radio"]:hover + span:before {
  border-color: var(--primary);
}
.field-input-radio input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
}
.field-input-radio input[type="checkbox"] + i + span,
.field-input-radio input[type="checkbox"] + span {
  padding: 0 0 0 30px;
  min-height: 20px;
  display: inline-block;
  line-height: 1.1;
  vertical-align: top;
}
.field-input-radio input[type="checkbox"] + i + span:before,
.field-input-radio input[type="checkbox"] + span:before {
  content: '';
  margin: 0 0 0 0 ;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  border: 1px solid var(--line);
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
.field-input-radio input[type="checkbox"]:checked + i + span:before,
.field-input-radio input[type="checkbox"]:checked + span:before {
  border-color: var(--primary);
  background-color: transparent;
  background-image: url('data:image/svg+xml,%3C?xml%20version%3D%221.0%22%20?%3E%3Csvg%20version%3D%221.1%22%20%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2278.369px%22%20height%3D%2278.369px%22%20viewBox%3D%220%200%2078.369%2078.369%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23434a54%22%20d%3D%22M78.049,19.015L29.458,67.606c-0.428,0.428-1.121,0.428-1.548,0L0.32,40.015c-0.427-0.426-0.427-1.119,0-1.547l6.704-6.704c0.428-0.427,1.121-0.427,1.548,0l20.113,20.112l41.113-41.113c0.429-0.427,1.12-0.427,1.548,0l6.703,6.704C78.477,17.894,78.477,18.586,78.049,19.015z%22/%3E%3C/svg%3E');
  -webkit-background-size: 11px 9px;
  background-size: 11px 9px;
  background-repeat: no-repeat;
  background-position: center;
}
.bx-no-touch .field-input-radio input[type="checkbox"]:hover + i + span:before,
.bx-no-touch .field-input-radio input[type="checkbox"]:hover + span:before {
  border-color: var(--primary);
}
.field_checkbox-grid .field-input-radio input[type="checkbox"] + span {
  padding: 0 0 0 23px;
}
.field_checkbox-grid .field-input-radio input[type="checkbox"] + span:before {
  width: 23px;
  height: 23px;
  top: 0;
  border: 1px solid #fff;
  background: transparent;
  border-radius: 1px;
  border-radius: 100%;
}
.field_checkbox-grid .field-input-radio input[type="checkbox"]:checked + span:before {
  border-color: #fff;
  background-color: transparent;
  background-image: url('data:image/svg+xml,%3C?xml%20version%3D%221.0%22%20?%3E%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2078.37%2078.37%22%3E%3Cpath%20d%3D%22M78.05%2019.02L29.45%2067.6a1.1%201.1%200%200%201-1.54%200L.32%2040a1.1%201.1%200%200%201%200-1.54l6.7-6.7a1.1%201.1%200%200%201%201.55%200l20.11%2020.1%2041.12-41.1a1.1%201.1%200%200%201%201.55%200l6.7%206.7a1.1%201.1%200%200%201%200%201.55z%22%20fill%3D%22%23ffffff%22/%3E%3C/svg%3E');
  -webkit-background-size: 12px 10px;
  background-size: 12px 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.bx-no-touch .field_checkbox-grid .field-input-radio input[type="checkbox"]:hover + span:before {
  border-color: #fff;
}
.field-file-upload {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.field-file-upload-label {
  margin-bottom: 0;
  padding: 0 15px 0 40px;
  width: 180px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.field-file-upload {
  position: relative;
  overflow: hidden;
}
.wrap-field-file-upload-list {
  margin-left: 40px;
  font-weight: bold;
  font-size: 18px;
  color: #b38e47;
}
.field-file-upload-list {
  margin-top: 10px;
  margin-left: 40px;
  font-weight: bold;
  font-size: 18px;
  color: #b38e47;
}
.field-file-upload-list li {
  margin-bottom: 10px;
}
.form-appeal-capcha {
  margin-left: 40px;
}
@media only screen and (max-width: 640px) {
  .form-appeal-capcha {
    margin-left: 0;
  }
  .wrap-field-file-upload-list {
    margin-left: 0;
    font-size: 14px;
  }
  .field-file-upload {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .field-file-upload-list {
    margin-top: 0;
    margin-left: 0;
  }
  .field-file-upload-label {
    padding: 0;
    margin-bottom: 10px;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
}
.form-appeal .field-input {
  border-color: var(--primary);
  font-weight: bold;
}
.label-tips {
  display: block;
  color: #d1cdc3;
}
.placeholder {
  color: var(--gray);
  font-style: italic;
}
.wrap-select-selectize,
.wrap-field-input-select-selectize {
  width: 100%;
  display: block;
  position: relative;
}
.wrap-select-selectize select,
.wrap-field-input-select-selectize select {
  width: 100%;
  opacity: 0;
}
.field__req {
  color: red;
}

h2, h3, h4 {
    margin: 12px 0;
}


.tooltip {
    margin-left: 7px;
    width: 14px;
    height: 15px;
    position: relative;
    display: inline-block;
    vertical-align: -3px;
    z-index: 1;
}
.tooltip svg {
    width: 100%;
    height: 100%;
}
.tooltip-dropdown {
    padding: 20px 20px 20px 50px;
    max-width: 250px;
    font-size: 12px;
    position: absolute;
    display: none;
    top: 100%;
    left: 50%;
    font-weight: 400;
    color: #142642;
    background-color: #fff;
    background-image: url(data:image/svg+xml,%3C?xml%20version%3D%221.0%22%20?%3E%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23142642%22%20fill-rule%3D%22nonzero%22%20d%3D%22M0%209a9%209%200%20009%209h9V9A9%209%200%20000%209zm1%200a8%208%200%201116%200v8H9a8%208%200%2001-8-8zm8.6%205H8.4V7.398h1.2V14zm0-8.296H8.4V4h1.2v1.704z%22/%3E%3C/svg%3E);
    -webkit-background-size: 18px 18px;
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: 20px center;
    -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.13);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.13);
    z-index: 100;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    white-space: normal;
    text-transform: none;
}
.tooltip-dropdown[data-show] {
    display: block;
}
.tooltip-dropdown[data-popper-placement^="top"] > .dpd-arrow {
    top: auto;
    bottom: -6px;
}
.tooltip-dropdown[data-popper-placement^="bottom"] > .dpd-arrow {
    top: -6px;
}

.dpd-arrow {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 0;
    left: 50%;
    background: #fff;
    -webkit-transform: translate(-50%, 0) rotate(45deg);
    -ms-transform: translate(-50%, 0) rotate(45deg);
    transform: translate(-50%, 0) rotate(45deg);
}

.CheckboxLabel {
    margin-left: 6px;
}