<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.strong {
  font-weight: 600 !important;
  color: #3e4c59 !important;
}
.thin {
  font-weight: 400 !important;
  color: #3e4c59 !important;
}
.btn {
  font-size: 0.875em;
  font-weight: 600;
  outline: none;
  border: none;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  cursor: pointer;
}
.btn.btn_full-width {
  width: 100%;
}
.btn:disabled {
  cursor: not-allowed;
}
.btn.btn_type_1 {
  color: #ffffff;
  background: #0967d2;
}
.btn.btn_type_1:disabled {
  background: #9dc2ed;
}
.btn.btn_type_1:not(:disabled):hover {
  background: #2186eb;
}
.btn.btn_type_2 {
  color: #52606d;
  background: #e4e7eb;
}
.btn.btn_type_2:disabled {
  color: #9aa5b1;
  background: #f5f7fa;
}
.btn.btn_type_2:not(:disabled):hover {
  color: #52606d;
  background: #cbd2d9;
}
.btn.btn_type_3 {
  background: transparent;
  color: #0967d2;
}
div.btn.btn_type_3 {
  display: inline;
}
.btn.btn_type_3:disabled {
  color: rgba(9, 103, 210, 0.502);
}
.btn.btn_type_3:not(:disabled):hover {
  color: #2186eb;
  text-decoration: underline;
}
.btn.btn_type_4 {
  background-color: #d64545;
  color: #ffffff;
}
.btn.btn_type_4:disabled {
  background-color: #E66A6A;
}
.btn.btn_type_4:hover {
  background-color: #E66A6A;
}
.btn.btn_type_5 {
  background-color: transparent;
  color: #0967d2;
  border: 1px solid #0967d2;
}
.btn.btn_type_5:disabled {
  color: #9dc2ed;
  border-color: #9dc2ed;
}
.btn.btn_type_5:not(:disabled):hover {
  color: #2186eb;
  border-color: #2186eb;
}
.btn.btn_type_6 {
  background: transparent;
  color: #486581;
  border: none;
}
.btn.btn_type_7 {
  background: #def0fc;
  color: #0967d2;
  border: none;
}
.information_block {
  position: relative;
  padding: 18px 36px 20px 48px !important;
  border-left-width: 4px;
  border-left-style: solid;
  font-size: 16px;
}
.information_block.information_block-clock {
  background: url("/img/inform_icon_clock.svg"), #fffcf4;
}
.information_block.information_block-error {
  background: url("/img/alert_red.svg"), #fbe7e7;
}
.information_block.information_block-info {
  background: url("/img/information_icon.svg"), #f7f9fb;
}
.information_block.information_block-warning {
  background: url("/img/alert_yellow.svg"), #fffcf4;
}
.information_block.information_block-clock,
.information_block.information_block-error,
.information_block.information_block-info,
.information_block.information_block-warning {
  background-repeat: no-repeat, no-repeat;
  background-size: 20px, cover;
  background-position: 13px 18px, center;
}
.information_block.information_block-info {
  border-left-color: #bae3ff;
}
.information_block.information_block-clock,
.information_block.information_block-warning {
  border-left-color: #fae29f;
}
.information_block.information_block-error {
  border-left-color: #e25555;
}
.information_block .information_block__close {
  top: 13px;
  right: 13px;
  position: absolute;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.information_block .information_block__close img {
  width: 100%;
  height: 100%;
}
.information_block .information_block__heading {
  margin-bottom: 12px;
  font-weight: 600;
  color: #1f2933;
}
.information_block .information_block__text {
  font-size: 0.875em;
  line-height: 1.57142857em;
  color: #334e68;
}
.information_block .information_block__text a.btn {
  font-size: 1em;
}
.information_block .information_block__button_block {
  margin-top: 20px;
}
.loading_dots {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.loading_dots div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #1a5e7c;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loading_dots div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.loading_dots div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.loading_dots div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.loading_dots div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  100% {
    -webkit-transform: translate(19px, 0px);
    -moz-transform: translate(19px, 0px);
    -ms-transform: translate(19px, 0px);
    -o-transform: translate(19px, 0px);
    transform: translate(19px, 0px);
  }
}
.switcher {
  margin-left: auto;
  cursor: pointer;
  width: 26px;
  height: 10px;
  padding: 3px;
  background-color: #a1a9c3;
  position: relative;
  -webkit-transition: background 0.15s ease-in-out;
  -moz-transition: background 0.15s ease-in-out;
  -o-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
  -webkit-border-radius: 13px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 13px;
  -moz-background-clip: padding;
  border-radius: 13px;
  background-clip: padding-box;
}
.switcher.checked {
  background: #3ebd93;
}
.switcher.checked .selector {
  left: 19px;
}
.switcher.disabled {
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.switcher .selector {
  width: 10px;
  height: 10px;
  background-color: #fff;
  position: absolute;
  left: 3px;
  -webkit-transition: left 0.2s ease-in-out;
  -moz-transition: left 0.2s ease-in-out;
  -o-transition: left 0.2s ease-in-out;
  transition: left 0.2s ease-in-out;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
}
.input_label_custom {
  margin-bottom: 6px;
  display: block;
  font-weight: 600;
  color: #52606D;
  cursor: pointer;
  font-size: 0.75em;
}
.input_label_custom .important {
  color: #e12d39;
  font-weight: 400;
  font-size: 1em;
}
.input_custom {
  margin-bottom: 26px;
  width: auto;
  min-height: 17px;
  max-height: 17px;
  font-weight: 400;
  color: #1F2933;
  outline: none;
  background: #F5F7FA;
  border: 1px solid #CBD2D9;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  padding: 10.5px 4.02298851%;
  font-size: 0.875em;
}
.input_custom::-webkit-input-placeholder {
  color: #616e7c;
  font-style: normal;
  letter-spacing: normal;
}
.input_custom:-moz-placeholder {
  color: #616e7c;
  font-style: normal;
  letter-spacing: normal;
}
.input_custom::-moz-placeholder {
  color: #616e7c;
  font-style: normal;
  letter-spacing: normal;
}
.input_custom:-ms-input-placeholder {
  color: #616e7c;
  font-style: normal;
  letter-spacing: normal;
}
.input_custom.error {
  background: #ffffff;
  border-color: #E33C47 !important;
  -webkit-box-shadow: 0 0 0 2px #ffe3e3 !important;
  -moz-box-shadow: 0 0 0 2px #ffe3e3 !important;
  box-shadow: 0 0 0 2px #ffe3e3 !important;
}
.input_custom.error ~ .modal_wnd__input_block_error {
  display: block;
}
.input_custom:focus {
  background: #ffffff;
  border-color: #2186EB;
  -webkit-box-shadow: 0 0 0 2px #bae3ff;
  -moz-box-shadow: 0 0 0 2px #bae3ff;
  box-shadow: 0 0 0 2px #bae3ff;
}
.input_custom:disabled {
  color: #9AA5B1;
  background: #F7F8FA;
  border-color: #CFD6DC;
}
.input_custom:disabled::-webkit-input-placeholder {
  color: #9AA5B1;
  font-style: normal;
  letter-spacing: normal;
}
.input_custom:disabled:-moz-placeholder {
  color: #9AA5B1;
  font-style: normal;
  letter-spacing: normal;
}
.input_custom:disabled::-moz-placeholder {
  color: #9AA5B1;
  font-style: normal;
  letter-spacing: normal;
}
.input_custom:disabled:-ms-input-placeholder {
  color: #9AA5B1;
  font-style: normal;
  letter-spacing: normal;
}
.input_custom:disabled ~ .modal_wnd__input_label {
  color: #9AA5B1;
  cursor: initial;
}
.input_custom:disabled ~ .modal_wnd__input_block_tip {
  color: #7b8794;
}
.avatar {
  font-family: inherit;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  font-size: 1.125em;
}
.avatar.type_0 {
  background-color: #f9e9f3;
  color: #e14c95;
}
.avatar.type_1 {
  background-color: #fae9e7;
  color: #eb5556;
}
.avatar.type_2 {
  background-color: #fbeedd;
  color: #f95d2e;
}
.avatar.type_3 {
  background-color: #fbeedd;
  color: #dea029;
}
.avatar.type_4 {
  background-color: #ddf8ee;
  color: #1a9f6f;
}
.avatar.type_5 {
  background-color: #ddf8ee;
  color: #1696a1;
}
.avatar.type_6 {
  color: #4088f6;
  background-color: #def0fc;
}
.avatar.type_7 {
  background-color: #e3eeff;
  color: #5758e8;
}
.avatar.type_8 {
  background-color: #ebecfe;
  color: #7b45f0;
}
.avatar.type_not_activated {
  color: #45556b;
  background-color: #eef6fa;
}
.custom_checkbox {
  background: #ffffff;
  border: 1px solid #2186EBFF;
  width: 14.33px;
  height: 14px;
  margin-bottom: auto;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 2px #bae3ff;
  -moz-box-shadow: 0 0 0 2px #bae3ff;
  box-shadow: 0 0 0 2px #bae3ff;
}
.custom_checkbox.checked {
  background-color: #2186EBFF;
  background-image: url('/img/tick.svg');
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: 75%;
  -moz-background-size: 75%;
  background-size: 75%;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.semibold {
  font-weight: 600;
}
.btns {
  margin-top: 21px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.btns [class^="btn"] {
  padding: 6px 27px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  font-size: 0.875em;
}
.btns [class^="btn"]:not(:first-child) {
  margin-left: 9px;
}
.btns [class^="btn"] a {
  text-decoration: none;
}
.btns .btn_type_1:disabled:hover {
  background: #9dc2ed !important;
}
.btns .btn_type_7 {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.btns .btn_type_7 .arrow {
  min-height: 12px;
  display: inline-block;
  position: static;
  margin-left: 7px;
  width: 14px;
  background: url(/img/select_arrow_blue.svg) no-repeat center;
  -webkit-background-size: 14px;
  -moz-background-size: 14px;
  background-size: 14px;
}
.btns .btn_type_7 .arrow.rotate_img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.link {
  display: inline-block;
  border-bottom: 1px solid #0552b5;
  color: #0552b5 !important;
  cursor: pointer;
  text-decoration: none;
}
.info_section {
  margin-top: 12px;
  margin-left: -10px;
  width: 933px;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Driod Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
}
.info_section * {
  margin: 0;
  padding: 0;
}
.info_section .info_block {
  width: 100%;
  text-align: left;
  border-left: none;
  padding: 32px 24px;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 8px 0 rgba(99, 107, 121, 0.46);
  -moz-box-shadow: 0 0 8px 0 rgba(99, 107, 121, 0.46);
  box-shadow: 0 0 8px 0 rgba(99, 107, 121, 0.46);
  margin-bottom: 1.71489818%;
}
.info_section .info_block.gray_warning_block {
  background-color: #f6fafc;
  border: 1px solid #b4c8e0;
  padding: 20px;
  -webkit-border-radius: 10px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 10px;
  -moz-background-clip: padding;
  border-radius: 10px;
  background-clip: padding-box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.info_section .info_block.gray_warning_block .gray_warning_container {
  width: 36px;
  height: 36px;
  background-color: #eceef1;
  margin-right: 12px;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.info_section .info_block.gray_warning_block .gray_warning_container .gray_warning_icon {
  width: 22px;
}
.info_section .info_block.gray_warning_block .header_text {
  font-weight: bold;
  color: #052861;
  margin-bottom: 6px;
  font-size: 1em;
}
.info_section .info_block.gray_warning_block .desc_text {
  color: #465568;
  line-height: 1.6;
  font-size: 0.875em;
}
.info_section .info_block .info_header {
  color: #1f2933;
  font-weight: 600;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.125em;
}
.info_section .info_block .info_header.middle_size {
  font-size: 1em;
}
.info_section .info_block .info_desc_text {
  margin-top: 6px;
  line-height: 1.6;
  color: #486581;
  font-size: 0.875em;
}
.legal_info .distance_header {
  font-size: 14px;
}
.legal_info .info_block.public_contact .info_header,
.legal_info .info_block.public_contact .info_desc_text {
  color: #000;
}
.legal_info p.p_normal,
.legal_info li {
  line-height: 1.8;
}
.legal_info li &gt; h3 {
  margin-bottom: 0;
}
.legal_info ul li ol {
  padding-left: 15px;
}
</pre></body></html>