/* Stepper */
.stepper {
  width: 100%;
  max-width: 100vw;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  font-family: var(--font-family) !important;
  z-index: 10;
  background-color: var(--color-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}

.stepper .step-list {
  display: flex;
  background-color: white;
  min-width: 80%;
  flex-grow: 1;
}

.stepper .step .step-body {
  width: 100%;
  box-shadow: 0px 0px 3px 3px rgb(0 45 84 / 13%);
  border-radius: 10px;
  margin: 15px 0px;
  padding: 15px 0px;
}

.stepper .step-list .step-item {
  display: grid;
  grid-template-rows: auto auto;
  gap: 5px;
  margin: 5px;
  grid-template-columns: 30px !important;
  width: 100%;
}

.stepper .step-list .step-item .step-item-index {
  grid-column: 1;
  grid-row: 1;
  place-self: center;
  font-weight: bold;
  font-size: medium;
  color: var(--color-dark);
}

.stepper .step-list .step-item .step-item-check {
  grid-column: 1;
  grid-row: 2;
  place-self: center;
  height: 20px;
  width: 20px;
  padding: 1px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-light);
}

.stepper .step-list .step-item .step-item-check i {
  display: none;
}

.stepper .step-list .step-item.active .step-item-check i {
  display: block;
}

.stepper .step-list .step-item.completed .step-item-check i {
  display: block;
}

.stepper .step-list .step-item.active .step-item-check {
  background-color: var(--color-primary);
  border: none;
}

.stepper .step-list .step-item.completed .step-item-check {
  background-color: var(--color-primary);
  border: none;
}

.stepper .step-list .step-item .step-item-text {
  grid-column: 2;
  grid-row: 1;
  place-self: center start;
  font-size: 1.5rem;
  color: grey;
}

@media (max-width: 1230px) {
  .stepper .step-list .step-item .step-item-text {
    height: 40px;
  }
}

@media (max-width: 860px) {
  .stepper .step-list .step-item .step-item-text {
    height: initial;
    display: none;
  }
}

.stepper .step-list .step-item .step-item-line {
  grid-column: 2;
  grid-row: 2;
  place-self: center;
  padding: 5px;
  width: 100%;
}

.stepper .step-list .step-item .step-item-line .line {
  border-bottom: 2px solid var(--color-primary);
  width: 100%;
}

.stepper .step-list .step-item.active .step-item-line .line {
  border-bottom: 2px dashed var(--color-primary);
  width: 100%;
}

.stepper .step-list .step-item.completed .step-item-line .line {
  border-bottom: 2.5px solid var(--color-primary);
  width: 100%;
}

.stepper .step {
  display: flex;
  flex-direction: column;
  width: 90vw;
  margin: 0 auto;
}

.stepper .step .step-actions {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.stepper .step[data-step-hidden="true"] {
  display: none;
}

.stepper .step .stepper-section {
  width: 100%;
}

.miniflotamodal .step .stepper-section {
  margin-bottom: 0px;
}

.stepper .step .stepper-section .stepper-section-title {
  padding: 1rem 2rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  display: flex;
  justify-content: space-between;
  color: var(--color-primary) !important;
  font-size: var(--font-size-lg);
  font-weight: bold;
  border: none;
}

.stepper .step .stepper-section .stepper-section-title label {
  font-size: 18px;
  border-bottom: 1px solid;
}

.stepper .step .stepper-section .stepper-section-content {
  padding: 0rem 1.25rem 1rem 1.25rem;
}

.stepper .step .stepper-section .stepper-section-footer {
  padding: 0rem 1.25rem 1rem 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stepper .stepper-actions .action-button {
  margin: 10px;
}

.stepper[data-current-index="0"] .stepper-actions .previous {
  display: none;
}

.modal .step .stepper-section .stepper-section-title {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  display: flex;
  color: var(--color-primary) !important;
  font-size: var(--font-size-md);
  font-weight: bold;
  border: none;
}

.modal .step .step-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0px;
  flex-wrap: wrap;
}

.modal-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.module .module-header {
  display: flex;
  justify-content: center;
  width: 90vw;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0px;
}

.module .header-title {
  background: var(--color-light);
  min-width: 170px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.module .module-title {
  font-size: var(--font-module-title);
  color: var(--color-primary);
  font-weight: bold;
}

.module .module-subtitle {
  font-size: var(--font-module-subtitle);
  color: var(--color-secondary-alt);
  font-weight: bold;
}

.module .module-logo {
  background-size: cover;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--color-primary);
  font-size: var(--icon-size-sm);
  font-family: FontAwesome;
}

.module .module-logo.rc:before {
  content: "\f1ad";
}

.module .module-logo.mf:before {
  content: "\f5de";
}

.module .module-logo.cpp:before {
  content: "\f21e";
}

.module .module-logo.dyo:before {
  content: "\f0b1";
}

.module .module-logo.sisgen {
  content: "\f5e1";
  color: var(--color-primary);
}

.module .module-logo.scp:before {
  content: "\f21e";
}
/* End Stepper */