.check-status-block {
  padding: 0px 16px;
}

.check-status-block__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8px;
}

.check-status-block__title {
  font-size: 18px;
  line-height: 100%;
}

.check-status-block__close {
  width: 13px;
  height: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.check-status-block__form {
  max-width: 600px;
  margin: 0 auto;
}

.check-status-block__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 19px;
  margin-bottom: 24px;
}

.check-status-block__divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-size: 13px;
  line-height: 120%;
  color: var(--text-disabled);
}
.check-status-block__divider span {
  display: block;
  width: 51px;
  height: 1px;
  background-color: var(--bg-border);
}

.check-status-block__btn {
  height: 44px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 120%;
  color: var(--white);
  background-color: var(--action-primary);
}

.check-status-input__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.check-status-input__wrapper span {
  font-size: 13px;
  line-height: 120%;
}
.check-status-input__wrapper.error input {
  border: 1px solid var(--status-error) !important;
}
.check-status-input__wrapper.error .check-status-input__error-text {
  display: block;
}

.check-status-input {
  height: 38px;
  width: 100%;
}
.check-status-input input {
  width: 100%;
  height: 100%;
  padding: 0 12px;
  line-height: 100%;
  font-size: 14px;
  border: 1px solid var(--bg-border);
  color: var(--text-primary);
}

.check-status-input__error-text {
  font-size: 12px;
  color: var(--status-error);
  margin-top: 8px;
  line-height: 100%;
  display: none;
}