.sr-faults__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 0;
}
.sr-faults__header {
  font-size: 14px;
}
.sr-faults__divider {
  border-top: 2px dashed #DBDEE8;
}
.sr-faults__item {
  display: flex;
}
.sr-faults__item > div:nth-child(1) {
  width: 40%;
}
.sr-faults__item > div:nth-child(2) {
  width: 60%;
}
.sr-faults__item > .done {
  color: #58D3A6;
  font-weight: 700;
}
.sr-faults__item > .impossible {
  color: #ED145B;
  font-weight: 700;
}
.sr-faults__item > .pending {
  color: #FCC104;
  font-weight: 700;
}
.stepper__container {
  background: white;
  border-radius: 8px;
  padding: 10px 8px;
  gap: 8px;
  display: flex;
  align-items: center;
  overflow: auto;
}
.stepper__step {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stepper__step-container {
  display: flex;
  align-items: center;
}
.stepper__step-divider {
  display: flex;
  align-items: center;
}
.stepper__step-divider::before {
  content: "";
  display: inline-block;
  width: 30px;
  border-top: 2px dashed #DBDEE8;
}
.stepper__step-divider::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-width: 5px 9px;
  border-color: transparent #DBDEE8 transparent transparent;
  border-style: solid;
}
.stepper__step-index {
  min-width: 24px;
  width: 24px;
  height: 24px;
  background-color: #E6F5FE;
  color: #0197F6;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}
.active .stepper__step-index {
  color: white;
  background-color: #0197F6;
}
.passed .stepper__step-index {
  color: white;
  background-color: rgba(56, 202, 150, 0.7);
}
.stepper__step-title {
  color: #2F3742;
  font-size: 12px;
  font-weight: bold;
}
.passed .stepper__step-title {
  color: #949CA7;
}
.sr-invoice__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 12px 0;
}
.sr-invoice__divider {
  border-top: 2px dashed #DBDEE8;
}
.sr-invoice__item {
  display: flex;
}
.sr-invoice__item > div:nth-child(1) {
  width: 40%;
}
.sr-invoice__item > div:nth-child(2) {
  width: 60%;
}
.sr-invoice__item > .warning {
  color: #FCC104;
  font-weight: bold;
}
.sr-invoice__item > .success {
  color: #38CA96;
  font-weight: bold;
}
.tour-wizard__step6 .documents__room {
  margin-bottom: 1.875rem;
}
.tour-wizard__step6 .documents__room .title {
  display: flex;
  width: 100%;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 0.625rem;
  font-size: 14px;
  font-weight: bold;
}
.tour-wizard__step6 .documents__room .files__item {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 0.625rem;
}
.tour-wizard__step6 .documents__room .files__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}
.tour-wizard__step6 .documents__room .files__item .upper,
.tour-wizard__step6 .documents__room .files__item .middle,
.tour-wizard__step6 .documents__room .files__item .lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.625rem;
}
.tour-wizard__step6 .documents__room .files__item > div:last-child {
  margin-bottom: 0;
}
.tour-wizard__step6 .documents__room .files__item .file-title {
  width: 120px;
  white-space: nowrap;
}
.tour-wizard__step6 .documents__room .files__item .file-title--lg {
  width: 200px;
}
.tour-wizard__step6 .documents__room .files__item .file-status,
.tour-wizard__step6 .documents__room .files__item .file-download {
  width: 120px;
}
.tour-wizard__step6 .documents__room .files__item .file-report {
  cursor: pointer;
}
.tour-wizard__step6 .contract > * {
  margin-bottom: 0.625rem;
}
.tour-wizard__step6 .contract > *:last-child {
  margin-bottom: 0;
}
.tour-wizard__step6 .faults {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.625rem;
}
.tour-wizard__step6 .faults .fault {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 0.3125rem;
  padding: 0.3125rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  background: #fff;
}
.tour-wizard__step6 .faults .fault__status .lst-icon-undo-light:before {
  animation: spin 2s infinite linear;
}
@keyframes spin {
from {
    transform: rotate(360deg);
}
to {
    transform: rotate(0deg);
}
}
.tour-wizard__step6 .faults .fault > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  margin-bottom: 0.15625rem;
}
.tour-wizard__step6 .faults .fault > div:last-child {
  flex-direction: row;
  margin-bottom: 0;
}
.tour-wizard__step6 .faults .fault__created-at, .tour-wizard__step6 .faults .fault__answered-at {
  width: 170px;
  text-align: left;
}
.tour-wizard__step6 .faults .file-report {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  align-self: flex-start;
  cursor: pointer;
}
.tour-wizard__step6 .status-label {
  width: 100px;
}
.tour-wizard__step6 table.invoices tr.active {
  background-color: #ffcbc4 !important;
}
.tw-step6-warning {
  border-color: #FCC104 !important;
  background: #FFF9E7;
  font-weight: bold;
}
.tw-step6-warning-title {
  font-size: 16px;
}
.tw-step6-warning-description {
  font-size: 14px;
}
.tw-step6-section-container {
  padding-bottom: 0 !important;
}
.tw-step6-section:not(:first-child) {
  margin-top: 16px;
}
.tw-step6-section-title {
  background: #EEFBF6;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
.tw-step6-section-document {
  margin-top: 20px;
  padding-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 8px;
}
.tw-step6-section-document:not(:last-child) {
  border-bottom: 2px dashed #dee2e6;
}
.tw-step6-section-document > * {
  font-size: 12px;
}
.tw-step6-section-document-type {
  display: flex;
  align-items: baseline;
  color: #4E5C6E;
  width: 50%;
}
.tw-step6-section-document-type > i {
  font-size: 6px;
  margin-left: 6px;
}
.tw-step6-section-document-owner {
  font-weight: bold;
  width: 50%;
}
.tw-step6-section-document-status {
  border: 1px dashed;
  border-radius: 999px;
  text-align: center;
  padding: 4px 0;
  width: 30%;
}
.tw-step6-section-document-status.pending {
  border-color: #FCC104;
  color: #FCC104;
}
.tw-step6-section-document-status.sent {
  border-color: #0197F6;
  color: #0197F6;
}
.tw-step6-section-document-status.success {
  border-color: #38CA96;
  color: #38CA96;
}
.tw-step6-section-document-file > label {
  font-size: 14px;
  padding: 4px;
  cursor: pointer;
  min-width: 100px;
  width: 100%;
  margin: 0;
}
.tw-step6-section-document-file > label.disabled {
  opacity: 0.5;
}
.tw-step6-section-document-file > label:before {
  border: 0;
}
.tw-step6-section-document-options {
  width: 36px;
  margin-right: 8px;
}
.tw-step6-section-document-options > button {
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 4px;
  border-color: #38CA96;
  color: #38CA96;
}
.tw-step6-section-document-options > button:hover {
  background: #38CA96;
  border-color: #38CA96;
}
.tw-step6-section-document-description {
  width: 100%;
  margin-top: 16px;
  color: #4E5C6E;
}
.tw-step6-section-document-faults {
  margin-top: 16px;
  width: 100%;
}
.final-payment__wrapper > *:not(:first-child) {
  margin-top: 24px;
}
.final-payment__warning1 {
  background: #FFF3D0;
  border-color: #FCC104;
  font-size: 12px;
}
.final-payment__warning1 > * {
  display: flex;
  align-items: baseline;
}
.final-payment__warning1 > *:not(:first-child) {
  margin-top: 18px;
}
.final-payment__warning1 i {
  color: #FCC104;
  font-size: 6px;
  display: flex;
  margin-left: 4px;
}
.final-payment__contract {
  font-size: 12px;
}
.final-payment__contract > * {
  display: flex;
  align-items: baseline;
}
.final-payment__contract > *:not(:first-child) {
  margin-top: 18px;
}
.final-payment__contract > * > i {
  font-size: 6px;
  display: flex;
  margin-left: 4px;
  color: #949CA7;
}
.final-payment__contract-fault {
  color: #ED145B;
  cursor: pointer;
}
.final-payment__contract-fault:hover {
  color: #ce104e;
}
.final-payment__contract-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 16px;
  font-size: 12px;
  font-weight: bold;
  margin-top: 72px !important;
}
.final-payment__contract-actions-fault {
  color: #ED145B;
  cursor: pointer;
}
.final-payment__contract-actions-fault:hover {
  color: #ce104e;
}
.final-payment__contract-actions-download {
  color: #58D3A6;
}
.final-payment__contract-actions-download:hover {
  color: #3ccc97;
}
.final-payment__contract-actions-sign {
  padding: 10px 30px;
  border-radius: 999px;
  color: white;
  background-color: #58D3A6;
  cursor: pointer;
  width: 100%;
  text-align: center;
  font-size: 14px;
}
.final-payment__contract-actions-sign:hover {
  background-color: #3ccc97;
}
.final-payment__contract-faults {
  margin-top: 24px !important;
}
.final-payment__docs-item:not(:first-child) {
  border-top: 2px dashed #DBDEE8;
  margin-top: 12px;
  padding-top: 12px;
}
.final-payment__docs-item-header {
  display: flex;
  align-items: center;
}
.final-payment__docs-item-header-icon {
  font-size: 16px;
  display: flex;
  margin-left: 8px;
}
.final-payment__docs-item-header-name {
  font-size: 14px;
  width: 140px;
}
.final-payment__docs-item-header-pending {
  color: #FCC104;
  font-size: 12px;
  font-weight: bold;
}
.final-payment__docs-item-header-button {
  color: #58D3A6;
  border: 1px solid #58D3A6;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
}
.final-payment__docs-item-header-button:hover {
  color: #3ccc97;
  border-color: #3ccc97;
}
.final-payment__docs-item-header-button:disabled, .final-payment__docs-item-header-button[disabled] {
  opacity: 0.7;
  color: #58D3A6;
  border-color: #58D3A6;
  cursor: default;
}
.final-payment__docs-item-header-description {
  font-size: 12px;
  color: #4E5C6E;
  margin-top: 4px;
}
.final-payment__docs-item-description {
  margin-top: 12px;
  font-size: 12px;
  color: #717C8B;
}
.final-payment__docs-item-report {
  color: #ED145B;
  cursor: pointer;
  display: inline-block;
  margin-top: 16px;
}
.final-payment__docs-item-report:hover {
  color: #ce104e;
}
.final-payment__invoice-header {
  background-color: #2C2C41;
  color: white;
}
.final-payment__invoice-body > div {
  display: flex;
  align-items: baseline;
  font-size: 12px;
}
.final-payment__invoice-body > div:not(:first-child) {
  margin-top: 18px;
}
.final-payment__invoice-body > div > i {
  font-size: 8px;
  display: flex;
  margin-left: 8px;
  color: #949CA7;
}
.final-payment__actions {
  display: flex;
  flex-wrap: wrap;
  row-gap: 18px;
  align-items: center;
  margin-top: 70px !important;
}
.final-payment__actions-prepend {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.final-payment__actions-prepend > div:nth-child(1) {
  align-self: flex-start;
  font-size: 10px;
  font-weight: normal;
}
.final-payment__actions-prepend > div:nth-child(2) {
  align-self: flex-end;
}
.final-payment__actions-divider {
  border-top: 2px dashed #949CA7;
  flex: 1;
}
.final-payment__actions-fake-btn {
  color: #949CA7;
  display: flex;
}
