@charset "UTF-8";
/* НАСЫЩЕННОСТЬ|ЯРКОСТЬ VIOLET */
/* НАСЫЩЕННОСТЬ|ЯРКОСТЬ ORANGE */
/* НАСЫЩЕННОСТЬ|ЯРКОСТЬ RED */
/* НАСЫЩЕННОСТЬ|ЯРКОСТЬ GREEN */
/* НАСЫЩЕННОСТЬ|ЯРКОСТЬ ORANGE */
/* ОТСТУПЫ ДЛЯ ТАБЛИЦ */
label.checkbox {
  display: inline-block;
  width: 18px;
  height: 18px;
  position: relative;
  vertical-align: middle;
  border: 2px solid #A3AEF5;
  background-color: #FFF;
  border-radius: 8px;
}
label.checkbox:has(> input:hover) {
  border: 2px solid #7686EF;
}
label.checkbox:has(> input:checked) {
  background-image: url("icons/checkbox.svg");
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #102089;
}
label.checkbox:has(> input:checked:hover) {
  background-image: url("icons/checkbox_hover.svg");
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #2B43E3;
}
label.checkbox > input {
  opacity: 0;
  position: absolute;
}

label.radio {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  border-radius: 100%;
  vertical-align: middle;
  border: 2px solid #A3AEF5;
  background-color: #FFF;
}
label.radio:has(> input:hover) {
  border: 2px solid #7686EF;
}
label.radio:has(> input:checked) {
  background-image: url("icons/radio.svg");
  background-size: 21px;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #102089;
}
label.radio:has(> input:checked:hover) {
  background-image: url("icons/radio_hover.svg");
  background-size: 21px;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #2B43E3;
}
label.radio > input {
  opacity: 0;
  position: absolute;
}

/* ———————————————————————————————————— */
input[type=radio] {
  appearance: none;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  background-color: #FFF;
  border-radius: 100%;
  border: 1px solid #D1D7FA;
}
input[type=radio]:hover {
  border: 2px solid #7686EF;
}
input[type=radio]:checked {
  background-image: url("icons/radio.svg");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #102089;
}
input[type=radio]:checked:hover {
  background-image: url("icons/radio_hover.svg");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #2B43E3;
}

/* ———————————————————————————————————— */
input[type=text], input[type=password], input[type=number], textarea {
  appearance: none;
  box-sizing: border-box;
  padding: 10px 8px 10px 16px;
  color: #050B2E;
  background-color: #FFF;
  border-radius: 8px;
  border: 2px solid #D1D7FA;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
}
input[type=text]:hover, input[type=text]:focus, input[type=password]:hover, input[type=password]:focus, input[type=number]:hover, input[type=number]:focus, textarea:hover, textarea:focus {
  border-color: #7686EF;
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input:disabled:hover, input:disabled:focus {
  border-color: #D1D7FA;
}

/* ———————————————————————————————————— */
input[type=button], input[type=submit], button {
  appearance: none;
  padding: 10px 24px;
  border-radius: 12px;
  box-sizing: border-box;
  background-color: #2B43E3;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
}
input[type=button]:hover, input[type=submit]:hover, button:hover {
  background-color: #7686EF;
  color: #FFF;
}
input[type=button]:active, input[type=submit]:active, button:active {
  background-color: #102089;
  color: #FFF;
}
input[type=button]:disabled, input[type=submit]:disabled, button:disabled {
  pointer-events: none;
  opacity: 0.4;
}

.disabled > button {
  pointer-events: none;
  opacity: 0.4;
}

input[type=date] {
  width: calc(100% - 24px);
  display: block;
  border: 2px solid #D1D7FA;
  border-radius: 8px;
  padding: 2px 4px 2px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #050B2E;
  min-height: 36px;
  background-color: #FFF;
}
input[type=date]::placeholder {
  font-size: 0;
}
input[type=date]:focus {
  border-color: #7686EF;
}
input[type=date]::-webkit-calendar-picker-indicator {
  background-image: url("icons/calendar.svg");
  padding: 6px;
  background-size: 24px;
  width: 24px;
  height: 24px;
}
input[type=date]::-webkit-calendar-picker-indicator:hover {
  background-color: #E8EBFC;
  border-radius: 16px;
}
input[type=date] .datetime-calendar-button {
  background-image: url("icons/calendar.svg");
  padding: 6px;
  background-size: 24px;
  width: 24px;
  height: 24px;
}
input[type=date] .datetime-calendar-button:hover {
  background-color: #E8EBFC;
  border-radius: 16px;
}

/* ————————————INTERFACE TABLE STYLE——— */
table {
  border-radius: 16px;
  overflow: hidden;
  border-collapse: collapse;
}
table > thead {
  background-color: #E8EBFC;
}
table > thead * {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #050B2E;
  text-align: center;
}
table > thead > tr > td, table > thead > tr th {
  height: 64px;
  padding: 8px 12px;
}
table > thead > tr > td:first-of-type, table > thead > tr th:first-of-type {
  padding-left: 24px;
}
table > thead > tr > td:last-of-type, table > thead > tr th:last-of-type {
  padding-right: 24px;
}
table > thead > tr > td > a, table > thead > tr th > a {
  display: block;
  padding: 8px 40px 8px 16px;
  height: calc(100% - 8px * 2);
  border-radius: 16px;
}
table > thead > tr > td > a.asc, table > thead > tr th > a.asc {
  background-color: #D1D7FA;
}
table > thead > tr > td > a.desc, table > thead > tr th > a.desc {
  background-color: #D1D7FA;
}
table > thead > tr > td > a:hover, table > thead > tr th > a:hover {
  background-color: #A3AEF5;
}
table > tbody {
  background-color: #FFF;
}
table > tbody tr:nth-of-type(2n) {
  transition: 0s;
  background-color: #F5F7FF;
}
table > tbody tr > td {
  padding: 16px 12px;
}
table > tbody tr > td:first-of-type {
  padding-left: 24px;
}
table > tbody tr > td:last-of-type {
  padding-right: 24px;
}

/* ———————————————————————————————————— */
select {
  padding: 10px 48px 10px 12px;
  border-radius: 8px;
  border: 2px solid #D1D7FA;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #050B2E;
  background-color: white;
  background-size: 24px;
  background-position: right 12px center;
  background-repeat: no-repeat;
}
select:hover, select:focus {
  border-color: #7686EF;
}

/* ———————————————————————————————————— */
h5:has(+ input),
h5:has(+ label),
h5:has(+ select),
h5:has(+ div.input-char-counter),
h5:has(+ div.textarea-char-counter) {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #292D31;
  margin-bottom: 5px;
}

/* ———————————————————————————————————— */
label.switcher {
  width: 40px;
  height: 24px;
  cursor: pointer;
  display: inline-block;
  line-height: 24px;
  vertical-align: middle;
  /*width: calc(100% - 40px);*/
  position: relative;
  user-select: none;
}
label.switcher > span {
  display: inline-block;
  line-height: 24px;
  vertical-align: middle;
}
label.switcher > input {
  opacity: 0;
  position: absolute;
  height: 0;
  padding: 0;
  margin: 0;
}
label.switcher > input + span {
  width: 40px;
  height: 24px;
  padding: 0;
  border-radius: 20px;
  vertical-align: middle;
  position: absolute;
  right: 0;
  transition: 0.25s;
}
label.switcher > input + span:before {
  transition: 250ms;
  content: " ";
  display: block;
  position: absolute;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: #FFF;
}
label.switcher > input:not(:checked) + span {
  background-color: #7B7F9D;
}
label.switcher > input:not(:checked) + span:before {
  left: 4px;
}
label.switcher > input:checked + span {
  background-color: #00C036;
}
label.switcher > input:checked + span:before {
  left: 20px;
}
label.switcher > input[type=radio]:not(:checked) + span {
  background-color: #7B7F9D;
}
label.switcher > input[type=radio]:not(:checked) + span:before {
  left: 4px;
}
label.switcher > input[type=radio]:checked + span {
  background-color: #00C036;
}
label.switcher > input[type=radio]:checked + span:before {
  left: 20px;
}

/* ———————————————————————————————————— */
div.input-char-counter {
  position: relative;
}
div.input-char-counter > div {
  position: absolute;
  bottom: -10px;
  right: 4px;
  background-color: white;
  padding: 2px 4px;
  text-align: right;
  font-size: 11px;
  color: #A9AAB0;
}
div.input-char-counter > div > span.o {
  color: #FF7200;
}
div.input-char-counter > div > span.r {
  color: #E13A3A;
}

/* ———————————————————————————————————— */
div.textarea-char-counter {
  position: relative;
}
div.textarea-char-counter > textarea {
  resize: none;
  display: block;
  width: 100%;
  height: 400px;
  font-size: 16px;
  line-height: 20px;
  position: relative;
}
div.textarea-char-counter > a.btn-clear {
  position: absolute;
  top: 10px;
  right: 10px;
}
div.textarea-char-counter > div {
  position: absolute;
  bottom: -10px;
  right: 4px;
  background-color: white;
  padding: 2px 4px;
  text-align: right;
  font-size: 11px;
  color: #A9AAB0;
}
div.textarea-char-counter > div > span.o {
  color: #FF7200;
}
div.textarea-char-counter > div > span.r {
  color: #E13A3A;
}

/* ———————————————————————————————————— */
div[class^=btns-actions] {
  position: relative;
  display: flex;
  box-sizing: border-box;
  background-color: #FFF;
  border-radius: 12px;
}
div[class^=btns-actions] > a {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #FFF;
  border-radius: 0;
  position: relative;
  box-sizing: border-box;
  border-color: #D1D7FA;
  border-style: solid;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 2px;
  border-bottom-width: 2px;
}
div[class^=btns-actions] > a:hover {
  border-color: #7686EF;
  background-color: #E8EBFC;
}
div[class^=btns-actions] > a:active {
  border-color: #7686EF;
  background-color: #7686EF;
}
div[class^=btns-actions] > a:first-child {
  border-radius: 12px 0 0 12px;
  border-left-width: 2px;
}
div[class^=btns-actions] > a:last-child {
  border-radius: 0 12px 12px 0;
  border-right-width: 2px;
}
div[class^=btns-actions] > a:only-child {
  border-radius: 12px;
  border-width: 2px;
}

/* ———————————————————————————————————— */
a[class^=btn-], button[class^=btn-] {
  box-sizing: border-box;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #FFF;
  border: 2px solid #D1D7FA;
  border-radius: 12px;
  padding: 0;
}
a[class^=btn-]:hover, button[class^=btn-]:hover {
  border-color: #7686EF;
  background-color: #E8EBFC;
}
a[class^=btn-]:active, button[class^=btn-]:active {
  border-color: #7686EF;
  background-color: #7686EF;
}
a[class^=btn-][class$=delete], button[class^=btn-][class$=delete] {
  background-image: url("icons/trash.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
a[class^=btn-][class$=delete-red], button[class^=btn-][class$=delete-red] {
  background-image: url("icons/trash_red.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
a[class^=btn-][class$=new-message], button[class^=btn-][class$=new-message] {
  background-image: url("icons/message.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
a[class^=btn-][class$=read-message], button[class^=btn-][class$=read-message] {
  background-image: url("icons/read_message.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
a[class^=btn-][class$=settings], button[class^=btn-][class$=settings] {
  background-image: url("icons/settings.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
a[class^=btn-][class$=edit], button[class^=btn-][class$=edit] {
  background-image: url("icons/edit.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
a[class^=btn-][class$=view], button[class^=btn-][class$=view] {
  background-image: url("icons/details.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
a[class^=btn-][class$=view2], button[class^=btn-][class$=view2] {
  background-image: url("icons/eye.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
a[class^=btn-][class$=clear], button[class^=btn-][class$=clear] {
  background-image: url("icons/wash.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
a[class^=btn-][class$=history], button[class^=btn-][class$=history] {
  background-image: url("icons/history.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
a[class^=btn-][class$=check], button[class^=btn-][class$=check] {
  background-image: url("icons/start_check.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
a[class^=btn-][class$=stop-check], button[class^=btn-][class$=stop-check] {
  background-image: url("icons/stop_check.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
a[class^=btn-][class$=update-group], button[class^=btn-][class$=update-group] {
  background-image: url("icons/update_group.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
a[class^=btn-][class$=more_details], button[class^=btn-][class$=more_details] {
  background-image: url("icons/more_details.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ———————————————————————————————————— */
dialog.message {
  margin: auto;
  border-radius: 16px;
  max-width: 500px;
  min-width: 350px;
}
dialog.message > div {
  padding: 24px 32px 16px 32px;
  position: relative;
}
dialog.message > div > h1 {
  margin-bottom: 16px;
}
dialog.message > div > div {
  margin-bottom: 20px;
}
dialog.message > div > p {
  text-align: center;
}
dialog.message > div > p button + button {
  margin-left: 10px;
}

/* ———————————————————————————————————— */
div#dialog {
  display: none;
}
div#dialog:has(dialog) {
  display: block;
}
div#dialog > dialog {
  margin: auto;
  border-radius: 16px;
  max-width: 500px;
  min-width: 350px;
}
div#dialog > dialog > div.container {
  padding: 24px 32px 16px 32px;
  position: relative;
}
div#dialog > dialog > div.container > a.close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  padding: 8px;
  background-image: url("icons/clear.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
}
div#dialog > dialog > div.container > a.close:hover {
  background-color: #E8EBFC;
}
div#dialog > dialog > div.container > a.close:active {
  background-color: #D1D7FA;
}
div#dialog > dialog > div.container > p:first-of-type {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #050B2E;
  margin-right: 32px;
}
div#dialog > dialog > div.container > p:first-of-type + * {
  margin-top: 14px;
}
div#dialog > dialog > div.container > div.buttons {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
}
div#dialog > dialog > div.container > div.buttons > a {
  display: inline-block;
  padding: 10px 12px;
  min-width: 150px;
  border-radius: 12px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #050B2E;
}
div#dialog > dialog > div.container > div.buttons > a:hover {
  background-color: #E8EBFC;
}
div#dialog > dialog > div.container > div.buttons > a:active {
  background-color: #7686EF;
}
div#dialog > dialog > div.container > div.buttons > a.green, div#dialog > dialog > div.container > div.buttons > a.good {
  background-color: #2B43E3;
  color: #FFF;
}
div#dialog > dialog > div.container > div.buttons > a.green:hover, div#dialog > dialog > div.container > div.buttons > a.good:hover {
  background-color: #7686EF;
  color: #FFF;
}
div#dialog > dialog > div.container > div.buttons > a.green:active, div#dialog > dialog > div.container > div.buttons > a.good:active {
  background-color: #102089;
  color: #FFF;
}
div#dialog > dialog > div.container > div.buttons > a.red, div#dialog > dialog > div.container > div.buttons > a.bad {
  background-color: #E13A3A;
  color: #FFF;
}
div#dialog > dialog > div.container > div.buttons > a.red:hover, div#dialog > dialog > div.container > div.buttons > a.bad:hover {
  background-color: #ef7676;
  color: #FFF;
}
div#dialog > dialog > div.container > div.buttons > a.red:active, div#dialog > dialog > div.container > div.buttons > a.bad:active {
  background-color: #891010;
  color: #FFF;
}
div#dialog > dialog > div.container > div.buttons > a + a {
  margin-left: 18px;
}

/* ———————————————————————————————————— */
div#snackbars {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
}
div#snackbars > div {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
  max-width: 360px;
  min-width: 120px;
  padding: 10px 16px;
  margin: 0 auto;
  border-radius: 16px;
  background-color: #102089;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
}
div#snackbars > div.error {
  background-color: #891010;
  color: #FFF;
}
div#snackbars > div.warning {
  background-color: #FF7200;
  color: #FFF;
}
div#snackbars > div > a.close {
  background-image: url("icons/clear_white.svg");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 7px;
  right: 7px;
}

/* ———————————————————————————————————— */
a.faq {
  cursor: help;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("icons/tooltip.svg");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}
a.faq:hover {
  background-image: url("icons/tooltip_dark.svg");
}

a.faq-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  cursor: help;
  text-decoration: dashed underline #2B43E3;
  color: #2B43E3;
}
a.faq-text:hover {
  color: #7686EF;
}
a.faq-text:active {
  color: #102089;
}

/* ———————————————————————————————————— */
div.cookie {
  max-width: 500px;
  padding: 20px 40px 20px 95px;
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: #FFF;
}
div.cookie > h2 {
  margin-bottom: 14px;
}
div.cookie > p {
  font-weight: 400;
  margin-bottom: 6px;
}
div.cookie > a {
  color: #2B43E3;
  margin-right: 10px;
}
div.cookie > a:hover {
  color: #7686EF;
}
div.cookie > a:active {
  color: #102089;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  grid-template-areas: "header" "main" "footer";
  color: #292D31;
}
body h5:has(+ input),
body h5:has(+ label),
body h5:has(+ select),
body h5:has(+ div.input-char-counter),
body h5:has(+ div.textarea-char-counter) {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #292D31;
  margin-bottom: 5px;
}
body:has(> div#main > div#filters.show) {
  overflow: hidden;
}
body > div#header {
  grid-area: header;
}
body > div#main {
  margin-top: 60px;
  margin-bottom: 24px;
  grid-area: main;
  /* НАСЫЩЕННОСТЬ|ЯРКОСТЬ VIOLET */
  /* НАСЫЩЕННОСТЬ|ЯРКОСТЬ ORANGE */
  /* НАСЫЩЕННОСТЬ|ЯРКОСТЬ RED */
  /* НАСЫЩЕННОСТЬ|ЯРКОСТЬ GREEN */
  /* НАСЫЩЕННОСТЬ|ЯРКОСТЬ ORANGE */
  /* ОТСТУПЫ ДЛЯ ТАБЛИЦ */
  /* НАСЫЩЕННОСТЬ|ЯРКОСТЬ VIOLET */
  /* НАСЫЩЕННОСТЬ|ЯРКОСТЬ ORANGE */
  /* НАСЫЩЕННОСТЬ|ЯРКОСТЬ RED */
  /* НАСЫЩЕННОСТЬ|ЯРКОСТЬ GREEN */
  /* НАСЫЩЕННОСТЬ|ЯРКОСТЬ ORANGE */
  /* ОТСТУПЫ ДЛЯ ТАБЛИЦ */
  /* НАСЫЩЕННОСТЬ|ЯРКОСТЬ VIOLET */
  /* НАСЫЩЕННОСТЬ|ЯРКОСТЬ ORANGE */
  /* НАСЫЩЕННОСТЬ|ЯРКОСТЬ RED */
  /* НАСЫЩЕННОСТЬ|ЯРКОСТЬ GREEN */
  /* НАСЫЩЕННОСТЬ|ЯРКОСТЬ ORANGE */
  /* ОТСТУПЫ ДЛЯ ТАБЛИЦ */
}
body > div#main:has(div#content:empty) {
  min-height: 1080px;
}
body > div#main > div#menu {
  margin-bottom: 40px;
  margin-left: 88px;
  margin-right: 88px;
}
body > div#main > div#menu > div.titled {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #050B2E;
  display: inline-block;
  padding: 0 24px 12px 0;
  margin-bottom: 20px;
}
body > div#main > div#menu > div.titled:empty {
  display: none;
}
body > div#main > div#menu > div.titled > a.faq {
  margin-left: 10px;
}
body > div#main > div#menu > div.units {
  position: relative;
  box-shadow: inset 0 -2px #D1D7FA;
  padding: 0 16px;
  margin-bottom: 20px;
  display: inline-block;
}
body > div#main > div#menu > div.units:empty {
  display: none;
}
body > div#main > div#menu > div.units > a:not(.faq) {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #3C4475;
  padding: 0 24px 12px 24px;
  display: inline-block;
  cursor: pointer;
  width: 202px;
  text-align: center;
}
body > div#main > div#menu > div.units > a:not(.faq).act {
  color: #050B2E;
  transition: 0.25s ease-out;
}
body > div#main > div#menu > div.units > a:not(.faq).naturals.act ~ span.slider {
  transform: translateX(0px);
  transition: 0.25s ease-out;
}
body > div#main > div#menu > div.units > a:not(.faq).legals.act ~ span.slider {
  transform: translateX(100%);
  transition: 0.25s ease-out;
}
body > div#main > div#menu > div.units > a.faq {
  position: absolute;
  right: -16px;
}
body > div#main > div#menu > div.units > span.slider {
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 250px;
  height: 2px;
  background-color: #FF7200;
}
body > div#main > div#menu > div.units.block1 > a.naturals.act ~ span.slider {
  transform: translateX(0px);
}
body > div#main > div#menu > div.units.block1 > a.legals.act ~ span.slider {
  transform: translateX(0px);
}
body > div#main > div#menu > div.elements-on-page {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body > div#main > div#menu > div.elements-on-page > div.buttons {
  background-color: #FFF;
  display: inline-block;
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a {
  display: inline-block;
  padding: 8px 16px 8px 48px;
  border: 2px solid #D1D7FA;
  border-radius: 12px;
  background-size: 24px;
  background-position: left 16px center;
  background-repeat: no-repeat;
  vertical-align: middle;
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a:hover {
  color: #102089;
  border-color: #7686EF;
  background-color: #E8EBFC;
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a:active {
  color: #102089;
  border-color: #7686EF;
  background-color: #7686EF;
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a::after {
  content: attr(title);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #102089;
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a + a {
  margin-left: 24px;
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.back {
  background-image: url("icons/array_left.svg");
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.import {
  background-image: url("icons/import.svg");
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.groups-profiles {
  background-image: url("icons/groups.svg");
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.history {
  background-image: url("icons/clock.svg");
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.clear {
  background-image: url("icons/wash.svg");
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.add-profile {
  background-image: url("icons/message.svg");
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.money-credit {
  background-image: url("icons/wallet.svg");
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.add {
  border: 2px solid #E16500;
  background-color: #FF7200;
  background-image: url("icons/add-white.svg");
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.add::after {
  color: #FFF;
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.add:hover {
  color: #FFF;
  border-color: #FF9E50;
  background-color: #FF9E50;
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.add:active {
  color: #FFF;
  border-color: #EB6A00;
  background-color: #EB6A00;
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.filters {
  background-image: url("icons/filter.svg");
  display: inline-flex;
  align-items: center;
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.filters.used {
  background-image: url("icons/filter_used.svg");
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.setting {
  background-image: url("icons/settings.svg");
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.settings-role {
  background-image: url("icons/settings.svg");
}
body > div#main > div#menu > div.elements-on-page > div.buttons > a.assign-owner {
  background-image: url("icons/assign_owner.svg");
}
body > div#main > div#menu > div.elements-on-page > div.sort {
  display: none;
  float: right;
  position: relative;
}
body > div#main > div#menu > div.elements-on-page > div.sort > p {
  background-color: #F5F7FF;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  font-weight: 600;
  background-image: url("icons/array_small_down.svg");
  background-size: 20px;
  background-position: right 6px center;
  background-repeat: no-repeat;
}
body > div#main > div#menu > div.elements-on-page > div.sort > p:has(+ ul.open) {
  background-image: url("icons/array_small_up.svg");
  background-size: 20px;
  background-position: right 6px center;
  background-repeat: no-repeat;
}
body > div#main > div#menu > div.elements-on-page > div.sort > p > * {
  min-width: 130px;
  padding: 10px 32px 10px 32px;
  color: #102089;
  display: inline-block;
}
body > div#main > div#menu > div.elements-on-page > div.sort > p > *.desc {
  background-image: url("icons/array_up.svg");
  background-size: 20px;
  background-position: left 9px center;
  background-repeat: no-repeat;
}
body > div#main > div#menu > div.elements-on-page > div.sort > p > *.asc {
  background-image: url("icons/array_down.svg");
  background-size: 20px;
  background-position: left 9px center;
  background-repeat: no-repeat;
}
body > div#main > div#menu > div.elements-on-page > div.sort > ul {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  line-height: 21px;
  background: #FFF;
  display: none;
  list-style-type: none;
  position: absolute;
  z-index: 2;
  margin-top: 4px;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(118, 134, 239, 0.22);
}
body > div#main > div#menu > div.elements-on-page > div.sort > ul.open {
  display: block;
}
body > div#main > div#menu > div.elements-on-page > div.sort > ul > li > * {
  display: block;
  height: 20px;
  padding: 10px 32px 10px 32px;
}
body > div#main > div#menu > div.elements-on-page > div.sort > ul > li > *.desc {
  background-image: url("icons/array_up.svg");
  background-size: 20px;
  background-position: left 9px center;
  background-repeat: no-repeat;
}
body > div#main > div#menu > div.elements-on-page > div.sort > ul > li > *.asc {
  background-image: url("icons/array_down.svg");
  background-size: 20px;
  background-position: left 9px center;
  background-repeat: no-repeat;
}
body > div#main > div#filters {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
body > div#main > div#filters.show {
  display: block;
  z-index: 100;
}
body > div#main > div#filters > form {
  background-color: #FFF;
  width: 580px;
  height: 100%;
  position: relative;
  overflow: hidden;
  animation-name: abc;
  animation-duration: 0.2s;
}
@keyframes abc {
  from {
    right: 580px;
  }
  to {
    right: 0;
  }
}
body > div#main > div#filters > form > div.content {
  position: absolute;
  top: 0;
  bottom: 80px;
  left: 0;
  min-width: 500px;
  padding: 16px 40px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1;
}
body > div#main > div#filters > form > div.content > h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.5px;
  color: #050B2E;
  position: relative;
  background-color: #FFF;
}
body > div#main > div#filters > form > div.content > h2 > a {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-image: url("icons/clear.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
}
body > div#main > div#filters > form > div.content > h2 > a:hover {
  background-color: #E8EBFC;
}
body > div#main > div#filters > form > div.content > h2 > a:active {
  background-color: #D1D7FA;
}
body > div#main > div#filters > form > div.content > div.enum {
  user-select: none;
}
body > div#main > div#filters > form > div.content > div.enum > label {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  min-width: 44px;
  text-align: center;
  display: inline-block;
  color: #050B2E;
  border: 2px solid #D1D7FA;
  border-radius: 16px;
  background-color: #FFF;
}
body > div#main > div#filters > form > div.content > div.enum > label:hover {
  color: #050B2E;
  border-color: #7686EF;
  background-color: #E8EBFC;
}
body > div#main > div#filters > form > div.content > div.enum > label:active {
  color: #050B2E;
  border-color: #7686EF;
  background-color: #7686EF;
}
body > div#main > div#filters > form > div.content > div.enum > label:has(input:checked) {
  color: #FFF;
  border-color: #102089;
  background-color: #102089;
}
body > div#main > div#filters > form > div.content > div.enum > label:not(body > div#main > div#filters > form > div.content > div.enum > label:last-child) {
  margin-right: 8px;
}
body > div#main > div#filters > form > div.content > div.enum > label > input {
  display: none;
}
body > div#main > div#filters > form > div.content > div.list > p {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
body > div#main > div#filters > form > div.content > div.list > p > span {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #292D31;
  flex: auto;
}
body > div#main > div#filters > form > div.content > div.list > p > a {
  flex: none;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 12px;
}
body > div#main > div#filters > form > div.content > div.list > p > a:first-of-type {
  color: #102089;
  margin-right: 12px;
}
body > div#main > div#filters > form > div.content > div.list > p > a:last-of-type {
  background-color: #F5F6F8;
  color: #A9AAB0;
}
body > div#main > div#filters > form > div.content > div.list > p > a:hover {
  background-color: #E8EBFC;
  color: #102089;
}
body > div#main > div#filters > form > div.content > div.list > p > a:active {
  background-color: #7686EF;
  color: #102089;
}
body > div#main > div#filters > form > div.content > div.list > div.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
}
body > div#main > div#filters > form > div.content > div.list > div.options > label {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: #3C4475;
  user-select: none;
}
body > div#main > div#filters > form > div.content > div.list > div.options > label > input {
  margin-right: 8px;
  vertical-align: middle;
}
body > div#main > div#filters > form > div.content > div.list > div.options > label > label.checkbox {
  margin-left: 12px;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect {
  position: relative;
  user-select: none;
  border-radius: 4px;
  background-color: #fff;
  margin: 0;
  padding: 0;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect > input[type=search] {
  display: block;
  width: 100%;
  padding: 10px 10px 10px 46px;
  margin-bottom: 6px;
  border-radius: 16px;
  border: 2px solid #E8EBFC;
  background-image: url("icons/trackable24.svg");
  background-size: 24px;
  background-position: left 12px center;
  background-repeat: no-repeat;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect > input[type=search]:hover, body > div#main > div#filters > form > div.content > div.list > div.multiselect > input[type=search]:focus {
  border-color: #7686EF;
  caret-color: #2B43E3;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect > input[type=search]::-webkit-search-cancel-button {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 12px;
  padding: 6px;
  margin-left: 6px;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect > input[type=search]::-webkit-search-cancel-button:hover {
  background-color: #E8EBFC;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect > input[type=search]::-webkit-search-cancel-button:active {
  background-color: #D1D7FA;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect input[type=search].opened + p {
  border-color: #7686EF;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect input[type=search].opened + p:after {
  transform: rotate(180deg);
  transition-property: transform;
  transition-duration: 300ms;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect > p {
  padding: 10px 46px 10px 10px;
  border-radius: 16px;
  border: 2px solid #E8EBFC;
  margin-bottom: 8px;
  position: relative;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect > p:after {
  content: "";
  background-image: url("icons/array_small_down.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(0);
  transition-property: transform;
  transition-duration: 300ms;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect > a {
  display: none;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect > ul {
  display: none;
  margin-top: 2px;
  max-height: 500px;
  overscroll-behavior: none;
  background: white;
  border: 1px solid #E8EBFC;
  padding: 0;
  overflow: auto;
  border-radius: 8px;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect > ul > li {
  line-height: 20px;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect > ul > li > label {
  padding: 10px 0 10px 12px;
  cursor: pointer;
  display: block;
  white-space: pre-wrap;
  word-wrap: break-word;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect > ul > li > label > span {
  margin-left: 12px;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect > ul > li:hover {
  background-color: #E8EBFC;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect > ul > li:active {
  background-color: #7686EF;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect.opened > a:not(body > div#main > div#filters > form > div.content > div.list > div.multiselect.opened > a.search) {
  background-image: url("icons/arrow_black_top.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect.opened > ul {
  display: block;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect:focus {
  outline: none;
}
body > div#main > div#filters > form > div.content > div.list > div.multiselect:focus-within {
  outline: none;
}
body > div#main > div#filters > form > p.actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 0;
  padding: 16px 40px 24px 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 4px rgba(118, 134, 239, 0.07);
}
body > div#main > div#filters > form > p.actions > input {
  padding: 10px 16px;
  border-radius: 12px;
  flex-grow: 1;
}
body > div#main > div#filters > form > p.actions > input:first-of-type {
  background-color: #2B43E3;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main > div#filters > form > p.actions > input:first-of-type:hover {
  background-color: #7686EF;
  color: #FFF;
}
body > div#main > div#filters > form > p.actions > input:first-of-type:active {
  background-color: #102089;
  color: #FFF;
}
body > div#main > div#filters > form > p.actions > input:last-of-type {
  background-color: #FFF;
  color: #3C4475;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main > div#filters > form > p.actions > input:last-of-type:hover {
  background-color: #E8EBFC;
  color: #3C4475;
}
body > div#main > div#filters > form > p.actions > input:last-of-type:active {
  background-color: #7686EF;
  color: #3C4475;
}
body > div#main > div#content {
  margin-left: 88px;
  margin-right: 88px;
}
body > div#main > div#content:empty {
  height: 100%;
}
body > div#main > div#content > div.updater.top {
  margin-bottom: 32px;
}
body > div#main > div#content > div.updater.top:empty {
  display: none;
}
body > div#main > div#content > div.updater.bottom {
  margin-top: 16px;
}
body > div#main > div#content > div.updater.bottom:empty {
  display: none;
}
body > div#main > div#content > div.updater > div.on_page {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  z-index: 1;
}
body > div#main > div#content > div.updater > div.on_page > button {
  cursor: pointer;
  display: block;
  min-width: 80px;
  padding: 10px 36px 10px 16px;
  border-radius: 12px;
  background-color: #F5F7FF;
  background-image: url("icons/array_small_down.svg");
  background-size: 24px;
  background-position: right 8px center;
  background-repeat: no-repeat;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #102089;
}
body > div#main > div#content > div.updater > div.on_page > button:has(+ div.show) {
  background-image: url("icons/array_small_up.svg");
  background-size: 24px;
  background-position: right 8px center;
  background-repeat: no-repeat;
}
body > div#main > div#content > div.updater > div.on_page > div {
  display: none;
  text-align: center;
  box-shadow: 0 4px 32px rgba(118, 134, 239, 0.22);
  min-width: 80px;
  position: absolute;
  margin-top: 10px;
}
body > div#main > div#content > div.updater > div.on_page > div.show {
  display: block;
}
body > div#main > div#content > div.updater > div.on_page > div > a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding: 10px 26px 10px 26px;
  background-color: #FFF;
  color: #102089;
}
body > div#main > div#content > div.updater > div.on_page > div > a:hover {
  background-color: #E8EBFC;
}
body > div#main > div#content > div.updater > span {
  margin-left: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  cursor: default;
  vertical-align: middle;
}
body > div#main > div#content > div.updater > p.pages {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #3C4475;
  display: inline-block;
  vertical-align: middle;
  margin-left: 24px;
}
body > div#main > div#content > div.updater > p.pages > a {
  padding: 0 6px;
  margin: 0 8px;
  cursor: pointer;
}
body > div#main > div#content > div.updater > p.pages > a.active {
  color: #050B2E;
  box-shadow: 0 2px #FF7200;
}
body > div#main > div#content > div.empty {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 20px;
  background-color: #F5F7FF;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #050B2E;
  text-align: center;
  border-radius: 24px;
  border: 2px dashed #D1D7FA;
}
body > div#main > div#content > div.empty > a {
  display: inline-block;
  padding: 8px 16px 8px 42px;
  border: 2px solid #E16500;
  border-radius: 12px;
  background-image: url("icons/add-white.svg");
  background-size: 24px;
  background-position: left 8px center;
  background-repeat: no-repeat;
  vertical-align: middle;
  background-color: #FF7200;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #FFF;
}
body > div#main > div#content > div.empty > a:hover {
  color: #FFF;
  border-color: #FF9E50;
  background-color: #FF9E50;
}
body > div#main > div#content > div.empty > a:active {
  color: #FFF;
  border-color: #EB6A00;
  background-color: #EB6A00;
}
body > div#main.legals > div#filters > form > div.content, body > div#main.naturals > div#filters > form > div.content {
  display: grid;
  grid-template-columns: 236px 28px 236px;
  grid-template-rows: min-content min-content min-content min-content min-content min-content auto;
  grid-template-areas: "header header header" "name name name" "inn . snils" "dc dash de" "params params params" "list list list" ". . .";
}
body > div#main.legals > div#filters > form > div.content > *, body > div#main.naturals > div#filters > form > div.content > * {
  margin-bottom: 16px;
}
body > div#main.legals > div#filters > form > div.content > h2, body > div#main.naturals > div#filters > form > div.content > h2 {
  grid-area: header;
}
body > div#main.legals > div#filters > form > div.content > span, body > div#main.naturals > div#filters > form > div.content > span {
  margin-top: 47px;
  text-align: center;
}
body > div#main.legals > div#filters > form > div.content > label > p, body > div#main.naturals > div#filters > form > div.content > label > p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
body > div#main.legals > div#filters > form > div.content > label > input, body > div#main.naturals > div#filters > form > div.content > label > input {
  width: 100%;
}
body > div#main.legals > div#filters > form > div.content > label > input[type=date], body > div#main.naturals > div#filters > form > div.content > label > input[type=date] {
  width: calc(100% - 24px);
}
body > div#main.legals > div#filters > form > div.content > label.name, body > div#main.naturals > div#filters > form > div.content > label.name {
  grid-area: name;
}
body > div#main.legals > div#filters > form > div.content > div.enum, body > div#main.naturals > div#filters > form > div.content > div.enum {
  grid-area: params;
}
body > div#main.legals > div#filters > form > div.content > div.enum > p, body > div#main.naturals > div#filters > form > div.content > div.enum > p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
body > div#main.legals > div#filters > form > div.content > div.enum > p:nth-of-type(2), body > div#main.naturals > div#filters > form > div.content > div.enum > p:nth-of-type(2) {
  margin-top: 16px;
}
body > div#main.legals > div#filters > form > div.content > div.list, body > div#main.naturals > div#filters > form > div.content > div.list {
  grid-area: list;
}
body > div#main.legals > div#content > div.updater.top, body > div#main.naturals > div#content > div.updater.top {
  margin-bottom: 16px;
}
body > div#main.legals > div#content > div.massActions, body > div#main.naturals > div#content > div.massActions {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 0 24px 10px 24px;
}
body > div#main.legals > div#content > div.massActions ~ div.massActions, body > div#main.naturals > div#content > div.massActions ~ div.massActions {
  margin-top: 10px;
}
body > div#main.legals > div#content > div.massActions > label.radio, body > div#main.naturals > div#content > div.massActions > label.radio {
  margin-right: 18px;
}
body > div#main.legals > div#content > div.massActions > span, body > div#main.naturals > div#content > div.massActions > span {
  display: inline-block;
  min-width: 100px;
  margin-right: 12px;
}
body > div#main.legals > div#content > div.massActions > div.actions, body > div#main.naturals > div#content > div.massActions > div.actions {
  display: inline-block;
  vertical-align: middle;
}
body > div#main.legals > div#content > div.massActions > div.actions > button, body > div#main.naturals > div#content > div.massActions > div.actions > button {
  margin-right: 12px;
}
body > div#main.legals > div#content > div.massActions > div.actions > button:last-child, body > div#main.naturals > div#content > div.massActions > div.actions > button:last-child {
  margin-right: 0;
}
body > div#main.legals > div#content > div.list, body > div#main.naturals > div#content > div.list {
  display: grid;
  grid-template-areas: "select id timecr subject comment group message history check delete";
  grid-template-columns: min-content min-content min-content auto auto auto min-content min-content min-content min-content;
  grid-template-rows: 80px;
  grid-auto-rows: auto;
}
body > div#main.legals > div#content > div.list > div, body > div#main.naturals > div#content > div.list > div {
  display: grid;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
  grid-column: 1/11;
  padding: 8px 24px;
}
body > div#main.legals > div#content > div.list > div:nth-child(odd), body > div#main.naturals > div#content > div.list > div:nth-child(odd) {
  background-color: #E8EBFC;
}
body > div#main.legals > div#content > div.list > div:first-of-type, body > div#main.naturals > div#content > div.list > div:first-of-type {
  border-radius: 16px 16px 0 0;
}
body > div#main.legals > div#content > div.list > div:last-of-type, body > div#main.naturals > div#content > div.list > div:last-of-type {
  border-radius: 0 0 16px 16px;
}
body > div#main.legals > div#content > div.list > div.header, body > div#main.naturals > div#content > div.list > div.header {
  font-weight: 600;
}
body > div#main.legals > div#content > div.list > div.header > div a, body > div#main.naturals > div#content > div.list > div.header > div a {
  padding: 8px 0 8px 16px;
  border-radius: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
body > div#main.legals > div#content > div.list > div.header > div a > p, body > div#main.naturals > div#content > div.list > div.header > div a > p {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: min-content;
}
body > div#main.legals > div#content > div.list > div.header > div a.asc, body > div#main.legals > div#content > div.list > div.header > div a.desc, body > div#main.naturals > div#content > div.list > div.header > div a.asc, body > div#main.naturals > div#content > div.list > div.header > div a.desc {
  background-color: #D1D7FA;
}
body > div#main.legals > div#content > div.list > div.header > div.timecr, body > div#main.legals > div#content > div.list > div.header > div.subject, body > div#main.naturals > div#content > div.list > div.header > div.timecr, body > div#main.naturals > div#content > div.list > div.header > div.subject {
  justify-self: stretch;
  align-self: stretch;
  position: relative;
}
body > div#main.legals > div#content > div.list > div.header > div.timecr > a > p, body > div#main.naturals > div#content > div.list > div.header > div.timecr > a > p {
  padding-right: 24px;
  width: 100px;
}
body > div#main.legals > div#content > div.list > div.header > div.timecr > a > p:after, body > div#main.naturals > div#content > div.list > div.header > div.timecr > a > p:after {
  content: "";
  background-size: 20px;
  background-position: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
}
body > div#main.legals > div#content > div.list > div.header > div.timecr > a.asc > p:after, body > div#main.naturals > div#content > div.list > div.header > div.timecr > a.asc > p:after {
  background-image: url("icons/array_down.svg");
}
body > div#main.legals > div#content > div.list > div.header > div.timecr > a.desc > p:after, body > div#main.naturals > div#content > div.list > div.header > div.timecr > a.desc > p:after {
  background-image: url("icons/array_up.svg");
}
body > div#main.legals > div#content > div.list > div.header > div.subject > a > p > span:first-child, body > div#main.naturals > div#content > div.list > div.header > div.subject > a > p > span:first-child {
  display: block;
  margin-bottom: 8px;
}
body > div#main.legals > div#content > div.list > div.header > div.subject > a > p > span:first-child:before, body > div#main.naturals > div#content > div.list > div.header > div.subject > a > p > span:first-child:before {
  content: attr(data-text);
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
body > div#main.legals > div#content > div.list > div.header > div.subject > a > p > span:first-child:after, body > div#main.naturals > div#content > div.list > div.header > div.subject > a > p > span:first-child:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: 20px;
  background-position: center;
  vertical-align: middle;
}
body > div#main.legals > div#content > div.list > div.header > div.subject > a > p > span:last-child, body > div#main.naturals > div#content > div.list > div.header > div.subject > a > p > span:last-child {
  font-weight: 400;
}
body > div#main.legals > div#content > div.list > div.header > div.subject > a.asc span:first-child:after, body > div#main.naturals > div#content > div.list > div.header > div.subject > a.asc span:first-child:after {
  background-image: url("icons/array_down.svg");
}
body > div#main.legals > div#content > div.list > div.header > div.subject > a.desc span:first-child:after, body > div#main.naturals > div#content > div.list > div.header > div.subject > a.desc span:first-child:after {
  background-image: url("icons/array_up.svg");
}
body > div#main.legals > div#content > div.list > div.header > div.message > p, body > div#main.naturals > div#content > div.list > div.header > div.message > p {
  font-weight: 400;
  margin-top: 4px;
}
body > div#main.legals > div#content > div.list > div.header > div.comment, body > div#main.legals > div#content > div.list > div.header > div.message, body > div#main.legals > div#content > div.list > div.header > div.group, body > div#main.legals > div#content > div.list > div.header > div.history, body > div#main.legals > div#content > div.list > div.header > div.check, body > div#main.legals > div#content > div.list > div.header > div.delete, body > div#main.naturals > div#content > div.list > div.header > div.comment, body > div#main.naturals > div#content > div.list > div.header > div.message, body > div#main.naturals > div#content > div.list > div.header > div.group, body > div#main.naturals > div#content > div.list > div.header > div.history, body > div#main.naturals > div#content > div.list > div.header > div.check, body > div#main.naturals > div#content > div.list > div.header > div.delete {
  text-align: center;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2), body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) {
  padding: 16px 24px 16px 24px;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.timecr, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.timecr {
  align-self: center;
  justify-self: stretch;
  padding-left: 16px;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.timecr p:first-child, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.timecr p:first-child {
  font-weight: 600;
  margin-bottom: 4px;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.subject, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.subject {
  align-self: center;
  justify-self: stretch;
  padding-left: 16px;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.subject > p.name, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.subject > p.name {
  font-weight: 600;
  margin-bottom: 4px;
  word-break: break-all;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.subject > p + p, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.subject > p + p {
  margin-top: 10px;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.subject > p > span, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.subject > p > span {
  color: #7B7F9D;
  margin-right: 12px;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.comment, body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.group, body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.message, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.comment, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.group, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.message {
  display: flex;
  justify-self: center;
  align-self: stretch;
  flex-direction: column;
  row-gap: 8px;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.comment > p, body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.group > p, body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.message > p, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.comment > p, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.group > p, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.message > p {
  display: inline-block;
  flex: 1;
  align-self: center;
  margin: 0 10px 0 0;
  overflow: hidden;
  overflow-wrap: anywhere;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.comment > div.actions, body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.group > div.actions, body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.message > div.actions, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.comment > div.actions, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.group > div.actions, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.message > div.actions {
  width: auto;
  flex: 0;
  align-self: center;
  line-height: 0;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.comment > a, body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.group > a, body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.message > a, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.comment > a, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.group > a, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.message > a {
  flex: none;
  align-self: center;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.comment > p, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.comment > p {
  word-break: break-all;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.message > p > span, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.message > p > span {
  display: block;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.message > p > span:first-child, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.message > p > span:first-child {
  font-weight: 600;
  margin-bottom: 4px;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.history, body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.check, body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.delete, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.history, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.check, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.delete {
  align-self: end;
  line-height: 0;
}
body > div#main.legals > div#content > div.list > div:nth-child(1n+2) > div.check, body > div#main.naturals > div#content > div.list > div:nth-child(1n+2) > div.check {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body > div#main.legals > div#content > div.list > div > div, body > div#main.naturals > div#content > div.list > div > div {
  justify-self: center;
  align-self: center;
}
body > div#main.legals > div#content > div.list > div > div + div, body > div#main.naturals > div#content > div.list > div > div + div {
  margin-left: 14px;
}
body > div#main.legals > div#content > div.list > div > div.select, body > div#main.naturals > div#content > div.list > div > div.select {
  grid-area: select;
  width: 20px;
}
body > div#main.legals > div#content > div.list > div > div.id, body > div#main.naturals > div#content > div.list > div > div.id {
  grid-area: id;
  width: 61px;
  text-align: center;
}
body > div#main.legals > div#content > div.list > div > div.timecr, body > div#main.naturals > div#content > div.list > div > div.timecr {
  grid-area: timecr;
  width: 156px;
}
body > div#main.legals > div#content > div.list > div > div.subject, body > div#main.naturals > div#content > div.list > div > div.subject {
  grid-area: subject;
}
body > div#main.legals > div#content > div.list > div > div.comment, body > div#main.naturals > div#content > div.list > div > div.comment {
  grid-area: comment;
  width: 156px;
}
body > div#main.legals > div#content > div.list > div > div.group, body > div#main.naturals > div#content > div.list > div > div.group {
  grid-area: group;
  width: 156px;
}
body > div#main.legals > div#content > div.list > div > div.message, body > div#main.naturals > div#content > div.list > div > div.message {
  grid-area: message;
  width: 156px;
}
body > div#main.legals > div#content > div.list > div > div.history, body > div#main.naturals > div#content > div.list > div > div.history {
  grid-area: history;
  width: 76px;
}
body > div#main.legals > div#content > div.list > div > div.check, body > div#main.naturals > div#content > div.list > div > div.check {
  grid-area: check;
  width: 115px;
}
body > div#main.legals > div#content > div.list > div > div.delete, body > div#main.naturals > div#content > div.list > div > div.delete {
  grid-area: delete;
  width: 76px;
}
body > div#main.legals > div#content > div.list > div > div.mobile-settings, body > div#main.naturals > div#content > div.list > div > div.mobile-settings {
  display: none;
}
body > div#main.legals > div#content > div.list > div > div.message, body > div#main.legals > div#content > div.list > div > div.history, body > div#main.legals > div#content > div.list > div > div.check, body > div#main.legals > div#content > div.list > div > div.delete, body > div#main.naturals > div#content > div.list > div > div.message, body > div#main.naturals > div#content > div.list > div > div.history, body > div#main.naturals > div#content > div.list > div > div.check, body > div#main.naturals > div#content > div.list > div > div.delete {
  text-align: center;
}
body > div#main.legals.new > div#content > form, body > div#main.naturals.new > div#content > form {
  max-width: 600px;
  display: grid;
  margin-bottom: 6px;
  grid-template-columns: 1fr 45px 270px;
  row-gap: 18px;
  grid-template-areas: "name name name" "inn dash snils" "comment comment comment" "group group group" "check . ." "button button button";
}
body > div#main.legals.new > div#content > form input[type=text], body > div#main.naturals.new > div#content > form input[type=text] {
  width: 100%;
}
body > div#main.legals.new > div#content > form > div, body > div#main.naturals.new > div#content > form > div {
  display: inline-block;
}
body > div#main.legals.new > div#content > form > div > h5 > a, body > div#main.naturals.new > div#content > form > div > h5 > a {
  vertical-align: top;
  line-height: 22px;
  margin-left: 6px;
}
body > div#main.legals.new > div#content > form > div > h5 > span, body > div#main.naturals.new > div#content > form > div > h5 > span {
  vertical-align: middle;
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.5px;
  color: #A9AAB0;
  margin-left: 6px;
}
body > div#main.legals.new > div#content > form > div > input, body > div#main.naturals.new > div#content > form > div > input {
  width: 100%;
}
body > div#main.legals.new > div#content > form > div > select, body > div#main.naturals.new > div#content > form > div > select {
  width: 100%;
}
body > div#main.legals.new > div#content > form > div.name, body > div#main.naturals.new > div#content > form > div.name {
  grid-area: name;
}
body > div#main.legals.new > div#content > form > div.comment, body > div#main.naturals.new > div#content > form > div.comment {
  grid-area: comment;
}
body > div#main.legals.new > div#content > form > div.comment textarea, body > div#main.naturals.new > div#content > form > div.comment textarea {
  height: 130px;
}
body > div#main.legals.new > div#content > form > div.group, body > div#main.naturals.new > div#content > form > div.group {
  grid-area: group;
}
body > div#main.legals.new > div#content > form > div.type > h5, body > div#main.naturals.new > div#content > form > div.type > h5 {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  margin-right: 12px;
}
body > div#main.legals.new > div#content > form > div.type > label.checkbox, body > div#main.naturals.new > div#content > form > div.type > label.checkbox {
  vertical-align: middle;
}
body > div#main.legals.new > div#content > form > span, body > div#main.naturals.new > div#content > form > span {
  margin-top: 45px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #A9AAB0;
}
body > div#main.legals.new > div#content > form > input[type=button], body > div#main.naturals.new > div#content > form > input[type=button] {
  grid-area: button;
}
body > div#main.legals.new > div#content > p, body > div#main.naturals.new > div#content > p {
  max-width: 600px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-align: center;
  color: #050B2E;
}
body > div#main.import > div#content p.consent {
  max-width: 800px;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-align: center;
  color: #050B2E;
}
body > div#main.import > div#content input.submit {
  max-width: 800px;
  width: 100%;
  margin-bottom: 8px;
}
body > div#main.import > div#content > form {
  max-width: 800px;
}
body > div#main.import > div#content > form.naturals > div.instruction > p.example {
  padding-bottom: 235px;
  background-image: url("icons/import/naturals.png");
  background-size: 600px;
  background-position: left -2px top 34px;
  background-repeat: no-repeat;
}
body > div#main.import > div#content > form.legals > div.instruction > p.example {
  padding-bottom: 235px;
  background-image: url("icons/import/legals.png");
  background-size: 600px;
  background-position: left -2px top 34px;
  background-repeat: no-repeat;
}
body > div#main.import > div#content > form > div.instruction {
  margin-bottom: 20px;
}
body > div#main.import > div#content > form > div.instruction div {
  margin-bottom: 14px;
}
body > div#main.import > div#content > form > div.instruction ul {
  margin-top: 6px;
  margin-left: 18px;
  margin-bottom: 6px;
  list-style: outside;
}
body > div#main.import > div#content > form > div.instruction ul > li:not(:last-of-type) {
  margin-bottom: 4px;
}
body > div#main.import > div#content > form > div.instruction a {
  vertical-align: top;
  line-height: 18px;
  margin-left: 6px;
}
body > div#main.import > div#content > form > div.instruction > p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #292D31;
  margin-bottom: 8px;
}
body > div#main.import > div#content > form > div.instruction > p:not(:first-of-type) {
  margin-top: 12px;
}
body > div#main.import > div#content > form > div.instruction > p.example {
  padding-bottom: 300px;
}
body > div#main.import > div#content > form > div.file {
  margin-bottom: 12px;
}
body > div#main.import > div#content > form > div.file > label {
  display: inline-block;
  padding: 8px 16px 8px 48px;
  border: 2px solid #D1D7FA;
  border-radius: 12px;
  user-select: none;
  cursor: pointer;
  background-image: url("icons/table.svg");
  background-size: 24px;
  background-position: left 16px center;
  background-repeat: no-repeat;
  margin-right: 8px;
}
body > div#main.import > div#content > form > div.file > label:hover {
  color: #102089;
  border-color: #7686EF;
  background-color: #E8EBFC;
}
body > div#main.import > div#content > form > div.file > label:active {
  color: #102089;
  border-color: #7686EF;
  background-color: #7686EF;
}
body > div#main.import > div#content > form > div.file > label > input[type=file] {
  display: none;
}
body > div#main.import > div#content > form > div.file > span {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main.import > div#content > form > div.file > span.unload {
  color: #E13A3A;
}
body > div#main.import > div#content > form > div.file > span.unload.load {
  color: #00C036;
}
body > div#main.import > div#content > form > div.file > p {
  max-width: 300px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  margin-top: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
}
body > div#main.import > div#content > form > div.file > p:empty {
  display: none;
}
body > div#main.import > div#content > form > input[type=button] {
  width: 100%;
  margin-bottom: 8px;
}
body > div#main.import > div#content > form > p.consent {
  width: 100%;
}
body > div#main.import > div#content p.consent:has(+ div.slc) {
  margin-bottom: 40px;
}
body > div#main.import > div#content div.tbl + input.submit {
  margin-top: 40px;
}
body > div#main.import > div#content div.slc + div.tbl {
  margin-top: 16px;
}
body > div#main.import > div#content > div.tbl {
  overflow-x: auto;
}
body > div#main.import > div#content > div.tbl > table * {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main.import > div#content > div.tbl > table td {
  position: relative;
}
body > div#main.import > div#content > div.tbl > table td:not(:last-child)::after {
  content: "";
  position: absolute;
  border-right: 1px solid #7B7F9D;
  top: 5px;
  bottom: 5px;
  right: 0;
}
body > div#main.import > div#content > div.tbl > table td.e {
  background-color: #ef7676 !important;
}
body > div#main.import > div#content > div.tbl > table tbody[contenteditable]:focus {
  outline: 0;
}
body > div#main.import > div#content > div.tbl > table > thead > tr > td {
  text-align: left;
}
body > div#main.import > div#content > div.tbl > table > thead > tr > td > select {
  text-align: left;
}
body > div#main.import > div#content > div.tbl > table > thead > tr > td > select > option {
  text-align: left;
}
body > div#main.import > div#content > div.tbl > table.c1 > tbody tr:nth-of-type(even) > td:nth-of-type(1) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c1 > tbody tr:nth-of-type(odd) > td:nth-of-type(1) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c2 > tbody tr:nth-of-type(even) > td:nth-of-type(2) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c2 > tbody tr:nth-of-type(odd) > td:nth-of-type(2) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c3 > tbody tr:nth-of-type(even) > td:nth-of-type(3) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c3 > tbody tr:nth-of-type(odd) > td:nth-of-type(3) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c4 > tbody tr:nth-of-type(even) > td:nth-of-type(4) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c4 > tbody tr:nth-of-type(odd) > td:nth-of-type(4) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c5 > tbody tr:nth-of-type(even) > td:nth-of-type(5) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c5 > tbody tr:nth-of-type(odd) > td:nth-of-type(5) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c6 > tbody tr:nth-of-type(even) > td:nth-of-type(6) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c6 > tbody tr:nth-of-type(odd) > td:nth-of-type(6) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c7 > tbody tr:nth-of-type(even) > td:nth-of-type(7) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c7 > tbody tr:nth-of-type(odd) > td:nth-of-type(7) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c8 > tbody tr:nth-of-type(even) > td:nth-of-type(8) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c8 > tbody tr:nth-of-type(odd) > td:nth-of-type(8) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c9 > tbody tr:nth-of-type(even) > td:nth-of-type(9) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c9 > tbody tr:nth-of-type(odd) > td:nth-of-type(9) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c10 > tbody tr:nth-of-type(even) > td:nth-of-type(10) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c10 > tbody tr:nth-of-type(odd) > td:nth-of-type(10) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c11 > tbody tr:nth-of-type(even) > td:nth-of-type(11) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c11 > tbody tr:nth-of-type(odd) > td:nth-of-type(11) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c12 > tbody tr:nth-of-type(even) > td:nth-of-type(12) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c12 > tbody tr:nth-of-type(odd) > td:nth-of-type(12) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c13 > tbody tr:nth-of-type(even) > td:nth-of-type(13) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c13 > tbody tr:nth-of-type(odd) > td:nth-of-type(13) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c14 > tbody tr:nth-of-type(even) > td:nth-of-type(14) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c14 > tbody tr:nth-of-type(odd) > td:nth-of-type(14) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c15 > tbody tr:nth-of-type(even) > td:nth-of-type(15) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c15 > tbody tr:nth-of-type(odd) > td:nth-of-type(15) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c16 > tbody tr:nth-of-type(even) > td:nth-of-type(16) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c16 > tbody tr:nth-of-type(odd) > td:nth-of-type(16) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c17 > tbody tr:nth-of-type(even) > td:nth-of-type(17) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c17 > tbody tr:nth-of-type(odd) > td:nth-of-type(17) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c18 > tbody tr:nth-of-type(even) > td:nth-of-type(18) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c18 > tbody tr:nth-of-type(odd) > td:nth-of-type(18) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c19 > tbody tr:nth-of-type(even) > td:nth-of-type(19) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c19 > tbody tr:nth-of-type(odd) > td:nth-of-type(19) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c20 > tbody tr:nth-of-type(even) > td:nth-of-type(20) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c20 > tbody tr:nth-of-type(odd) > td:nth-of-type(20) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c21 > tbody tr:nth-of-type(even) > td:nth-of-type(21) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c21 > tbody tr:nth-of-type(odd) > td:nth-of-type(21) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c22 > tbody tr:nth-of-type(even) > td:nth-of-type(22) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c22 > tbody tr:nth-of-type(odd) > td:nth-of-type(22) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c23 > tbody tr:nth-of-type(even) > td:nth-of-type(23) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c23 > tbody tr:nth-of-type(odd) > td:nth-of-type(23) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c24 > tbody tr:nth-of-type(even) > td:nth-of-type(24) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c24 > tbody tr:nth-of-type(odd) > td:nth-of-type(24) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c25 > tbody tr:nth-of-type(even) > td:nth-of-type(25) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c25 > tbody tr:nth-of-type(odd) > td:nth-of-type(25) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c26 > tbody tr:nth-of-type(even) > td:nth-of-type(26) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c26 > tbody tr:nth-of-type(odd) > td:nth-of-type(26) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c27 > tbody tr:nth-of-type(even) > td:nth-of-type(27) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c27 > tbody tr:nth-of-type(odd) > td:nth-of-type(27) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c28 > tbody tr:nth-of-type(even) > td:nth-of-type(28) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c28 > tbody tr:nth-of-type(odd) > td:nth-of-type(28) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c29 > tbody tr:nth-of-type(even) > td:nth-of-type(29) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c29 > tbody tr:nth-of-type(odd) > td:nth-of-type(29) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c30 > tbody tr:nth-of-type(even) > td:nth-of-type(30) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c30 > tbody tr:nth-of-type(odd) > td:nth-of-type(30) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c31 > tbody tr:nth-of-type(even) > td:nth-of-type(31) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c31 > tbody tr:nth-of-type(odd) > td:nth-of-type(31) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c32 > tbody tr:nth-of-type(even) > td:nth-of-type(32) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c32 > tbody tr:nth-of-type(odd) > td:nth-of-type(32) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c33 > tbody tr:nth-of-type(even) > td:nth-of-type(33) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c33 > tbody tr:nth-of-type(odd) > td:nth-of-type(33) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c34 > tbody tr:nth-of-type(even) > td:nth-of-type(34) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c34 > tbody tr:nth-of-type(odd) > td:nth-of-type(34) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c35 > tbody tr:nth-of-type(even) > td:nth-of-type(35) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c35 > tbody tr:nth-of-type(odd) > td:nth-of-type(35) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c36 > tbody tr:nth-of-type(even) > td:nth-of-type(36) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c36 > tbody tr:nth-of-type(odd) > td:nth-of-type(36) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c37 > tbody tr:nth-of-type(even) > td:nth-of-type(37) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c37 > tbody tr:nth-of-type(odd) > td:nth-of-type(37) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c38 > tbody tr:nth-of-type(even) > td:nth-of-type(38) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c38 > tbody tr:nth-of-type(odd) > td:nth-of-type(38) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c39 > tbody tr:nth-of-type(even) > td:nth-of-type(39) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c39 > tbody tr:nth-of-type(odd) > td:nth-of-type(39) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c40 > tbody tr:nth-of-type(even) > td:nth-of-type(40) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c40 > tbody tr:nth-of-type(odd) > td:nth-of-type(40) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c41 > tbody tr:nth-of-type(even) > td:nth-of-type(41) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c41 > tbody tr:nth-of-type(odd) > td:nth-of-type(41) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c42 > tbody tr:nth-of-type(even) > td:nth-of-type(42) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c42 > tbody tr:nth-of-type(odd) > td:nth-of-type(42) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c43 > tbody tr:nth-of-type(even) > td:nth-of-type(43) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c43 > tbody tr:nth-of-type(odd) > td:nth-of-type(43) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c44 > tbody tr:nth-of-type(even) > td:nth-of-type(44) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c44 > tbody tr:nth-of-type(odd) > td:nth-of-type(44) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c45 > tbody tr:nth-of-type(even) > td:nth-of-type(45) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c45 > tbody tr:nth-of-type(odd) > td:nth-of-type(45) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c46 > tbody tr:nth-of-type(even) > td:nth-of-type(46) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c46 > tbody tr:nth-of-type(odd) > td:nth-of-type(46) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c47 > tbody tr:nth-of-type(even) > td:nth-of-type(47) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c47 > tbody tr:nth-of-type(odd) > td:nth-of-type(47) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c48 > tbody tr:nth-of-type(even) > td:nth-of-type(48) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c48 > tbody tr:nth-of-type(odd) > td:nth-of-type(48) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c49 > tbody tr:nth-of-type(even) > td:nth-of-type(49) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c49 > tbody tr:nth-of-type(odd) > td:nth-of-type(49) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c50 > tbody tr:nth-of-type(even) > td:nth-of-type(50) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c50 > tbody tr:nth-of-type(odd) > td:nth-of-type(50) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c51 > tbody tr:nth-of-type(even) > td:nth-of-type(51) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c51 > tbody tr:nth-of-type(odd) > td:nth-of-type(51) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c52 > tbody tr:nth-of-type(even) > td:nth-of-type(52) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c52 > tbody tr:nth-of-type(odd) > td:nth-of-type(52) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c53 > tbody tr:nth-of-type(even) > td:nth-of-type(53) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c53 > tbody tr:nth-of-type(odd) > td:nth-of-type(53) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c54 > tbody tr:nth-of-type(even) > td:nth-of-type(54) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c54 > tbody tr:nth-of-type(odd) > td:nth-of-type(54) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c55 > tbody tr:nth-of-type(even) > td:nth-of-type(55) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c55 > tbody tr:nth-of-type(odd) > td:nth-of-type(55) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c56 > tbody tr:nth-of-type(even) > td:nth-of-type(56) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c56 > tbody tr:nth-of-type(odd) > td:nth-of-type(56) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c57 > tbody tr:nth-of-type(even) > td:nth-of-type(57) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c57 > tbody tr:nth-of-type(odd) > td:nth-of-type(57) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c58 > tbody tr:nth-of-type(even) > td:nth-of-type(58) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c58 > tbody tr:nth-of-type(odd) > td:nth-of-type(58) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c59 > tbody tr:nth-of-type(even) > td:nth-of-type(59) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c59 > tbody tr:nth-of-type(odd) > td:nth-of-type(59) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c60 > tbody tr:nth-of-type(even) > td:nth-of-type(60) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c60 > tbody tr:nth-of-type(odd) > td:nth-of-type(60) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c61 > tbody tr:nth-of-type(even) > td:nth-of-type(61) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c61 > tbody tr:nth-of-type(odd) > td:nth-of-type(61) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c62 > tbody tr:nth-of-type(even) > td:nth-of-type(62) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c62 > tbody tr:nth-of-type(odd) > td:nth-of-type(62) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c63 > tbody tr:nth-of-type(even) > td:nth-of-type(63) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c63 > tbody tr:nth-of-type(odd) > td:nth-of-type(63) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c64 > tbody tr:nth-of-type(even) > td:nth-of-type(64) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c64 > tbody tr:nth-of-type(odd) > td:nth-of-type(64) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c65 > tbody tr:nth-of-type(even) > td:nth-of-type(65) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c65 > tbody tr:nth-of-type(odd) > td:nth-of-type(65) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c66 > tbody tr:nth-of-type(even) > td:nth-of-type(66) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c66 > tbody tr:nth-of-type(odd) > td:nth-of-type(66) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c67 > tbody tr:nth-of-type(even) > td:nth-of-type(67) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c67 > tbody tr:nth-of-type(odd) > td:nth-of-type(67) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c68 > tbody tr:nth-of-type(even) > td:nth-of-type(68) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c68 > tbody tr:nth-of-type(odd) > td:nth-of-type(68) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c69 > tbody tr:nth-of-type(even) > td:nth-of-type(69) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c69 > tbody tr:nth-of-type(odd) > td:nth-of-type(69) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c70 > tbody tr:nth-of-type(even) > td:nth-of-type(70) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c70 > tbody tr:nth-of-type(odd) > td:nth-of-type(70) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c71 > tbody tr:nth-of-type(even) > td:nth-of-type(71) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c71 > tbody tr:nth-of-type(odd) > td:nth-of-type(71) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c72 > tbody tr:nth-of-type(even) > td:nth-of-type(72) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c72 > tbody tr:nth-of-type(odd) > td:nth-of-type(72) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c73 > tbody tr:nth-of-type(even) > td:nth-of-type(73) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c73 > tbody tr:nth-of-type(odd) > td:nth-of-type(73) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c74 > tbody tr:nth-of-type(even) > td:nth-of-type(74) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c74 > tbody tr:nth-of-type(odd) > td:nth-of-type(74) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c75 > tbody tr:nth-of-type(even) > td:nth-of-type(75) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c75 > tbody tr:nth-of-type(odd) > td:nth-of-type(75) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c76 > tbody tr:nth-of-type(even) > td:nth-of-type(76) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c76 > tbody tr:nth-of-type(odd) > td:nth-of-type(76) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c77 > tbody tr:nth-of-type(even) > td:nth-of-type(77) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c77 > tbody tr:nth-of-type(odd) > td:nth-of-type(77) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c78 > tbody tr:nth-of-type(even) > td:nth-of-type(78) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c78 > tbody tr:nth-of-type(odd) > td:nth-of-type(78) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c79 > tbody tr:nth-of-type(even) > td:nth-of-type(79) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c79 > tbody tr:nth-of-type(odd) > td:nth-of-type(79) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c80 > tbody tr:nth-of-type(even) > td:nth-of-type(80) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c80 > tbody tr:nth-of-type(odd) > td:nth-of-type(80) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c81 > tbody tr:nth-of-type(even) > td:nth-of-type(81) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c81 > tbody tr:nth-of-type(odd) > td:nth-of-type(81) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c82 > tbody tr:nth-of-type(even) > td:nth-of-type(82) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c82 > tbody tr:nth-of-type(odd) > td:nth-of-type(82) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c83 > tbody tr:nth-of-type(even) > td:nth-of-type(83) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c83 > tbody tr:nth-of-type(odd) > td:nth-of-type(83) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c84 > tbody tr:nth-of-type(even) > td:nth-of-type(84) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c84 > tbody tr:nth-of-type(odd) > td:nth-of-type(84) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c85 > tbody tr:nth-of-type(even) > td:nth-of-type(85) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c85 > tbody tr:nth-of-type(odd) > td:nth-of-type(85) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c86 > tbody tr:nth-of-type(even) > td:nth-of-type(86) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c86 > tbody tr:nth-of-type(odd) > td:nth-of-type(86) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c87 > tbody tr:nth-of-type(even) > td:nth-of-type(87) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c87 > tbody tr:nth-of-type(odd) > td:nth-of-type(87) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c88 > tbody tr:nth-of-type(even) > td:nth-of-type(88) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c88 > tbody tr:nth-of-type(odd) > td:nth-of-type(88) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c89 > tbody tr:nth-of-type(even) > td:nth-of-type(89) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c89 > tbody tr:nth-of-type(odd) > td:nth-of-type(89) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c90 > tbody tr:nth-of-type(even) > td:nth-of-type(90) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c90 > tbody tr:nth-of-type(odd) > td:nth-of-type(90) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c91 > tbody tr:nth-of-type(even) > td:nth-of-type(91) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c91 > tbody tr:nth-of-type(odd) > td:nth-of-type(91) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c92 > tbody tr:nth-of-type(even) > td:nth-of-type(92) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c92 > tbody tr:nth-of-type(odd) > td:nth-of-type(92) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c93 > tbody tr:nth-of-type(even) > td:nth-of-type(93) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c93 > tbody tr:nth-of-type(odd) > td:nth-of-type(93) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c94 > tbody tr:nth-of-type(even) > td:nth-of-type(94) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c94 > tbody tr:nth-of-type(odd) > td:nth-of-type(94) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c95 > tbody tr:nth-of-type(even) > td:nth-of-type(95) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c95 > tbody tr:nth-of-type(odd) > td:nth-of-type(95) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c96 > tbody tr:nth-of-type(even) > td:nth-of-type(96) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c96 > tbody tr:nth-of-type(odd) > td:nth-of-type(96) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c97 > tbody tr:nth-of-type(even) > td:nth-of-type(97) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c97 > tbody tr:nth-of-type(odd) > td:nth-of-type(97) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c98 > tbody tr:nth-of-type(even) > td:nth-of-type(98) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c98 > tbody tr:nth-of-type(odd) > td:nth-of-type(98) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c99 > tbody tr:nth-of-type(even) > td:nth-of-type(99) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c99 > tbody tr:nth-of-type(odd) > td:nth-of-type(99) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c100 > tbody tr:nth-of-type(even) > td:nth-of-type(100) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c100 > tbody tr:nth-of-type(odd) > td:nth-of-type(100) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c101 > tbody tr:nth-of-type(even) > td:nth-of-type(101) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c101 > tbody tr:nth-of-type(odd) > td:nth-of-type(101) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c102 > tbody tr:nth-of-type(even) > td:nth-of-type(102) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c102 > tbody tr:nth-of-type(odd) > td:nth-of-type(102) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c103 > tbody tr:nth-of-type(even) > td:nth-of-type(103) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c103 > tbody tr:nth-of-type(odd) > td:nth-of-type(103) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c104 > tbody tr:nth-of-type(even) > td:nth-of-type(104) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c104 > tbody tr:nth-of-type(odd) > td:nth-of-type(104) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c105 > tbody tr:nth-of-type(even) > td:nth-of-type(105) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c105 > tbody tr:nth-of-type(odd) > td:nth-of-type(105) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c106 > tbody tr:nth-of-type(even) > td:nth-of-type(106) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c106 > tbody tr:nth-of-type(odd) > td:nth-of-type(106) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c107 > tbody tr:nth-of-type(even) > td:nth-of-type(107) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c107 > tbody tr:nth-of-type(odd) > td:nth-of-type(107) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c108 > tbody tr:nth-of-type(even) > td:nth-of-type(108) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c108 > tbody tr:nth-of-type(odd) > td:nth-of-type(108) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c109 > tbody tr:nth-of-type(even) > td:nth-of-type(109) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c109 > tbody tr:nth-of-type(odd) > td:nth-of-type(109) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c110 > tbody tr:nth-of-type(even) > td:nth-of-type(110) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c110 > tbody tr:nth-of-type(odd) > td:nth-of-type(110) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c111 > tbody tr:nth-of-type(even) > td:nth-of-type(111) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c111 > tbody tr:nth-of-type(odd) > td:nth-of-type(111) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c112 > tbody tr:nth-of-type(even) > td:nth-of-type(112) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c112 > tbody tr:nth-of-type(odd) > td:nth-of-type(112) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c113 > tbody tr:nth-of-type(even) > td:nth-of-type(113) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c113 > tbody tr:nth-of-type(odd) > td:nth-of-type(113) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c114 > tbody tr:nth-of-type(even) > td:nth-of-type(114) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c114 > tbody tr:nth-of-type(odd) > td:nth-of-type(114) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c115 > tbody tr:nth-of-type(even) > td:nth-of-type(115) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c115 > tbody tr:nth-of-type(odd) > td:nth-of-type(115) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c116 > tbody tr:nth-of-type(even) > td:nth-of-type(116) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c116 > tbody tr:nth-of-type(odd) > td:nth-of-type(116) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c117 > tbody tr:nth-of-type(even) > td:nth-of-type(117) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c117 > tbody tr:nth-of-type(odd) > td:nth-of-type(117) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c118 > tbody tr:nth-of-type(even) > td:nth-of-type(118) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c118 > tbody tr:nth-of-type(odd) > td:nth-of-type(118) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c119 > tbody tr:nth-of-type(even) > td:nth-of-type(119) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c119 > tbody tr:nth-of-type(odd) > td:nth-of-type(119) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c120 > tbody tr:nth-of-type(even) > td:nth-of-type(120) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c120 > tbody tr:nth-of-type(odd) > td:nth-of-type(120) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c121 > tbody tr:nth-of-type(even) > td:nth-of-type(121) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c121 > tbody tr:nth-of-type(odd) > td:nth-of-type(121) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c122 > tbody tr:nth-of-type(even) > td:nth-of-type(122) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c122 > tbody tr:nth-of-type(odd) > td:nth-of-type(122) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c123 > tbody tr:nth-of-type(even) > td:nth-of-type(123) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c123 > tbody tr:nth-of-type(odd) > td:nth-of-type(123) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c124 > tbody tr:nth-of-type(even) > td:nth-of-type(124) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c124 > tbody tr:nth-of-type(odd) > td:nth-of-type(124) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c125 > tbody tr:nth-of-type(even) > td:nth-of-type(125) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c125 > tbody tr:nth-of-type(odd) > td:nth-of-type(125) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c126 > tbody tr:nth-of-type(even) > td:nth-of-type(126) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c126 > tbody tr:nth-of-type(odd) > td:nth-of-type(126) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c127 > tbody tr:nth-of-type(even) > td:nth-of-type(127) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c127 > tbody tr:nth-of-type(odd) > td:nth-of-type(127) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c128 > tbody tr:nth-of-type(even) > td:nth-of-type(128) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c128 > tbody tr:nth-of-type(odd) > td:nth-of-type(128) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c129 > tbody tr:nth-of-type(even) > td:nth-of-type(129) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c129 > tbody tr:nth-of-type(odd) > td:nth-of-type(129) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c130 > tbody tr:nth-of-type(even) > td:nth-of-type(130) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c130 > tbody tr:nth-of-type(odd) > td:nth-of-type(130) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c131 > tbody tr:nth-of-type(even) > td:nth-of-type(131) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c131 > tbody tr:nth-of-type(odd) > td:nth-of-type(131) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c132 > tbody tr:nth-of-type(even) > td:nth-of-type(132) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c132 > tbody tr:nth-of-type(odd) > td:nth-of-type(132) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c133 > tbody tr:nth-of-type(even) > td:nth-of-type(133) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c133 > tbody tr:nth-of-type(odd) > td:nth-of-type(133) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c134 > tbody tr:nth-of-type(even) > td:nth-of-type(134) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c134 > tbody tr:nth-of-type(odd) > td:nth-of-type(134) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c135 > tbody tr:nth-of-type(even) > td:nth-of-type(135) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c135 > tbody tr:nth-of-type(odd) > td:nth-of-type(135) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c136 > tbody tr:nth-of-type(even) > td:nth-of-type(136) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c136 > tbody tr:nth-of-type(odd) > td:nth-of-type(136) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c137 > tbody tr:nth-of-type(even) > td:nth-of-type(137) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c137 > tbody tr:nth-of-type(odd) > td:nth-of-type(137) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c138 > tbody tr:nth-of-type(even) > td:nth-of-type(138) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c138 > tbody tr:nth-of-type(odd) > td:nth-of-type(138) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c139 > tbody tr:nth-of-type(even) > td:nth-of-type(139) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c139 > tbody tr:nth-of-type(odd) > td:nth-of-type(139) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c140 > tbody tr:nth-of-type(even) > td:nth-of-type(140) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c140 > tbody tr:nth-of-type(odd) > td:nth-of-type(140) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c141 > tbody tr:nth-of-type(even) > td:nth-of-type(141) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c141 > tbody tr:nth-of-type(odd) > td:nth-of-type(141) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c142 > tbody tr:nth-of-type(even) > td:nth-of-type(142) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c142 > tbody tr:nth-of-type(odd) > td:nth-of-type(142) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c143 > tbody tr:nth-of-type(even) > td:nth-of-type(143) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c143 > tbody tr:nth-of-type(odd) > td:nth-of-type(143) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c144 > tbody tr:nth-of-type(even) > td:nth-of-type(144) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c144 > tbody tr:nth-of-type(odd) > td:nth-of-type(144) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c145 > tbody tr:nth-of-type(even) > td:nth-of-type(145) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c145 > tbody tr:nth-of-type(odd) > td:nth-of-type(145) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c146 > tbody tr:nth-of-type(even) > td:nth-of-type(146) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c146 > tbody tr:nth-of-type(odd) > td:nth-of-type(146) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c147 > tbody tr:nth-of-type(even) > td:nth-of-type(147) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c147 > tbody tr:nth-of-type(odd) > td:nth-of-type(147) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c148 > tbody tr:nth-of-type(even) > td:nth-of-type(148) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c148 > tbody tr:nth-of-type(odd) > td:nth-of-type(148) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c149 > tbody tr:nth-of-type(even) > td:nth-of-type(149) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c149 > tbody tr:nth-of-type(odd) > td:nth-of-type(149) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c150 > tbody tr:nth-of-type(even) > td:nth-of-type(150) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c150 > tbody tr:nth-of-type(odd) > td:nth-of-type(150) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c151 > tbody tr:nth-of-type(even) > td:nth-of-type(151) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c151 > tbody tr:nth-of-type(odd) > td:nth-of-type(151) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c152 > tbody tr:nth-of-type(even) > td:nth-of-type(152) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c152 > tbody tr:nth-of-type(odd) > td:nth-of-type(152) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c153 > tbody tr:nth-of-type(even) > td:nth-of-type(153) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c153 > tbody tr:nth-of-type(odd) > td:nth-of-type(153) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c154 > tbody tr:nth-of-type(even) > td:nth-of-type(154) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c154 > tbody tr:nth-of-type(odd) > td:nth-of-type(154) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c155 > tbody tr:nth-of-type(even) > td:nth-of-type(155) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c155 > tbody tr:nth-of-type(odd) > td:nth-of-type(155) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c156 > tbody tr:nth-of-type(even) > td:nth-of-type(156) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c156 > tbody tr:nth-of-type(odd) > td:nth-of-type(156) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c157 > tbody tr:nth-of-type(even) > td:nth-of-type(157) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c157 > tbody tr:nth-of-type(odd) > td:nth-of-type(157) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c158 > tbody tr:nth-of-type(even) > td:nth-of-type(158) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c158 > tbody tr:nth-of-type(odd) > td:nth-of-type(158) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c159 > tbody tr:nth-of-type(even) > td:nth-of-type(159) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c159 > tbody tr:nth-of-type(odd) > td:nth-of-type(159) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c160 > tbody tr:nth-of-type(even) > td:nth-of-type(160) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c160 > tbody tr:nth-of-type(odd) > td:nth-of-type(160) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c161 > tbody tr:nth-of-type(even) > td:nth-of-type(161) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c161 > tbody tr:nth-of-type(odd) > td:nth-of-type(161) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c162 > tbody tr:nth-of-type(even) > td:nth-of-type(162) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c162 > tbody tr:nth-of-type(odd) > td:nth-of-type(162) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c163 > tbody tr:nth-of-type(even) > td:nth-of-type(163) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c163 > tbody tr:nth-of-type(odd) > td:nth-of-type(163) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c164 > tbody tr:nth-of-type(even) > td:nth-of-type(164) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c164 > tbody tr:nth-of-type(odd) > td:nth-of-type(164) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c165 > tbody tr:nth-of-type(even) > td:nth-of-type(165) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c165 > tbody tr:nth-of-type(odd) > td:nth-of-type(165) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c166 > tbody tr:nth-of-type(even) > td:nth-of-type(166) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c166 > tbody tr:nth-of-type(odd) > td:nth-of-type(166) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c167 > tbody tr:nth-of-type(even) > td:nth-of-type(167) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c167 > tbody tr:nth-of-type(odd) > td:nth-of-type(167) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c168 > tbody tr:nth-of-type(even) > td:nth-of-type(168) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c168 > tbody tr:nth-of-type(odd) > td:nth-of-type(168) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c169 > tbody tr:nth-of-type(even) > td:nth-of-type(169) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c169 > tbody tr:nth-of-type(odd) > td:nth-of-type(169) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c170 > tbody tr:nth-of-type(even) > td:nth-of-type(170) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c170 > tbody tr:nth-of-type(odd) > td:nth-of-type(170) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c171 > tbody tr:nth-of-type(even) > td:nth-of-type(171) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c171 > tbody tr:nth-of-type(odd) > td:nth-of-type(171) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c172 > tbody tr:nth-of-type(even) > td:nth-of-type(172) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c172 > tbody tr:nth-of-type(odd) > td:nth-of-type(172) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c173 > tbody tr:nth-of-type(even) > td:nth-of-type(173) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c173 > tbody tr:nth-of-type(odd) > td:nth-of-type(173) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c174 > tbody tr:nth-of-type(even) > td:nth-of-type(174) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c174 > tbody tr:nth-of-type(odd) > td:nth-of-type(174) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c175 > tbody tr:nth-of-type(even) > td:nth-of-type(175) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c175 > tbody tr:nth-of-type(odd) > td:nth-of-type(175) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c176 > tbody tr:nth-of-type(even) > td:nth-of-type(176) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c176 > tbody tr:nth-of-type(odd) > td:nth-of-type(176) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c177 > tbody tr:nth-of-type(even) > td:nth-of-type(177) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c177 > tbody tr:nth-of-type(odd) > td:nth-of-type(177) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c178 > tbody tr:nth-of-type(even) > td:nth-of-type(178) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c178 > tbody tr:nth-of-type(odd) > td:nth-of-type(178) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c179 > tbody tr:nth-of-type(even) > td:nth-of-type(179) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c179 > tbody tr:nth-of-type(odd) > td:nth-of-type(179) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c180 > tbody tr:nth-of-type(even) > td:nth-of-type(180) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c180 > tbody tr:nth-of-type(odd) > td:nth-of-type(180) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c181 > tbody tr:nth-of-type(even) > td:nth-of-type(181) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c181 > tbody tr:nth-of-type(odd) > td:nth-of-type(181) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c182 > tbody tr:nth-of-type(even) > td:nth-of-type(182) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c182 > tbody tr:nth-of-type(odd) > td:nth-of-type(182) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c183 > tbody tr:nth-of-type(even) > td:nth-of-type(183) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c183 > tbody tr:nth-of-type(odd) > td:nth-of-type(183) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c184 > tbody tr:nth-of-type(even) > td:nth-of-type(184) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c184 > tbody tr:nth-of-type(odd) > td:nth-of-type(184) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c185 > tbody tr:nth-of-type(even) > td:nth-of-type(185) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c185 > tbody tr:nth-of-type(odd) > td:nth-of-type(185) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c186 > tbody tr:nth-of-type(even) > td:nth-of-type(186) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c186 > tbody tr:nth-of-type(odd) > td:nth-of-type(186) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c187 > tbody tr:nth-of-type(even) > td:nth-of-type(187) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c187 > tbody tr:nth-of-type(odd) > td:nth-of-type(187) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c188 > tbody tr:nth-of-type(even) > td:nth-of-type(188) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c188 > tbody tr:nth-of-type(odd) > td:nth-of-type(188) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c189 > tbody tr:nth-of-type(even) > td:nth-of-type(189) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c189 > tbody tr:nth-of-type(odd) > td:nth-of-type(189) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c190 > tbody tr:nth-of-type(even) > td:nth-of-type(190) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c190 > tbody tr:nth-of-type(odd) > td:nth-of-type(190) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c191 > tbody tr:nth-of-type(even) > td:nth-of-type(191) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c191 > tbody tr:nth-of-type(odd) > td:nth-of-type(191) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c192 > tbody tr:nth-of-type(even) > td:nth-of-type(192) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c192 > tbody tr:nth-of-type(odd) > td:nth-of-type(192) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c193 > tbody tr:nth-of-type(even) > td:nth-of-type(193) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c193 > tbody tr:nth-of-type(odd) > td:nth-of-type(193) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c194 > tbody tr:nth-of-type(even) > td:nth-of-type(194) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c194 > tbody tr:nth-of-type(odd) > td:nth-of-type(194) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c195 > tbody tr:nth-of-type(even) > td:nth-of-type(195) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c195 > tbody tr:nth-of-type(odd) > td:nth-of-type(195) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c196 > tbody tr:nth-of-type(even) > td:nth-of-type(196) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c196 > tbody tr:nth-of-type(odd) > td:nth-of-type(196) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c197 > tbody tr:nth-of-type(even) > td:nth-of-type(197) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c197 > tbody tr:nth-of-type(odd) > td:nth-of-type(197) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c198 > tbody tr:nth-of-type(even) > td:nth-of-type(198) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c198 > tbody tr:nth-of-type(odd) > td:nth-of-type(198) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c199 > tbody tr:nth-of-type(even) > td:nth-of-type(199) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c199 > tbody tr:nth-of-type(odd) > td:nth-of-type(199) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c200 > tbody tr:nth-of-type(even) > td:nth-of-type(200) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c200 > tbody tr:nth-of-type(odd) > td:nth-of-type(200) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c201 > tbody tr:nth-of-type(even) > td:nth-of-type(201) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c201 > tbody tr:nth-of-type(odd) > td:nth-of-type(201) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c202 > tbody tr:nth-of-type(even) > td:nth-of-type(202) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c202 > tbody tr:nth-of-type(odd) > td:nth-of-type(202) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c203 > tbody tr:nth-of-type(even) > td:nth-of-type(203) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c203 > tbody tr:nth-of-type(odd) > td:nth-of-type(203) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c204 > tbody tr:nth-of-type(even) > td:nth-of-type(204) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c204 > tbody tr:nth-of-type(odd) > td:nth-of-type(204) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c205 > tbody tr:nth-of-type(even) > td:nth-of-type(205) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c205 > tbody tr:nth-of-type(odd) > td:nth-of-type(205) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c206 > tbody tr:nth-of-type(even) > td:nth-of-type(206) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c206 > tbody tr:nth-of-type(odd) > td:nth-of-type(206) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c207 > tbody tr:nth-of-type(even) > td:nth-of-type(207) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c207 > tbody tr:nth-of-type(odd) > td:nth-of-type(207) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c208 > tbody tr:nth-of-type(even) > td:nth-of-type(208) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c208 > tbody tr:nth-of-type(odd) > td:nth-of-type(208) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c209 > tbody tr:nth-of-type(even) > td:nth-of-type(209) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c209 > tbody tr:nth-of-type(odd) > td:nth-of-type(209) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c210 > tbody tr:nth-of-type(even) > td:nth-of-type(210) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c210 > tbody tr:nth-of-type(odd) > td:nth-of-type(210) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c211 > tbody tr:nth-of-type(even) > td:nth-of-type(211) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c211 > tbody tr:nth-of-type(odd) > td:nth-of-type(211) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c212 > tbody tr:nth-of-type(even) > td:nth-of-type(212) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c212 > tbody tr:nth-of-type(odd) > td:nth-of-type(212) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c213 > tbody tr:nth-of-type(even) > td:nth-of-type(213) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c213 > tbody tr:nth-of-type(odd) > td:nth-of-type(213) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c214 > tbody tr:nth-of-type(even) > td:nth-of-type(214) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c214 > tbody tr:nth-of-type(odd) > td:nth-of-type(214) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c215 > tbody tr:nth-of-type(even) > td:nth-of-type(215) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c215 > tbody tr:nth-of-type(odd) > td:nth-of-type(215) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c216 > tbody tr:nth-of-type(even) > td:nth-of-type(216) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c216 > tbody tr:nth-of-type(odd) > td:nth-of-type(216) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c217 > tbody tr:nth-of-type(even) > td:nth-of-type(217) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c217 > tbody tr:nth-of-type(odd) > td:nth-of-type(217) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c218 > tbody tr:nth-of-type(even) > td:nth-of-type(218) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c218 > tbody tr:nth-of-type(odd) > td:nth-of-type(218) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c219 > tbody tr:nth-of-type(even) > td:nth-of-type(219) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c219 > tbody tr:nth-of-type(odd) > td:nth-of-type(219) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c220 > tbody tr:nth-of-type(even) > td:nth-of-type(220) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c220 > tbody tr:nth-of-type(odd) > td:nth-of-type(220) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c221 > tbody tr:nth-of-type(even) > td:nth-of-type(221) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c221 > tbody tr:nth-of-type(odd) > td:nth-of-type(221) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c222 > tbody tr:nth-of-type(even) > td:nth-of-type(222) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c222 > tbody tr:nth-of-type(odd) > td:nth-of-type(222) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c223 > tbody tr:nth-of-type(even) > td:nth-of-type(223) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c223 > tbody tr:nth-of-type(odd) > td:nth-of-type(223) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c224 > tbody tr:nth-of-type(even) > td:nth-of-type(224) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c224 > tbody tr:nth-of-type(odd) > td:nth-of-type(224) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c225 > tbody tr:nth-of-type(even) > td:nth-of-type(225) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c225 > tbody tr:nth-of-type(odd) > td:nth-of-type(225) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c226 > tbody tr:nth-of-type(even) > td:nth-of-type(226) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c226 > tbody tr:nth-of-type(odd) > td:nth-of-type(226) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c227 > tbody tr:nth-of-type(even) > td:nth-of-type(227) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c227 > tbody tr:nth-of-type(odd) > td:nth-of-type(227) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c228 > tbody tr:nth-of-type(even) > td:nth-of-type(228) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c228 > tbody tr:nth-of-type(odd) > td:nth-of-type(228) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c229 > tbody tr:nth-of-type(even) > td:nth-of-type(229) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c229 > tbody tr:nth-of-type(odd) > td:nth-of-type(229) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c230 > tbody tr:nth-of-type(even) > td:nth-of-type(230) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c230 > tbody tr:nth-of-type(odd) > td:nth-of-type(230) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c231 > tbody tr:nth-of-type(even) > td:nth-of-type(231) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c231 > tbody tr:nth-of-type(odd) > td:nth-of-type(231) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c232 > tbody tr:nth-of-type(even) > td:nth-of-type(232) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c232 > tbody tr:nth-of-type(odd) > td:nth-of-type(232) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c233 > tbody tr:nth-of-type(even) > td:nth-of-type(233) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c233 > tbody tr:nth-of-type(odd) > td:nth-of-type(233) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c234 > tbody tr:nth-of-type(even) > td:nth-of-type(234) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c234 > tbody tr:nth-of-type(odd) > td:nth-of-type(234) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c235 > tbody tr:nth-of-type(even) > td:nth-of-type(235) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c235 > tbody tr:nth-of-type(odd) > td:nth-of-type(235) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c236 > tbody tr:nth-of-type(even) > td:nth-of-type(236) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c236 > tbody tr:nth-of-type(odd) > td:nth-of-type(236) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c237 > tbody tr:nth-of-type(even) > td:nth-of-type(237) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c237 > tbody tr:nth-of-type(odd) > td:nth-of-type(237) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c238 > tbody tr:nth-of-type(even) > td:nth-of-type(238) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c238 > tbody tr:nth-of-type(odd) > td:nth-of-type(238) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c239 > tbody tr:nth-of-type(even) > td:nth-of-type(239) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c239 > tbody tr:nth-of-type(odd) > td:nth-of-type(239) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c240 > tbody tr:nth-of-type(even) > td:nth-of-type(240) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c240 > tbody tr:nth-of-type(odd) > td:nth-of-type(240) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c241 > tbody tr:nth-of-type(even) > td:nth-of-type(241) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c241 > tbody tr:nth-of-type(odd) > td:nth-of-type(241) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c242 > tbody tr:nth-of-type(even) > td:nth-of-type(242) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c242 > tbody tr:nth-of-type(odd) > td:nth-of-type(242) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c243 > tbody tr:nth-of-type(even) > td:nth-of-type(243) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c243 > tbody tr:nth-of-type(odd) > td:nth-of-type(243) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c244 > tbody tr:nth-of-type(even) > td:nth-of-type(244) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c244 > tbody tr:nth-of-type(odd) > td:nth-of-type(244) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c245 > tbody tr:nth-of-type(even) > td:nth-of-type(245) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c245 > tbody tr:nth-of-type(odd) > td:nth-of-type(245) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c246 > tbody tr:nth-of-type(even) > td:nth-of-type(246) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c246 > tbody tr:nth-of-type(odd) > td:nth-of-type(246) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c247 > tbody tr:nth-of-type(even) > td:nth-of-type(247) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c247 > tbody tr:nth-of-type(odd) > td:nth-of-type(247) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c248 > tbody tr:nth-of-type(even) > td:nth-of-type(248) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c248 > tbody tr:nth-of-type(odd) > td:nth-of-type(248) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c249 > tbody tr:nth-of-type(even) > td:nth-of-type(249) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c249 > tbody tr:nth-of-type(odd) > td:nth-of-type(249) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c250 > tbody tr:nth-of-type(even) > td:nth-of-type(250) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c250 > tbody tr:nth-of-type(odd) > td:nth-of-type(250) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c251 > tbody tr:nth-of-type(even) > td:nth-of-type(251) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c251 > tbody tr:nth-of-type(odd) > td:nth-of-type(251) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c252 > tbody tr:nth-of-type(even) > td:nth-of-type(252) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c252 > tbody tr:nth-of-type(odd) > td:nth-of-type(252) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c253 > tbody tr:nth-of-type(even) > td:nth-of-type(253) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c253 > tbody tr:nth-of-type(odd) > td:nth-of-type(253) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c254 > tbody tr:nth-of-type(even) > td:nth-of-type(254) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c254 > tbody tr:nth-of-type(odd) > td:nth-of-type(254) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c255 > tbody tr:nth-of-type(even) > td:nth-of-type(255) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c255 > tbody tr:nth-of-type(odd) > td:nth-of-type(255) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > div.tbl > table.c256 > tbody tr:nth-of-type(even) > td:nth-of-type(256) {
  background-color: #D1D7FA;
}
body > div#main.import > div#content > div.tbl > table.c256 > tbody tr:nth-of-type(odd) > td:nth-of-type(256) {
  background-color: #E8EBFC;
}
body > div#main.import > div#content > p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
}
body > div#main.import > div#content > p.goodResults > b {
  color: #00C036;
}
body > div#main.import > div#content > p.badResults > b {
  color: #E13A3A;
}
body > div#main.import > div#content > p + table.result {
  margin-top: 18px;
}
body > div#main.import > div#content > table.result > thead td {
  height: 50px;
}
body > div#main.import > div#content > table.result > tbody td {
  padding: 12px 16px;
}
body > div#main.import > div#content > table.result > tbody td:first-of-type {
  text-align: center;
}
body > div#main.groups > div#filters > form > div.content > h2 {
  grid-area: header;
  margin-bottom: 16px;
}
body > div#main.groups > div#filters > form > div.content > label {
  display: block;
  margin-bottom: 20px;
}
body > div#main.groups > div#filters > form > div.content > label > p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
body > div#main.groups > div#filters > form > div.content > label > input {
  width: 100%;
}
body > div#main.groups > div#filters > form > div.content > label > input[type=date] {
  width: calc(100% - 24px);
}
body > div#main.groups > div#filters > form > div.content > p > label {
  margin-left: 10px;
}
body > div#main.groups > div#content > table > thead > tr > td {
  text-align: left;
}
body > div#main.groups > div#content > table > tbody > tr td:has(a), body > div#main.groups > div#content > table > tbody > tr td:nth-of-type(5) {
  text-align: center;
}
body > div#main.groups > div#content > table > tbody > tr td > a {
  vertical-align: center;
}
body > div#main.groups > div#content > table > tbody > tr td.mobile-settings {
  display: none;
}
body > div#main.groups > div#content > table > tbody > tr td.mobile-settings > div {
  display: none;
  position: absolute;
  top: 0;
  right: 16px;
  box-shadow: 0 4px 32px rgba(118, 134, 239, 0.32);
}
body > div#main.groups > div#content > table > tbody > tr td.mobile-settings > div.show {
  display: flex;
}
body > div#main.groups > div#content > table > tbody > tr td.creator > div {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body > div#main.team.settings > div#content > table.list > thead > tr > td:nth-child(2) {
  text-align: left;
}
body > div#main.team.settings > div#content > table.list > thead > tr > td:nth-child(3) {
  width: 120px;
  text-align: left;
}
body > div#main.team.settings > div#content > table.list > thead > tr > td.history > p {
  margin-bottom: 8px;
}
body > div#main.team.settings > div#content > table.list > thead > tr > td.history > div {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
body > div#main.team.settings > div#content > table.list > thead > tr > td.history > div > span {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main.team.settings > div#content > table.list > tbody > tr {
  text-align: center;
}
body > div#main.team.settings > div#content > table.list > tbody > tr > td:nth-child(1) {
  max-width: 250px;
  word-break: break-word;
}
body > div#main.team.settings > div#content > table.list > tbody > tr > td:nth-child(2) {
  text-align: left;
}
body > div#main.team.settings > div#content > table.list > tbody > tr > td:nth-child(3) {
  text-align: left;
}
body > div#main.team.settings > div#content > table.list > tbody > tr > td:nth-child(3).action {
  text-align: center;
}
body > div#main.team.settings > div#content > table.list > tbody > tr > td:nth-child(3).action:empty {
  padding-left: 0;
  padding-right: 0;
}
body > div#main.team.settings > div#content > table.list > tbody > tr > td.role > a {
  vertical-align: middle;
  margin-left: 4px;
}
body > div#main.team.settings > div#content > table.list > tbody > tr > td a {
  vertical-align: middle;
}
body > div#main.team.settings > div#content > table.list > tbody > tr > div.mobile-settings {
  display: none;
}
body > div#main.team.settings > div#content > table.list > tbody > tr > div.mobile-settings > div.btns-actions {
  display: none;
  position: absolute;
  top: 0;
  right: 45px;
  box-shadow: 0 4px 32px rgba(118, 134, 239, 0.32);
}
body > div#main.team.settings > div#content > table.list > tbody > tr > div.mobile-settings > div.btns-actions.show {
  display: flex;
}
body > div#main.refill > div#menu > div.elements-on-page {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
body > div#main.refill > div#menu > div.elements-on-page > div.sort {
  display: none;
}
body > div#main.refill > div#filters > form > div.content {
  display: grid;
  grid-template-columns: 236px 28px 236px;
  grid-template-rows: min-content min-content;
  grid-template-areas: "header header header" "dc dash de";
}
body > div#main.refill > div#filters > form > div.content > h2 {
  grid-area: header;
  margin-bottom: 16px;
}
body > div#main.refill > div#filters > form > div.content > span {
  margin-top: 47px;
  text-align: center;
}
body > div#main.refill > div#filters > form > div.content > label > p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
body > div#main.refill > div#filters > form > div.content > label > input {
  width: 100%;
}
body > div#main.refill > div#filters > form > div.content > label > input[type=date] {
  width: calc(100% - 24px);
}
body > div#main.refill > div#content > table {
  width: 850px;
}
body > div#main.refill > div#content > table > thead > tr > td:first-of-type {
  padding-left: 24px;
}
body > div#main.refill > div#content > table > thead > tr > td:last-of-type {
  padding-right: 8px;
}
body > div#main.refill > div#content > table > thead > tr > td > a {
  text-align: left;
  display: flex;
  justify-content: stretch;
  align-items: center;
}
body > div#main.refill > div#content > table > thead > tr > td > a:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 12px;
}
body > div#main.refill > div#content > table > thead > tr > td > a.asc:after {
  background-image: url("icons/array_down.svg");
  background-size: 20px;
  background-position: right center;
  background-repeat: no-repeat;
}
body > div#main.refill > div#content > table > thead > tr > td > a.desc:after {
  background-image: url("icons/array_up.svg");
  background-size: 20px;
  background-position: right center;
  background-repeat: no-repeat;
}
body > div#main.refill > div#content > table > tbody > tr > td {
  padding-top: 20px;
  padding-bottom: 20px;
}
body > div#main.refill > div#content > table > tbody > tr > td:first-of-type {
  text-align: center;
}
body > div#main.refill > div#content > table > tbody > tr > td:not(:first-of-type) {
  padding-left: 28px;
  padding-right: 52px;
}
body > div#main.refill > div#content > table > tbody > tr > td:nth-child(2) > p.date {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main.refill > div#content > table > tbody > tr > td:nth-child(2) > p.time {
  color: #3C4475;
}
body > div#main.refill > div#content > table > tbody > tr > td > span {
  font-style: italic;
}
body > div#main.debit > div#menu > div.elements-on-page {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
body > div#main.debit > div#menu > div.elements-on-page > div.sort {
  display: none;
}
body > div#main.debit > div#filters > form > div.content {
  display: grid;
  grid-template-columns: 236px 28px 236px;
  grid-template-rows: min-content min-content min-content;
  grid-template-areas: "header header header" "dc dash de" "params params params";
}
body > div#main.debit > div#filters > form > div.content > h2 {
  grid-area: header;
  margin-bottom: 16px;
}
body > div#main.debit > div#filters > form > div.content > span {
  margin-top: 47px;
  text-align: center;
}
body > div#main.debit > div#filters > form > div.content > label {
  margin-bottom: 16px;
}
body > div#main.debit > div#filters > form > div.content > label > p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
body > div#main.debit > div#filters > form > div.content > label > input {
  width: 100%;
}
body > div#main.debit > div#filters > form > div.content > label > input[type=date] {
  width: calc(100% - 24px);
}
body > div#main.debit > div#filters > form > div.content > div.enum {
  grid-area: params;
}
body > div#main.debit > div#filters > form > div.content > div.enum > p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
body > div#main.debit > div#content > table {
  width: 850px;
}
body > div#main.debit > div#content > table > thead > tr > td {
  text-align: left;
}
body > div#main.debit > div#content > table > thead > tr > td:first-of-type {
  padding-left: 24px;
  text-align: center;
}
body > div#main.debit > div#content > table > thead > tr > td:last-of-type {
  padding-right: 8px;
}
body > div#main.debit > div#content > table > thead > tr > td > a {
  text-align: left;
  padding: 8px 40px 8px 16px;
  border-radius: 12px;
  display: flex;
  justify-content: stretch;
  align-items: center;
  height: calc(100% - 16px);
}
body > div#main.debit > div#content > table > thead > tr > td > a:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 12px;
}
body > div#main.debit > div#content > table > thead > tr > td > a.asc {
  background-color: #D1D7FA;
}
body > div#main.debit > div#content > table > thead > tr > td > a.asc:after {
  background-image: url("icons/array_down.svg");
  background-size: 20px;
  background-position: right center;
  background-repeat: no-repeat;
}
body > div#main.debit > div#content > table > thead > tr > td > a.desc {
  background-color: #D1D7FA;
}
body > div#main.debit > div#content > table > thead > tr > td > a.desc:after {
  background-image: url("icons/array_up.svg");
  background-size: 20px;
  background-position: right center;
  background-repeat: no-repeat;
}
body > div#main.debit > div#content > table > thead > tr > td > a:hover {
  background-color: #A3AEF5;
}
body > div#main.debit > div#content > table > tbody > tr > td {
  padding-top: 20px;
  padding-bottom: 20px;
}
body > div#main.debit > div#content > table > tbody > tr > td:first-of-type {
  text-align: center;
}
body > div#main.debit > div#content > table > tbody > tr > td:nth-of-type(2), body > div#main.debit > div#content > table > tbody > tr > td:nth-of-type(4) {
  padding-left: 28px;
  padding-right: 52px;
}
body > div#main.debit > div#content > table > tbody > tr > td:nth-of-type(3) > p:has(+ p) {
  margin-bottom: 8px;
}
body > div#main.debit > div#content > table > tbody > tr > td:nth-of-type(3) > p.name {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main.debit > div#content > table > tbody > tr > td:nth-of-type(3) > p.name:has(+ p) {
  margin-bottom: 12px;
}
body > div#main.debit > div#content > table > tbody > tr > td:nth-of-type(3) > p > span {
  color: #7B7F9D;
  margin-right: 12px;
}
body > div#main.debit > div#content > table > tbody > tr > td:nth-child(4) > p.date {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main.debit > div#content > table > tbody > tr > td:nth-child(4) > p.time {
  color: #3C4475;
}
body > div#main.settings_users {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
body > div#main.settings_users > div#menu > div.titled {
  display: block;
  text-align: center;
}
body > div#main.settings_users > div#content {
  border: 5px dotted #D1D7FA;
  border-radius: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 56px;
  padding-bottom: 56px;
}
body > div#main.settings_users > div#content div.title {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #0A155C;
}
body > div#main.settings_users > div#content div.title > a.faq {
  vertical-align: middle;
  margin-left: 6px;
}
body > div#main.settings_users > div#content div.warning {
  padding: 16px 24px 16px 54px;
  border-radius: 12px;
  margin-bottom: 12px;
  background-color: #F5F7FF;
  color: #050B2E;
  margin-top: 15px;
  background-image: url("icons/info.svg");
  background-size: 24px;
  background-position: top 14px left 18px;
  background-repeat: no-repeat;
}
body > div#main.settings_users > div#content div.warning:empty {
  display: none;
}
body > div#main.settings_users > div#content div.warning > a {
  display: block;
  margin-top: 4px;
  text-align: right;
}
body > div#main.settings_users > div#content div.warning > a {
  color: #2B43E3;
}
body > div#main.settings_users > div#content div.warning > a:hover {
  color: #7686EF;
}
body > div#main.settings_users > div#content div.warning > a:active {
  color: #102089;
}
body > div#main.settings_users > div#content div.caption {
  margin-bottom: 4px;
  font-weight: 600;
  color: #292D31;
}
body > div#main.settings_users > div#content div.caption > a {
  margin-left: 8px;
}
body > div#main.settings_users > div#content div.caption > a {
  color: #2B43E3;
}
body > div#main.settings_users > div#content div.caption > a:hover {
  color: #7686EF;
}
body > div#main.settings_users > div#content div.caption > a:active {
  color: #102089;
}
body > div#main.settings_users > div#content div.caption > a.delete {
  color: #E13A3A;
}
body > div#main.settings_users > div#content div.caption > a.delete:hover {
  color: #ef7676;
}
body > div#main.settings_users > div#content div.caption > a.delete:active {
  color: #891010;
}
body > div#main.settings_users > div#content div.card {
  height: 40px;
  padding: 14px 14px 14px 75px;
  border: 2px solid #D1D7FA;
  border-radius: 12px;
  background-size: 32px;
  background-position: left 22px center;
  background-repeat: no-repeat;
}
body > div#main.settings_users > div#content div.card > div {
  max-width: 370px;
}
body > div#main.settings_users > div#content div.card > div > div.titled {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main.settings_users > div#content div.card > div > div.name-account {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #7B7F9D;
  overflow: hidden;
  text-overflow: ellipsis;
}
body > div#main.settings_users > div#content div.card > a {
  color: #2B43E3;
}
body > div#main.settings_users > div#content div.card > a:hover {
  color: #7686EF;
}
body > div#main.settings_users > div#content div.card > a:active {
  color: #102089;
}
body > div#main.settings_users > div#content div.card > div.actions {
  text-align: right;
}
body > div#main.settings_users > div#content div.card > div.actions > a {
  display: block;
}
body > div#main.settings_users > div#content input {
  width: 385px;
  padding-top: 8px;
  padding-bottom: 8px;
  vertical-align: middle;
}
body > div#main.settings_users > div#content input.focus {
  animation: iload 900ms linear 3;
}
@keyframes iload {
  from {
    border-color: #D1D7FA;
  }
  50% {
    color: #050B2E;
    border-color: #FF7200;
    box-shadow: 0 0 10px inset #FF7200;
  }
  to {
    border-color: #D1D7FA;
  }
}
body > div#main.settings_users > div#content select {
  width: 100%;
}
body > div#main.settings_users > div#content select.focus {
  animation: sload 900ms linear 3;
}
@keyframes sload {
  from {
    border-color: #D1D7FA;
  }
  50% {
    color: #050B2E;
    border-color: #FF7200;
    box-shadow: 0 0 10px inset #FF7200;
  }
  to {
    border-color: #D1D7FA;
  }
}
body > div#main.settings_users > div#content > div {
  max-width: 560px;
  margin: 0 auto;
}
body > div#main.settings_users > div#content > div.auth > div.name {
  margin-bottom: 24px;
}
body > div#main.settings_users > div#content > div.auth > div.name > a.update {
  display: inline-block;
  padding: 8px 16px 8px 48px;
  border: 2px solid #D1D7FA;
  border-radius: 12px;
  background-image: url("icons/edit.svg");
  background-size: 24px;
  background-position: left 16px center;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 24px;
}
body > div#main.settings_users > div#content > div.auth > div.name > a.update:hover {
  color: #102089;
  border-color: #7686EF;
  background-color: #E8EBFC;
}
body > div#main.settings_users > div#content > div.auth > div.name > a.update:active {
  color: #102089;
  border-color: #7686EF;
  background-color: #7686EF;
}
body > div#main.settings_users > div#content > div.auth > div.name > a.update:before {
  content: "изменить";
}
body > div#main.settings_users > div#content > div.auth > div.name.login {
  display: grid;
  align-items: center;
  grid-template-areas: "caption caption caption" "input button hint" "warning warning warning";
  margin-bottom: 12px;
}
body > div#main.settings_users > div#content > div.auth > div.name.login > div.caption {
  grid-area: caption;
}
body > div#main.settings_users > div#content > div.auth > div.name.login > input {
  grid-area: input;
}
body > div#main.settings_users > div#content > div.auth > div.name.login > a.update {
  grid-area: button;
}
body > div#main.settings_users > div#content > div.auth > div.name.login > a.faq {
  grid-area: hint;
  margin-left: 8px;
}
body > div#main.settings_users > div#content > div.auth > div.name.login > div.warning {
  grid-area: warning;
  margin-bottom: 0;
}
body > div#main.settings_users > div#content > div.auth > div.password {
  margin-top: 0;
}
body > div#main.settings_users > div#content > div.auth > div.password > a {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 12px;
  box-sizing: border-box;
  background-color: #2B43E3;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main.settings_users > div#content > div.auth > div.password > a:hover {
  background-color: #7686EF;
  color: #FFF;
}
body > div#main.settings_users > div#content > div.auth > div.password > a:active {
  background-color: #102089;
  color: #FFF;
}
body > div#main.settings_users > div#content > div.bind-social {
  margin-top: 64px;
}
body > div#main.settings_users > div#content > div.bind-social > div.card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body > div#main.settings_users > div#content > div.bind-social > div.card.vk {
  background-image: url("logo/socialnet/vk.svg");
  margin-bottom: 16px;
}
body > div#main.settings_users > div#content > div.bind-social > div.card.yandex {
  background-image: url("logo/socialnet/yandex.svg");
}
body > div#main.settings_users > div#content > div.bind-social > div.card > a {
  color: #2B43E3;
}
body > div#main.settings_users > div#content > div.bind-social > div.card > a:hover {
  color: #7686EF;
}
body > div#main.settings_users > div#content > div.bind-social > div.card > a:active {
  color: #102089;
}
body > div#main.settings_users > div#content > div.notifications {
  margin-top: 64px;
}
body > div#main.settings_users > div#content > div.notifications > div.corp {
  margin-bottom: 16px;
}
body > div#main.settings_users > div#content > div.notifications > div.corp > div.card {
  background-image: url("logo/socialnet/email.svg");
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body > div#main.settings_users > div#content > div.notifications > div.corp > div.card > div:last-of-type > a {
  color: #2B43E3;
}
body > div#main.settings_users > div#content > div.notifications > div.corp > div.card > div:last-of-type > a:hover {
  color: #7686EF;
}
body > div#main.settings_users > div#content > div.notifications > div.corp > div.card > div:last-of-type > a:active {
  color: #102089;
}
body > div#main.settings_users > div#content > div.notifications > div.corp > div.card > div:last-of-type > a.delete {
  color: #E13A3A;
}
body > div#main.settings_users > div#content > div.notifications > div.telegram_bot > div.card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url("logo/socialnet/telegram.svg");
}
body > div#main.settings_users > div#content > div.timezone {
  margin-top: 64px;
}
body > div#main.settings_users > div#content > div.delete_account {
  margin-top: 64px;
  text-align: center;
}
body > div#main.settings_users > div#content > div.delete_account > a {
  color: #E13A3A;
}
body > div#main.settings_users > div#content > div.delete_account > a:hover {
  color: #ef7676;
}
body > div#main.settings_users > div#content > div.delete_account > a:active {
  color: #891010;
}
body > div#main.settings_users > div#content > div.delete_account.disabled {
  filter: opacity(0.4);
}
body > div#main.settings_users > div#content > div.delete_account.disabled > a {
  pointer-events: none;
  cursor: auto;
}
body > div#main.settings_users > div#content > div.delete_account.disabled > a:hover {
  color: #E13A3A;
}
body > div#main.settings_users > div#content > div.delete_account.disabled > a:active {
  color: #E13A3A;
}
body > div#main.settings_users > div#content a.disabled, body > div#main.settings_users > div#content select.disabled {
  pointer-events: none;
}
body > div#main.settings_users > div#content.disabled a, body > div#main.settings_users > div#content.disabled select {
  pointer-events: none;
}
body > div#main.settings_users > div#content.disabled select {
  background-color: #D2D2D2;
  border-color: #D2D2D2;
  color: #7B7F9D;
}
body > div#main.settings_users > div#content.disabled > div.auth > div.name > a.update {
  pointer-events: none;
  background-image: url("icons/edit_gray.svg");
  background-size: 24px;
  background-position: left 16px center;
  background-repeat: no-repeat;
  border-color: #D2D2D2;
  background-color: #D2D2D2;
  color: #A9AAB0;
}
body > div#main.settings_users > div#content.disabled > div.auth > div.password > a {
  border-color: #D2D2D2;
  background-color: #D2D2D2;
  color: #A9AAB0;
}
body > div#main.settings_users > div#content.disabled > div.bind-social a, body > div#main.settings_users > div#content.disabled div.notifications a {
  color: #A9AAB0 !important;
}
body > div#main.settings_users > div#content.disabled > div.bind-social a.delete, body > div#main.settings_users > div#content.disabled div.notifications a.delete {
  color: #f5a3a3 !important;
}
body > div#main.settings_users > div#content.disabled > div.delete_account > a {
  color: #f5a3a3;
}
body > div#main.special-page > div#content > div {
  max-width: 1200px;
  margin: 30px auto 56px auto;
  padding: 72px 0;
  background-color: #F5F7FF;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #050B2E;
  text-align: center;
  border-radius: 24px;
  border: 2px dashed #D1D7FA;
}
body > div#main.comment > div#content > div.textarea-char-counter {
  max-width: 1200px;
  width: 100%;
}
body > div#main.comment > div#content > button {
  margin-top: 10px;
  max-width: 1200px;
  width: 100%;
}
body > div#main.notifications > div#menu > div.socials {
  margin-top: 20px;
  display: grid;
  grid-template-columns: min-content min-content;
  grid-template-rows: min-content min-content;
  grid-auto-flow: column;
  gap: 2px 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main.notifications > div#menu > div.socials > p {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
body > div#main.notifications > div#menu > div.socials > p > a.faq {
  vertical-align: middle;
  margin-left: 4px;
}
body > div#main.notifications > div#menu > div.socials > div {
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 4px 34px 4px 16px;
  color: #050B2E;
  width: 170px;
  height: 30px;
  background-color: #FFF;
  border-radius: 8px;
  border: 2px solid #D1D7FA;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.5px;
}
body > div#main.notifications > div#menu > div.socials > div > a {
  position: absolute;
  right: 4px;
  top: 4px;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background-image: url("icons/edit.svg");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}
body > div#main.notifications > div#menu > div.socials > div > a:hover {
  background-color: #E8EBFC;
}
body > div#main.notifications > div#menu > div.socials > div > a:active {
  background-color: #D1D7FA;
}
body > div#main.notifications > div#menu > div.socials > div.disabled {
  filter: opacity(0.6);
  user-select: none;
}
body > div#main.notifications > div#menu > div.socials > div.disabled > a {
  cursor: auto;
}
body > div#main.notifications > div#menu > div.socials > div.disabled > a:hover {
  background-color: transparent;
}
body > div#main.notifications > div#menu > div.socials > div.disabled > a:active {
  background-color: transparent;
}
body > div#main.notifications > div#filters > form > div.content {
  display: grid;
  grid-template-columns: 236px 28px 236px;
  grid-template-rows: min-content min-content;
  grid-template-areas: "header header header" "dc dash de";
}
body > div#main.notifications > div#filters > form > div.content > h2 {
  grid-area: header;
  margin-bottom: 16px;
}
body > div#main.notifications > div#filters > form > div.content > span {
  margin-top: 47px;
  text-align: center;
}
body > div#main.notifications > div#filters > form > div.content > label > p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
body > div#main.notifications > div#filters > form > div.content > label > input {
  width: 100%;
}
body > div#main.notifications > div#filters > form > div.content > label > input[type=date] {
  width: calc(100% - 24px);
}
body > div#main.notifications > div#content {
  max-width: 900px;
}
body > div#main.notifications > div#content:has(div.empty:only-child) {
  max-width: none;
}
body > div#main.notifications > div#content > table {
  border-radius: 0;
  width: 100%;
}
body > div#main.notifications > div#content > table > tbody > div {
  margin-bottom: 14px;
}
body > div#main.notifications > div#content > table > tbody > div > a {
  display: block;
  position: relative;
  padding: 14px 46px 14px 16px;
  background-color: #E8EBFC;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #050B2E;
}
body > div#main.notifications > div#content > table > tbody > div > a:before {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("icons/hide_list.svg");
  background-size: 32px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(0);
  transition-property: transform;
  transition-duration: 300ms;
}
body > div#main.notifications > div#content > table > tbody > div > a:hover {
  background-color: #D1D7FA;
}
body > div#main.notifications > div#content > table > tbody > div > a:not(:last-of-type) {
  margin-bottom: 16px;
}
body > div#main.notifications > div#content > table > tbody > div > a:has(+ div.message:not(:empty)):before {
  transform: rotate(180deg);
  transition-property: transform;
  transition-duration: 300ms;
}
body > div#main.notifications > div#content > table > tbody > div > a.not_readed {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
body > div#main.notifications > div#content > table > tbody > div > a.not_readed:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("icons/message_new.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  border-radius: 6px;
  vertical-align: middle;
  flex: none;
  display: inline-block;
}
body > div#main.notifications > div#content > table > tbody > div > div.message {
  background-color: #F5F7FF;
  display: block;
  height: 0;
  padding: 0 16px;
  filter: opacity(0);
}
@keyframes show-message {
  0% {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    filter: opacity(0);
  }
  100% {
    height: inherit;
    padding: 24px 16px 14px 16px;
    filter: opacity(1);
  }
}
@keyframes hide-message {
  0% {
    height: inherit;
    padding: 24px 16px 14px 16px;
    filter: opacity(1);
  }
  100% {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    filter: opacity(0);
  }
}
body > div#main.notifications > div#content > table > tbody > div > div.message:not(:empty) {
  height: inherit;
  padding: 24px 16px 14px 16px;
  filter: opacity(1);
}
body > div#main.notifications > div#content > table > tbody > div > div.message.open {
  animation: show-message 150ms;
}
body > div#main.notifications > div#content > table > tbody > div > div.message.close {
  animation: hide-message 150ms;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > p {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.5px;
  padding-bottom: 12px;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > ul {
  list-style-type: none;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > ul:first-of-type {
  padding-bottom: 16px;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > ul > li {
  padding: 8px 16px;
  line-height: 24px;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > ul > li:nth-child(even) {
  background-color: #E8EBFC;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > ul > li:hover {
  background-color: #D1D7FA;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > ul > li > a {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > ul > li > a {
  color: #2B43E3;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > ul > li > a:hover {
  color: #7686EF;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > ul > li > a:active {
  color: #102089;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > table {
  width: 100%;
  border-radius: 0;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > table + table {
  margin-top: 24px;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > table > caption {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > table > tbody a {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > table > tbody a {
  color: #2B43E3;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > table > tbody a:hover {
  color: #7686EF;
}
body > div#main.notifications > div#content > table > tbody > div > div.message > table > tbody a:active {
  color: #102089;
}
body > div#main.history > div#menu > div.titled > span {
  display: block;
  margin-top: 6px;
}
body > div#main.history > div#filters > form > div.content {
  display: grid;
  grid-template-columns: 236px 28px 236px;
  grid-template-rows: min-content min-content min-content min-content auto;
  grid-template-areas: "header header header" "dc dash de" "params params params" "list list list" ". . .";
}
body > div#main.history > div#filters > form > div.content > * {
  margin-bottom: 16px;
}
body > div#main.history > div#filters > form > div.content > h2 {
  grid-area: header;
}
body > div#main.history > div#filters > form > div.content > span {
  margin-top: 47px;
  text-align: center;
}
body > div#main.history > div#filters > form > div.content > label > p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
body > div#main.history > div#filters > form > div.content > label > input {
  width: 100%;
}
body > div#main.history > div#filters > form > div.content > label > input[type=date] {
  width: calc(100% - 24px);
}
body > div#main.history > div#filters > form > div.content > div.enum {
  grid-area: params;
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
}
body > div#main.history > div#filters > form > div.content > div.enum > p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  flex: 100%;
}
body > div#main.history > div#filters > form > div.content > div.enum > p:nth-of-type(2) {
  margin-top: 8px;
}
body > div#main.history > div#filters > form > div.content > div.list {
  grid-area: list;
}
body > div#main.history > div#content > table {
  width: 100%;
  margin-bottom: 24px;
  table-layout: fixed;
}
body > div#main.history > div#content > table:has(thead:empty, tbody:empty) {
  display: none;
}
body > div#main.history > div#content > table:has(thead:empty, tbody:empty) ~ div.empty {
  display: block;
}
body > div#main.history > div#content > table > thead > tr td {
  text-align: left;
  overflow: hidden;
  width: 40%;
}
body > div#main.history > div#content > table > thead > tr td:nth-child(1) {
  text-align: center;
  width: 50px;
}
body > div#main.history > div#content > table > thead > tr td:nth-child(2) {
  text-align: left;
  width: 250px;
}
body > div#main.history > div#content > table > thead > tr td:nth-child(2) > a {
  display: block;
  text-align: left;
  padding: 8px 40px 8px 16px;
  border-radius: 12px;
}
body > div#main.history > div#content > table > thead > tr td:nth-child(2) > a.asc {
  background-color: #D1D7FA;
}
body > div#main.history > div#content > table > thead > tr td:nth-child(2) > a.asc > span:first-of-type {
  background-image: url("icons/array_down.svg");
  background-size: 20px;
  background-position: right center;
  background-repeat: no-repeat;
}
body > div#main.history > div#content > table > thead > tr td:nth-child(2) > a.desc {
  background-color: #D1D7FA;
}
body > div#main.history > div#content > table > thead > tr td:nth-child(2) > a.desc > span:first-of-type {
  background-image: url("icons/array_up.svg");
  background-size: 20px;
  background-position: right center;
  background-repeat: no-repeat;
}
body > div#main.history > div#content > table > thead > tr td:nth-child(2) > a > span {
  text-align: left;
}
body > div#main.history > div#content > table > thead > tr td:nth-child(2) > a > span:first-of-type {
  display: inline-block;
  padding-right: 32px;
  margin-bottom: 8px;
}
body > div#main.history > div#content > table > thead > tr td:nth-child(2) > a > span:last-of-type {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
}
body > div#main.history > div#content > table > thead > tr td:nth-child(5) {
  width: 20%;
}
body > div#main.history > div#content > table > tbody > tr > td {
  overflow: hidden;
  word-break: break-word;
}
body > div#main.history > div#content > table > tbody > tr > td:first-child {
  text-align: center;
  word-break: break-word;
}
body > div#main.history > div#content > table > tbody > tr > td:nth-child(2) {
  padding: 16px 48px 16px 24px;
}
body > div#main.history > div#content > table > tbody > tr > td:nth-child(2) > p:first-of-type {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  word-break: break-word;
}
body > div#main.history > div#content > table > tbody > tr > td > p {
  position: relative;
  padding-right: 16px;
}
body > div#main.history > div#content > table > tbody > tr > td > p:has(+ a.btn-view) {
  display: inline-block;
  vertical-align: middle;
}
body > div#main.history > div#content > table > tbody > tr > td > p:has(+ a.btn-view):after {
  content: "";
  background-image: url("icons/curve_arrow.svg");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 4px;
  right: 0;
}
body > div#main.history > div#content > table > tbody > tr > td > a.btn-view {
  margin-left: 12px;
  vertical-align: middle;
  display: none;
}
body > div#main.history > div#content > table > tbody > tr > td > a {
  position: relative;
  padding-right: 16px;
  display: inline-block;
  text-decoration-line: underline;
  text-underline-offset: 2px;
}
body > div#main.history > div#content > table > tbody > tr > td > a:after {
  content: "";
  background-image: url("icons/curve_arrow.svg");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 4px;
  right: 0;
  display: none;
}
body > div#main.history > div#content > table > tbody > tr > td > a:hover {
  color: #2B43E3;
  cursor: alias;
}
body > div#main.team.settings_rules > div#content > form {
  display: inline-block;
  max-width: 800px;
  width: 100%;
}
body > div#main.team.settings_rules > div#content > form > h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-align: left;
  padding-left: 4px;
}
body > div#main.team.settings_rules > div#content > form > table {
  margin-bottom: 8px;
  width: 100%;
}
body > div#main.team.settings_rules > div#content > form > table > thead > tr > th {
  padding-right: 18px;
  padding-left: 18px;
}
body > div#main.team.settings_rules > div#content > form > table > thead > tr > th:first-of-type {
  padding-right: 36px;
  width: 300px;
}
body > div#main.team.settings_rules > div#content > form > table > tbody > tr > td {
  text-align: center;
  padding-right: 18px;
  padding-left: 18px;
}
body > div#main.team.settings_rules > div#content > form > table > tbody > tr > td:first-of-type {
  padding-right: 36px;
}
body > div#main.team.settings_rules > div#content > form > table span {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: #2B43E3;
  vertical-align: super;
  cursor: default;
}
body > div#main.team.settings_rules > div#content > form > div.notes {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  padding-left: 6px;
  margin-bottom: 46px;
  width: 400px;
}
body > div#main.team.settings_rules > div#content > form > input {
  display: inline-block;
  width: 100%;
}
body > div#footer {
  grid-area: footer;
}
body > div#dialog > dialog.comment > div.container > div.content > div.subjectData > p.name {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
body > div#dialog > dialog.comment > div.container > div.content > div.subjectData > p:before {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: #7B7F9D;
  margin-right: 8px;
}
body > div#dialog > dialog.comment > div.container > div.content > div.subjectData > p.inn:before {
  content: "ИНН";
  margin-bottom: 4px;
}
body > div#dialog > dialog.comment > div.container > div.content > div.subjectData > p.snils:before {
  content: "СНИЛС";
}
body > div#dialog > dialog.comment > div.container > div.content > div.subjectData > p.ogrn:before {
  content: "ОГРН";
}
body > div#dialog > dialog.comment > div.container > div.content > div.comment {
  max-height: 400px;
  margin-top: 20px;
  word-wrap: break-word;
  font-weight: 300;
  overflow: auto;
  outline: none;
  text-align: justify;
  padding-right: 12px;
}
body > div#dialog > dialog.comment > div.container > div.buttons {
  padding-top: 12px;
  background: #FFF;
  box-shadow: 0px -10px 20px 0px #FFF;
}
body > div#dialog > dialog.updateGroup > div.container > div.content > select {
  width: 100%;
}
body > div#dialog > dialog.updateGroup > div.container > div.buttons {
  margin-top: 16px;
}
body > div#dialog > dialog.changeGroup select {
  width: 100%;
  margin: 0;
}
body > div#dialog > dialog.createGroup > div.container > form {
  margin: 16px 0;
}
body > div#dialog > dialog.createGroup > div.container > form > div.input-char-counter > input {
  width: 100%;
}
body > div#dialog > dialog.createGroup > div.container > form > label {
  display: block;
  user-select: none;
  margin-top: 21px;
}
body > div#dialog > dialog.createGroup > div.container > form > label > br {
  display: none;
}
body > div#dialog > dialog.createGroup > div.container > form > label > label.checkbox {
  margin-left: 10px;
}
body > div#dialog > dialog.updateGroup > div.container > form > div.input-char-counter {
  margin-bottom: 12px;
  width: 100%;
}
body > div#dialog > dialog.updateGroup > div.container > form > div.input-char-counter > input {
  width: 100%;
}
body > div#dialog > dialog.updateRole > div.container > form {
  margin: 16px 0;
}
body > div#dialog > dialog.updateRole > div.container > form > label {
  display: block;
  width: max-content;
}
body > div#dialog > dialog.updateRole > div.container > form > label:first-of-type {
  margin-bottom: 14px;
}
body > div#dialog > dialog.updateRole > div.container > form > label > label.radio {
  margin-right: 6px;
}
body > div#dialog > dialog.assignStatus > div.container > form > p {
  margin-bottom: 4px;
}
body > div#dialog > dialog.assignStatus > div.container > form > p:last-of-type {
  font-size: 14px;
  line-height: 18px;
}
body > div#dialog > dialog.assignStatus > div.container > form > select {
  width: 100%;
  margin-bottom: 10px;
}
body > div#dialog > dialog.assignStatus > div.container > form > input {
  display: block;
  width: min-content;
  margin: 6px auto 0 auto;
}
body > div#dialog > dialog.inviteUser > div.container > div > p {
  margin-bottom: 4px;
}
body > div#dialog > dialog.inviteUser > div.container > div > p.time {
  margin-top: 4px;
  text-align: center;
  font-size: 12px;
  color: #E13A3A;
}
body > div#dialog > dialog.inviteUser > div.container > div > div {
  display: flex;
}
body > div#dialog > dialog.inviteUser > div.container > div > div:first-of-type {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
body > div#dialog > dialog.inviteUser > div.container > div > div:first-of-type span, body > div#dialog > dialog.inviteUser > div.container > div > div:first-of-type a {
  vertical-align: middle;
}
body > div#dialog > dialog.inviteUser > div.container > div > div:first-of-type span {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.5px;
  margin-right: 20px;
}
body > div#dialog > dialog.inviteUser > div.container > div > div:first-of-type a {
  display: inline-block;
  width: 85px;
  height: 45px;
  background-image: url("icons/copy.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}
body > div#dialog > dialog.inviteUser > div.container > div > div:first-of-type a:hover {
  background-color: #7686EF;
  color: #FFF;
  background-image: url("icons/copy_white.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
body > div#dialog > dialog.inviteUser > div.container > div > div:first-of-type a.green {
  background-image: url("icons/ok.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: auto;
}
body > div#dialog > dialog.inviteUser > div.container > div > div:first-of-type a.green:hover {
  background-color: #FFF;
  color: #FFF;
}
body > div#dialog > dialog.inviteUser > div.container > div > div:last-of-type {
  flex-direction: column;
  align-items: center;
}
body > div#dialog > dialog.inviteUser > div.container > div > div:last-of-type input {
  flex: 1;
  width: 100%;
  margin-bottom: 8px;
}
body > div#dialog > dialog.inviteUser > div.container > div > div:last-of-type a {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 6px;
  width: min-content;
  min-width: 150px;
  text-align: center;
  background-color: #2B43E3;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  font-weight: 500;
}
body > div#dialog > dialog.inviteUser > div.container > div > div:last-of-type a:not(.disabled):hover {
  background-color: #7686EF;
  color: #FFF;
}
body > div#dialog > dialog.inviteUser > div.container > div > div:last-of-type a:not(.disabled):active {
  background-color: #102089;
  color: #FFF;
}
body > div#dialog > dialog.inviteUser > div.container > div > div:last-of-type a.disabled {
  filter: opacity(0.3);
  cursor: auto;
}
body > div#dialog > dialog.hint.settings-team ol {
  margin-bottom: 4px;
}
body > div#dialog > dialog.depositWallet > div.container > div.body {
  margin: 16px 0;
}
body > div#dialog > dialog.depositWallet > div.container > div.body > p {
  margin-bottom: 12px;
}
body > div#dialog > dialog.depositWallet > div.container > div.body > div > input {
  width: 300px;
  margin-bottom: 12px;
}
body > div#dialog > dialog.depositWallet > div.container > div.body > div > p {
  display: inline-block;
  margin-left: 12px;
}
body > div#dialog > dialog.depositWallet > div.container > div.body > div > p.red {
  color: #E13A3A;
}
body > div#dialog > dialog.depositWallet > div.container > div.body > input {
  width: 100%;
}
body > div#dialog > dialog.hint.check-statistics b:after {
  content: attr(data-desktop);
}
body > div#dialog > dialog.changeEmail {
  width: 350px;
}
body > div#dialog > dialog.changeEmail > div.container > p {
  position: relative;
}
body > div#dialog > dialog.changeEmail > div.container > p a {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0 auto 4px;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div input {
  display: block;
  width: 100%;
  margin-bottom: 6px;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div:first-child {
  position: relative;
  margin-top: 12px;
  text-align: right;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div:first-child > p.caption {
  text-align: left;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div:first-child > a {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 12px;
  box-sizing: border-box;
  background-color: #2B43E3;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
  margin-top: 12px;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div:first-child > a:hover {
  background-color: #7686EF;
  color: #FFF;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div:first-child > a:active {
  background-color: #102089;
  color: #FFF;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div:first-child > a.disabled {
  pointer-events: none;
  opacity: 0.4;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div:first-child > p.timer {
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: #E13A3A;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div:first-child > p.timer:empty {
  display: none;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div:last-child {
  margin-top: 20px;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div:last-child > div.warning {
  padding: 16px 24px 16px 50px;
  border-radius: 12px;
  margin-bottom: 12px;
  text-align: left;
  background-color: #F5F7FF;
  color: #050B2E;
  margin-top: 15px;
  word-break: break-all;
  background-image: url("icons/info.svg");
  background-size: 24px;
  background-position: top 14px left 14px;
  background-repeat: no-repeat;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div:last-child > div.warning:empty {
  display: none;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div:last-child > a {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 12px;
  box-sizing: border-box;
  background-color: #2B43E3;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  width: 100%;
  text-align: center;
  margin-top: 12px;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div:last-child > a:hover {
  background-color: #7686EF;
  color: #FFF;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div:last-child > a:active {
  background-color: #102089;
  color: #FFF;
}
body > div#dialog > dialog.changeEmail > div.container > div.content > div:last-child > a:disabled {
  pointer-events: none;
  opacity: 0.4;
}
body > div#dialog > dialog.changeUsername > div.container > div.content {
  margin-top: 12px;
  margin-bottom: 16px;
}
body > div#dialog > dialog.changeUsername > div.container > div.content input {
  width: 100%;
}
body > div#dialog > dialog.changePassword > div.container > div.body {
  margin-top: 12px;
  margin-bottom: 16px;
}
body > div#dialog > dialog.changePassword > div.container > div.body input {
  width: 100%;
}
body > div#dialog > dialog.changePassword > div.container > div.body input:first-of-type {
  margin-bottom: 12px;
}
body > div#dialog > dialog.generateTelegramLink > div.container > div > p {
  margin-bottom: 4px;
}
body > div#dialog > dialog.generateTelegramLink > div.container > div > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 14px;
}
body > div#dialog > dialog.generateTelegramLink > div.container > div > div span, body > div#dialog > dialog.generateTelegramLink > div.container > div > div a {
  vertical-align: middle;
}
body > div#dialog > dialog.generateTelegramLink > div.container > div > div span {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.5px;
  margin-right: 20px;
  word-break: break-all;
}
body > div#dialog > dialog.generateTelegramLink > div.container > div > div a {
  display: inline-block;
  width: 85px;
  height: 45px;
  background-image: url("icons/copy.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}
body > div#dialog > dialog.generateTelegramLink > div.container > div > div a:hover {
  background-color: #7686EF;
  color: #FFF;
  background-image: url("icons/copy_white.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
body > div#dialog > dialog.generateTelegramLink > div.container > div > div a.green {
  background-image: url("icons/ok.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: auto;
}
body > div#dialog > dialog.generateTelegramLink > div.container > div > div a.green:hover {
  background-color: #FFF;
  color: #FFF;
}
body > div#dialog > dialog.deleteAccount > div.container > p.deleteAccount {
  margin-bottom: 16px;
}
body > div#dialog > dialog.deleteAccount > div.container > div.content > select {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
body > div#dialog > dialog.deleteAccount > div.container > div.content > div {
  margin-top: 8px;
  color: #3C4475;
}
body > div#dialog > dialog.deleteAccount > div.container > div.content > p {
  margin-bottom: 6px;
}
body > div#dialog > dialog.deleteAccount > div.container > div.content > input {
  width: 100%;
}

/*# sourceMappingURL=console.css.map */
