@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
  -webkit-tap-highlight-color: transparent;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

input,
button,
textarea {
  font-family: var(--font-family-default);
  font-size: inherit;
  outline: none;
}

video:focus {
  outline: none;
}

img {
  pointer-events: none;
}

button {
  color: inherit;
  background-color: inherit;
  cursor: pointer;
}

a {
  color: inherit;
}
a:focus, a:active {
  outline: none;
}
a:link, a:visited, a:hover {
  text-decoration: none;
}
a[href^=tel], a[href^=mailto] {
  white-space: nowrap;
}
a[data-modal], a[data-fancybox] {
  display: block;
}

ul li {
  list-style: none;
}

ol {
  counter-reset: section;
  list-style-type: none;
}
ol > li {
  position: relative;
  padding-left: 20px;
  list-style: none;
  list-style-type: none;
}
ol > li:not(:last-child) {
  margin-bottom: 12px;
}
ol > li:before {
  position: absolute;
  left: 0;
  top: 0;
  counter-increment: section;
  content: counter(section) ". ";
}
ol > li > ol {
  counter-reset: subsection;
}
ol > li > ol li {
  position: relative;
  padding-left: 20px;
}
ol > li > ol li:before {
  counter-increment: subsection;
  content: counter(section) "." counter(subsection) " ";
}
ol > li > ol li::before {
  content: "―";
  position: absolute;
  left: 0;
  top: -2px;
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
}
ol > li ol, ol > li ul {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

code {
  background-color: var(--gray-300);
  padding: 2px 5px;
  border-radius: 5px;
}

b,
strong {
  font-weight: 700;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Regular.eot");
  src: url("../fonts/Onest/Onest-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Onest/Onest-Regular.woff2") format("woff2"), url("../fonts/Onest/Onest-Regular.woff") format("woff"), url("../fonts/Onest/Onest-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-SemiBold.eot");
  src: url("../fonts/Onest/Onest-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Onest/Onest-SemiBold.woff2") format("woff2"), url("../fonts/Onest/Onest-SemiBold.woff") format("woff"), url("../fonts/Onest/Onest-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Bold.eot");
  src: url("../fonts/Onest/Onest-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Onest/Onest-Bold.woff2") format("woff2"), url("../fonts/Onest/Onest-Bold.woff") format("woff"), url("../fonts/Onest/Onest-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/Geologica-SemiBold.eot");
  src: url("../fonts/Geologica/Geologica-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Geologica/Geologica-SemiBold.woff2") format("woff2"), url("../fonts/Geologica/Geologica-SemiBold.woff") format("woff"), url("../fonts/Geologica/Geologica-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
:root {
  --font-family-default: "Onest";
  --font-family-second: "Geologica";
  --font-family-third: "";
  --fs-14: 14px;
  --color-primary: #276EE4;
  --color-primary-hover: #094AB7;
  --white: #ffffff;
  --gray-100: #3f3f3f;
  --gray-200: #313131;
  --body-color: #01061B;
  --tr: .25s ease-in-out;
  --headerH: 92px;
}

body {
  font-family: var(--font-family-default);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--body-color);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lock body {
  overflow: hidden;
  touch-action: none;
}
body:after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 149;
  transition: opacity 0.25s ease 0s;
}
.t-page {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  background-color: #F5F8F9;
}
.t-page__main {
  flex: 1 0 auto;
}

.container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.c-header__top {
  height: var(--headerH);
  border-bottom: 1px solid #DEE0E2;
  background-color: #fff;
}
.c-header__top-cnt {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.c-header__logotype {
  display: inline-flex;
}
.c-header__logotype-link {
  display: inline-flex;
}
.c-header__logotype-link img {
  width: auto;
  height: 56px;
}
.c-header__top-m {
  justify-self: center;
}
.c-header__top-r {
  display: flex;
  align-items: center;
  gap: 20px;
}
.c-header__fake {
  height: var(--headerH);
}

.c-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.c-menu a {
  display: inline-block;
  padding: 4px 16px;
  line-height: 1.6em;
  white-space: nowrap;
  font-weight: 600;
}

.ui-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  max-width: 100%;
  height: 44px;
  font-family: var(--font-family-default);
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 16px;
  line-height: 1em;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  text-align: center;
  transition: var(--tr);
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ui-button__icon {
  min-width: 16px;
  min-height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--tr);
}
.ui-button__icon svg {
  fill: currentColor;
}
.ui-button--primary {
  color: var(--white);
  background-color: var(--color-primary);
}
@media (any-hover: hover) {
  .ui-button--primary:hover {
    background-color: var(--color-primary-hover);
    color: var(--white);
  }
}
.ui-button--outline-black {
  border: 1px solid var(--body-color);
  color: var(--body-color);
}
@media (any-hover: hover) {
  .ui-button--outline-black:hover {
    background-color: var(--body-color);
    color: var(--white);
  }
}
.ui-button--link {
  height: 29px;
  padding: 0;
  font-family: var(--font-family-second);
  color: var(--color-primary);
}
.ui-button--link.is-active .ui-button__icon {
  transform: rotate(-180deg);
}
.ui-button--lg {
  height: 60px;
  font-size: 20px;
  padding-left: 40px;
  padding-right: 40px;
}
.ui-button-rounded {
  width: 48px;
  height: 48px;
  background-color: #EFF6F8;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--tr);
}
.ui-button-rounded svg {
  fill: #95A6AE;
}
.ui-button .for-state-active {
  display: none;
}
.ui-button.is-active .for-state-default {
  display: none;
}
.ui-button.is-active .for-state-active {
  display: block;
}

.c-footer {
  background-color: #E4EEF1;
  padding-top: 20px;
  padding-bottom: 20px;
}
.c-footer__under {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.c-footer__under a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.f-heading-21 {
  font-family: var(--font-family-second);
  font-size: 21px;
  font-weight: 600;
}
.f-heading-26 {
  font-family: var(--font-family-second);
  font-size: 26px;
  line-height: 1.4em;
  font-weight: 600;
}
.f-heading-50 {
  font-family: var(--font-family-second);
  font-size: 50px;
  line-height: 1.2em;
  font-weight: 600;
}
.f-text-desc {
  font-size: 18px;
  line-height: 1.6em;
  color: #4A595E;
}
.f-text-desc-sm {
  font-size: 14px;
  line-height: 1.6em;
  color: #4A595E;
}

.u-text-center {
  text-align: center;
}

.c-card-convert {
  display: block;
  padding: 35px;
  background-color: #fff;
  border: 1px solid #DAE6EA;
  border-radius: 16px;
  transition: box-shadow var(--tr), border-color var(--tr);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
@media (any-hover: hover) {
  .c-card-convert:hover {
    box-shadow: 0 0 36px 0 rgba(11, 23, 48, 0.12);
    border-color: transparent;
  }
  .c-card-convert:hover .ui-button-rounded {
    background-color: var(--body-color);
  }
}
.c-card-convert__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
}
.c-card-convert__title:not(:last-child) {
  margin-bottom: 10px;
}

.c-convert-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  max-width: 1344px;
  margin-left: auto;
  margin-right: auto;
}

.s-convert {
  padding-top: 60px;
  padding-bottom: 60px;
}
.s-convert__title {
  text-align: center;
  margin-bottom: 20px;
}
.s-convert__desc {
  text-align: center;
  margin-bottom: 30px;
}
.s-convert__cards {
  margin-top: 40px;
}
.s-convert__wizard .c-card-document {
  margin-left: auto;
  margin-right: auto;
}
.s-convert__footer {
  text-align: center;
  margin-top: 30px;
}

.ui-uploader--md {
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
.ui-uploader__input {
  opacity: 0;
  position: absolute;
  z-index: -1;
  overflow: hidden;
  width: 0.025rem;
  height: 0.025rem;
}
.ui-uploader__label {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  max-width: 100%;
  border: 2px dashed var(--color-primary);
  background-color: #E4EEF2;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--tr);
  /* drag and drop - "hover" */
  /* drag and drop - ошибка */
}
@media (any-hover: hover) {
  .ui-uploader__label:hover .ui-uploader__btn.ui-button--primary {
    background-color: var(--color-primary-hover);
  }
}
.ui-uploader__label.hover .ui-uploader__btn.ui-button--primary {
  background-color: var(--color-primary-hover);
}
.ui-uploader__label.error {
  border-color: #d32f2f;
}
.ui-uploader__icon {
  fill: var(--body-color);
  margin-bottom: 24px;
}
.ui-uploader__text-heading {
  display: block;
}
.ui-uploader__text-sep {
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
  color: #4A595E;
  line-height: 1.6em;
}
.c-card-document {
  position: relative;
  display: flex;
  width: 339px;
}
.c-card-document.is-progress {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.c-card-document.is-progress .c-card-document__progress {
  opacity: 1;
}
.c-card-document__in {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 24px;
  padding-top: 24px;
  border: 1px solid #DAE6EA;
  border-radius: 16px;
  background-color: #ffffff;
}
.c-card-document__preview {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}
.c-card-document__preview-in {
  display: inline-flex;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.14);
}
.c-card-document__preview-in img {
  max-width: 218px;
  width: 100%;
  height: auto;
}
.c-card-document__title {
  text-align: center;
  font-size: 14px;
  line-height: 1.6em;
  color: #4A595E;
}
.c-card-document__title-in {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-card-document__progress {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tr);
}

.ui-loader {
  --spinner-size: 15;
  --line-color: var(--color-primary);
  --line-alpha: 1;
  --ring-color: #ffffff;
  --ring-alpha: 1;
  --ring-size: 6;
}
.ui-loader__spinner {
  width: 147px;
  height: 147px;
  border-radius: 50%;
}
.ui-loader__spinner-line {
  fill: none;
  stroke: var(--line-color);
  stroke-width: var(--ring-size);
  opacity: var(--line-alpha);
  stroke-linecap: round;
  transform-origin: 50% 50%;
  transform: rotate3d(0, 0, 1, 0deg);
  animation: 2156ms spinner-arc ease-in-out infinite, 1829ms spinner-rotate linear infinite;
}
.ui-loader__spinner-ring {
  fill: none;
  stroke: var(--ring-color);
  stroke-width: var(--ring-size);
  opacity: var(--ring-alpha);
}

@keyframes spinner-rotate {
  to {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
@keyframes spinner-arc {
  from {
    stroke-dasharray: 0 150;
    stroke-dashoffset: 0;
  }
  to {
    stroke-dasharray: 100 150;
    stroke-dashoffset: -140;
  }
}
.c-convert-result {
  padding: 30px;
  border: 1px solid #DAE6EA;
  background-color: #E4EEF2;
  border-radius: 20px;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
.c-convert-result__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.c-convert-result__box-in {
  padding: 20px;
  border-radius: 16px;
  background-color: #fff;
  font-size: 18px;
  line-height: 1.6em;
  font-weight: 400;
}
.c-convert-result__box-in p {
  margin-bottom: 10px;
}
.c-convert-result__box-in > *:last-child {
  margin-bottom: 0 !important;
}
.c-convert-result__original {
  border-radius: 10px;
}
.c-convert-result__original[hidden] {
  display: none;
}
.c-convert-result__original .c-convert-result__box {
  padding-top: 20px;
}
.c-convert-result__expand {
  text-align: center;
  margin-top: 20px;
}/*# sourceMappingURL=style.css.map */

.ui-button[disabled] {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
  background-color: #e0e0e0 !important;
  color: #a0a0a0 !important;
  border: 1px solid var(--body-color);
}

.c-card-convert.is-disabled {
  pointer-events: none; /* Блокирует клики */
  opacity: 0.6;         /* Делает карточку полупрозрачной */
  filter: grayscale(1);  /* Делает черно-белой */
  cursor: not-allowed;  /* Меняет курсор */
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.c-card-convert.is-disabled .c-card-convert__in {

}

.s-convert__example {
  margin-top: 16px;
  text-align: center;
}

.js-load-example {
  color: #666;
  font-size: 14px;
  text-decoration: none;
}

.js-load-example:hover {
  color: #000;
  text-decoration: underline;
}