.appheader {
  display: inline-flex;
  align-items: center;
}

.appheader-logo {
  font-size: 4.5rem;
}

.appheader-caption {
  font-size: 120%;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #f4f4f4;
  color: var(--color-fg);
  margin: 0 0 0 .5em;
  font-weight: normal;
  line-height: 1.3;
  overflow: hidden;
  flex: 1;
}

.appheader-caption_geonomics {
  display: block;
  color: #03a0e3;
}

.appheader-caption_sub {
  display: block;
  font-weight: 200;
  font-size: 90%;
}

.applayout {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.applayout-splitpanel {
  height: 100%;
}

.applayout-sidebar {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #094434;
  background: var(--theme-sidebar-bg);
  color: #fff;
  color: var(--theme-sidebar-fg);
  box-shadow: 5px 0 10px rgba(25, 117, 200, .2);
  box-shadow: var(--theme-sidebar-shaddow);
  z-index: 1; /* for box-shadow */
  position: relative;
}

.applayout-sidebar_head {
  background: #094434;
  background: var(--theme-head-bg);
  color: #fff;
  color: var(--theme-head-fg);
  overflow: hidden;
}

.applayout-appheader_container {
  display: flex;
  padding: 1em;
}

.applayout-appheader {
  flex: 1;
  overflow: hidden;
}

.applayout-lang {
  margin-left: .5em;
}

.applayout-sidebar_scrollable {
  overflow-y: scroll;
  overflow-x: hidden;
  flex: 1;
}

.applayout-user {
  display: flex;
  font-size: .875rem;
  font-weight: 400;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  padding-right: calc(1rem - .875rem);
  padding-right: calc(1rem - var(--scrollbar-width));
  margin-right: .875rem;
  margin-right: var(--scrollbar-width);
  box-sizing: border-box;
}

.applayout-user_signout,
.applayout-user_signin,
.applayout-user_entry {
  background: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  border: none;
  cursor: pointer;
  display: block;
  -webkit-text-decoration: none;
  text-decoration: none;
  padding: 0;
  text-transform: capitalize;
}

.applayout-user_entry {
  margin-left: auto;
}

.applayout-user_link,
.applayout-user_signup {
  flex: 1;
  cursor: pointer;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.applayout-user_signup {
  text-transform: capitalize;
}

.applayout-user_link:hover,
.applayout-user_signup:hover,
.applayout-user_signout:hover,
.applayout-user_signin:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.applayout-user_link::before,
.applayout-user_signup::before {
  content: '';
  display: inline-block;
  margin-right: .25em;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22-64 128 1536 1536%22%3E  %3Cpath d%3D%22M1408 1405q0 120-73 189.5t-194 69.5h-874q-121 0-194-69.5t-73-189.5q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q9 0 42 21.5t74.5 48 108 48 133.5 21.5 133.5-21.5 108-48 74.5-48 42-21.5q61 0 111.5 20t85.5 53.5 62 81 43 97.5 26.5 108.5 14 109 3.5 103.5zm-320-893q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5z%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  filter: invert(100%);
  filter: invert(var(--theme-head-gl));
}

.applayout-sidebar_footer:not(:empty) {
  box-shadow: 5px 0 10px rgba(0, 0, 0, .2);
  height: 3em;
  height: var(--bottompanel-header_height);
}

.btn {
  background: #207d64;
  background: var(--theme-sidebar-highlight);
  box-shadow: 0 4px 16px rgba(26, 35, 126, .32);
  border-radius: .5em;
  border: none;
  color: #fff;
  padding: .625em;
  min-width: 7em;
  font-size: 1em;
  cursor: pointer;
  transition: opacity 100ms ease;
}

.btn:disabled {
  opacity: .5;
}

.check {
  display: inline-block;
  /* font-size: 90%; */
  border-radius: .1em;
  background: #f1f1f1;
  cursor: pointer;
  width: 1em;
  height: 1em;
  line-height: 1;
  position: relative;
}

.check--on {
  background-color: #3195ea;
}

.check--on::before {
  content: '';
  border: .125em solid;
  border-color: #ffffff;
  border-top-width: 0;
  border-right-width: 0;
  height: .2em;
  width: .45em;
  left: .25em;
  top: .25em;
  position: absolute;
  transform: rotate(-45deg);
}

.cryptopro {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  background-color: white;
  overflow-y: scroll;
  border: 1px solid black;
  padding: 3px;
  z-index: 99999;
}

.cryptopro-cert {
  border: 1px solid black;
  margin: 3px;
}

.footer_block {
  justify-content: center;
  box-sizing: border-box;
  padding: .25em 1em;
  display: flex;
  flex-direction: column;
  color: #fff;
  color: var(--theme-sidebar-fg);
  overflow: hidden;
}

.footer_block-text {
  font-size: .75em;
  font-weight: normal;
  color: inherit;
}

.checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1em;
  height: 1em;
  border: .125em solid #dadada;
  box-sizing: border-box;
  border-radius: .125em;
  cursor: pointer;
  transition: background 150ms ease, border 150ms ease;
  flex-shrink: 0;
}

.checkbox::before {
  display: inline-block;
  width: 100%;
  height: 100%;
  content: '';
  background-image: url('../../assets/checked_d97f7863.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  visibility: hidden;
}

.checkbox--active {
  background: #207d64;
  background: var(--theme-sidebar-highlight);
  border: medium none currentcolor;
  border: initial;
}

.checkbox--active::before {
  visibility: inherit;
  animation: appear 400ms ease;
}

@keyframes appear {
  from {
    transform: scale(.4);
  }
  to {
    transform: scale(1);
  }
}

.decision {
  border: 1px solid #ebecee;
  border-radius: .25em;
  padding: 2em 3.75em;
}

.decision-label {
  font-size: 1.25em;
  font-weight: 500;
  color: #555;
}

.decision-label--required::after {
  content: '*';
  color: #e66600;
}

.decision-label--medium {
  font-size: 1em;
  margin-bottom: .5625em;
  margin-top: 1.5em;
}

.decision-label--small {
  font-size: .875em;
  font-weight: 400;
  color: rgba(112, 128, 142, .5);
  transition: color 200ms ease;
}

.decision-tabs {
  margin: 1.7142857142857142em 0;
}

.decision-decision_text {
  outline: none;
  max-width: 100%;
  min-width: 100%;
  background: #ebecee;
  border-radius: .125em;
  font-family: 'Roboto';
  font-size: .875em;
  padding: .5em;
  border: 1px solid transparent;
  transition: border 200ms ease, background 200ms ease;
}

.decision-decision_text:focus {
  border-color: #207d64;
  border-color: var(--theme-sidebar-highlight);
  background: #fff;
}

.decision-actions {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.decision-actions--acitve > .decision-label--small,
.decision-label--small:hover {
  color: rgb(112, 128, 142);
}

.decision-dropdown_items {
  padding: .7em;
  font-weight: 400;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  color: #70808e;
  border-bottom: .0625em solid #ebecee;
}

.decision-dropdown_items:hover {
  background: #f4f4f4;
  color: #207d64;
  color: var(--theme-sidebar-highlight);
}

.decision-rollback_step {
  font-size: .875em;
}

.decision-switcher {
  width: 2em;
  height: 1em;
  background: #ebecee;
  border-radius: 1em;
  padding: .1em;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 200ms ease;
}

.decision-switcher::before {
  content: '';
  display: inline-block;
  height: 1em;
  width: 1em;
  background: #fff;
  border-radius: 50%;
  transition: transform 200ms ease;
}

.decision-switcher--active {
  background: #e66600;
}

.decision-switcher--active::before {
  transform: translateX(100%);
}

.file {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.file-row {
  display: flex;
  align-items: center;
}

.file-name {
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: inherit;
}

.file-remove {
  width: 1em;
  height: 1em;
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
}

.file-remove::before, .file-remove::after {
  display: inline-block;
  position: absolute;
  content: '';
  width: 1.5px;
  height: 1em;
  background: #ccc;
  transform: rotate(45deg);
  left: 8px;
}

.file-remove::after {
  transform: rotate(-45deg);
}

.file-progress_bar {
  width: 100%;
  height: 1px;
  background: #ccc;
  margin: .5em 0;
}

.file:last-child > .file-progress_bar {
  margin-bottom: 0;
}

.file-progress {
  height: 100%;
  width: calc(var(--progress) * 100%);
  background: #207d64;
  background: var(--theme-sidebar-highlight);
}

.forms_base {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow-y: auto;
}

.forms_base-system_label {
  margin-bottom: .375em;
  color: #555;
  font-size: .875em;
  font-weight: normal;
  transition: color 150ms ease;
}

.forms_base-system_label--required::after {
  content: '*';
  margin-left: .1em;
  color: #e66600;
}

.forms_base-left_column {
  width: 500px;
  max-width: 100%;
  min-width: 200px;
  flex-grow: 1;
}

.forms_base-right_column {
  max-width: 350px;
  min-width: 150px;
  height: -moz-min-content;
  height: min-content;
  flex-grow: 1;
  margin-left: 2em;
  position: sticky;
}

.forms_base-meta {
  border: 1px solid #ebecee;
  border-radius: .5em;
  padding: 1.5em;
  height: -moz-min-content;
  height: min-content;
  margin-bottom: 1em;
}

.forms_base-doc {
  height: -moz-min-content;
  height: min-content;
  font-weight: 400;
  color: #555;
}

.forms_base-system_field {
  display: flex;
  flex-direction: column;
  margin-top: 1em;
}

.forms_base-doc_label {
  font-size: 1.75em;
  font-weight: 500;
  color: #555;
}

.forms_base-doc_step {
  font-size: 1.25em;
  margin-top: 1em;
  font-weight: 500;
}

.forms_base-buttons {
  font-size: .875em;
  display: flex;
}

.forms_base-button:first-child {
  margin-right: auto;
}

.forms_base-button:not(:first-child) {
  margin-left: .5em;
}

.forms_base-button--center {
  margin: 0 auto;
}

.forms_base-meta_section {
  display: flex;
  justify-content: space-between;
  color: #555;
  padding: 1em 0;
}

.forms_base-meta_section:first-child {
  padding-top: 0;
}

.forms_base-meta_section:last-child {
  padding-bottom: 0;
}

.forms_base-meta_section:not(:first-child) {
  border-top: 1px solid #ebecee;
}

.forms_base-meta_section--column {
  flex-direction: column;
}

.forms_base-meta_text {
  margin-right: .25em;
}

.forms_base-pdf_file,
.forms_base-meta_text {
  font-weight: 400;
  font-size: .875em;
}

.forms_base-pdf_name {
  font-size: .8em;
  max-width: 225px;
}

.forms_base-meta_text--bold {
  font-weight: 500;
}

.forms_base-meta_text--blue {
  color: #0683f9;
}

.forms_base-meta_text--orange {
  color: #ff8f00;
}

.forms_base-meta_text--yellow {
  color: #f3bb1c;
}

.forms_base-meta_text--red {
  color: #f03738;
}

.forms_base-meta_text--green {
  color: #3cc13b;
}

.forms_base-decision {
  margin-top: 1.5em;
}

.forms_base-spinner {
  font-size: .8em;
  margin: 0 auto;
  --color: #fff;
}

.forms_base-pdf_files_list {
  display: flex;
  flex-direction: column;
}

.forms_base-pdf_file_group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: .25em;
}

.forms_base-pdf_file {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.forms_base-pdf_file:not(:last-child) {
  margin-bottom: .25em;
}

.forms_base-pdf_file_preview {
  border: none;
  background: transparent;
  outline: none;
  color: blue;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 4;
  margin-right: .25em;
}

.forms_base-pdf_file_preview:disabled {
  color: gray;
  cursor: not-allowed;
}

.forms_base-select_step:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.forms_base-select_item {
  display: flex;
  padding: .25em;
  align-items: center;
  cursor: pointer;
}

.forms_base-select_item:not(:first-child) {
  padding-top: 0;
}

.forms_base-select_checkbox,
.forms_base-select_radio {
  margin-right: .25em;
  flex-shrink: 0;
}

.forms_base-select_item--sub {
  margin-left: .25em;
  font-size: .875em;
}

.forms_base-select_value {
  display: flex;
  flex-direction: column;
}

.forms_base-select_org {
  font-size: small;
  font-style: italic;
  color: rgb(67, 124, 165);
}

.forms_base-select_post {
  font-style: italic;
}

.forms_base-select_meta_text {
  font-weight: 300;
  font-size: .875em;
}

.forms_base-select_meta_text::before {
  content: '(';
}

.forms_base-select_meta_text::after {
  content: '):';
}

.forms_base-error {
  color: #f03738;
  font-size: .875em;
  padding-bottom: .25em;
  animation: drag 150ms ease-in;
}

.forms_base-error--right {
  text-align: right;
}

.forms_base-send_message {
  color: #437ca5;
  font-size: .875em;
  text-align: right;
}

@keyframes drag {
  33% {
    transform: translateX(1%);
  }

  66% {
    transform: translateX(-1%);
  }

  100% {
    transform: translateX(0%);
  }
}

.forms_block-forms_field:nth-child(2) {
  margin-top: 1.5em;
}

.forms_block-text--header {
  font-size: 1.25em;
  margin-top: 1em;
}

.forms_block-text--header:not(:first-of-type) {
  border-top: 1px solid #eee;
  padding-top: 1em;
}

.forms_block-text--label {
  margin-bottom: .375em;
  color: #555;
}

.forms_block-text--good {
  color: #62f037;
}

.forms_block-text--bad {
  color: #f03738;
}

.forms_block-text--warn {
  color: #f0d437;
}

.forms_block-table_row {
  padding: 0 .5em;
  border: 1px solid #ebecee;
  border-radius: .5em;
  display: flex;
}

.forms_block-table_row_number {
  display: flex;
  margin-right: .5em;
  align-items: center;
  flex-direction: column;
}

.forms_block-table_row_fields {
  flex: 1;
  border-left: 1px solid #ebecee;
  padding: 0 0 .5em .5em;
  word-wrap: anywhere;
}

.forms_block-table_button {
  margin-top: .5em;
  min-width: 0;
  min-width: initial;
  font-size: .75em;
}

.forms_block-button {
  font-size: .75em;
}

.gx_input {
  width: 100%;
  background-color: rgba(240, 240, 245, 1);
  font-size: 1em;
  padding: .5em;
  border-radius: .25em;
  transition: border 150ms ease, background-color 150ms ease;
  border: 1px solid transparent;
  box-shadow: none;
  outline: none;
  font-family: 'Roboto';
  font-weight: 400;
  color: #444;
}

.gx_input:focus {
  background-color: #fff;
  border: 1px solid rgba(240, 240, 245, 1);
}

.forms_field-button {
  font-size: .75em;
}

.forms_field {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
}

.forms_field:focus-within>.forms_field-label {
  color: #222;
}

.forms_field-label {
  margin-bottom: .375em;
  color: #555;
  transition: color 150ms ease;
}

.forms_field-label--required::after {
  content: '*';
  color: #e66600;
}

.forms_field-label--error {
  color: #f03738;
  animation: drag 150ms ease-in;
}

@keyframes drag {
  33% {
    transform: translateX(1%);
  }

  66% {
    transform: translateX(-1%);
  }

  100% {
    transform: translateX(0%);
  }
}

.forms_field-geometry_buttons {
  display: flex;
  flex-wrap: wrap;
  margin: -.25em;
}

.forms_field-geometry_buttons>.forms_field-button {
  margin: .25em;
}

.forms_field-attachments {
  background-color: rgba(238, 238, 238, .66);
  padding: .5em;
  border-radius: .25em;
}

.forms_field-select {
  position: relative;
}

.forms_field-select_feature_checkbox {
  display: flex;
}

.forms_field-select_feature_caption {
  margin-left: .25em;
}

.forms_field-textarea {
  resize: vertical;
}

.forms_field-value--multiline {
  white-space: pre-line;
}

.forms_field-select_dropdown {
  max-height: 20em;
  border: 1px solid #eeeeee;
  border-radius: .125em;
  box-sizing: border-box;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .08);
  overflow-y: scroll;
  background: #fff;
  position: absolute;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.forms_field-select_dropdown_items {
  display: flex;
  align-items: center;
  padding: .5em;
  font-weight: 400;
  color: #70808e;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease;
}

.forms_field-select_dropdown_items:hover {
  background: #f4f4f4;
  color: #207d64;
  color: var(--theme-sidebar-highlight);
}

.forms_field-select_spinner {
  position: absolute;
  top: .5em;
  right: .5em;
  --stroke: 2px;
  --color: #bbb;
}

.forms_field-table {
  padding: .5em;
  margin-bottom: .5em;
  border: 1px solid #ebecee;
  border-radius: .5em;
  transition: border 200ms ease-in-out;
}

.forms_field-table--highlight {
  border: 1px solid #094434;
  border: 1px solid var(--theme-head-bg);
}

.forms_field-table_controls {
  display: flex;
  align-items: center;
}

.forms_field-table_pagination {
  margin: .5em auto 0;
}

.forms_field-table_button {
  margin-top: .5em;
  min-width: 0;
  min-width: initial;
  font-size: .75em;
}

.forms_field-error_message {
  color: #f03738;
}

.forms_radio {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1em;
  height: 1em;
  border: .125em solid #dadada;
  box-sizing: border-box;
  border-radius: 50%;
  cursor: pointer;
  transition: background 150ms ease, border 150ms ease;
  flex-shrink: 0;
  z-index: -1;
}

.forms_radio--active::before {
  content: '';
  display: inline-block;
  width: .7em;
  height: .7em;
  border-radius: 50%;
  background: #207d64;
  background: var(--theme-sidebar-highlight);
  animation: appear 400ms ease;
}

@keyframes appear {
  from {
    transform: scale(.4);
  }
  to {
    transform: scale(1);
  }
}

.block-step {
  border: 1px solid #eee;
  border-radius: 6px;
  margin: var(--margin);
  padding: 12px;
  position: relative;
  margin-left: var(--margin-left);
}

.block-step--interactive {
  cursor: pointer;
  transition: color 200ms ease;
}

.block-step--interactive:hover {
  border-color: #ccc;
}

.block-step_info {
  font-size: .875em;
}

.block-step_info--sub {
  padding: 6px 0;
  margin-left: 12px;
}

.block-step_info--sub:last-child {
  padding-bottom: 0;
  padding-bottom: initial;
}

.block-step_info--sub:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.block-step_name--bold {
  font-weight: bold;
}

.block-step_status {
  font-size: .875em;
  font-style: italic;
  display: flex;
  justify-content: space-between;
  color: #aaa;
  margin-top: 4px;
}

.block-step_user {
  font-size: .875em;
  font-style: italic;
  color: #437ca5;
  margin-top: 4px;
}

.block-step_comment {
  font-size: .875em;
  justify-content: initial;
  background: #218aff;
  border-radius: 0 20px 20px;
  margin-top: 4px;
  margin-right: .3em;
  color: #fff;
  padding: .5em 1em;
  word-wrap: break-word;
  max-width: -moz-max-content;
  max-width: max-content;
}

.block-status_name::before {
  width: .5em;
  height: .5em;
  content: '';
  display: inline-block;
  background: #ccc;
  border-radius: 50%;
  margin-right: 6px;
}

.block-status_name--blue::before { background-color: #0683f9; }

.block-status_name--yellow::before { background-color: #f3bb1c; }

.block-status_name--red::before { background-color: #f03738; }

.block-status_name--green::before { background-color: #3cc13b; }

.block-status_name--gray::before { background-color: #aaa; }

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

.block-step_branch {
  height: calc(100% + (var(--margin) * 2) + 2px);
  height: calc(100% + calc(var(--margin) * 2) + 2px);
  width: var(--circle-diameter);
  position: absolute;
  left: calc(var(--margin-left) / -2 - var(--circle-diameter) / 2);
  top: calc(-1 * var(--margin)); /* to negative */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.block-step_branch::before, .block-step_branch::after {
  content: '';
  display: inline-block;
  height: 100%;
  width: 2px;
  background: #eee;
  z-index: 0;
  position: relative;
}

.block-step:last-of-type > .block-step_branch::after,
.block-step:first-of-type > .block-step_branch::before {
  background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
  background: initial;
}

.block-step_point {
  width: var(--circle-diameter);
  height: 1em;
  background: #ccc;
  border-radius: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  z-index: 1;
}

.block-step_point::before {
  content: '';
  display: inline-block;
  width: 50%;
  height: 50%;
  background: #fff;
  border-radius: inherit;
}

.block-step--parallel > .block-step_branch::after,
.block-step--parallel > .block-step_branch::before {
  width: var(--circle-diameter);
  background: #ccc;
}

.block-step--parallel_start > .block-step_branch::before,
.block-step--parallel_end > .block-step_branch::after {
  width: 2px;
  background: #eee;
}

.forms_roadmap {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #555;
  --margin: .3em;
  --margin-left: 3em;
  --circle-diameter: 1em;
  --sqrt_2: 1.4142135623730951;
  font-weight: normal;
}

.forms_roadmap-btn {
  height: 1em;
  border: none;
  background: none;
  width: -moz-min-content;
  width: min-content;
  padding: .3em;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #777;
  margin-bottom: var(--margin);
  white-space: nowrap;
}

.forms_roadmap-btn:hover {
  border-color: #555;
  color: #555;
}

.forms_roadmap-btn::before {
  display: inline-block;
  content: '';
  height: calc(var(--circle-diameter) / var(--sqrt_2));
  width: calc(var(--circle-diameter) / var(--sqrt_2));
  border-style: solid;
  border-top: 0;
  border-right: 0;
  border-color: inherit;
  transform: rotate(45deg);
  box-sizing: border-box;
  margin: 0 calc((var(--margin-left) / var(--sqrt_2) + 8px) / 2 - 8px + 3px);
  margin: 0 calc(calc(var(--margin-left) / var(--sqrt_2) + 8px) / 2 - 8px + 3px);
}

.suggest {
  position: relative;
}

.suggest-input {
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 2em;
}

.suggest-dropdown {
  max-height: 20em;
  border: 1px solid #eeeeee;
  border-radius: .125em;
  box-sizing: border-box;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .08);
  overflow-y: scroll;
  background: #fff;
  position: absolute;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.suggest-empty {
  font-weight: 400;
  color: #ccc;
  font-size: 60%;
  text-align: center;
  margin: .3em 0;
  width: 100%;
}

.suggest-empty--dark {
  color: #999;
}

.suggest-dropdown_items {
  display: flex;
  align-items: center;
  padding: .5em;
  font-weight: 400;
  color: #70808e;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease;
}

.suggest-dropdown_items:hover {
  background: #f4f4f4;
  color: #207d64;
  color: var(--theme-sidebar-highlight);
}

.suggest-dropdown.v-enter-active,
.suggest-dropdown.v-leave-active {
  transition: opacity 200ms ease;
}

.suggest-dropdown.v-enter,
.suggest-dropdown.v-leave-to {
  opacity: 0;
}

.suggest-filters {
  display: flex;
  flex-wrap: wrap;
  background: rgba(238, 238, 238, .66);
  padding: .3em;
  padding-top: 0;
}

.suggest-dropdown_label {
  width: 100%;
  padding: .5em;
  color: #999;
  font-size: 70%;
  font-weight: 400;
  box-sizing: border-box;
}

.suggest-dropdown_label--dark {
  background: rgba(238, 238, 238, .66);
}

.suggest-filters_filter {
  display: flex;
  border-radius: 2em;
  font-size: 65%;
  font-weight: 400;
  overflow: hidden;
  position: relative;
  margin: .3em;
}

.suggest-filters_value {
  padding: .5em;
  min-width: 2em;
}

.suggest-filters_value--left {
  background: #ccc;
  color: #fff;
  flex-shrink: 0;
}

.suggest-filters_value--right {
  background: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.suggest-load_more, .suggest-filters_close {
  width: 1.5em;
  height: 1.5em;
  padding: 0;
  border: none;
  background: #207d64;
  background: var(--theme-sidebar-highlight);
  border-radius: 50%;
  cursor: pointer;
}

.suggest-filters_close {
  position: absolute;
  transform: translate(-100%, -50%);
  transition: transform 200ms ease;
  background: #fff;
  left: 0;
  top: 50%;
}

.suggest-filters_close::before, .suggest-load_more::before {
  background-repeat: no-repeat;
  background-position: center;
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background-size: 50%;
}

.suggest-filters_close::before {
  background-image: url('../../assets/close-dark_25465dcd.svg');
}

.suggest-load_more::before {
  background-image: url('../../assets/close_6529502c.svg');
  transform: rotate(45deg);
}

.suggest-filters_filter:hover > .suggest-filters_close {
  transform: translate(20%, -50%);
}

.suggest-load_more {
  align-self: center;
  margin: .5em;
  flex-shrink: 0;
}

.suggest-clear {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  right: 0;
  background: url('../../assets/close-dark_25465dcd.svg') no-repeat center;
  background-size: 75%;
  cursor: pointer;
}

.forms_timeline {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.forms_timeline-timer {
  display: flex;
  justify-content: space-between;
  margin-bottom: calc(1.5em * 1 / .875);
  font-size: .875em;
  font-weight: 400;
}

.forms_timeline-label { font-weight: 500; }

.timeline {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 2em;
  --timeline-point_postion: 0;
  --timeline-point_left: calc(var(--timeline-line_width_px) / 100 * var(--timeline-point_position));
  --timeline-word_offset_px: calc(var(--timeline-word_width_px) / 2);
}

.timeline-points_labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: .375em;
}

.timeline-point_label {
  font-size: .875rem;
  color: #00d88a;
  font-weight: 400;
}

.timeline-point_label--red { color: #ff234a; }

.timeline-line {
  position: relative;
  display: flex;
  height: .125em;
  width: 100%;
  align-items: center;
  background: linear-gradient(90deg, #00d88a 0%, #13e5ff 13.54%, #ffd951 25.52%, #ffd951 82.29%, #ff224a 100%);
}

.timeline-line--red {
  background: linear-gradient(90deg, #00d88a 0%, #13e5ff 13.54%, #ffd951 30.54%, #ff224a 100%);
}

.timeline-line--green {
  background: linear-gradient(90deg, #00d88a 0%, #13e5ff 50%, #00d88a 100%);
}

.timeline-line_point {
  position: absolute;
  width: .125em;
  height: .5em;
}

.timeline-line_point--start {
  left: 0;
  background: #00d88a;
}

.timeline-line_point--pointer {
  height: .75em;
  background-color: #555;
  left: var(--timeline-point_left);
  transform: translateX(calc(-1% * var(--timeline-point_position)));
  z-index: 1;
}

.timeline-line_point--end {
  right: 0;
  background: #ff234a;
}

.timeline-line_label {
  display: block;
  position: absolute;
  top: .5em;
  left: max(var(--timeline-word_offset_px), min(var(--timeline-point_left), calc(var(--timeline-line_width_px) - var(--timeline-word_offset_px))));
  transform: translateX(calc(-1 * var(--timeline-word_offset_px)));
  justify-content: center;
  font-weight: 500;
  white-space: nowrap;
}

.timeline-line_label_text {
  font-size: .875em;
}

.timeline-line_label_text--comma::after {
  content: ',';
  display: inline;
}

.timeline-point_label_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-point_sub_label {
  font-size: 12px;
  color: #00d88a;
}

.timeline-point_sub_label--red {
  color: #ff234a;
}

.loader {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader::before {
  content: '';
  width: 30px;
  height: 30px;
  border: 5px solid #207d64;
  border: 5px solid var(--theme-sidebar-highlight);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.forms_sheet {
  overflow: auto;
  white-space: nowrap;
  background: #fff;
  background: var(--forms_sheet-background);
  --forms_sheet-background: #fff;
  --forms_sheet-rowheader-width: 2.5rem;
  --forms_sheet-scroll-shadow-size: .5rem;
  --forms_sheet-scroll-shadow-color: #aaa;
}

.forms_sheet-scrollable_content {
  display: inline-grid;
  min-height: 100%;
  min-width: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: min-content min-content 1fr 3em;
}

.forms_sheet-header {
  grid-column: 1;
  grid-row: 1;
  position: sticky;
  top: 0; /* calc(-1 * var(--forms_sheet-scroll-shadow-size)); */
  z-index: 5;
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--ctl_border_color);
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  background-color: var(--forms_sheet-background);
}

.forms_sheet-header_cells {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: flex-end;
  padding-top: var(--forms_sheet-scroll-shadow-size);
  padding-bottom: .25em;
}

.forms_sheet-header_vscrollshadow {
  position: sticky;
  top: 0;
  z-index: 4;
  margin-bottom: var(--forms_sheet-scroll-shadow-size);
  grid-column: 1;
  grid-row: 1;
  box-shadow: 0 0 var(--forms_sheet-scroll-shadow-size) var(--forms_sheet-scroll-shadow-color);
}

.forms_sheet-cell {
  max-width: 10em;
  max-width: var(--forms_sheet-col-width, 10em);
  min-width: 10em;
  min-width: var(--forms_sheet-col-width, 10em);
  padding-right: .5em;
  padding-left: .5em;
  /* мы задаем размер колонки снаружи и используем этот размер для
   * построения sticky колонок */
  box-sizing: border-box;
  /* позволяем задать цвет ряда */
  background-color: inherit;
}

.forms_sheet-hscrollstack {
  grid-column: 1;
  grid-row: 2 / 3;
  pointer-events: none;
  display: flex;
}

.forms_sheet-hscrollstack_col {
  width: var(--forms_sheet-col-width);
}

.forms_sheet-hscrollstack_col--rowheader {
  /* --forms_sheet-col-sticky-x приходится вычисляеть динамически в js.
   * Вычисление зависит от списка полей и ассоциированых с ними
   * ширинами колонок. Но нам также надо показывать фантомную
   * колонку в самом начале таблицы, и js коду об этом знать не
   * желательно так как это детали стилизации. Поэтому делаем
   * компенсацию --forms_sheet-col-sticky-x на уровне css */
  --forms_sheet-col-sticky-x: calc(-1 * var(--forms_sheet-rowheader-width));
  --forms_sheet-col-width: var(--forms_sheet-rowheader-width);
}

.forms_sheet-hscrollstack_col--sticky {
  position: sticky;
  z-index: 2;
  left: calc(
    var(--forms_sheet-rowheader-width)
    + var(--forms_sheet-col-sticky-x)
    /* проявляем тень из под колонки когда фиксированя колонка
     * упирается в предыдущую зафиксированую колонку */
    - var(--forms_sheet-scroll-shadow-size)
  );
  background: var(--forms_sheet-background);
}

/* Для того чтобы вертикальные тени от шапки и основной таблицы
 * непрерывно стыковались нам нужно использовать внутреннюю тень
 * блока. Поэтому эта тень должна быть в следующей колонке от
 * закрепленной колонки */

.forms_sheet-hscrollstack_col--sticky +
.forms_sheet-hscrollstack_col:not(.forms_sheet-hscrollstack_col--sticky) {
  position: sticky;
  /* чтобы input'ы в шапке заезжали под тень */
  z-index: 1;
  left: calc(
    var(--forms_sheet-rowheader-width) +
    var(--forms_sheet-col-sticky-x)
  );
  /* короче делать инвертирование через -1em
   * чем использовать переменную в calc */
  font-size: var(--forms_sheet-scroll-shadow-size);
  /* задвигаем тень под фиксированую колонку */
  transform: translateX(-1em);
  box-shadow: 1em 0 1em -1em var(--forms_sheet-scroll-shadow-color) inset;
}

.forms_sheet-cell--colheader {
  position: relative; /* для ресайзера колонки */
  cursor: pointer;
}

.forms_sheet-corner {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.forms_sheet-rowheader {
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--ctl_border_color);
}

.forms_sheet-corner,
.forms_sheet-rowheader {
  position: sticky;
  /* чтобы rowmenu отображалось поверх первой закрепленной колонки */
  z-index: 3;
  left: calc(-1 * var(--forms_sheet-scroll-shadow-size));
  width: var(--forms_sheet-rowheader-width);
  padding-left: var(--forms_sheet-scroll-shadow-size);
  box-sizing: border-box;
  background-color: inherit;
}

.forms_sheet-cell--data {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--ctl_border_color);
  /* для кнопки дропдауна при редактировании ячейки */
  position: relative;
}

.forms_sheet-cell--sticky {
  position: sticky;
  z-index: 2;
  left: calc(
    var(--forms_sheet-rowheader-width)
    + var(--forms_sheet-col-sticky-x)
    - var(--forms_sheet-scroll-shadow-size)
  );
}

.forms_sheet-header_search_icon {
  position: absolute;
  right: .2em;
  color: #aaa;
  top: 50%;
  margin-top: -.5em;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22-100 -850 1000 1000%22%3E  %3C!-- modern pictograms - search --%3E  %3Cpath transform%3D%22scale(1%2C -1)%22 d%3D%22M680 256c-55-55-126-83-197-83-65 0-129 23-182 66l-51-125-130-130c-14-10-29-15-45-15-41 0-75 37-75 77 0 16 5 32 15 45l129 130 126 51c-44 52-66 117-66 182 0 152 127 277 279 277 150 0 277-128 277-278 0-72-26-144-80-197z m-319 75c34-33 78-50 122-50 92 0 170 77 170 172 0 93-79 170-170 170-94 0-172-79-172-170 0-45 17-89 50-122z%22 horiz-adv-x%3D%22760%22 %2F%3E%3C%2Fsvg%3E");
  filter: invert(70%);
  width: 1em;
  height: 1em;
}

.forms_sheet-header_search_icon--caret_down {
  background-image: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22utf-8%22%3F%3E%3C!-- Uploaded to%3A SVG Repo%2C www.svgrepo.com%2C Generator%3A SVG Repo Mixer Tools --%3E%3Csvg width%3D%22800px%22 height%3D%22800px%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill-rule%3D%22evenodd%22 clip-rule%3D%22evenodd%22 d%3D%22M16.5303 8.96967C16.8232 9.26256 16.8232 9.73744 16.5303 10.0303L12.5303 14.0303C12.2374 14.3232 11.7626 14.3232 11.4697 14.0303L7.46967 10.0303C7.17678 9.73744 7.17678 9.26256 7.46967 8.96967C7.76256 8.67678 8.23744 8.67678 8.53033 8.96967L12 12.4393L15.4697 8.96967C15.7626 8.67678 16.2374 8.67678 16.5303 8.96967Z%22 fill%3D%22%23000000%22%2F%3E%3C%2Fsvg%3E");
  background-size: 100%;
  width: 1.5em;
  height: 1.5em;
  margin-top: -.75em;
  right: 0;
}

.forms_sheet-col_name:hover .forms_sheet-col_name_text {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.forms_sheet-col_name_text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 300;
  flex: 1;
}

.forms_sheet-col_name {
  margin: .25em 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
}

.forms_sheet-col_order {
  text-align: center;
  display: inline-block;
  color: #aaa;
  opacity: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  transition: transform 200ms ease, opacity 200ms ease;
  transition: transform var(--transition_duration) ease, opacity var(--transition_duration) ease;
  margin-top: .125em;
  filter: invert(60%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22-195 -100 900 900%22%3E  %3Cpath d%3D%22M505 346q15-15 15-37t-15-37l-245-245-245 245q-15 15-15 37t15 37 37 15 37-15l120-119 0 395q0 21 15 36t36 15 37-15 16-36l0-395 120 119q15 15 36 15t36-15z%22 horiz-adv-x%3D%22520%22 %2F%3E%3C%2Fsvg%3E");
}

.forms_sheet-col_order--asc {
  transform: rotateX(180deg);
  opacity: 1;
}

.forms_sheet-col_order--desc {
  transform: none;
  opacity: 1;
}

.forms_sheet-search_text {
  /* для позиционирования иконки лупы */
  position: relative;
}

.forms_sheet-search_text_input {
  border: 1px solid #ccc;
  border: 1px solid var(--ctl_border_color);
  line-height: 1.5;
  font-size: 80%;
  font-family: inherit;
  font-weight: normal;
  border-radius: 2px;
  display: block;
  width: 100%;
  color: #888;
  padding-left: .5rem;
  padding-right: 1.5rem;
  height: 1.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.forms_sheet-search_text_input[type='date']::-webkit-calendar-picker-indicator {
  position: absolute;
  right: .2em;
  filter: invert(70%);
  cursor: pointer;
}

.forms_sheet-col_resizer {
  width: .5em;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: col-resize;
}

.forms_sheet-data_table {
  grid-column: 1 / 3;
  grid-row: 2;
}

.forms_sheet-row_data {
  display: flex;
  height: 2em;
}

.forms_sheet-row_data--selected {
  background-color: #e0e0e0;
}

.forms_sheet-row_data--can_take_to_work {
  font-weight: bold;
  background-color: #f2f6fc;
}

.forms_sheet-data_cell_value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.forms_sheet-data_cell_value--null {
  color: #888;
  font-weight: 200;
  font-style: italic;
}

.forms_sheet-data_cell_value--null::before {
  content: '--';
}

.forms_sheet-load_more {
  padding: .5em 0;
  box-sizing: border-box;
  position: sticky;
  left: 0;
  right: 0;
  margin-top: -3em;
  display: flex;
  justify-content: center;
}

.forms_sheet-load_more_button {
  border: 1px solid currentColor;
  background: none;
  color: #437ca5;
  color: var(--button_face_color);
  border-radius: 2px;
  font-family: inherit;
  font-size: 80%;
  padding: .5em;
  cursor: pointer;
  transition: color 100ms ease, background-color 100ms ease;
  text-transform: uppercase;
}

.forms_sheet-load_more_button:focus {
  outline: none;
}

.forms_sheet-load_more_button:hover {
  color: white;
  background: #437ca5;
  background: var(--button_face_color);
}

.forms_sheet-load_more_indicator {
  display: flex;
}

.forms_sheet-load_more_indicator_ball {
  width: 1em;
  height: 1em;
  margin: .1em;
  border-radius: 100%;
  display: inline-block;
  animation: forms_sheet-load_more_indicator_bounce 1.4s infinite ease-in-out;
  animation-fill-mode: both;
  background-color: #ccc;
}

@keyframes forms_sheet-load_more_indicator_bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.forms_sheet-load_more_indicator_ball:nth-child(1) {
  animation-delay: -320ms;
}

.forms_sheet-load_more_indicator_ball:nth-child(2) {
  animation-delay: -160ms;
}

.forms_sheet-rowmenu_toggler {
  border: none;
  text-align: center;
  background: none;
  padding: 0;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  display: block;
  cursor: pointer;
  color: inherit;
  transition: filter 200ms ease;
  transition: filter var(--transition_duration) ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22210 -130 1000 1000%22%3E  %3C!-- entypo dot-3 --%3E  %3Cpath transform%3D%22rotate(90%2C 500%2C 500) scale(.8)%22 d%3D%22M110 460q46 0 78-32t32-78q0-44-32-77t-78-33-78 33-32 77q0 46 32 78t78 32z m350 0q46 0 78-32t32-78q0-44-33-77t-77-33-77 33-33 77q0 46 32 78t78 32z m350 0q46 0 78-32t32-78q0-44-32-77t-78-33-78 33-32 77q0 46 32 78t78 32z%22 %2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: center;
  filter: invert(70%);
}

.forms_sheet-rowmenu_toggler:focus {
  outline: none;
}

.forms_sheet-rowmenu_toggler:hover {
  filter: none;
}

.forms_sheet-rowmenu {
  border-radius: 2px;
  box-shadow: 0 0 .5em #ccc;
  background: #fff;
  color: #333;
  position: absolute;
  left: 3em;
  margin-top: -.5em;
  animation: forms_sheet-rowmenu--enter 200ms ease-out;
}

@keyframes forms_sheet-rowmenu--enter {
  from {
    transform: translate(1em, 0);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.forms_sheet-row_spinner {
  font-size: 75%;
  width: 1em;
  height: 1em;
  border: .2em solid #888;
  border-radius: 50%;
  border-left-color: transparent;
  position: relative;
  top: .5rem;
  left: .7rem;
  animation: forms_sheet-spin 500ms linear infinite;
}

@keyframes forms_sheet-spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.forms_sheet-rowmenu_item {
  display: block;
  line-height: 2;
  padding: 0 1em;
  cursor: pointer;
  font-size: 80%;
  color: inherit;
}

.forms_sheet-rowmenu_item--disabled {
  pointer-events: none;
  opacity: .4;
}

.forms_sheet-rowmenu_item:hover {
  background: #437ca5;
  background: var(--button_face_color);
  color: #fff;
}

.forms_sheet-row_status {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.forms_sheet-status_circle {
  display: inline-flex;
  width: .7em;
  height: .7em;
  border-radius: 50%;
}

.forms_sheet-status_circle--blue {
  background: #0683f9;
}

.forms_sheet-status_circle--green {
  background: #3cc13b;
}

.forms_sheet-status_circle--legend {
  margin-right: .375em;
}

.forms_sheet-legend {
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--ctl_border_color);
  grid-row: 1;
  padding: .25em 0;
}

.forms_sheet-legend_items {
  display: flex;
  margin-left: calc(
    (
      var(--forms_sheet-rowheader-width)
      - var(--forms_sheet-scroll-shadow-size) /* получаем размер rowheader*/
      - .7em /* ширина круга, нужно переместить в переменную */
    ) / 2
    + var(--forms_sheet-scroll-shadow-size)
  );
}

.forms_sheet-legend_item {
  margin-right: .75em;
  display: flex;
  align-items: center;
}

.forms_sheet-legend_text {
  font-size: .85em;
  font-weight: 400;
}

.gx_select {
  position: relative;
  outline: none;
}

.gx_select--disabled {
  filter: opacity(.4);
}

.gx_input.gx_select-input {
  padding-right: 2em; /* default padding .5em + 1em width icon + .5em margin-right icon */
  text-overflow: ellipsis;
}

.gx_input.gx_select-input[placeholder] {
  text-overflow: ellipsis;
}

.gx_select-dropdown {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
  visibility: hidden;
  position: absolute;
  z-index: 10;
  opacity: 0;
  transform: scale(.95);
  transition: transform 200ms ease, opacity 200ms ease;
  box-sizing: border-box;
  width: 100%;
  outline: none;
}

.gx_select--open > .gx_select-dropdown {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.gx_select-icon {
  position: absolute;
  right: 0;
  width: 1em;
  height: 1em;
  margin-right: .5em;
  top: 50%;
  transform: translateY(-50%);
  opacity: .5;
  outline: none;
  padding: 0;
  border: none;
  color: #000;
  background: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 50%;
}

.gx_select-icon:hover {
  opacity: 1;
  background-color: rgba(255,255,255, .1);
}

.gx_select-icon::-webkit-focus-inner {
  border: 0;
  padding: 0;
}

.gx_select-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.gx_select-icon--expander::before,
.gx_select-icon--collapser::before {
  content: "\e80d";
  content: var(--fontello-right_open_big);
  font-family: 'fontello';
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  transition: transform 200ms ease;
}

.gx_select-icon--expander::before {
  transform: rotate(90deg);
}

.gx_select-icon--collapser::before {
  transform: rotate(-90deg);
}

.gx_select-icon--loading::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -.5em;
  margin-left: -.5em;
  width: 1em;
  height: 1em;
  border: .2em solid;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  animation: gx_select_spinner-spin 1s ease infinite;
}

@keyframes gx_select_spinner-spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

.knca {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .5);
  display: flex;
  align-content: center;
  justify-content: center;
  overflow-y: auto;
}

.knca-box {
  margin: auto;
  padding: 1.5em;
  background-color: #fff;
  border-radius: .5em;
  box-shadow: 0 0 1em rgba(0, 0, 0, .33);
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 250px;
  min-height: 250px;
}

.knca-cancel {
  position: absolute;
  top: 0;
  right: 0;
  margin: .25em;
  filter: opacity(.5);
  display: flex;
  align-items: center;
}

.knca-cancel_icon {
  background: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22-300 0 2000 2000%22%3E  %3Cpath d%3D%22M1298 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z%22%2F%3E%3C%2Fsvg%3E") no-repeat;
  background-size: cover;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  width: 1.75em;
  height: 1.75em;
}

.knca-cancel_timer {
  margin-right: .25em;
}

.knca-title {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.knca-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: gray;
  font-size: .85em;
  margin: 1em 0;
}

.knca-qr_container {
  display: flex;
  flex-direction: column;
}

.knca-qr_container_text {
  color: gray;
  margin-bottom: 1em;
}

.knca-qrbox {
  width: 200px;
  height: 200px;
  border-radius: .5em;
  padding: 1.5em;
  background-color: rgba(215,215,215,0.25098);
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}

.knca-qr--blurred {
  filter: blur(3px);
}

.knca-qrbox_overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  width: 75px;
  height: 75px;
  background: rgba(0, 0, 0, .7);
  border-radius: .5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.knca-refresh_icon {
  background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.31213 35.7779L4.31169 35.777C0.0557233 26.9395 1.19481 19.7937 4.01089 14.4856C6.86102 9.1132 11.4773 5.54812 14.228 4.11919C27.4425 -1.93586 38.2572 3.84918 43.7949 10.6797L47.0616 14.709L46.4496 9.55804L45.8404 4.4304C45.8273 4.228 45.8958 3.99699 46.022 3.83185C46.1351 3.68367 46.2485 3.63767 46.3692 3.63767C46.5442 3.63767 46.6674 3.69669 46.7451 3.76557C46.8202 3.83218 46.8831 3.93383 46.898 4.08867L46.9001 4.11069L46.9029 4.13264L48.4959 16.7744L48.4997 16.8047C48.4991 16.818 48.4968 16.8594 48.482 16.9258C48.4572 17.0368 48.4124 17.1454 48.3555 17.2289C48.3036 17.305 48.249 17.3511 48.1855 17.3812C48.1296 17.4077 48.0021 17.4527 47.7552 17.4377L35.3031 14.9026L35.2894 14.8998L35.2756 14.8973C35.1436 14.873 35.0407 14.8012 34.965 14.6793C34.8816 14.5447 34.8515 14.376 34.8812 14.2288L34.8837 14.2163L34.8861 14.2037C34.9104 14.0716 34.9822 13.9688 35.1041 13.8931C35.2376 13.8103 35.4048 13.78 35.5512 13.8086C35.5523 13.8088 35.5534 13.809 35.5545 13.8093L42.6208 15.2878L46.1173 16.0194L44.1913 13.0109C38.033 3.39122 25.1183 -0.399328 14.8751 5.28804C11.1469 7.35376 6.99722 11.1586 4.65108 16.307C2.2775 21.5156 1.78832 28.0274 5.32863 35.2975L5.32873 35.2977C10.7583 46.4432 24.721 50.4501 35.6113 44.791C35.7887 44.7046 35.9362 44.709 36.0491 44.7454C36.164 44.7825 36.2787 44.8649 36.3617 45.0008C36.4378 45.1688 36.4324 45.3091 36.3974 45.4176C36.359 45.5365 36.2721 45.6552 36.1276 45.7388C24.6075 51.735 9.90619 47.4139 4.31213 35.7779Z' fill='white' stroke='white' stroke-width='3'/%3E%3C/svg%3E%0A");
  background-size: cover;
  width: 50px;
  height: 50px;
}

.lang-item {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  margin: .5em 0;
  font-size: 70%;
  font-weight: 200;
  padding: 0;
  text-transform: uppercase;
  cursor: pointer;
  display: block;
  min-width: 2em; /* prevent width change when switch to bold */
}

.lang-item:focus {
  outline: none;
}

.lang-item--selected {
  font-weight: 500;
}

.lang-item--en {
  display: none;
}

.logo {
  background-image: url('../../assets/logo_768d617c.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-size: 4.5rem;
  width: 1em;
  height: 1em;
  min-width: 1em;
}

.modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .5);
  display: flex;
  align-content: center;
  justify-content: center;
  overflow-y: auto;
}

.modal-box {
  margin: auto;
  padding: 2em;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 0 1em rgba(0, 0, 0, .33);
}

/* roboto-100 - cyrillic-ext_cyrillic_latin-ext_latin */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: local('Roboto Thin'), local('Roboto-Thin'),
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-100_ff96de7f.woff2') format('woff2'), 
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-100_28e00c69.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-100italic - cyrillic-ext_cyrillic_latin-ext_latin */

@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'),
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-100italic_ed83cdfb.woff2') format('woff2'), 
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-100italic_c7c9224c.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-300 - cyrillic-ext_cyrillic_latin-ext_latin */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Light'), local('Roboto-Light'),
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-300_1fa8191a.woff2') format('woff2'), 
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-300_3157796a.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-300italic - cyrillic-ext_cyrillic_latin-ext_latin */

@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  src: local('Roboto Light Italic'), local('Roboto-LightItalic'),
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-300italic_f726db93.woff2') format('woff2'), 
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-300italic_f3742fd6.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-italic - cyrillic-ext_cyrillic_latin-ext_latin */

@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: local('Roboto Italic'), local('Roboto-Italic'),
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-italic_ab51cf07.woff2') format('woff2'), 
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-italic_ca6e0eea.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-regular - cyrillic-ext_cyrillic_latin-ext_latin */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'),
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-regular_a1381afc.woff2') format('woff2'), 
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-regular_7abe1e9f.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-500 - cyrillic-ext_cyrillic_latin-ext_latin */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'), local('Roboto-Medium'),
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-500_d962e4a3.woff2') format('woff2'), 
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-500_19fb45a4.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-500italic - cyrillic-ext_cyrillic_latin-ext_latin */

@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'),
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-500italic_7fdfeca4.woff2') format('woff2'), 
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-500italic_bf94158.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-700 - cyrillic-ext_cyrillic_latin-ext_latin */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'),
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-700_627cdecd.woff2') format('woff2'), 
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-700_4557200e.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-700italic - cyrillic-ext_cyrillic_latin-ext_latin */

@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  src: local('Roboto Bold Italic'), local('Roboto-BoldItalic'),
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-700italic_39718ad5.woff2') format('woff2'), 
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-700italic_28dc32af.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-900 - cyrillic-ext_cyrillic_latin-ext_latin */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: local('Roboto Black'), local('Roboto-Black'),
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-900_24ebb194.woff2') format('woff2'), 
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-900_72f3dd20.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-900italic - cyrillic-ext_cyrillic_latin-ext_latin */

@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  src: local('Roboto Black Italic'), local('Roboto-BlackItalic'),
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-900italic_7127ee0.woff2') format('woff2'), 
       url('../../assets/roboto-v18-cyrillic-ext_cyrillic_latin-ext_latin-900italic_c27330db.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

:root {
  font-size: 16px;
  font-family: 'Roboto';

  --theme-head-bg: #191925;
  --theme-head-gl: 100%;
  --theme-head-fg: #fff;
  --theme-sidebar-bg: #20202f;
  --theme-sidebar-fg: #f4f4f4;
  --theme-sidebar-highlight: #14141d;
  --theme-sidebar-highlight-gutter: #437ca5;
  --theme-badge-fg: #f4f4f4;
  --theme-badge-bg: #555;
  --theme-expander-bg: #333;
  --theme-maptoggler-bg: #fff;
  --theme-maptoggler-border: #fff;
  --theme-bottompanel-bg: #20202f;
  --theme-bottompanel-fg: #fff;
  --theme-admterr-bg: #28283f;
  --theme-admterr-fg: var(--theme-sidebar-fg);
  --theme-admterr-highlight: var(--theme-sidebar-highlight);
  --theme-admterr-highlight-gutter: var(--theme-sidebar-highlight-gutter);

  --ctl_border_color: #ccc;
  --button_face_color: #437ca5;
  --transition_duration: 200ms;
  --color-bg: #20202f;
  --color-fg: #f4f4f4;
  --color-mute: #888;
  --color-highlight: #a1a4b2;

  --forms-grid-width: 3.75em;
  --forms-content-width: 83%;
  --forms-content-max-width: 47em;
}

:root {
  --theme-head-bg: #094434;
  --theme-head-fg: #fff;
  --theme-head-gl: 100%;
  --theme-sidebar-shaddow: 5px 0 10px rgba(25, 117, 200, .2);
  --theme-sidebar-bg: #094434;
  --theme-sidebar-fg: #fff;
  --theme-sidebar-highlight: #207d64;
  --theme-sidebar-highlight-gutter: #2ca88c;
  --theme-badge-fg: #fff;
  --theme-badge-bg: #146a58;
  --theme-expander-bg: #1c7c63;
  --theme-maptoggler-bg: #fff;
  --theme-maptoggler-border: #feffff;
  --theme-bottompanel-border: #b8ffd9;
  --theme-bottompanel-bg: #094434;
  --theme-admterr-bg: #207d64;
}

/* [data-opened-collection='gbdflperson2-population'] .bottompanel-button--excel {
  display: none;
}

.app--role_noedit .bottompanel-button--excel {
  display: none;
}

.app--role_noedit .bottompanel-button--analytics {
  display: none;
} */

.appheader-caption_geonomics {
  color: #2ca88c;
}

.app--role_supervisor .bottompanel-button--excel {
  display: inline-block;
}

.basemaps-terrain,
.main_screen-forms_catalog {
  display: none;
}

@font-face {
  font-family: 'fontello';
  src: url('../../assets/fontello_1ea8c155.eot?39026422');
  src: url('../../assets/fontello_1ea8c155.eot?39026422#iefix') format('embedded-opentype'),
       url('../../assets/fontello_5bcff38f.woff2?39026422') format('woff2'),
       url('../../assets/fontello_9daa923d.woff?39026422') format('woff'),
       url('../../assets/fontello_2aea7c0.ttf?39026422') format('truetype'),
       url('../../assets/fontello_fc419a79.svg?39026422#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */

/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */

/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?39026422#fontello') format('svg');
  }
}
*/

[class^="fontello--"]:before, [class*=" fontello--"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
 
  /* For safety - reset parent styles, that can break glyph codes*/
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
 
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.fontello--search1:before { content: '\e800'; }

/* '' */

.fontello--dot3:before { content: '\e801'; }

/* '' */

.fontello--down:before { content: '\e802'; }

/* '' */

.fontello--trash:before { content: '\e803'; }

/* '' */

.fontello--search:before { content: '\e804'; }

/* '' */

.fontello--feather:before { content: '\e805'; }

/* '' */

.fontello--ok:before { content: '\e806'; }

/* '' */

.fontello--cancel:before { content: '\e807'; }

/* '' */

.fontello--download_alt:before { content: '\e808'; }

/* '' */

.fontello--cancel1:before { content: '\e809'; }

/* '' */

.fontello--resize_full:before { content: '\e80a'; }

/* '' */

.fontello--location:before { content: '\e80b'; }

/* '' */

.fontello--resize_full_alt:before { content: '\e80c'; }

/* '' */

.fontello--right_open_big:before { content: '\e80d'; }

/* '' */

.fontello--loop:before { content: '\e80e'; }

/* '' */

.fontello--lock-right:before { content: '\e80f'; }

/* '' */

.fontello--lock:before { content: '\e810'; }

/* '' */

.fontello--monitoring:before { content: '\e811'; }

/* '' */

.fontello--layers:before { content: '\e812'; }

/* '' */

.fontello--vcard:before { content: '\e813'; }

/* '' */

.fontello--user2:before { content: '\e814'; }

/* '' */

.fontello--spinner:before { content: '\e830'; }

/* '' */

.fontello--play:before { content: '\f00f'; }

/* '' */

.fontello--check_off:before { content: '\f096'; }

/* '' */

.fontello--dashboard:before { content: '\f0e4'; }

/* '' */

.fontello--lock-open-alt:before { content: '\f13e'; }

/* '' */

.fontello--check_on:before { content: '\f14a'; }

/* '' */

.fontello--map0:before { content: '\f278'; }

/* '' */

.fontello--user:before { content: '\f2c0'; }

/* '' */

.fontello--window_maximize:before { content: '\f2d0'; }

/* '' */

:root {
  --fontello-check_off: "\f096";
  --fontello-down: "\e802";
  --fontello-search: "\e804";
  --fontello-check_on: "\f14a";
  --fontello-dot3: "\e801";
  --fontello-trash: "\e803";
  --fontello-feather: "\e805";
  --fontello-ok: "\e806";
  --fontello-cancel: "\e807";
  --fontello-download_alt: "\e808";
  --fontello-cancel1: "\e809";
  --fontello-resize_full: "\e80a";
  --fontello-map0: "\f278";
  --fontello-location: "\e80b";
  --fontello-play: "\f00f";
  --fontello-search1: "\e800";
  --fontello-right_open_big: "\e80d";
  --fontello-window_maximize: "\f2d0";
  --fontello-resize_full_alt: "\e80c";
  --fontello-loop: "\e80e";
  --fontello-spinner: "\e830";
  --fontello-dashboard: "\f0e4";
  --fontello-lock: "\e810";
  --fontello-lock-open-alt: "\f13e";
  --fontello-user: "\f2c0";
  --fontello-lock-right: "\e80f";
  --fontello-monitoring: "\e811";
  --fontello-layers: "\e812";
  --fontello-vcard: "\e813";
  --fontello-user2: "\e814";
}

:root {
  --scrollbar-width: .875rem;
}

/* stylelint-disable-next-line selector-max-type */

html,
body {
  overflow: hidden;
  font-weight: 300;
  padding: 0;
  margin: 0;
}

::-webkit-scrollbar {
  width: .875rem;
  width: var(--scrollbar-width);
  height: .875rem;
  height: var(--scrollbar-width);
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 1rem;
}

.pagination {
  display: flex;
  align-items: center;
  min-width: 350px;
  justify-content: space-between;
}

.pagination-pages {
  display: flex;
}

.pagination-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: transparent;
  color: #333;
  font-size: 1em;
  width: 1em;
  height: 1em;
  padding: .5em;
  box-sizing: content-box;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 200ms ease-in-out;
  position: relative;
}

.pagination-button:hover {
  background-color: #eee;
}

.pagination-button:active {
  transform: scale(.9);
}

.pagination-button--prev::before, .pagination-button--next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -.5em;
  margin-top: -.5em;
  content: '';
  width: 1em;
  height: 1em;
  color: inherit;
  border-style: solid;
  border-width: 0 .2em .2em 0;
  font-size: 50%;
  transform: translate(-50%, -25%) rotate(135deg);
  transform-origin: 75% 75%;
  box-sizing: border-box;
}

.pagination-button--next::before {
  transform: translate(0, -25%) rotate(-45deg);
}

.pagination-button--page {
  font-weight: bold;
}

.pagination-button--active {
  color: #fff;
}

.pagination-button[disabled] {
  color: #999;
  cursor: not-allowed;
}

.pagination-button[disabled]:hover {
  background-color: transparent;
}

.pagination-go--to {
  display: flex;
  align-items: center;
  margin-left: 1em;
}

.pagination-goto--input {
  width: 3em;
  padding: .2em;
  margin-right: .5em;
  font-size: 1em;
  text-align: center;
  border: 1px solid #ebecee;
  border-radius: .5em;
}

.pagination-goto--button {
  background: #207d64;
  background: var(--theme-sidebar-highlight);
  box-shadow: 0 4px 16px rgba(26, 35, 126, .32);
  border-radius: .5em;
  border: none;
  color: #fff;
  padding: .5em;
  cursor: pointer;
  transition: opacity 100ms ease;
  font-size: .75em;
}

.sheet {
  overflow: auto;
  white-space: nowrap;
  background: #fff;
  background: var(--sheet-background);
  --sheet-background: #fff;
  --sheet-rowheader-width: 2.5rem;
  --sheet-scroll-shadow-size: .5rem;
  --sheet-scroll-shadow-color: #aaa;
}

.sheet-scrollable_content {
  display: inline-grid;
  min-height: 100%;
  min-width: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: min-content min-content 1fr 3em;
}

.sheet-header {
  grid-column: 1;
  grid-row: 1;
  position: sticky;
  top: calc(-1 * var(--sheet-scroll-shadow-size));
  z-index: 5;
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--ctl_border_color);
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  background-color: var(--sheet-background);
}

.sheet-header_cells {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-end;
  padding-top: var(--sheet-scroll-shadow-size);
  padding-bottom: .25em;
}

.sheet-header_vscrollshadow {
  position: sticky;
  top: 0;
  z-index: 4;
  margin-bottom: var(--sheet-scroll-shadow-size);
  grid-column: 1;
  grid-row: 1;
  box-shadow: 0 0 var(--sheet-scroll-shadow-size) var(--sheet-scroll-shadow-color);
}

.sheet-cell {
  max-width: 10em;
  max-width: var(--sheet-col-width, 10em);
  min-width: 10em;
  min-width: var(--sheet-col-width, 10em);
  padding-right: .5em;
  padding-left: .5em;
  /* мы задаем размер колонки снаружи и используем этот размер для
   * построения sticky колонок */
  box-sizing: border-box;
  /* позволяем задать цвет ряда */
  background-color: inherit;
}

.sheet-hscrollstack {
  grid-column: 1;
  grid-row: 1 / 3;
  pointer-events: none;
  display: flex;
}

.sheet-hscrollstack_col {
  width: var(--sheet-col-width);
}

.sheet-hscrollstack_col--rowheader {
  /* --sheet-col-sticky-x приходится вычисляеть динамически в js.
   * Вычисление зависит от списка полей и ассоциированых с ними
   * ширинами колонок. Но нам также надо показывать фантомную
   * колонку в самом начале таблицы, и js коду об этом знать не
   * желательно так как это детали стилизации. Поэтому делаем
   * компенсацию --sheet-col-sticky-x на уровне css */
  --sheet-col-sticky-x: calc(-1 * var(--sheet-rowheader-width));
  --sheet-col-width: var(--sheet-rowheader-width);
}

.sheet-hscrollstack_col--sticky {
  position: sticky;
  z-index: 2;
  left: calc(
    var(--sheet-rowheader-width)
    + var(--sheet-col-sticky-x)
    /* проявляем тень из под колонки когда фиксированя колонка
     * упирается в предыдущую зафиксированую колонку */
    - var(--sheet-scroll-shadow-size)
  );
  background: var(--sheet-background);
}

/* Для того чтобы вертикальные тени от шапки и основной таблицы
 * непрерывно стыковались нам нужно использовать внутреннюю тень
 * блока. Поэтому эта тень должна быть в следующей колонке от
 * закрепленной колонки */

.sheet-hscrollstack_col--sticky +
.sheet-hscrollstack_col:not(.sheet-hscrollstack_col--sticky) {
  position: sticky;
  /* чтобы input'ы в шапке заезжали под тень */
  z-index: 1;
  left: calc(
    var(--sheet-rowheader-width) +
    var(--sheet-col-sticky-x)
  );
  /* короче делать инвертирование через -1em
   * чем использовать переменную в calc */
  font-size: var(--sheet-scroll-shadow-size);
  /* задвигаем тень под фиксированую колонку */
  transform: translateX(-1em);
  box-shadow: 1em 0 1em -1em var(--sheet-scroll-shadow-color) inset;
}

.sheet-cell--colheader {
  position: relative; /* для ресайзера колонки */
  cursor: pointer;
}

.sheet-corner {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.sheet-rowheader {
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--ctl_border_color);
}

.sheet-corner,
.sheet-rowheader {
  position: sticky;
  /* чтобы rowmenu отображалось поверх первой закрепленной колонки */
  z-index: 3;
  left: calc(-1 * var(--sheet-scroll-shadow-size));
  width: var(--sheet-rowheader-width);
  padding-left: var(--sheet-scroll-shadow-size);
  box-sizing: border-box;
  background-color: inherit;
}

.sheet-cell--data {
  display: flex;
  align-items: center;
  font-weight: 300;
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--ctl_border_color);
  /* для кнопки дропдауна при редактировании ячейки */
  position: relative;
}

.sheet-cell--sticky {
  position: sticky;
  z-index: 2;
  left: calc(
    var(--sheet-rowheader-width)
    + var(--sheet-col-sticky-x)
    - var(--sheet-scroll-shadow-size)
  );
}

.sheet-header_search_icon {
  position: absolute;
  right: .2em;
  color: #aaa;
  top: 50%;
  margin-top: -.5em;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22-100 -850 1000 1000%22%3E  %3C!-- modern pictograms - search --%3E  %3Cpath transform%3D%22scale(1%2C -1)%22 d%3D%22M680 256c-55-55-126-83-197-83-65 0-129 23-182 66l-51-125-130-130c-14-10-29-15-45-15-41 0-75 37-75 77 0 16 5 32 15 45l129 130 126 51c-44 52-66 117-66 182 0 152 127 277 279 277 150 0 277-128 277-278 0-72-26-144-80-197z m-319 75c34-33 78-50 122-50 92 0 170 77 170 172 0 93-79 170-170 170-94 0-172-79-172-170 0-45 17-89 50-122z%22 horiz-adv-x%3D%22760%22 %2F%3E%3C%2Fsvg%3E");
  filter: invert(70%);
  width: 1em;
  height: 1em;
}

.sheet-col_name:hover .sheet-col_name_text {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.sheet-col_name_text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 300;
  flex: 1;
  font-size: 1em;
}

.sheet-col_name {
  margin: .25em 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
}

.sheet-col_order {
  text-align: center;
  display: inline-block;
  color: #aaa;
  opacity: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  transition: transform 200ms ease, opacity 200ms ease;
  transition: transform var(--transition_duration) ease, opacity var(--transition_duration) ease;
  margin-top: .125em;
  filter: invert(60%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22-195 -100 900 900%22%3E  %3Cpath d%3D%22M505 346q15-15 15-37t-15-37l-245-245-245 245q-15 15-15 37t15 37 37 15 37-15l120-119 0 395q0 21 15 36t36 15 37-15 16-36l0-395 120 119q15 15 36 15t36-15z%22 horiz-adv-x%3D%22520%22 %2F%3E%3C%2Fsvg%3E");
}

.sheet-col_order--asc {
  transform: rotateX(180deg);
  opacity: 1;
}

.sheet-col_order--desc {
  transform: none;
  opacity: 1;
}

.sheet-search_text {
  /* для позиционирования иконки лупы */
  position: relative;
}

.sheet-search_text_input {
  border: 1px solid #ccc;
  border: 1px solid var(--ctl_border_color);
  line-height: 1.5;
  font-size: 80%;
  font-family: inherit;
  font-weight: normal;
  border-radius: 2px;
  display: block;
  width: 100%;
  color: #888;
  padding-left: .5rem;
  padding-right: 1.5rem;
  height: 1.5rem;
}

.sheet-col_resizer {
  width: .5em;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: col-resize;
}

.sheet-data_table {
  grid-column: 1 / 3;
  grid-row: 2;
}

.sheet-row_data {
  display: flex;
  height: 2em;
}

.sheet-row_data--selected {
  background-color: #e0e0e0;
}

.sheet-row_data--suggestion {
  display: flex;
  cursor: pointer;
  background-color: inherit;
}

.sheet-row_data--suggestion:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.sheet-data_cell_input {
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  margin-bottom: -1px;
  padding: 0;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--ctl_border_color);
  background: transparent;
  color: inherit;
}

.sheet-data_cell_input:focus {
  outline: none;
}

.sheet-data_cell_input--checkbox {
  width: auto;
}

.sheet-data_cell_input--dropdown {
  padding-right: 1.5em;
}

.sheet-data_cell_value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.sheet-data_cell_value--dropdown {
  padding-right: 1.5em;
}

.sheet-data_cell_value--hasgeom {
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer;
  color: #5a6ec1;
}

.sheet-data_cell_value--hasgeom:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.sheet-data_cell_value--null {
  color: #888;
  font-weight: 200;
  font-style: italic;
}

.sheet-data_cell_value--null::before {
  content: '--';
}

.sheet-data_cell_value--null.sheet-data_cell_value--hasgeom::before {
  content: 'показать на карте';
}

.sheet-data_cell_value--related {
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer;
  color: #5a6ec1;
}

.sheet-data_cell_value--related:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.sheet-add {
  font-size: 1em;
  font-family: 'Roboto';
  height: 1.5em;
  width: 1.5em;
  padding: 0;
  margin: 0;
  border: 1px solid currentColor;
  background: none;
  color: #437ca5;
  color: var(--button_face_color);
  cursor: pointer;
  transition: color 100ms ease;
}

.sheet-add:disabled {
  color: #ccc;
}

.sheet-add:focus {
  outline: none;
}

.sheet-load_more {
  padding: .5em 0;
  box-sizing: border-box;
  position: sticky;
  left: 0;
  right: 0;
  margin-top: -3em;
  display: flex;
  justify-content: center;
}

.sheet-load_more_button {
  border: 1px solid currentColor;
  background: none;
  color: #437ca5;
  color: var(--button_face_color);
  border-radius: 2px;
  font-family: inherit;
  font-size: 80%;
  padding: .5em;
  cursor: pointer;
  transition: color 100ms ease, background-color 100ms ease;
  text-transform: uppercase;
}

.sheet-load_more_button:focus {
  outline: none;
}

.sheet-load_more_button:hover {
  color: white;
  background: #437ca5;
  background: var(--button_face_color);
}

.sheet-load_more_indicator {
  display: flex;
}

.sheet-load_more_indicator_ball {
  width: 1em;
  height: 1em;
  margin: .1em;
  border-radius: 100%;
  display: inline-block;
  animation: sheet-load_more_indicator_bounce 1.4s infinite ease-in-out;
  animation-fill-mode: both;
  background-color: #ccc;
}

@keyframes sheet-load_more_indicator_bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.sheet-load_more_indicator_ball:nth-child(1) {
  animation-delay: -320ms;
}

.sheet-load_more_indicator_ball:nth-child(2) {
  animation-delay: -160ms;
}

.sheet-rowmenu_toggler {
  border: none;
  text-align: center;
  background: none;
  padding: 0;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  display: block;
  cursor: pointer;
  color: inherit;
  transition: filter 200ms ease;
  transition: filter var(--transition_duration) ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22210 -130 1000 1000%22%3E  %3C!-- entypo dot-3 --%3E  %3Cpath transform%3D%22rotate(90%2C 500%2C 500) scale(.8)%22 d%3D%22M110 460q46 0 78-32t32-78q0-44-32-77t-78-33-78 33-32 77q0 46 32 78t78 32z m350 0q46 0 78-32t32-78q0-44-33-77t-77-33-77 33-33 77q0 46 32 78t78 32z m350 0q46 0 78-32t32-78q0-44-32-77t-78-33-78 33-32 77q0 46 32 78t78 32z%22 %2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: center;
  filter: invert(70%);
}

.sheet-rowmenu_toggler:focus {
  outline: none;
}

.sheet-rowmenu_toggler:hover {
  filter: none;
}

.sheet-rowheader--editing .sheet-rowmenu_toggler {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22-300 -950 1200 1200%22%3E  %3Cpath transform%3D%22scale(1%2C -1)%22 d%3D%22M60-138q-6-20-26-8-18 8-16 34 4 100 50 226-100 154-52 316 10-32 32-78t44-80 32-30q8 4 0 83t-11 166 25 157q22 44 80 94t104 70q-24-46-33-94t-4-78 21-32q12 0 84 120t106 122q46 4 114-29t82-65q12-24 0-79t-40-83q-44-44-146-62t-114-24q-16-10 12-34 54-48 176-20-56-80-136-114t-132-38-54-10q-4-24 49-54t101-14q-30-56-63-84t-54-35-76-11-85-8z%22 %2F%3E%3C%2Fsvg%3E");
}

.sheet-rowmenu {
  padding: .5em 0;
  border-radius: 2px;
  box-shadow: 0 0 .5em #ccc;
  background: #fff;
  color: #333;
  position: absolute;
  left: 3em;
  margin-top: -.5em;
  animation: sheet-rowmenu--enter 200ms ease-out;
}

@keyframes sheet-rowmenu--enter {
  from {
    transform: translate(1em, 0);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.sheet-row_spinner {
  font-size: 75%;
  width: 1em;
  height: 1em;
  border: .2em solid #888;
  border-radius: 50%;
  border-left-color: transparent;
  position: relative;
  top: .5rem;
  left: .7rem;
  animation: sheet-spin 500ms linear infinite;
}

@keyframes sheet-spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.sheet-caret {
  position: absolute;
  top: .25em;
  bottom: .25em;
  right: .5em;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  width: 1.5em;
  padding: 0;
  margin: 0;
  color: #888;
  transition: color 200ms ease, transform 200ms ease;
}

.sheet-caret:hover {
  color: #333;
}

.sheet-caret::before {
  content: '';
  position: absolute;
  right: 1.25em;
  top: 1em;
  width: 1em;
  height: 1em;
  font-size: 40%;
  border-style: solid;
  border-width: 0 .3em .3em 0;
  transform: rotate(45deg);
}

.sheet-caret--open {
  transform: scaleY(-1);
}

.sheet-suggestion_dropdown {
  background-color: #d9f1ff;
}

.sheet-rowmenu_item {
  display: block;
  line-height: 2;
  padding: 0 1em;
  cursor: pointer;
  font-size: 80%;
  color: inherit;
}

.sheet-rowmenu_item:hover {
  background: #437ca5;
  background: var(--button_face_color);
  color: #fff;
}

.sheet-rowmenu_item_icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(30%);
}

.sheet-rowmenu_item:hover .sheet-rowmenu_item_icon {
  filter: invert(100%);
}

.sheet-rowmenu_item_icon--edit {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22-300 -950 1200 1200%22%3E  %3Cpath transform%3D%22scale(1%2C -1)%22 d%3D%22M60-138q-6-20-26-8-18 8-16 34 4 100 50 226-100 154-52 316 10-32 32-78t44-80 32-30q8 4 0 83t-11 166 25 157q22 44 80 94t104 70q-24-46-33-94t-4-78 21-32q12 0 84 120t106 122q46 4 114-29t82-65q12-24 0-79t-40-83q-44-44-146-62t-114-24q-16-10 12-34 54-48 176-20-56-80-136-114t-132-38-54-10q-4-24 49-54t101-14q-30-56-63-84t-54-35-76-11-85-8z%22 %2F%3E%3C%2Fsvg%3E");
}

.sheet-rowmenu_item_icon--duplicate {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22-100 -200 1100 1100%22%3E  %3Cpath d%3D%22M781 793q44 0 74-31t30-73l0-521q0-44-30-74t-74-30l-103 0 0-53q0-42-31-73t-74-31l-469 0q-44 0-74 31t-30 73l0 469q0 44 31 74t73 31l52 0 0 104q0 42 31 73t73 31l521 0z m-677-782l469 0 0 443q0 10-8 18t-17 8l-444 0 0-469z m677 157l0 521-521 0 0-156 288 0q31 0 54-24t23-55l0-286 156 0z%22 %2F%3E%3C%2Fsvg%3E");
}

.sheet-rowmenu_item_icon--passport {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22-100 -950 1200 1200%22%3E  %3Cpath transform%3D%22scale(1%2C -1)%22 d%3D%22M900 750q42 0 71-29t29-71l0-600q0-40-29-70t-71-30l-800 0q-40 0-70 30t-30 70l0 600q0 42 30 71t70 29l800 0z m0-700l0 600-800 0 0-600 800 0z m-450 196l0-90-250 0 0 90 250 0z m0 150l0-90-250 0 0 90 250 0z m0 150l0-90-250 0 0 90 250 0z m346-320l4-70-250 0q0 70 6 70 84 22 84 66 0 16-27 56t-27 88q0 110 90 110t90-110q0-48-28-88t-28-56q0-20 21-36t43-22z%22 horiz-adv-x%3D%221000%22 %2F%3E%3C%2Fsvg%3E");
}

.sheet-rowmenu_item_icon--save {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22-100 -100 2000 2000%22%3E  %3Cpath d%3D%22M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z%22%2F%3E%3C%2Fsvg%3E");
}

.sheet-rowmenu_item_icon--cancel {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22-300 0 2000 2000%22%3E  %3Cpath d%3D%22M1298 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z%22%2F%3E%3C%2Fsvg%3E");
}

.spinner {
  width: 1em;
  height: 1em;
  border-width: .25em;
  border-width: var(--stroke, .25em);
  border-color: red;
  border-color: var(--color, red);
  border-style: solid;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-spin 1s ease infinite;
}

@keyframes spinner-spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

.splitpanel_leftright {
  position: relative;
}

.splitpanel_leftright-left {
  position: absolute;
  left: 0;
  height: 100%;
}

.splitpanel_leftright-splitter {
  z-index: 100;
  width: 1em;
  height: 100%;
  transform: translateX(-50%);
  cursor: col-resize;
  position: absolute;
}

.splitpanel_leftright-right {
  position: absolute;
  right: 0;
  height: 100%;
}

@media (max-width: 481px) {
  .splitpanel_leftright-splitter {
    width: .8em;
  }
}

/* stylelint-disable */

.transition_expand {
  will-change: height;
  backface-visibility: hidden;
}

.expand-enter-active,
.expand-leave-active {
  transition-property: opacity, height;
  transition: 200ms ease;
  overflow: hidden;
}

.expand-enter,
.expand-leave-to {
  opacity: 0;
  height: 0;
}

.about-title_wrap {
  text-align: center;
  margin: 2em 0;
}

.about-title {
  margin: .2em 0 0;
  color: #4380d3;
}

.aobut-sub_title {
  margin: 0;
  font-size: 1.5em;
  font-weight: 300;
}

.about-description {
  padding: 1em 2em 1.7em;
}

.about-description_item {
  padding: .3em 0;
}

.logo.about-logo {
  margin: 0 auto;
  font-size: 80px;
}

.admterrs {
  color: #fff;
  color: var(--theme-admterr-fg);
}

.admterrs-dropdown_content {
  background: #207d64;
  background: var(--theme-admterr-bg);
  padding-bottom: 2em;
}

.admterrs-pinned {
  font-weight: 400;
}

.admterrs-search {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #207d64;
  background-color: var(--theme-admterr-highlight);
}

.admterrs-search_input {
  flex: 1;
  color: inherit;
  background: none;
  border: none;
  font-size: inherit;
  font-family: inherit;
  line-height: 3;
  padding: 0 1em;
}

.admterrs-search_input:focus {
  outline: none;
}

.admterrs-search_close {
  align-self: center;
  width: 1.75em;
  height: 1.75em;
  color: inherit;
  border: none;
  background: none;
  padding: 0;
  margin: 0 1em;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
}

.admterrs-search_close:focus {
  outline: none;
}

.admterrs-search_close:hover {
  background: #1c7c63;
  background: var(--theme-expander-bg);
}

.admterrs-search_close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -.5em;
  margin-top: -.5em;
  content: '';
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22-300 0 2000 2000%22%3E  %3Cpath d%3D%22M1298 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z%22%2F%3E%3C%2Fsvg%3E");
  filter: invert(100%);
}

.admterrs-selected {
  padding: 1em;
  display: block;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #207d64;
  background: var(--theme-admterr-bg);
}

.admterrs-selected_parents {
  font-size: 70%;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #bbb;
}

.admterrs-selected_parents_item:not(:last-child)::after {
  content: ' / ';
  color: #888;
}

.admterrs_search_hits-item {
  height: 3em;
  box-sizing: border-box;
  padding: .25em .8em;
  cursor: pointer;
  display: block;
  border-left: .3em solid transparent;
  transition: border-color 200ms ease;
  white-space: nowrap;
}

.admterrs_search_hits-item:hover,
.admterrs_search_hits-item--selected {
  background: #207d64;
  background: var(--theme-sidebar-highlight);
}

.admterrs_search_hits-item--selected {
  border-color: var(--color-highlight-gutter);
}

.admterrs_search_hits-name {
  display: block;
  margin-top: .2em;
  text-overflow: ellipsis;
  overflow: hidden;
}

.admterrs_search_hits-parents {
  font-size: 70%;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #bbb;
}

.admterrs_search_hits-parents_item:not(:last-child)::after {
  content: ' / ';
  color: #888;
}

.admterrs_search_hits-empty {
  display: block;
  padding: 1em;
  color: #aaa;
}

.pagination-button--active {
  background-color: #207d64;
  background-color: var(--theme-sidebar-highlight);
}

.basemaps-key {
  display: flex;
  padding-right: .5em;
  padding-left: 1em;
  line-height: 3;
  white-space: nowrap;
  cursor: pointer;
  align-items: center;
}

.basemaps-key:hover {
  background: #207d64;
  background: var(--theme-sidebar-highlight);
}

.basemaps-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.basemaps-toggler {
  width: 1.75em;
  height: 1.75em;
  color: inherit;
  border: none;
  background: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  transition: transform 200ms ease;
}

.basemaps-toggler:focus {
  outline: none;
}

.basemaps-toggler:hover {
  background: #1c7c63;
  background: var(--theme-expander-bg);
}

.basemaps-toggler::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -.5em;
  margin-top: -.5em;
  content: '';
  width: 1em;
  height: 1em;
  color: inherit;
  border-style: solid;
  border-width: 0 .2em .2em 0;
  font-size: 50%;
  transform: translate(0, -25%) rotate(-45deg);
  transform-origin: 75% 75%;
  box-sizing: border-box;
}

.basemaps-toggler--expanded {
  transform: rotate(90deg);
}

.basemaps-content {
  display: block;
}

.basemaps-balance_ctl {
  display: flex;
  margin: .8em;
  align-items: center;
}

.basemaps-side {
  width: 5em;
  min-width: 5em;
  height: 5em;
  border: 1px solid #333;
  box-sizing: border-box;
  font-family: inherit;
  cursor: pointer;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  outline: none;
}

.basemaps-side--selected {
  outline: .2rem solid #03a0e3;
}

.basemaps-slider {
  /* stylelint-disable-next-line property-no-vendor-prefix */
  -webkit-appearance: none;
  flex: 1;
  height: 2px;
  min-width: 0;
  background: #000;
  outline: none;
  margin: 0 1em;
}

.basemaps-item {
  position: relative;
  display: block;
  color: inherit;
  height: 3.5em;
  font-family: inherit;
  font-size: inherit;
  margin: .8em;
  cursor: pointer;
  background-size: cover;
  background-position: 0% 75%;
  background-color: #ccc;
}

.basemaps-item--selected {
  outline: .2rem solid #03a0e3;
}

.basemaps-item:hover .basemaps-item_name {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.basemaps-item_name {
  position: absolute;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 90%;
  padding: 0 .2em;
  line-height: 1.4;
}

.basemaps-terrain {
  padding-right: .3em;
  line-height: 3;
  position: relative;
  align-items: center;
  cursor: pointer;

  display: grid;
  grid-template-areas: 'name counter toggler expander';
  grid-template-columns: auto min-content 1em 2em;
  grid-column-gap: .5em;
  -moz-column-gap: .5em;
       column-gap: .5em;
  padding-left: calc(0 * 1em);
  padding-left: calc(var(--item-level, 0) * 1em);
}

.basemaps-terrain:hover {
  background: #207d64;
  background: var(--theme-sidebar-highlight);
}

.basemaps-terrain_title {
  grid-area: name;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 1em;
}

.basemaps-terrain_toggler {
  grid-area: toggler;
  width: 1em;
  height: 1em;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  background: transparent;
  color: #fff;
  color: var(--theme-maptoggler-bg);
  border: 2px solid #feffff;
  border: 2px solid var(--theme-maptoggler-border);
  border-radius: 50%;
  opacity: .5;
  cursor: pointer;
  transition: opacity 100ms ease;
  box-sizing: border-box;
}

.basemaps-terrain_toggler--on {
  background: currentColor;
  opacity: 1;
  border: none;
}

.basemaps-terrain_toggler:focus {
  outline: none;
}

.basemaps-terrain_toggler:hover {
  opacity: 1;
}

/* FIXME #756 */

.app--role_anon .basemaps-item--deny_anon {
  display: none;
}

:root {
  --bottompanel-header_height: 3em;
}

.bottompanel {
  position: relative;
  border-left: 1px solid #b8ffd9;
  border-left: 1px solid var(--theme-bottompanel-border);
}

.bottompanel-content {
  /* блок спозиционирован абсолютно потому что другие
   способы позиционирования вызывают баги отображения
   сетки таблицы внутри этого блока. По хорошему тут надо
   использовать flex или типа того */
  position: absolute;
  left: 0;
  right: 0;
  top: 3em;
  top: var(--bottompanel-header_height);
  bottom: 0;
}

.bottompanel-bar {
  position: absolute;
  z-index: 4;
  color: #fff;
  color: var(--theme-bottompanel-fg);
  top: 0;
  left: 0;
  right: 0;
  height: 3em;
  height: var(--bottompanel-header_height);
  background: #094434;
  background: var(--theme-bottompanel-bg);
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.bottompanel-bar_middle {
  flex: 1;
}

.bottompanel-count {
  display: inline-block;
  white-space: nowrap;
  font-size: 75%;
  font-weight: 600;
  background: #146a58;
  background: var(--theme-badge-bg);
  color: #fff;
  color: var(--theme-badge-fg);
  border-radius: 1.75em;
  padding: 0 .5em;
  min-width: .6em;
  text-align: center;
  line-height: 1.75;
  vertical-align: middle;
}

.bottompanel-breadcrumbs {
  font-size: 1em;
  overflow: hidden;
  margin-right: .2em;
  margin-left: .5em;
  display: flex;
  white-space: nowrap;
}

.bottompanel-breadcrumbs_link {
  cursor: pointer;
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bottompanel-breadcrumbs_link:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.bottompanel-breadcrumbs_tail {
  overflow: hidden;
  text-overflow: ellipsis;
}

.bottompanel-breadcrumbs_link:not(:first-child)::before,
.bottompanel-breadcrumbs_tail:not(:first-child)::before {
  /* пофиг что этот хвост подчеркивается при наведении
   так как это все равно нужно убирать и делать бредкамбс
   по дизайну с треугольными концами */
  content: '/';
  font-weight: 300;
  margin: 0 .2em;
}

.bottompanel-bar_right {
  padding: 0 .5em;
  white-space: nowrap;
}

.bottompanel-button {
  background: #207d64;
  background: var(--theme-sidebar-highlight);
  color: #fff;
  color: var(--theme-bottompanel-fg);
  border: none;
  cursor: pointer;
  font-size: 1em;
  line-height: 1.75;
  padding: 0 1em;
  display: inline-block;
  -webkit-text-decoration: none;
  text-decoration: none;
  white-space: nowrap;
  text-transform: capitalize;
  border-radius: 5px;
}

.bottompanel-toggler,
.bottompanel-sidebar_toggler {
  padding: 0;
  margin: 0;
  line-height: 1.75;
  background: #207d64;
  background: var(--theme-sidebar-highlight);
  color: #fff;
  color: var(--theme-bottompanel-fg);
  border: none;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  width: 1.75em;
  position: relative;
  cursor: pointer;
}

.bottompanel-toggler::before {
  content: ' ';
  white-space: pre;
}

.bottompanel-toggler::after {
  content: '';
  display: block;
  position: absolute;
  font-size: 50%;
  width: 1em;
  height: 1em;
  border-width: .2em;
  border-style: none solid solid none;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  margin-top: -.7em;
  margin-left: -.5em;
  transform: rotate(45deg);
}

.bottompanel-toggler--expand {
  transform: scaleY(-1);
}

.bottompanel-sidebar_toggler {
  margin-left: .5em;
  height: 1.75em;
  margin-right: .25em;
  flex-shrink: 0;
}

.bottompanel-sidebar_toggler::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  --line_width: calc(1em / 7);
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0 calc(1em / 7),
    #fff calc(1em / 7) calc((1em / 7) * 2)
  );
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0 calc(1em / 7),
    #fff calc(1em / 7) calc(calc(1em / 7) * 2)
  );
}

@supports (background: repeating-linear-gradient(red 0%, red 0% 1%, red 2%)) {
.bottompanel-sidebar_toggler::after {
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0 var(--line_width),
    var(--theme-bottompanel-fg) var(--line_width) calc(var(--line_width) * 2)
  );
}
}

.bottompanel-panorama {
  width: 100%;
  height: 100%;
  z-index: 100;
  position: relative;
}

@media (max-width: 760px) {
  .bottompanel-content {
    font-size: .7em;
    top: 4.3em;
  }
}

.catalog-search {
  position: relative;
  background: #207d64;
  background: var(--theme-admterr-bg);
}

.catalog-search_input,
.catalog-search_btn {
  border: none;
  background: transparent;
}

.catalog-search_input {
  width: 100%;
  padding-right: 2.55em;
  padding-left: 1em;
  outline: none;
  font-size: inherit;
  line-height: 3;
  box-shadow: 5px 0 10px rgba(25, 117, 200, .2);
  box-shadow: var(--theme-sidebar-shaddow);
}

.catalog-search_input::-moz-placeholder {
  color: #fff;
  color: var(--theme-sidebar-fg);
}

.catalog-search_input,
.catalog-search_input::placeholder {
  color: #fff;
  color: var(--theme-sidebar-fg);
}

.catalog-search_input:hover,
.catalog-search_input:focus {
  background: #207d64;
  background: var(--theme-sidebar-highlight);
}

.catalog-search_btn {
  width: 1.75em;
  height: 1.75em;
  padding: 0;
  font-size: inherit;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: .3em;
  transform: translateY(-50%);
}

.catalog-search_btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -.5em;
  margin-top: -.5em;
  content: '';
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%22-100 -850 1000 1000%22%3E  %3C!-- modern pictograms - search --%3E  %3Cpath transform%3D%22scale(1%2C -1)%22 d%3D%22M680 256c-55-55-126-83-197-83-65 0-129 23-182 66l-51-125-130-130c-14-10-29-15-45-15-41 0-75 37-75 77 0 16 5 32 15 45l129 130 126 51c-44 52-66 117-66 182 0 152 127 277 279 277 150 0 277-128 277-278 0-72-26-144-80-197z m-319 75c34-33 78-50 122-50 92 0 170 77 170 172 0 93-79 170-170 170-94 0-172-79-172-170 0-45 17-89 50-122z%22 horiz-adv-x%3D%22760%22 %2F%3E%3C%2Fsvg%3E");
  filter: invert(100%);
  filter: invert(var(--theme-head-gl));
}

.catalog-empty {
  display: block;
  padding: 1em;
}

.catalog-empty::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: .3em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 16 16%22%3E%0D  %3Cpath d%3D%22M7.493 0.015 C 7.442 0.021%2C7.268 0.039%2C7.107 0.055 C 5.234 0.242%2C3.347 1.208%2C2.071 2.634 C 0.660 4.211%2C-0.057 6.168%2C0.009 8.253 C 0.124 11.854%2C2.599 14.903%2C6.110 15.771 C 8.169 16.280%2C10.433 15.917%2C12.227 14.791 C 14.017 13.666%2C15.270 11.933%2C15.771 9.887 C 15.943 9.186%2C15.983 8.829%2C15.983 8.000 C 15.983 7.171%2C15.943 6.814%2C15.771 6.113 C 14.979 2.878%2C12.315 0.498%2C9.000 0.064 C 8.716 0.027%2C7.683 -0.006%2C7.493 0.015 M8.853 1.563 C 9.548 1.653%2C10.198 1.848%2C10.840 2.160 C 11.538 2.500%2C12.020 2.846%2C12.587 3.413 C 13.154 3.980%2C13.500 4.462%2C13.840 5.160 C 14.285 6.075%2C14.486 6.958%2C14.486 8.000 C 14.486 9.054%2C14.284 9.932%2C13.826 10.867 C 13.654 11.218%2C13.307 11.781%2C13.145 11.972 L 13.090 12.037 8.527 7.473 L 3.963 2.910 4.028 2.855 C 4.219 2.693%2C4.782 2.346%2C5.133 2.174 C 6.305 1.600%2C7.555 1.395%2C8.853 1.563 M7.480 8.534 L 12.040 13.095 11.973 13.148 C 11.734 13.338%2C11.207 13.662%2C10.867 13.828 C 10.239 14.135%2C9.591 14.336%2C8.880 14.444 C 8.456 14.509%2C7.544 14.509%2C7.120 14.444 C 5.172 14.148%2C3.528 13.085%2C2.493 11.451 C 2.279 11.114%2C1.999 10.526%2C1.859 10.119 C 1.468 8.989%2C1.403 7.738%2C1.670 6.535 C 1.849 5.734%2C2.268 4.820%2C2.766 4.147 C 2.836 4.052%2C2.899 3.974%2C2.907 3.974 C 2.914 3.974%2C4.972 6.026%2C7.480 8.534 %22%2F%3E%0D%3C%2Fsvg%3E%0D");
  filter: invert(100%);
  filter: invert(var(--theme-head-gl));
}

.catalog-item {
  padding-right: .3em;
  line-height: 3;
  position: relative;
  align-items: center;
  cursor: pointer;
}

.catalog-item:hover {
  background: #207d64;
  background: var(--theme-sidebar-highlight);
}

.catalog-item::before {
  content: '';
  height: 100%;
  width: .3em;
  left: 0;
  position: absolute;
  background-color: #2ca88c;
  background-color: var(--theme-sidebar-highlight-gutter);
  opacity: 0;
  transition: opacity 200ms ease;
}

.catalog-item--active {
  background: #207d64;
  background: var(--theme-sidebar-highlight);
}

.catalog-item--active::before {
  opacity: 1;
}

.catalog-item--highlight {
  background-color: yellow;
  color: #000;
}

.catalog-item--collection {
  display: grid;
  grid-template-areas: 'name counter maptoggler expander';
  grid-template-columns: auto min-content 1em 2em;
  grid-column-gap: .5em;
  -moz-column-gap: .5em;
       column-gap: .5em;
  padding-left: calc(0 * 1em);
  padding-left: calc(var(--item-level, 0) * 1em);
}

.catalog-collection_name {
  grid-area: name;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 1em;
}

.catalog-maptoggler {
  grid-area: maptoggler;
  width: 1em;
  height: 1em;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  background: transparent;
  color: #fff;
  color: var(--theme-maptoggler-bg);
  border: 2px solid #feffff;
  border: 2px solid var(--theme-maptoggler-border);
  border-radius: 50%;
  opacity: .5;
  cursor: pointer;
  transition: opacity 100ms ease;
}

.catalog-maptoggler--on {
  background: currentColor;
  opacity: 1;
  border: none;
}

.catalog-maptoggler:focus {
  outline: none;
}

.catalog-maptoggler:hover {
  opacity: 1;
}

.catalog-expander {
  grid-area: expander;
  width: 1.75em;
  height: 1.75em;
  color: inherit;
  border: none;
  background: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  transition: transform 200ms ease;
}

.catalog-expander:focus {
  outline: none;
}

.catalog-expander:hover {
  background: #1c7c63;
  background: var(--theme-expander-bg);
}

.catalog-expander::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -.5em;
  margin-top: -.5em;
  content: '';
  width: 1em;
  height: 1em;
  color: inherit;
  border-style: solid;
  border-width: 0 .2em .2em 0;
  font-size: 50%;
  transform: translate(0, -25%) rotate(-45deg);
  transform-origin: 75% 75%;
  box-sizing: border-box;
}

.catalog-expander--on {
  transform: rotate(90deg);
}

.catalog-children.v-enter {
  transform: translate(2em, 0);
  opacity: 0;
}

.catalog-children.v-enter-active {
  transition:
    opacity 200ms ease 100ms, transform 200ms ease 100ms;
}

.catalog-children.v-leave-to {
  transform: scaleY(0);
  transform-origin: center top;
  opacity: 0;
}

.catalog-children.v-leave-active {
  position: absolute;
  width: 100%;
  transition:
    opacity 200ms ease, transform 200ms ease;
}

.catalog-item--href {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: calc(0 * 1em + 1em);
  padding-left: calc(var(--item-level, 0) * 1em + 1em);
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.catalog-item--href:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.catalog-container {
  position: relative;
}

.catalog-container.v-move {
  transition: transform 200ms ease;
}

.catalog-counter {
  white-space: nowrap;
  font-size: 62.5%;
  font-weight: 600;
  line-height: 1.6;
  background: #146a58;
  background: var(--theme-badge-bg);
  color: #fff;
  color: var(--theme-badge-fg);
  border-radius: 1.6em;
  padding: 0 .5em;
  min-width: .6em;
  text-align: center;
}

.compass {
  display: block;
  margin: 6px 6px 0 0;
  pointer-events: all;
  color: #333;
}

.compass--loading .compass-loader {
  fill-opacity: 1;
}

.compass-border {
  fill: rgba(0, 0, 0, .3);
  stroke-width: 0;
}

.compass-bg {
  fill: #fff;
  stroke-width: 0;
}

.compass-loader {
  fill-opacity: 0;
  transition: fill-opacity 200ms ease;
  animation: compass-loader_spin 1s linear  infinite;
  transform-origin: center center;
  stroke-width: 0;
}

@keyframes compass-loader_spin {
  from { transform: rotate(0); }
  to { transform: rotate(1turn); }
}

.compass-labelbg {
  fill: currentColor;
}

.compass-label {
  fill: #fff;
}

.compass-arrow_n {
  fill: currentColor;
}

.compass-arrow_s {
  fill: #b3b3b3;
}

.coordsheet {
  width: 40em;
  height: 5em;
  font-family: monospace;
  font-weight: inherit;
  font-size: inherit;
}

.block-step_controls {
  margin-top: 4px;
}

.block-step_control {
  background-color: #f3f2f2;
  border: 1px solid #d5d0d0;
  transition: border 200ms ease;
  border-radius: 4px;
  font-size: inherit;
  cursor: pointer;
}

.block-step_control:hover {
  border-color: #ccc;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .075);
}

.forms_base {
  padding: 1.5em;
  margin: 0 auto;
}

.forms_base-right_column {
  top: 0;
}

.forms_base-buttons {
  padding: 1.5em 0;
}

.forms_base-doc {
  border: 1px solid #ebecee;
  border-radius: .5em;
  padding: 1.5em;
}

.forms_block-text--label {
  font-size: .875em;
  font-weight: normal;
}

.forms_block-table_row_number {
  justify-content: center;
}

.forms_block-button--integration {
  margin-top: .25em;
}

.forms_catalog-item {
  padding-right: .3em;
  line-height: 3;
  position: relative;
  align-items: center;
  cursor: pointer;
}

.forms_catalog-item:hover {
  background: #207d64;
  background: var(--theme-sidebar-highlight);
}

.forms_catalog-item::before {
  content: '';
  height: 100%;
  width: .3em;
  left: 0;
  position: absolute;
  background-color: #2ca88c;
  background-color: var(--theme-sidebar-highlight-gutter);
  opacity: 0;
  transition: opacity 200ms ease;
}

.forms_catalog-item--active {
  background: #207d64;
  background: var(--theme-sidebar-highlight);
}

.forms_catalog-item--active::before {
  opacity: 1;
}

.forms_catalog-item--collection {
  display: grid;
  grid-template-areas: 'name counter maptoggler expander';
  grid-template-columns: auto min-content 1em 2em;
  grid-column-gap: .5em;
  -moz-column-gap: .5em;
       column-gap: .5em;
  padding-left: calc(0 * 1em);
  padding-left: calc(var(--item-level, 0) * 1em);
}

.forms_catalog-collection_name {
  grid-area: name;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 1em;
}

.forms_catalog-expander {
  grid-area: expander;
  width: 1.75em;
  height: 1.75em;
  color: inherit;
  border: none;
  background: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  transition: transform 200ms ease;
}

.forms_catalog-expander:focus {
  outline: none;
}

.forms_catalog-expander:hover {
  background: #1c7c63;
  background: var(--theme-expander-bg);
}

.forms_catalog-expander::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -.5em;
  margin-top: -.5em;
  content: '';
  width: 1em;
  height: 1em;
  color: inherit;
  border-style: solid;
  border-width: 0 .2em .2em 0;
  font-size: 50%;
  transform: translate(0, -25%) rotate(-45deg);
  transform-origin: 75% 75%;
  box-sizing: border-box;
}

.forms_catalog-expander--on {
  transform: rotate(90deg);
}

.forms_catalog-children.v-enter {
  transform: translate(2em, 0);
  opacity: 0;
}

.forms_catalog-children.v-enter-active {
  transition:
    opacity 200ms ease 100ms, transform 200ms ease 100ms;
}

.forms_catalog-children.v-leave-to {
  transform: scaleY(0);
  transform-origin: center top;
  opacity: 0;
}

.forms_catalog-children.v-leave-active {
  position: absolute;
  width: 100%;
  transition:
    opacity 200ms ease, transform 200ms ease;
}

.forms_catalog-container {
  position: relative;
}

.forms_catalog-container.v-move {
  transition: transform 200ms ease;
}

.forms_catalog-counter {
  white-space: nowrap;
  font-size: 62.5%;
  font-weight: 600;
  line-height: 1.6;
  background: #146a58;
  background: var(--theme-badge-bg);
  color: #fff;
  color: var(--theme-badge-fg);
  border-radius: 1.6em;
  padding: 0 .5em;
  min-width: .6em;
  text-align: center;
}

.forms_field-label {
  font-size: .875em;
  font-weight: normal;
}

.forms_field-table--highlight {
  border: 1px solid #094434;
  border: 1px solid var(--theme-head-bg);
}

.forms-decision_tabs {
  margin: 1.7142857142857142em 0;
}

.forms_calendar {
  overflow: auto;
  display: flex;
  flex-wrap: nowrap;
  padding: 1.5em;
}

.calendar-tabs--disabled {
  opacity: .5;
  pointer-events: none;
}

.calendar {
  flex: 1;
  max-width: 63em;
  min-width: 32em;
  border: 1px solid #eee;
  border-radius: 8px;
  color: #555;
  display: flex;
  flex-direction: column;
  height: -moz-min-content;
  height: min-content;
}

.calendar-content {
  padding: 1.5em;
}

.calendar-months {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(208px, 1fr));
  grid-gap: 2.5em;
}

.calendar-label {
  display: flex;
  margin-bottom: 2.5em;
  font-weight: 500;
  font-size: 1.75em;
}

.calendar-label--left {
  margin: .7142857142857142em 0;
}

.calendar-year_selector {
  position: relative;
  display: flex;
}

.calendar-year_inpt {
  font-size: 1em;
  font-weight: inherit;
  width: 112px;
  border: 0;
  margin: 0 auto;
  color: inherit;
  outline: none;
  border-radius: 8px;
  padding: 0 .75em;
  transition: background 200ms ease, color 200ms ease;
}

.calendar-year_inpt:focus {
  background: #ebecee;
}

.calendar-year_selector:focus-within > .calendar-year_dropdown,
.calendar-year_dropdown:focus {
  display: block;
  opacity: 1;
}

.calendar-year_dropdown {
  max-height: 4.5em;
  position: absolute;
  overflow: scroll;
  font-size: 70%;
  top: 100%;
  background: #fff;
  box-shadow: 3px 3px 9px #b9b9b9;
  border-radius: 4px;
  margin-left: 32px;
  width: 112px;
  box-sizing: border-box;
  margin-top: 4px;
  display: none;
  opacity: 0;
  transition: opacity 200ms ease;
}

.calendar-year_dropdown::-webkit-scrollbar {
  display: none;
}

.calendar-year_dropdown_items {
  height: 23px;
  transition: color 200ms ease;
  cursor: pointer;
  padding: 0 21px;
  display: flex;
  align-items: center;
}

.calendar-year_dropdown_items:hover {
  color: #000;
}

.calendar-year_dropdown_items--active::before {
  content: '';
  display: inline-block;
  width: 2px;
  height: 14px;
  background: #555;
  position: absolute;
  left: 0;
  border-radius: 0 2px 2px 0;
}

.calendar--left {
  min-width: 0;
  min-width: initial;
  max-width: none;
  max-width: initial;
  width: 20em;
  margin-left: 2em;
  min-height: 32em;
  box-sizing: border-box;
  flex: initial;
}

.calendar-caption {
  margin-top: 1.4285714285714284em;
  color: #70808e;
  font-weight: normal;
  font-size: .875em;
}

.calendar-caption--italic {
  font-style: italic;
  color: rgba(112,128,142,0.50196);
}

.calendar-weeks, .calendar-holidays {
  color: #555;
  font-weight: normal;
  margin-top: .85em;
  font-size: .875em;
  transition: color 200ms ease;
  text-transform: capitalize;
}

.calendar-holidays, .calendar-weeks--two_column {
  display: grid;
  grid-template-columns: .5fr 1fr;
}

.calendar-holiday:not(:last-child)::after,
.calendar-week:not(:last-child)::after { content: ', '; }

.calendar-bottom {
  border: 0;
  margin-top: auto;
  font-weight: 500;
  padding: 1em;
  border-top: 1px solid #eee;
  width: 100%;
  box-sizing: border-box;
}

.calendar-btn,
.calendar-bottom_btn {
  outline: none;
}

.calendar-bottom_btn {
  font-size: .875em;
  color: #70808e;
  transition: color 200ms ease;
  background: none;
  border: none;
  margin: auto;
  width: 100%;
  cursor: pointer;
  height: 2.0625em;
}

.calendar-bottom_btn:not(:disabled):hover { color: #555; }

.calendar-bottom_btn:disabled {
  opacity: .2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.calendar-btns {
  display: flex;
  justify-content: space-between;
}

.calendar-btn {
  background: #fff;
  border-radius: .5em;
  color: #70808e;
  padding: .5em;
  min-width: 7em;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease;
  border: 1px solid #eee;
  font-size: .875em;
}

.calendar-btn--thin {
  border: none;
}

.calendar-btn:hover {
  color: #555;
  border-color: #ddd;
}

.forms_calendar-switcher {
  width: 2em;
  height: 1em;
  background: #ebecee;
  border-radius: 1em;
  padding: .1em;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 200ms ease;
}

.forms_calendar-switcher--left {
  margin-left: auto;
}

.forms_calendar-switcher::before {
  content: '';
  display: inline-block;
  height: 1em;
  width: 1em;
  background: #fff;
  border-radius: 50%;
  transition: transform 200ms ease;
}

.forms_calendar-switcher--active {
  background: #d5d5d5;
}

.forms_calendar-switcher--active::before {
  transform: translateX(100%);
}

.calendar-inpt {
  margin: 1.25em 0;
  width: 100%;
  background: #ebecee;
  color: #555;
  outline: none;
  font-size: .875em;
  padding: .5em;
  border-radius: .5em;
  border: 1px solid transparent;
  transition:
    color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.calendar-inpt::-moz-placeholder {
  opacity: 1;
  opacity: initial;
  color: #70808e;
}

.calendar-inpt::placeholder {
  opacity: 1;
  opacity: initial;
  color: #70808e;
}

.calendar-inpt:focus::-moz-placeholder {
  color: #555;
  opacity: .5;
}

.calendar-inpt:focus::placeholder {
  color: #555;
  opacity: .5;
}

.calendar-inpt:focus {
  background: #fff;
  border-color: #ebecee;
}

.calendar-year_btns {
  padding: .5em;
  background: none;
  border: 0;
  cursor: pointer;
  outline: none;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-year_btns--right {
  transform: rotate(180deg);
}

.calendar-year_btns:hover > .calendar-year_arrows {
  border-color: #555;
}

.calendar-year_arrows {
  display: block;
  font-size: .4em;
  width: 1em;
  height: 1em;
  border-left: 3px solid  #70808e;
  border-bottom: 3px solid  #70808e;
  transform: rotate(45deg);
  transition: border-color 200ms ease;
}

.forms_calendar_list {
  overflow: auto;
}

.forms_calendar_list-content {
  margin: 1.5em;
  border: 1px solid #eee;
  border-radius: 8px;
  color: #555;
}

.forms_calendar_list-head {
  display: flex;
  justify-content: space-between;
  padding: 1.5em;
  border-bottom: 1px solid #eee;
  border-radius: 8px 8px 0 0;
}

.forms_calendar_list-head,
.forms_calendar_list-table_header {
  position: sticky;
  top: 0;
  background: #fff;
}

.forms_calendar_list-table_header {
  top: 88px;
}

.forms_calendar_list-label {
  font-size: 1.75em;
  font-weight: 500;
  color: #222;
}

.forms_calendar_list-btn {
  background: #207d64;
  background: var(--theme-sidebar-highlight);
  border-radius: .5em;
  border: none;
  color: #fff;
  padding: .625em;
  min-width: 7em;
  font-size: .875em;
  cursor: pointer;
  transition: box-shadow 200ms ease;
}

.forms_calendar_list-btn:hover {
  box-shadow: 0 4px 16px rgba(26, 35, 126, .32);
}

.forms_calendar_list-table {
  font-weight: normal;
}

.forms_calendar_list-table_header, .forms_calendar_list-table_data {
  border-bottom: 1px solid #eee;
  display: grid;
  grid-template-columns: 3em 1fr 9em;
}

.forms_calendar_list-table_header > .forms_calendar_list-table_cell {
  padding-top: 1.5625em;
  padding-bottom: 1.5625em;
}

.forms_calendar_list-table_data {
  transition: background-color 100ms ease;
  cursor: pointer;
  color: #666;
}

.forms_calendar_list-table_data:hover {
  background-color: #eee;
}

.forms_calendar_list-table_cell {
  border-left: 1px solid #eee;
  padding: .875em;
  text-overflow: ellipsis;
  overflow: hidden;
}

.forms_calendar_list-table_cell:first-child {
  border-left: none;
}

.forms_calendar_list-table_cell[column='0'] {
  text-align: center;
}

.guntt {
  width: 100%;
  display: flex;
  margin: 0 auto 2em;
  padding: 2em;
  box-sizing: border-box;
  border: 1px solid #eee;
  border: 1px solid var(--outline_color);
  border-radius: 6px;
  --total_cell_count: 20;
  --unit_ratio: calc(1/1);
  --grid_ratio: calc(1/1);
  --cell_width: calc(2em * var(--unit_ratio));
  --cell_height: 2em;
  --cell_outline_width: calc(1em / 16);
  --outline_color: #eee;
  --even_row_color: #f9f9f9;
  --grid_width: calc(var(--cell_width) * var(--grid_ratio));
  --taken_to_work_color: #0683f9;
  --rollback_color: #f3bb1c;
  --move_forward_color: #3cc13b;
  --reject_color: #f03738;
}

.guntt-legend {
  height: 89px;
  box-sizing: border-box;
  border-bottom: 1px solid var(--outline_color);
}

.guntt-legend_type {
  font-size: .75em;
  margin-bottom: .5em;
  display: flex;
  align-items: center;
}

.guntt-legend_type::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background: var(--bg_color);
  border-radius: 2px;
  margin-right: .5em;
}

.guntt-left {
  border-right: 1px solid var(--outline_color);
  width: 35%;
}

.guntt-rows_label {
  --height: calc(calc(var(--cell_height) + var(--cell_outline_width)) * 16 / 14);
  height: calc((var(--cell_height) + var(--cell_outline_width)) * 16 / 14);
  height: calc(calc(var(--cell_height) + var(--cell_outline_width)) * 16 / 14);
  height: var(--height);
  line-height: calc((var(--cell_height) + var(--cell_outline_width)) * 16 / 14);
  line-height: calc(calc(var(--cell_height) + var(--cell_outline_width)) * 16 / 14);
  line-height: var(--height);
  box-sizing: border-box;
  font-size: .875em;
  color: #555;
  font-weight: normal;
  padding-left: calc(1em * (1 - 1));
  padding-left: calc(1em * (var(--row_level, 1) - 1));
  padding-left: calc(1em * calc(1 - 1));
  padding-left: calc(1em * calc(var(--row_level, 1) - 1));
  padding-right: .5em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.guntt-rows_label--interactive {
  cursor: pointer;
  font-weight: bold;
}

.guntt-rows_label--interactive:hover {
  color: #222;
}

.guntt-chart {
  overflow-x: auto;
  border-right: 1px solid var(--outline_color);
}

.guntt-columns, .guntt-columns_days {
  display: flex;
  color: #555;
}

.guntt-columns_day {
  width: calc(var(--cell_width) * 16 / 12);
  text-align: center;
  font-size: .75em;
  margin: .5em 0;
}

.guntt-columns_month_label {
  position: sticky;
  left: var(--cell_width);
  width: -moz-max-content;
  width: max-content;
  margin: .25em calc(var(--cell_width) * 16 / 12);
  font-size: .75em;
}

.guntt-columns_month {
  background-image: linear-gradient(to left, var(--outline_color) 1px, transparent 1px);
}

.guntt-row {
  width: calc(var(--cell_width) * var(--total_cell_count));
  height: calc(var(--cell_height) + var(--cell_outline_width));
  background-image:
    linear-gradient(
      to left,
      var(--outline_color) var(--cell_outline_width),
      transparent var(--cell_outline_width)
    );
  background-size: var(--grid_width) calc(var(--cell_height) + var(--cell_outline_width));
  position: relative;
  display: flex;
  align-items: center;
}

.guntt-row--total {
  background: var(--even_row_color);
  margin-bottom: .5em;
}

.guntt-row:first-of-type {
  background-image:
    linear-gradient(
      to left,
      var(--outline_color) var(--cell_outline_width),
      transparent var(--cell_outline_width)
    ),
    linear-gradient(
      to bottom,
      var(--outline_color) var(--cell_outline_width),
      transparent var(--cell_outline_width)
    );
}

.guntt-row:nth-child(even) {
  background-image:
    linear-gradient(
      to left,
      var(--outline_color) var(--cell_outline_width),
      var(--even_row_color) var(--cell_outline_width) var(--grid_width),
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      transparent var(--cell_outline_width),
      transparent var(--cell_outline_width)
    );
}

.guntt-row:last-of-type {
  background-image:
    linear-gradient(
      to left,
      var(--outline_color) var(--cell_outline_width),
      transparent var(--cell_outline_width) var(--grid_width),
      transparent 1px
    ),
    linear-gradient(
      to top,
      var(--outline_color) var(--cell_outline_width),
      transparent var(--cell_outline_width)
    );
}

.guntt-row:last-of-type:nth-child(even) {
  background-image:
    linear-gradient(
      to top, var(--outline_color) 1px,
      transparent var(--cell_outline_width)
    ),
    linear-gradient(
      to left,
      var(--outline_color) var(--cell_outline_width),
      var(--even_row_color) var(--cell_outline_width) var(--grid_width),
      transparent var(--cell_outline_width)
    );
}

.guntt-progress_bar {
  --length: 0;
  --starts: 0;
  --end: max(calc(var(--length) - var(--max_length)), 0);
  min-width: 1px;
  width: calc(var(--cell_width) * 0 - var(--cell_outline_width));
  width: calc(var(--cell_width) * var(--length) - var(--cell_outline_width));
  height: calc(var(--cell_height) * .45);
  background-color: #3cc13b;
  background-color: var(--bg_color, #3cc13b);
  margin-left: calc((0 * var(--cell_width)));
  margin-left: calc((var(--starts) * var(--cell_width)));
  margin-left: calc(calc(0 * var(--cell_width)));
  margin-left: calc(calc(var(--starts) * var(--cell_width)));
  border-radius: 2px;
  position: absolute;
  left: 0;
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, .25) calc(max(calc(0 - var(--max_length)), 0) * var(--cell_width)),
    transparent 0
  );
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, .25) calc(var(--end) * var(--cell_width)),
    transparent 0
  );
}

/* stylelint-disable */

.guntt-legend_type--move_forward,
.guntt-progress_bar--move_forward {
  --bg_color: #3cc13b;
}

.guntt-legend_type--reject,
.guntt-progress_bar--reject {
  --bg_color: #f03738;
}

.guntt-legend_type--rollback,
.guntt-progress_bar--rollback {
  --bg_color: #f3bb1c;
}

.guntt-legend_type--taken_to_work,
.guntt-progress_bar--taken_to_work {
  --bg_color: #0683f9;
}

/* stylelint-enable */

.forms_category {
  overflow-y: auto;
}

.forms_category-search {
  display: flex;
  margin: 1.5em 1.5em 0;
}

.forms_category-search_input {
  width: 100%;
  font-size: 1em;
  padding: calc(1.125em - 1px) .875em;
  border-radius: .25em;
  border: 1px solid #0a0a0a;
  transition: border 150ms ease, background-color 150ms ease;
  box-shadow: none;
  outline: none;
  font-weight: 500;
  color: #0a0a0a;
  font-family: 'Roboto', sans-serif;
}

.forms_category-not_found {
  font-size: 1.25em;
  margin: 1em auto 0;
  text-align: center;
}

.forms_list {
  overflow-y: auto;
}

.forms_list-container {
  margin: 1.5em;
  border: 1px solid #ebecee;
  border-radius: .5em;
  padding: 1.5em;
  display: flex;
  flex-wrap: wrap;
}

.forms_list-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  width: 100%;
  grid-auto-rows: minmax(80px, 1fr);
  grid-gap: .7em;
}

.forms_list-item,
.forms_list-header {
  display: flex;
}

.forms_list-header {
  font-size: 1.75em;
  min-width: 100%;
  flex-basis: 50%;
  flex-grow: 1;
  margin-bottom: 18px;
}

.forms_list-header_name {
  font-weight: 500;
  color: #333;
}

.forms_list-item {
  cursor: pointer;
  position: relative;
  width: 100%;
  min-width: 200px;
  box-sizing: border-box;
  padding: 1em;
  transition: transform 200ms ease;
  line-height: 1.25;
  min-height: 1.375em;
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
}

.forms_list-item--disabled {
  cursor: not-allowed;
}

.forms_list-item--hidden {
  display: none;
}

.forms_list-item_breadcrumbs {
  position: absolute;
  display: flex;
  top: .75em;
  left: 1.75em;
  color: #adadad;
  width: calc(100% - 3em);
}

.forms_list-item_crumb {
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .75em;
}

.forms_list-item_crumb:not(:first-child)::before {
  content: '/';
  font-weight: 300;
  margin: 0 .2em;
}

.forms_list-item_meta {
  display: flex;
  flex-direction: column;
  padding-left: .5em;
}

.forms_list-item:hover,
.forms_list-item:hover > .forms_list-item_name {
  transform: scale(103%);
}

.forms_list-item--disabled:hover {
  transform: none;
}

.forms_list-item_name {
  font-weight: 400;
  color: #555;
  transition: color 200ms ease;
  word-wrap: anywhere;
}

.forms_list-item_description {
  color: #adadad;
  font-size: 1em;
  font-weight: 400;
}

.forms_list-counter {
  white-space: nowrap;
  font-size: .5em;
  font-weight: 500;
  line-height: 1.6;
  background: #146a58;
  background: var(--theme-badge-bg);
  color: #fff;
  color: var(--theme-badge-fg);
  border-radius: 1.6em;
  padding: 0 .5em;
  min-width: 1.3em;
  text-align: center;
  margin-left: .5em;
  height: -moz-min-content;
  height: min-content;
  transform: translateY(30%); /* FIXME after */
}

.forms_list-item > .forms_list-counter {
  position: absolute;
  top: .5em;
  right: .5em;
  transform: none;
  transform: initial;
}

.forms_passport {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow-y: auto;
  padding: 1.5em;
}

.forms_passport-content {
  border: 1px solid #ebecee;
  border-radius: .5em;
  padding: 1.5em;
  max-width: 500px;
  min-width: 200px;
  height: -moz-min-content;
  height: min-content;
  font-weight: 400;
  color: #555;
  flex-grow: 1;
}

.forms_passport-content_label {
  font-size: 1.75em;
  font-weight: 500;
  color: #444;
}

.forms_passport-meta {
  flex-grow: 1;
  margin-left: 2em;
  max-width: 312px;
  min-width: 150px;
  height: -moz-min-content;
  height: min-content;
  position: sticky;
  top: 0;
}

.forms_passport-btn {
  width: 100%;
  padding: .8em 0;
  display: flex;
  justify-content: center;
}

.forms_passport-btn--disabled {
  pointer-events: none;
}

.btn.forms_passport-btn:not(:first-child) {
  margin-top: .5em;
}

.forms_passport-spinner {
  --color: #fff;
  --stroke: .18em;
  font-size: 1.1875em;
  box-sizing: border-box;
}

.forms_user_access {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  padding: 1.5em;
}

.forms_user_access-step_box {
  margin: 1em;
  border: 1px solid #ebecee;
  border-radius: .5em;
  padding: 1.5em;
  width: 90%;
  font-weight: 400;
  color: #555;
}

.forms_user_access-step_btns {
  font-size: .75em;
}

.forms_user_access-step_data_box {
  display: flex;
  justify-content: space-between;
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: .5em;
}

.forms_user_access-add_user_box {
  max-height: 300px;
  overflow: hidden;
  overflow-y: auto;
}

.forms_user_access-step_access_box {
  display: grid;
  grid-template-columns: [column-id] 1fr [column-fullname] 5fr [column-write_access] 1fr [column-read_access] 1fr;
  margin-bottom: .5em;
}

.forms_user_access-step_access_box--admin {
  grid-template-columns: [column-id] 1fr [column-fullname] 5fr [column-write_access] 1fr [column-read_access] 1fr [column-grant_access] 1fr;
}

.forms_user_access-step_header_row {
  display: contents;
  font-weight: bolder;
}

.forms_user_access-step_user_header_cell {
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--ctl_border_color);
  padding: .35em 0;
}

.forms_user_access-step_user_header_id {
  grid-column: column-id;
}

.forms_user_access-step_user_header_fullname {
  grid-column: column-fullname;
}

.forms_user_access-step_user_header_write_access {
  grid-column: column-write_access;
}

.forms_user_access-step_user_header_read_access {
  grid-column: column-read_access;
}

.forms_user_access-step_user_header_grant_access {
  grid-column: column-grant_access;
}

.forms_user_access-step_user_row {
  display: contents;
}

.forms_user_access-step_user_row--new {
  font-weight: 600;
}

.forms_user_access-step_user_cell {
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--ctl_border_color);
  padding: .35em 0;
}

.forms_user_access-step_user_grant_access,
.forms_user_access-step_user_write_access,
.forms_user_access-step_user_read_access {
  padding-left: 20%;
}

.forms_user_access-step_user_id {
  grid-column: column-id;
  overflow: hidden;
  text-overflow: ellipsis;
}

.forms_user_access-step_user_fullname {
  grid-column: column-fullname;
  overflow: hidden;
  text-overflow: ellipsis;
}

.forms_user_access-step_user_write_access {
  grid-column: column-write_access;
}

.forms_user_access-step_user_read_access {
  grid-column: column-read_access;
}

.forms_user_access-step_user_grant_access {
  grid-column: column-grant_access;
}

.forms_user_access-add_user_open {
  border: 1px solid #ebecee;
  border-radius: 50%;
  background: #207d64;
  background: var(--theme-sidebar-highlight);
  color: #fff;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.forms_user_access-add_user_sheet {
  display: grid;
  grid-template-columns: [column-button] fit-content(100%) [column-id] fit-content(100%) [column-lastname] fit-content(100%) [column-firstname] fit-content(100%) [column-patronymic] fit-content(100%);
  align-items: center;
}

.forms_user_access-add_user_close {
  border: 1px solid #ebecee;
  border-radius: 50%;
  background: #207d64;
  background: var(--theme-sidebar-highlight);
  color: #fff;
  width: 25px;
  height: 25px;
  cursor: pointer;
  grid-column: column-button;
  margin-right: 1em;
}

.forms_user_access-add_user_header_row {
  display: contents;
  font-weight: bolder;
}

.forms_user_access-add_user_header_id {
  grid-column: column-id;
}

.forms_user_access-add_user_header_lastname {
  grid-column: column-lastname;
}

.forms_user_access-add_user_header_firstname {
  grid-column: column-firstname;
}

.forms_user_access-add_user_header_patronymic {
  grid-column: column-patronymic;
}

.forms_user_access-add_user_search_row {
  display: contents;
}

.forms_user_access-add_user_search_cell {
  width: 11vw;
  margin-right: .5em;
}

.forms_user_access-add_user_search_id {
  grid-column: column-id;
}

.forms_user_access-add_user_search_lastname {
  grid-column: column-lastname;
}

.forms_user_access-add_user_search_firstname {
  grid-column: column-firstname;
}

.forms_user_access-add_user_search_patronymic {
  grid-column: column-patronymic;
}

.forms_user_access-add_user_row {
  display: contents;
}

.forms_user_access-add_user_cell {
  width: 11vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

.forms_user_access-add_user_id {
  grid-column: column-id;
}

.forms_user_access-add_user_lastname {
  grid-column: column-lastname;
}

.forms_user_access-add_user_firstname {
  grid-column: column-firstname;
}

.forms_user_access-add_user_patronymic {
  grid-column: column-patronymic;
}

.forms_user_access-add_user_load_more {
  border: 1px solid #ebecee;
  border-radius: 5px;
  background: #207d64;
  background: var(--theme-sidebar-highlight);
  color: #fff;
  width: 40px;
  height: 25px;
  cursor: pointer;
}

.livecam {
  position: relative;
  z-index: 100;
}

.livecam-canvas {
  width: 100%;
  height: 100%;
}

.livecam-close {
  position: absolute;
  z-index: 100;
  width: 2em;
  height: 2em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 0;
  margin: .5em;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  cursor: pointer;
  background: url('../../assets/close_a66f8f5d.svg') no-repeat center/100%;
}

.livecam-online {
  background-color: #7cfc00;
  position: absolute;
  z-index: 100;
  width: 1.2em;
  height: 1.2em;
  margin: .5em;
  top: auto;
  right: 0;
  bottom: auto;
  left: 0;
  border-radius: 1em;
  animation: pulse-dot 1.25s cubic-bezier(.215, .61, .355, 1) infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(.8); }
  50% { transform: scale(1); }
  100% { transform: scale(.8); }
}

.main_screen-map {
  height: 100%;
}

.main_screen-catalog {
  margin-bottom: 100%;
}

.main_screen-bottompanel {
  background: #fff;
  color: #222;
  position: relative;
  height: 100%;
}

.main_screen-splitpanel_updown {
  height: 100%;
}

.mapboxgl-map {
  font: 12px/20px Helvetica Neue, Arial, Helvetica, sans-serif;
  overflow: hidden;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mapboxgl-canvas {
  left: 0;
  position: absolute;
  top: 0;
}

.mapboxgl-map:-webkit-full-screen {
  height: 100%;
  width: 100%;
}

.mapboxgl-canary {
  background-color: salmon;
}

.mapboxgl-canvas-container.mapboxgl-interactive,
.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass {
  cursor: grab;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.mapboxgl-canvas-container.mapboxgl-interactive.mapboxgl-track-pointer {
  cursor: pointer;
}

.mapboxgl-canvas-container.mapboxgl-interactive:active,
.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass:active {
  cursor: grabbing;
}

.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate,
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate .mapboxgl-canvas {
  touch-action: pan-x pan-y;
}

.mapboxgl-canvas-container.mapboxgl-touch-drag-pan,
.mapboxgl-canvas-container.mapboxgl-touch-drag-pan .mapboxgl-canvas {
  touch-action: pinch-zoom;
}

.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan,
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan
  .mapboxgl-canvas {
  touch-action: none;
}

.mapboxgl-ctrl-bottom,
.mapboxgl-ctrl-bottom-left,
.mapboxgl-ctrl-bottom-right,
.mapboxgl-ctrl-left,
.mapboxgl-ctrl-right,
.mapboxgl-ctrl-top,
.mapboxgl-ctrl-top-left,
.mapboxgl-ctrl-top-right {
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.mapboxgl-ctrl-top-left {
  left: 0;
  top: 0;
}

.mapboxgl-ctrl-top {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.mapboxgl-ctrl-top-right {
  right: 0;
  top: 0;
}

.mapboxgl-ctrl-right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mapboxgl-ctrl-bottom-right {
  bottom: 0;
  right: 0;
}

.mapboxgl-ctrl-bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.mapboxgl-ctrl-bottom-left {
  bottom: 0;
  left: 0;
}

.mapboxgl-ctrl-left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mapboxgl-ctrl {
  clear: both;
  pointer-events: auto;
  transform: translate(0);
}

.mapboxgl-ctrl-top-left .mapboxgl-ctrl {
  float: left;
  margin: 10px 0 0 10px;
}

.mapboxgl-ctrl-top .mapboxgl-ctrl {
  float: left;
  margin: 10px 0;
}

.mapboxgl-ctrl-top-right .mapboxgl-ctrl {
  float: right;
  margin: 10px 10px 0 0;
}

.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl,
.mapboxgl-ctrl-right .mapboxgl-ctrl {
  float: right;
  margin: 0 10px 10px 0;
}

.mapboxgl-ctrl-bottom .mapboxgl-ctrl {
  float: left;
  margin: 10px 0;
}

.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl, .mapboxgl-ctrl-left .mapboxgl-ctrl {
  float: left;
  margin: 0 0 10px 10px;
}

.mapboxgl-ctrl-group {
  background: #fff;
  border-radius: 4px;
}

.mapboxgl-ctrl-group:not(:empty) {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl-group:not(:empty) {
    box-shadow: 0 0 0 2px ButtonText;
  }
}

.mapboxgl-ctrl-group button {
  background-color: transparent;
  border: 0;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 29px;
  outline: none;
  overflow: hidden;
  padding: 0;
  width: 29px;
}

.mapboxgl-ctrl-group button + button {
  border-top: 1px solid #ddd;
}

.mapboxgl-ctrl button .mapboxgl-ctrl-icon {
  background-position: 50%;
  background-repeat: no-repeat;
  display: block;
  height: 100%;
  width: 100%;
}

@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl-icon {
    background-color: transparent;
  }
  .mapboxgl-ctrl-group button + button {
    border-top: 1px solid ButtonText;
  }
}

.mapboxgl-ctrl-attrib-button:focus, .mapboxgl-ctrl-group button:focus {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl button:disabled {
  cursor: not-allowed;
}

.mapboxgl-ctrl button:disabled .mapboxgl-ctrl-icon {
  opacity: 0.25;
}

.mapboxgl-ctrl-group button:first-child {
  border-radius: 4px 4px 0 0;
}

.mapboxgl-ctrl-group button:last-child {
  border-radius: 0 0 4px 4px;
}

.mapboxgl-ctrl-group button:only-child {
  border-radius: inherit;
}

.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}

.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E");
}

.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E");
}

@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E");
  }
}

@media (-ms-high-contrast: black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E");
  }
}

.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E");
}

.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E");
}

@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E");
  }
}

@media (-ms-high-contrast: black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E");
  }
}

.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E%3C/svg%3E");
}

@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23999'/%3E%3C/svg%3E");
  }
}

@media (-ms-high-contrast: black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E%3C/svg%3E");
  }
}

.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
}

.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23aaa'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='%23f00'/%3E%3C/svg%3E");
}

.mapboxgl-ctrl
  button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active
  .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
}

.mapboxgl-ctrl
  button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error
  .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
}

.mapboxgl-ctrl
  button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background
  .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
}

.mapboxgl-ctrl
  button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error
  .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
}

.mapboxgl-ctrl
  button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-waiting
  .mapboxgl-ctrl-icon {
  animation: mapboxgl-spin 2s linear infinite;
}

@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23999'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='%23f00'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl
    button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active
    .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl
    button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error
    .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl
    button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background
    .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl
    button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error
    .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
}

@media (-ms-high-contrast: black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23666'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='%23f00'/%3E%3C/svg%3E");
  }
}

@keyframes mapboxgl-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}

a.mapboxgl-ctrl-logo {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd' viewBox='0 0 88 23'%3E%3Cdefs%3E%3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E%3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E%3C/defs%3E%3Cmask id='clip'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/mask%3E%3Cg id='outline' opacity='0.3' stroke='%23000' stroke-width='3'%3E%3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E%3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E%3C/g%3E%3Cg id='fill' opacity='0.9' fill='%23fff'%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  cursor: pointer;
  display: block;
  height: 23px;
  margin: 0 0 -4px -4px;
  overflow: hidden;
  width: 88px;
}

a.mapboxgl-ctrl-logo.mapboxgl-compact {
  width: 23px;
}

@media (-ms-high-contrast: active) {
  a.mapboxgl-ctrl-logo {
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd' viewBox='0 0 88 23'%3E%3Cdefs%3E%3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E%3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E%3C/defs%3E%3Cmask id='clip'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/mask%3E%3Cg id='outline' opacity='1' stroke='%23000' stroke-width='3'%3E%3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E%3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E%3C/g%3E%3Cg id='fill' opacity='1' fill='%23fff'%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/g%3E%3C/svg%3E");
  }
}

@media (-ms-high-contrast: black-on-white) {
  a.mapboxgl-ctrl-logo {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd' viewBox='0 0 88 23'%3E%3Cdefs%3E%3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E%3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E%3C/defs%3E%3Cmask id='clip'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/mask%3E%3Cg id='outline' opacity='1' stroke='%23fff' stroke-width='3' fill='%23fff'%3E%3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E%3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E%3C/g%3E%3Cg id='fill' opacity='1' fill='%23000'%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/g%3E%3C/svg%3E");
  }
}

.mapboxgl-ctrl.mapboxgl-ctrl-attrib {
  background-color: hsla(0, 0%, 100%, 0.5);
  margin: 0;
  padding: 0 5px;
}

@media screen {
  .mapboxgl-ctrl-attrib.mapboxgl-compact {
    background-color: #fff;
    border-radius: 12px;
    box-sizing: content-box;
    margin: 10px;
    min-height: 20px;
    padding: 2px 24px 2px 0;
    position: relative;
  }
  .mapboxgl-ctrl-attrib.mapboxgl-compact-show {
    padding: 2px 28px 2px 8px;
    visibility: visible;
  }
  .mapboxgl-ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact-show,
  .mapboxgl-ctrl-left > .mapboxgl-ctrl-attrib.mapboxgl-compact-show,
  .mapboxgl-ctrl-top-left > .mapboxgl-ctrl-attrib.mapboxgl-compact-show {
    border-radius: 12px;
    padding: 2px 8px 2px 28px;
  }
  .mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner {
    display: none;
  }
  .mapboxgl-ctrl-attrib-button {
    background-color: hsla(0, 0%, 100%, 0.5);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");
    border: 0;
    border-radius: 12px;
    box-sizing: border-box;
    cursor: pointer;
    display: none;
    height: 24px;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
  }
  .mapboxgl-ctrl-bottom-left .mapboxgl-ctrl-attrib-button,
  .mapboxgl-ctrl-left .mapboxgl-ctrl-attrib-button,
  .mapboxgl-ctrl-top-left .mapboxgl-ctrl-attrib-button {
    left: 0;
  }
  .mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-button,
  .mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-inner {
    display: block;
  }
  .mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-button {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .mapboxgl-ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    bottom: 0;
    right: 0;
  }
  .mapboxgl-ctrl-right > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    right: 0;
  }
  .mapboxgl-ctrl-top-right > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    right: 0;
    top: 0;
  }
  .mapboxgl-ctrl-top-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    left: 0;
    top: 0;
  }
  .mapboxgl-ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    bottom: 0;
    left: 0;
  }
  .mapboxgl-ctrl-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    left: 0;
  }
}

@media screen and (-ms-high-contrast: active) {
  .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' fill='%23fff'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");
  }
}

@media screen and (-ms-high-contrast: black-on-white) {
  .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");
  }
}

.mapboxgl-ctrl-attrib a {
  color: rgba(0, 0, 0, 0.75);
  -webkit-text-decoration: none;
  text-decoration: none;
}

.mapboxgl-ctrl-attrib a:hover {
  color: inherit;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.mapboxgl-ctrl-attrib .mapbox-improve-map {
  font-weight: 700;
  margin-left: 2px;
}

.mapboxgl-attrib-empty {
  display: none;
}

.mapboxgl-ctrl-scale {
  background-color: hsla(0, 0%, 100%, 0.75);
  border: 2px solid #333;
  border-top: #333;
  box-sizing: border-box;
  color: #333;
  font-size: 10px;
  padding: 0 5px;
  white-space: nowrap;
}

.mapboxgl-popup {
  display: flex;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  will-change: transform;
}

.mapboxgl-popup-anchor-top,
.mapboxgl-popup-anchor-top-left,
.mapboxgl-popup-anchor-top-right {
  flex-direction: column;
}

.mapboxgl-popup-anchor-bottom,
.mapboxgl-popup-anchor-bottom-left,
.mapboxgl-popup-anchor-bottom-right {
  flex-direction: column-reverse;
}

.mapboxgl-popup-anchor-left {
  flex-direction: row;
}

.mapboxgl-popup-anchor-right {
  flex-direction: row-reverse;
}

.mapboxgl-popup-tip {
  border: 10px solid transparent;
  height: 0;
  width: 0;
  z-index: 1;
}

.mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
  align-self: center;
  border-bottom-color: #fff;
  border-top: none;
}

.mapboxgl-popup-anchor-top-left .mapboxgl-popup-tip {
  align-self: flex-start;
  border-bottom-color: #fff;
  border-left: none;
  border-top: none;
}

.mapboxgl-popup-anchor-top-right .mapboxgl-popup-tip {
  align-self: flex-end;
  border-bottom-color: #fff;
  border-right: none;
  border-top: none;
}

.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
  align-self: center;
  border-bottom: none;
  border-top-color: #fff;
}

.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-tip {
  align-self: flex-start;
  border-bottom: none;
  border-left: none;
  border-top-color: #fff;
}

.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-tip {
  align-self: flex-end;
  border-bottom: none;
  border-right: none;
  border-top-color: #fff;
}

.mapboxgl-popup-anchor-left .mapboxgl-popup-tip {
  align-self: center;
  border-left: none;
  border-right-color: #fff;
}

.mapboxgl-popup-anchor-right .mapboxgl-popup-tip {
  align-self: center;
  border-left-color: #fff;
  border-right: none;
}

.mapboxgl-popup-close-button {
  background-color: transparent;
  border: 0;
  border-radius: 0 3px 0 0;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}

.mapboxgl-popup-close-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.mapboxgl-popup-content {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 10px 10px 15px;
  pointer-events: auto;
  position: relative;
}

.mapboxgl-popup-anchor-top-left .mapboxgl-popup-content {
  border-top-left-radius: 0;
}

.mapboxgl-popup-anchor-top-right .mapboxgl-popup-content {
  border-top-right-radius: 0;
}

.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-content {
  border-bottom-left-radius: 0;
}

.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-content {
  border-bottom-right-radius: 0;
}

.mapboxgl-popup-track-pointer {
  display: none;
}

.mapboxgl-popup-track-pointer * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.mapboxgl-map:hover .mapboxgl-popup-track-pointer {
  display: flex;
}

.mapboxgl-map:active .mapboxgl-popup-track-pointer {
  display: none;
}

.mapboxgl-marker {
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: opacity 0.2s;
  will-change: transform;
}

.mapboxgl-user-location-dot, .mapboxgl-user-location-dot:before {
  background-color: #1da1f2;
  border-radius: 50%;
  height: 15px;
  width: 15px;
}

.mapboxgl-user-location-dot:before {
  animation: mapboxgl-user-location-dot-pulse 2s infinite;
  content: "";
  position: absolute;
}

.mapboxgl-user-location-dot:after {
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
  content: "";
  height: 19px;
  left: -2px;
  position: absolute;
  top: -2px;
  width: 19px;
}

.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading {
  height: 0;
  width: 0;
}

.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after,
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before {
  border-bottom: 7.5px solid #4aa1eb;
  content: "";
  position: absolute;
}

.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before {
  border-left: 7.5px solid transparent;
  transform: translateY(-28px) skewY(-20deg);
}

.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after {
  border-right: 7.5px solid transparent;
  transform: translate(7.5px, -28px) skewY(20deg);
}

@keyframes mapboxgl-user-location-dot-pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(3);
  }
  to {
    opacity: 0;
    transform: scale(1);
  }
}

.mapboxgl-user-location-dot-stale {
  background-color: #aaa;
}

.mapboxgl-user-location-dot-stale:after {
  display: none;
}

.mapboxgl-user-location-accuracy-circle {
  background-color: rgba(29,161,242,0.2);
  border-radius: 100%;
  height: 1px;
  width: 1px;
}

.mapboxgl-crosshair,
.mapboxgl-crosshair .mapboxgl-interactive,
.mapboxgl-crosshair .mapboxgl-interactive:active {
  cursor: crosshair;
}

.mapboxgl-boxzoom {
  background: #fff;
  border: 2px dotted #202020;
  height: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 0;
}

@media print {
  .mapbox-improve-map {
    display: none;
  }
}

.mapboxgl-scroll-zoom-blocker, .mapboxgl-touch-pan-blocker {
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Helvetica,
    Arial,
    sans-serif;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 0;
  transition: opacity 0.75s ease-in-out;
  transition-delay: 1s;
  width: 100%;
}

.mapboxgl-scroll-zoom-blocker-show, .mapboxgl-touch-pan-blocker-show {
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
}

.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page,
.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page
  .mapboxgl-canvas {
  touch-action: pan-x pan-y;
}

.mapboxgl-ctrl-group:not(:empty) {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, .3);
}

.map_export-button {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 482.5 482.5%22 width%3D%2220%22 height%3D%2220%22 fill%3D%22%23333333%22%3E  %3Cg%3E    %3Cpath d%3D%22M399.25%2C98.9h-12.4V71.3c0-39.3-32-71.3-71.3-71.3h-149.7c-39.3%2C0-71.3%2C32-71.3%2C71.3v27.6h-11.3      c-39.3%2C0-71.3%2C32-71.3%2C71.3v115c0%2C39.3%2C32%2C71.3%2C71.3%2C71.3h11.2v90.4c0%2C19.6%2C16%2C35.6%2C35.6%2C35.6h221.1c19.6%2C0%2C35.6-16%2C35.6-35.6      v-90.4h12.5c39.3%2C0%2C71.3-32%2C71.3-71.3v-115C470.55%2C130.9%2C438.55%2C98.9%2C399.25%2C98.9z M121.45%2C71.3c0-24.4%2C19.9-44.3%2C44.3-44.3h149.6      c24.4%2C0%2C44.3%2C19.9%2C44.3%2C44.3v27.6h-238.2V71.3z M359.75%2C447.1c0%2C4.7-3.9%2C8.6-8.6%2C8.6h-221.1c-4.7%2C0-8.6-3.9-8.6-8.6V298h238.3      V447.1z M443.55%2C285.3c0%2C24.4-19.9%2C44.3-44.3%2C44.3h-12.4V298h17.8c7.5%2C0%2C13.5-6%2C13.5-13.5s-6-13.5-13.5-13.5h-330      c-7.5%2C0-13.5%2C6-13.5%2C13.5s6%2C13.5%2C13.5%2C13.5h19.9v31.6h-11.3c-24.4%2C0-44.3-19.9-44.3-44.3v-115c0-24.4%2C19.9-44.3%2C44.3-44.3h316      c24.4%2C0%2C44.3%2C19.9%2C44.3%2C44.3V285.3z%22%2F%3E    %3Cpath d%3D%22M154.15%2C364.4h171.9c7.5%2C0%2C13.5-6%2C13.5-13.5s-6-13.5-13.5-13.5h-171.9c-7.5%2C0-13.5%2C6-13.5%2C13.5S146.75%2C364.4%2C154.15%2C364.4z%22%2F%3E    %3Cpath d%3D%22M327.15%2C392.6h-172c-7.5%2C0-13.5%2C6-13.5%2C13.5s6%2C13.5%2C13.5%2C13.5h171.9c7.5%2C0%2C13.5-6%2C13.5-13.5S334.55%2C392.6%2C327.15%2C392.6z%22%2F%3E    %3Cpath d%3D%22M398.95%2C151.9h-27.4c-7.5%2C0-13.5%2C6-13.5%2C13.5s6%2C13.5%2C13.5%2C13.5h27.4c7.5%2C0%2C13.5-6%2C13.5-13.5S406.45%2C151.9%2C398.95%2C151.9z%22%2F%3E  %3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center center;
}

.map_legend {
  padding: 1em;
  max-width: 30em;
}

.map_legend-items {
  display: flex;
  flex-direction: column;
  gap: .5em;
}

.map_legend-item {
  display: flex;
  align-items: center;
  gap: .5em;
}

.map_legend-item_toggler {
  width: 1em;
  height: 1em;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  background: transparent;
  color: #fff;
  border: 1px solid #9a9a9a;
  border-radius: 50%;
  opacity: .5;
  cursor: pointer;
  transition: opacity 100ms ease;
  box-sizing: border-box;
  flex-shrink: 0;
}

.map_legend-item_toggler--on {
  background: currentColor;
  opacity: 1;
  border: none;
}

.map_legend-item_toggler:focus {
  outline: none;
}

.map_legend-item_toggler:hover {
  opacity: 1;
}

.map_pointercoords {
  /* координаты можно скопировать если потянуть карту до контрола
  * и тем самым зафиксировать координаты на время перемещения мышки
  * до текста с координатами */
  pointer-events: all;
  cursor: pointer;
  font-family: monospace;
  font-size: 80%;
  margin: 0 0 10px 10px;
  padding: 0 .25em;
  line-height: 1.4;
  color: #333;
  background-color: rgba(255, 255, 255, .5);
  border-radius: .2em;
  text-shadow:
    -1px -1px 1px #fff,
    1px -1px 1px #fff,
    -1px 1px 1px #fff,
    1px 1px 1px #fff;
}

.map_pointercoords:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.popup {
  max-height: 7.5em;
  max-width: 10em;
  overflow: auto;
  --scrollbar-width: .5em;
}

.popup-link {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  cursor: pointer;
}

.popup-text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popup-text--bold {
  font-weight: bold;
}

.popup-spinner {
  margin: .4em;
  --color: #bbbbbb;
}

.map_ruler--on {
  background-color: #ffffb5;
}

.map_search {
  width: 30em;
  height: 3em;
}

.map_search-input {
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-size: 1.2em;
  padding: .5em;
  border-radius: .25em;
  transition: border 150ms ease;
  border: 1px solid transparent;
  box-shadow: none;
  outline: none;
  font-family: 'Roboto';
  font-weight: 400;
  color: #444;
}

.map_search-input:focus {
  border: 1px solid rgba(240, 240, 245, 1);
}

.map_search-input[placeholder] {
  text-overflow: ellipsis;
}

.map_search-icon {
  position: absolute;
  right: 0;
  width: 1em;
  height: 1em;
  margin-right: .5em;
  top: 50%;
  transform: translateY(-50%);
  opacity: .5;
  outline: none;
  padding: 0;
  border: none;
  color: #000;
  background: none;
  font-family: inherit;
  font-size: 1.2em;
  line-height: 1;
  white-space: nowrap;
  border-radius: 50%;
}

.map_search-icon::-webkit-focus-inner {
  border: 0;
  padding: 0;
}

.map_search-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.map_search-icon--found::before,
.map_search-icon--notfound::before,
.map_search-icon--idle::before {
  font-family: 'fontello';
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  transition: content 200ms ease;
}

.map_search-icon--idle::before {
  content: "\e804";
  content: var(--fontello-search);
}

.map_search-icon--found::before {
  content: "\e806";
  content: var(--fontello-ok);
  color: green;
}

.map_search-icon--notfound::before {
  content: "\e807";
  content: var(--fontello-cancel);
  color: red;
}

.map_search-icon--loading::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -.5em;
  margin-left: -.5em;
  width: 1em;
  height: 1em;
  border: .2em solid;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  animation: map_search_spinner-spin 1s ease infinite;
}

@keyframes map_search_spinner-spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

.month {
  width: 13em;
  font-weight: 400;
  color: #555;
}

.month-name {
  text-transform: uppercase;
}

.month-name,
.month-weekday_name,
.month-day { text-align: center; }

.month-weekday_names, .month-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: .875em;
}

.month-weekday_names {
  margin: .5em 0;
  color: #ccc;
}

.month-day {
  padding: .45em 0;
}

.month-day--highlight {
  color: #ccc;
}

.month-day--interactive {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Pannellum 2.5.6, https://github.com/mpetroff/pannellum */

.pnlm-container {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  cursor: default;
  width: 100%;
  height: 100%;
  font-family: Helvetica, "Nimbus Sans L", "Liberation Sans", Arial, sans-serif;
  background: #f4f4f4 url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2267%22%20height%3D%22100%22%20viewBox%3D%220%200%2067%20100%22%3E%0A%3Cpath%20stroke%3D%22%23ccc%22%20fill%3D%22none%22%20d%3D%22M33.5%2C50%2C0%2C63%2C33.5%2C75%2C67%2C63%2C33.5%2C50m-33.5-50%2C67%2C25m-0.5%2C0%2C0%2C75m-66.5-75%2C67-25m-33.5%2C75%2C0%2C25m0-100%2C0%2C50%22%2F%3E%0A%3C%2Fsvg%3E%0A') repeat;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  outline: 0;
  line-height: 1.4;
  contain: content
}

.pnlm-container * {
  box-sizing: content-box
}

.pnlm-ui {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1
}

.pnlm-grab {
  cursor: grab;
  cursor: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2226%22%20width%3D%2226%22%3E%0A%3Cpath%20stroke%3D%22%23000%22%20stroke-width%3D%221px%22%20fill%3D%22%23fff%22%20d%3D%22m15.3%2020.5s6.38-6.73%204.64-8.24-3.47%201.01-3.47%201.01%203.61-5.72%201.41-6.49c-2.2-0.769-3.33%204.36-3.33%204.36s0.873-5.76-1.06-5.76-1.58%205.39-1.58%205.39-0.574-4.59-2.18-4.12c-1.61%200.468-0.572%205.51-0.572%205.51s-1.58-4.89-2.93-3.79c-1.35%201.11%200.258%205.25%200.572%206.62%200.836%202.43%202.03%202.94%202.17%205.55%22%2F%3E%0A%3C%2Fsvg%3E%0A') 12 8, default
}

.pnlm-grabbing {
  cursor: grabbing;
  cursor: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2226%22%20width%3D%2226%22%3E%0A%3Cpath%20stroke%3D%22%23000%22%20stroke-width%3D%221px%22%20fill%3D%22%23fff%22%20d%3D%22m15.3%2020.5s5.07-5.29%203.77-6.74c-1.31-1.45-2.53%200.14-2.53%200.14s2.74-3.29%200.535-4.06c-2.2-0.769-2.52%201.3-2.52%201.3s0.81-2.13-1.12-2.13-1.52%201.77-1.52%201.77-0.261-1.59-1.87-1.12c-1.61%200.468-0.874%202.17-0.874%202.17s-0.651-1.55-2-0.445c-1.35%201.11-0.68%202.25-0.365%203.62%200.836%202.43%202.03%202.94%202.17%205.55%22%2F%3E%0A%3C%2Fsvg%3E%0A') 12 8, default
}

.pnlm-sprite {
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2226%22%20height%3D%22208%22%3E%0A%3Ccircle%20fill-opacity%3D%22.78%22%20cy%3D%22117%22%20cx%3D%2213%22%20r%3D%2211%22%20fill%3D%22%23fff%22%2F%3E%0A%3Ccircle%20fill-opacity%3D%22.78%22%20cy%3D%22143%22%20cx%3D%2213%22%20r%3D%2211%22%20fill%3D%22%23fff%22%2F%3E%0A%3Ccircle%20cy%3D%22169%22%20cx%3D%2213%22%20r%3D%227%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%2F%3E%0A%3Ccircle%20cy%3D%22195%22%20cx%3D%2213%22%20r%3D%227%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%2F%3E%0A%3Ccircle%20cx%3D%2213%22%20cy%3D%22195%22%20r%3D%222.5%22%2F%3E%0A%3Cpath%20d%3D%22m5%2083v6h2v-4h4v-2zm10%200v2h4v4h2v-6zm-5%205v6h6v-6zm-5%205v6h6v-2h-4v-4zm14%200v4h-4v2h6v-6z%22%2F%3E%0A%3Cpath%20d%3D%22m13%20110a7%207%200%200%200%20-7%207%207%207%200%200%200%207%207%207%207%200%200%200%207%20-7%207%207%200%200%200%20-7%20-7zm-1%203h2v2h-2zm0%203h2v5h-2z%22%2F%3E%0A%3Cpath%20d%3D%22m5%2057v6h2v-4h4v-2zm10%200v2h4v4h2v-6zm-10%2010v6h6v-2h-4v-4zm14%200v4h-4v2h6v-6z%22%2F%3E%0A%3Cpath%20d%3D%22m17%2038v2h-8v-2z%22%2F%3E%0A%3Cpath%20d%3D%22m12%209v3h-3v2h3v3h2v-3h3v-2h-3v-3z%22%2F%3E%0A%3Cpath%20d%3D%22m13%20136-6.125%206.125h4.375v7.875h3.5v-7.875h4.375z%22%2F%3E%0A%3Cpath%20d%3D%22m10.428%20173.33v-5.77l5-2.89v5.77zm1-1.73%203-1.73-3.001-1.74z%22%2F%3E%0A%3C%2Fsvg%3E%0A')
}

.pnlm-container:fullscreen {
  height: 100% !important;
  width: 100% !important;
  position: static !important
}

.pnlm-render-container {
  cursor: inherit;
  position: absolute;
  height: 100%;
  width: 100%
}

.pnlm-controls {
  margin-top: 4px;
  background-color: #fff;
  border: 1px solid #999;
  border-color: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  cursor: pointer;
  z-index: 2;
  transform: translateZ(9999px)
}

.pnlm-control:hover {
  background-color: #f8f8f8
}

.pnlm-controls-container {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 1
}

.pnlm-zoom-controls {
  width: 26px;
  height: 52px
}

.pnlm-zoom-in {
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  border-radius: 3px 3px 0 0
}

.pnlm-zoom-out {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  background-position: 0 -26px;
  border-top: 1px solid #ddd;
  border-top-color: rgba(0, 0, 0, 0.10);
  border-radius: 0 0 3px 3px
}

.pnlm-fullscreen-toggle-button,
.pnlm-orientation-button,
.pnlm-hot-spot-debug-indicator {
  width: 26px;
  height: 26px
}

.pnlm-hot-spot-debug-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 13px;
  display: none
}

.pnlm-orientation-button-inactive {
  background-position: 0 -156px
}

.pnlm-orientation-button-active {
  background-position: 0 -182px
}

.pnlm-fullscreen-toggle-button-inactive {
  background-position: 0 -52px
}

.pnlm-fullscreen-toggle-button-active {
  background-position: 0 -78px
}

.pnlm-panorama-info {
  position: absolute;
  bottom: 4px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0 3px 3px 0;
  padding-right: 10px;
  color: #fff;
  text-align: left;
  display: none;
  z-index: 2;
  transform: translateZ(9999px)
}

.pnlm-title-box {
  position: relative;
  font-size: 20px;
  display: table;
  padding-left: 5px;
  margin-bottom: 3px
}

.pnlm-author-box {
  position: relative;
  font-size: 12px;
  display: table;
  padding-left: 5px
}

.pnlm-load-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 150px;
  margin: -75px 0 0 -100px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  text-align: center;
  font-size: 20px;
  display: none;
  color: #fff
}

.pnlm-load-box p {
  margin: 20px 0
}

.pnlm-lbox {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  display: none
}

.pnlm-loading {
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-name: pnlm-mv;
  -webkit-animation-name: pnlm-mv;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  height: 10px;
  width: 10px;
  background-color: #fff;
  position: relative
}

@keyframes pnlm-mv {
  from {
    left: 0;
    top: 0
  }

  25% {
    left: 10px;
    top: 0
  }

  50% {
    left: 10px;
    top: 10px
  }

  75% {
    left: 0;
    top: 10px
  }

  to {
    left: 0;
    top: 0
  }
}

.pnlm-load-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 100px;
  margin: -50px 0 0 -100px;
  background-color: rgba(0, 0, 0, .7);
  border-radius: 3px;
  text-align: center;
  font-size: 20px;
  display: table;
  color: #fff;
  cursor: pointer
}

.pnlm-load-button:hover {
  background-color: rgba(0, 0, 0, .8)
}

.pnlm-load-button p {
  display: table-cell;
  vertical-align: middle
}

.pnlm-info-box {
  font-size: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 150px;
  margin: -75px 0 0 -100px;
  background-color: #000;
  border-radius: 3px;
  display: table;
  text-align: center;
  color: #fff;
  table-layout: fixed
}

.pnlm-info-box a,
.pnlm-author-box a {
  color: #fff;
  word-wrap: break-word;
  word-wrap: break-word
}

.pnlm-info-box p {
  display: table-cell;
  vertical-align: middle;
  padding: 0 5px 0 5px
}

.pnlm-error-msg {
  display: none
}

.pnlm-about-msg {
  font-size: 11px;
  line-height: 11px;
  color: #fff;
  padding: 5px 8px 5px 8px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  position: absolute;
  top: 50px;
  left: 50px;
  display: none;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  z-index: 1
}

.pnlm-about-msg a:link,
.pnlm-about-msg a:visited {
  color: #fff
}

.pnlm-about-msg a:hover,
.pnlm-about-msg a:active {
  color: #eee
}

.pnlm-hotspot-base {
  position: absolute;
  visibility: hidden;
  cursor: default;
  vertical-align: middle;
  top: 0;
  z-index: 1
}

.pnlm-hotspot {
  height: 26px;
  width: 26px;
  border-radius: 13px
}

.pnlm-hotspot:hover {
  background-color: rgba(255, 255, 255, 0.2)
}

.pnlm-hotspot.pnlm-info {
  background-position: 0 -104px
}

.pnlm-hotspot.pnlm-scene {
  background-position: 0 -130px
}

div.pnlm-tooltip span {
  visibility: hidden;
  position: absolute;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  max-width: 200px;
  padding: 5px 10px;
  margin-left: -220px;
  cursor: default
}

div.pnlm-tooltip:hover span {
  visibility: visible
}

div.pnlm-tooltip:hover span:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
  bottom: -20px;
  left: -10px;
  margin: 0 50%
}

.pnlm-compass {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 4px;
  bottom: 4px;
  border-radius: 25px;
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2250%22%20width%3D%2250%22%3E%0A%3Cpath%20d%3D%22m24.5078%206-3.2578%2018h7.5l-3.25781-18h-0.984376zm-3.2578%2020%203.2578%2018h0.9844l3.2578-18h-7.5zm1.19531%200.9941h5.10938l-2.5547%2014.1075-2.5547-14.1075z%22%2F%3E%0A%3C%2Fsvg%3E%0A');
  cursor: default;
  display: none
}

.pnlm-world {
  position: absolute;
  left: 50%;
  top: 50%
}

.pnlm-face {
  position: absolute;
  transform-origin: 0 0
}

.pnlm-dragfix,
.pnlm-preview-img {
  position: absolute;
  height: 100%;
  width: 100%
}

.pnlm-preview-img {
  background-size: cover;
  background-position: center
}

.pnlm-lbar {
  width: 150px;
  margin: 0 auto;
  border: #fff 1px solid;
  height: 6px
}

.pnlm-lbar-fill {
  background: #fff;
  height: 100%;
  width: 0
}

.pnlm-lmsg {
  font-size: 12px
}

.pnlm-fade-img {
  position: absolute;
  top: 0;
  left: 0
}

.pnlm-pointer {
  cursor: pointer
}

.panorama {
  position: relative;
  background-color: hsla(0, 0%, 0%, 0.1);
}

.panorama-marzipano {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.panorama-close {
  position: absolute;
  z-index: 100;
  width: 2em;
  height: 2em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 0;
  margin: .5em;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  cursor: pointer;
  background: url('../../assets/close_285f7213.svg') no-repeat center/100%;
}

.panorama-date {
  position: absolute;
  z-index: 100;
  bottom: 0;
  left: 0;
  font-family: monospace;
  font-size: calc(12px * .8); /* размер как в map_pointercoords.css */
  margin: 0 0 10px 10px;
  padding: 0 .25em;
  line-height: 1.4;
  color: #333;
  background-color: rgba(255, 255, 255, .5);
  border-radius: .2em;
  text-shadow:
    -1px -1px 1px #fff,
    1px -1px 1px #fff,
    -1px 1px 1px #fff,
    1px 1px 1px #fff;
}

.passport {
  display: grid;
  grid-template-areas:
    'fields media'
    'coordsheet media'
    'edit media'
    'hr media'
    'ctl media'
    'attachments media'
    '. media';
  align-items: start;
  grid-template-columns: 2fr min-content;
  grid-template-rows: repeat(6, min-content);
  overflow: auto;
  padding: 1em;
}

.passport-fields {
  grid-area: fields;
}

.passport_fields {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2em;
       column-gap: 2em;
}

.passport_fields-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: calc(
    (100% / 2)
    - (1em * 2)
  );
  width: calc(
    (100% / var(--passport_fields_columns, 2))
    - (1em * var(--passport_fields_columns, 2))
  );
  width: calc(
    calc(100% / 2)
    - calc(1em * 2)
  );
  width: calc(
    calc(100% / var(--passport_fields_columns, 2))
    - calc(1em * var(--passport_fields_columns, 2))
  );
  min-width: 20em;
}

.passport_fields-group {
  margin-top: .5em;
  padding-bottom: .5em;
  border-bottom: 1px solid #eee;
}

.passport_fields-group_header {
  padding: .5em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.passport_fields-group_header--clickable {
  cursor: pointer;
}

.passport_fields-group_name {
  font-size: 1.125em;
  font-weight: 400;
}

.passport_fields-group_toggle {
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='9' viewBox='0 0 16 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.05351 0.348053C1.82721 0.12508 1.52161 0 1.20315 0C0.884678 0 0.57908 0.12508 0.352777 0.348053C0.241047 0.457544 0.152317 0.588056 0.0917528 0.731992C0.0311886 0.875928 2.27997e-08 1.03041 2.27997e-08 1.18646C2.27997e-08 1.3425 0.0311886 1.49699 0.0917528 1.64092C0.152317 1.78486 0.241047 1.91537 0.352777 2.02486L7.14876 8.6525C7.37558 8.87516 7.68138 9 8 9C8.31862 9 8.62442 8.87516 8.85124 8.6525L15.6472 2.02486C15.759 1.91537 15.8477 1.78486 15.9082 1.64092C15.9688 1.49699 16 1.3425 16 1.18646C16 1.03041 15.9688 0.875928 15.9082 0.731992C15.8477 0.588056 15.759 0.457544 15.6472 0.348053C15.4209 0.12508 15.1153 0 14.7969 0C14.4784 0 14.1728 0.12508 13.9465 0.348053L7.99739 5.78341L2.05351 0.348053Z' fill='%23555555'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1em .5625em;
  width: 1em;
  height: .5625em;
  transition: transform 200ms ease;
  margin-right: .5em;
}

.passport_fields-group_toggle--active {
  transform: rotate(180deg);
}

.passport_fields-group_fields {
  display: flex;
  flex-direction: column;
}

.passport-coordsheet {
  grid-area: coordsheet;
  margin-top: 1em;
  display: flex;
  flex-direction: column;
}

.passport-coordsheet_name {
  font-weight: 400;
  margin-bottom: .2em;
}

.passport-coordsheet_sheet {
  max-width: 40em;
  width: 100%;
}

/* stylelint-disable-next-line geonomix/unused-classes */

.app--role_anon .passport-coordsheet {
  display: none;
}

.passport-media {
  grid-area: media;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: 1em;
}

.passport-media_item {
  width: 10em;
  height: 6em;
  margin: .125em;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ccc;
  overflow: hidden;
  position: relative;
}

.passport-media_item--image {
  background-image: var(--media-url);
}

.passport-media_item--video {
  position: relative;
}

.passport-media_item--video::before {
  content: '';
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin-top: -.5em;
  margin-left: -.5em;
  border-radius: 50%;
  font-size: 300%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 128 1536 1536%22%3E  %3Cpath d%3D%22M1184 896q0 37-32 55l-544 320q-15 9-32 9-16 0-32-8-32-19-32-56v-640q0-37 32-56 33-18 64 1l544 320q32 18 32 55zm128 0q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zm224 0q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z%22 %2F%3E%3C%2Fsvg%3E");
  opacity: .6;
  filter: invert(100%);
}

.passport-media_item_video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.passport-media_item_meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .125em;
  background-color: rgba(0, 0, 0, .5);
  color: #fff;
  font-size: 80%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.passport-edit_panel {
  grid-area: edit;
  display: flex;
  position: sticky;
  bottom: -1em;
  padding: 1em 0;
  background-color: white;
}

.passport-edit_hr {
  grid-area: hr;
  border: 0;
  margin: 1px 0;
  height: 0;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.passport-edit_button {
  border-radius: .2em;
  margin: 0 .5em 0 0;
  border: none;
  background-color: #ddd;
  padding: 0 .5em;
  line-height: 2;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.passport-edit_button:focus {
  outline: none;
}

.passport-edit_button--edit {
  color: #fff;
  background-color: #0af;
}

.passport-edit_button--save {
  color: #fff;
  background-color: #0af;
}

.passport-edit_button--cancel {
  color: inherit;
  background-color: #ddd;
}

.passport-edit_button--delete {
  color: inherit;
  background-color: #ddd;
}

.passport-attachments {
  grid-area: attachments;
  -moz-column-width: 14em;
       column-width: 14em;
}

.passport-attachment {
  width: 100%;
  box-sizing: border-box;
  display: inline-grid;
  grid-template-areas: 'btn name';
  grid-template-columns: 2em 1fr;
  line-height: 2;
  align-items: center;
}

.passport-attachment--uploaded:hover {
  background-color: #d2d2d2;
}

.passport-attachment_upload_cancel {
  grid-area: btn;
  border: none;
  cursor: pointer;
  height: 1em;
  width: 1em;
  font-size: inherit;
  padding: 0;
  margin: 0;
  font-family: inherit;
  justify-self: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 128 1536 1536%22%3E  %3Cpath d%3D%22M1097 1079l-146 146q-10 10-23 10t-23-10l-137-137-137 137q-10 10-23 10t-23-10l-146-146q-10-10-10-23t10-23l137-137-137-137q-10-10-10-23t10-23l146-146q10-10 23-10t23 10l137 137 137-137q10-10 23-10t23 10l146 146q10 10 10 23t-10 23l-137 137 137 137q10 10 10 23t-10 23zm215-183q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zm224 0q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z%22 %2F%3E%3C%2Fsvg%3E");
  opacity: .7;
}

.passport-attachment_upload_cancel:focus {
  outline: none;
}

.passport-attachment_upload_cancel:hover {
  opacity: 1;
}

.passport-attachment_check {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  height: 1em;
  width: 1em;
  justify-self: center;
}

.passport-attachment_check:focus {
  outline: none;
}

.passport-attachment_name {
  grid-area: name;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: inherit;
  padding-right: .5em;
}

/* need separate rule for z-index because of bug:
  first attachment in second column is not clickable when it has z-index
  so link is not working.
  Uploading filename is not clikable anyway */

.passport-attachment--uploading .passport-attachment_name {
  z-index: 100;
}

.passport-attachment_progress {
  grid-area: name;
  background-color: #d2d2d2;
  height: 1px;
  margin-top: 1em;
  position: relative;
}

.passport-attachment_progress::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background-color: #0af;
  width: calc(var(--progress) * 100%);
  transition: width 100ms ease;
  border-radius: 1em;
}

.passport-attachments_ctl {
  grid-area: ctl;
  padding-bottom: .5em;
}

.passport-attachments_upload {
  border-radius: .2em;
  margin: 2em .5em 0 0;
  border: none;
  background: #0af;
  padding: 0 .5em;
  line-height: 2;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  width: -moz-min-content;
  width: min-content;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.passport-attachments_upload:focus {
  outline: none;
}

.passport-attachments_delete,
.passport-attachments_download_arch {
  display: inline-block;
  margin: .5em .5em 0 0;
  border-radius: .2em;
  border: none;
  background: #ddd;
  padding: 0 .5em;
  line-height: 2;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
  color: inherit;
  white-space: nowrap;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.passport-attachments_selected_count {
  display: inline-block;
  font-family: monospace;
  background-color: #0af;
  font-size: 80%;
  line-height: 1.5;
  padding: 0 .25em;
  min-width: 1.5em;
  box-sizing: border-box;
  border-radius: 1em;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

.passport-crs {
  line-height: 2;
  width: 100%;
  max-width: 40em;
  font-family: inherit;
  font-size: inherit;
}

.passport-crs_option {
  font-family: inherit;
  font-weight: inherit;
}

.passport-crs_option--original {
  font-weight: bold;
}

.passport_field {
  box-sizing: border-box;
  padding: .5em 0;
  width: 100%;
}

.passport_field-name {
  display: block;
  font-weight: 400;
  margin-bottom: .2em;
}

.passport_field-value {
  box-sizing: border-box;
  width: 100%;
  font-weight: 300;
  color: inherit;
  white-space: pre-wrap;
  word-break: break-word;
}

.passport_field-value:empty::before {
  content: '- нет данных -';
  font-size: 80%;
  color: #888;
}

.passport_field-value--geometry {
  height: 5em;
}

.passport_field-value--related,
.passport_field-value--hasgeom {
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer;
  color: #5a6ec1;
}

.passport_field-value--related:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.passport_field-suggest_items {
  overflow-y: auto;
  max-height: 15em;
}

.passport_field-suggest_item {
  padding: .5em;
  cursor: pointer;
  font-weight: 300;
  color: #000;
}

.passport_field-suggest_item:hover {
  background-color: #eee;
}

.passport_field-suggest_item:empty {
  display: none;
}

.passport_field-suggest_clear {
  cursor: pointer;
  transition: opacity 200ms ease;
}

.passport_field-suggest_clear:hover {
  opacity: .6;
}

.gx_input--checkbox {
  width: auto;
}

.scale_control {
  line-height: 1.4;
  background-color: rgba(255, 255, 255, .5);
  text-shadow:
    -1px -1px 1px #fff,
    1px -1px 1px #fff,
    -1px 1px 1px #fff,
    1px 1px 1px #fff;
  font-size: 80%;
  border-width: medium 2px 2px;
  border-style: none solid;
  border-color: #555;
  color: #333;
  box-sizing: border-box;
  margin: 0 10px 10px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.scale_control-separator {
  margin: 0;
  width: 100%;
  border-top: solid 2px;
  border-color: inherit;
  position: relative;
}

.scale_control-separator::before {
  content: '';
  height: .75em;
  position: absolute;
  left: 50%;
  bottom: 0;
  border-left: 2px solid;
  border-color: inherit;
}

.scale_control-distance {
  margin: 0 .25em;
  display: block;
  text-align: right;
}

.scale_control-scale {
  margin: 0 .25em;
  display: block;
  text-align: right;
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
  pointer-events: auto;
}

.scale_control-scale:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.splitpanel_updown {
  position: relative;
  --splitpanel_updown-padding-bottom: 3em;
}

.splitpanel_updown-clip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: var(--splitpanel_updown-padding-bottom);
}

.splitpanel_updown-up {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
}

.splitpanel_updown-splitter {
  transform: translateY(-50%);
  height: 1em;
  z-index: 100;
  width: 100%;
  position: absolute;
  cursor: row-resize;
}

.splitpanel_updown-down {
  position: absolute;
  overflow: hidden;
  bottom: calc(-1 * var(--splitpanel_updown-padding-bottom));
  left: 0;
  right: 0;
}

.splitpanel_updown-transition {
  transition: top 100ms ease, height 100ms ease;
}

.tabs {
  display: flex;
  position: relative;
  font-weight: normal;
  background: #ebecee;
  font-size: .875em;
  border-radius: .5em;
  --padding: .15em;
  --width: calc(100% / var(--tabs-count));
  padding: .15em;
  padding: var(--padding);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.tabs-tab {
  flex: 1 1 0;
  text-align: center;
  cursor: pointer;
  padding: .375em 0;
  transition: color 200ms ease;
  color: #70808e;
  z-index: 1;
  font-weight: 500;
}

.tabs-tab:hover, .tabs-tab--active {
  color: #555;
}

.tabs-underline {
  position: absolute;
  height: calc(100% - var(--padding) * 2);
  width: calc(var(--width) - var(--padding) * 2 / var(--tabs-count));
  background: #fff;
  top: var(--padding);
  transition: transform 200ms ease;
  z-index: 0;
  border-radius: .4375em;
}

.treenode {
  /* for toggler absolute pos */
  position: relative;
}

.treenode--level_2 .treenode-header {
  padding-left: calc(.8em + 1.5em);
}

.treenode--level_3 .treenode-header {
  padding-left: calc(.8em + 1.5em * 2);
}

.treenode--level_4 .treenode-header {
  padding-left: calc(.8em + 1.5em * 3);
}

.treenode-header {
  padding-left: .8em;
  padding-right: 3.5em;
  display: block;
  line-height: 3;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  border-left: .3em solid transparent;
  transition: border-color 200ms ease;
}

.treenode-header--selected,
.treenode-header:hover {
  background: #207d64;
  background: var(--theme-admterr-highlight);
}

.treenode-header--selected {
  border-color: #2ca88c;
  border-color: var(--theme-admterr-highlight-gutter);
}

.treenode-toggler {
  position: absolute;
  right: 1em;
  top: .5em;
  width: 2em;
  height: 2em;
  opacity: .5;
  outline: none;
  margin: 0;
  padding: 0;
  border: none;
  color: inherit;
  background: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 50%;
}

.treenode-toggler:hover {
  opacity: 1;
  background-color: rgba(255,255,255, .1);
}

.treenode-toggler::-webkit-focus-inner {
  border: 0;
  padding: 0;
}

.treenode-toggler::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.treenode-toggler--expander::before,
.treenode-toggler--collapser::before {
  content: "\e80d";
  content: var(--fontello-right_open_big);
  font-family: 'fontello';
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  transition: transform 200ms ease;
}

.treenode-toggler--expander::before {
  transform: rotate(0deg);
}

.treenode-toggler--collapser::before {
  transform: rotate(90deg);
}

.treenode-toggler--loading::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -.5em;
  margin-left: -.5em;
  width: 1em;
  height: 1em;
  border: .2em solid;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  transform-origin: center center;
  transform: rotate(700000deg);
  transition: transform 1000000ms linear;
}
