header, .middle, footer {
  background-color: #fff;
}

.middle {
  padding-bottom: 1rem;
  min-height: 80vh;
}

.topheader {
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  background-color: #ccc;
  font-size: 0.8em;
}

.searchbar .form-control {
  border: 1px solid #1761a0;
}
.searchbar .btn-search {
  background-color: #1761a0;
  color: #fff;
  border-top-right-radius: 7px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 0;
}
.searchbar .btn-search:hover {
  background-color: #1761a0;
  color: #fff;
}

.bg-image {
  background-image: url("../images/home_262311707.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.text-welcome {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
  font-weight: bold;
  font-size: inherit;
  color: #fff;
}
.text-welcome h1 {
  font-family: "Montserrat ExtraBold";
  font-size: 36px;
  color: #000;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 3px 15px;
}
.text-welcome .text-uppercase {
  text-transform: uppercase !important;
}

.entries {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.entries .entries-button {
  width: 300px;
  margin: 2rem;
}
.entries .entries-button .btn {
  width: 100%;
}

.resume {
  margin: 2rem;
}

.title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: rgba(89, 142, 185, 0.2);
}
.title h1 {
  line-height: 1;
  padding: 1rem 1rem 0.5rem 1rem;
  color: #1761a0;
}

.circle-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #598eb9;
  border-radius: 50%;
  margin-right: 10px;
}
.circle-icon i {
  color: #fff;
}

.table {
  font-size: 0.9em;
}

.table-title {
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #1761a0;
  padding: 0.5rem 0;
  color: #1761a0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.25rem;
}

.table-footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.table-footer button {
  margin-left: 1rem;
}

.steps {
  display: flex;
  flex-direction: row;
}
.steps .step {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.steps .step .step-header {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.steps .step .step-header .step-header-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 0 16px;
  background-color: #e2e2e2;
  border-radius: 50%;
  color: #fff;
}
.steps .step .step-header .progressbar {
  display: flex;
  width: 100%;
  height: 5px;
  background: repeating-linear-gradient(90deg, #e2e2e2, #e2e2e2 10px, #fff 10px, #fff 20px);
}
.steps .step .step-header .progressbar .progressbar_progress {
  background-color: #1761a0;
}
.steps .step .step-body {
  margin-top: 10px;
  color: #e2e2e2;
}
.steps .step.step-closed .progressbar_progress {
  background-color: #1761a0;
  width: 100%;
}
.steps .step.step-closed .step-header-number {
  background-color: #1761a0;
}
.steps .step.step-closed .step-body {
  color: #000;
}
.steps .step.step-active .progressbar_progress {
  background-color: #1761a0;
  width: 65%;
}
.steps .step.step-active .step-header-number {
  background-color: #1761a0;
}
.steps .step.step-active .step-body {
  color: #000;
}
.steps .step.step-waiting .step-body {
  color: #c2c2c2 !important;
}
.steps .step:last-child {
  width: auto;
}
.steps .step:last-child .progressbar {
  display: none;
}

.steps-table th:first-child, .steps-table td:first-child {
  width: 200px;
}

.steps, .alert {
  margin-bottom: 60px;
}

@media (max-width: 1199.98px) {
  .steps {
    display: flex;
    flex-direction: column;
  }
  .steps .step {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .steps .step .step-header {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .steps .step .step-header .step-header-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    padding: 0 16px;
    background-color: #e2e2e2;
    border-radius: 50%;
    color: #fff;
  }
  .steps .step .step-header .progressbar {
    display: flex;
    width: 5px;
    height: 45px;
    position: relative;
    top: 35px;
    left: -18px;
    background: repeating-linear-gradient(180deg, #e2e2e2, #e2e2e2 6px, #fff 6px, #fff 12px);
  }
  .steps .step .step-header .progressbar .progressbar_progress {
    background-color: #1761a0;
  }
  .steps .step .step-body {
    margin: 25px 10px;
    color: #e2e2e2;
  }
  .steps .step.step-closed .progressbar_progress {
    background-color: #1761a0;
    width: 5px;
    height: 100%;
  }
  .steps .step.step-closed .step-header-number {
    background-color: #1761a0;
  }
  .steps .step.step-closed .step-body {
    color: #000;
  }
  .steps .step.step-active .progressbar_progress {
    background-color: #1761a0;
    width: 5px;
    height: 50%;
  }
  .steps .step.step-active .step-header-number {
    background-color: #1761a0;
  }
  .steps .step.step-active .step-body {
    color: #000;
  }
  .steps .step.step-waiting .step-body {
    color: #c2c2c2 !important;
  }
  .steps .step:last-child {
    width: auto;
  }
  .steps .step:last-child .progressbar {
    display: none;
  }

  .steps, .alert {
    margin-bottom: 30px;
  }
}

@media (max-width: 991.98px) {
  .entries {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .entries .entries-button {
    width: 300px;
    margin: 1rem;
  }
  .entries .entries-button .btn {
    width: 100%;
  }
  .entries .entries-button .btn-lg {
    padding: 0.5rem;
    font-size: 1rem;
    min-height: 50px;
  }

  .table-footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .table-footer button {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0;
  }
}


/*# sourceMappingURL=common.css.map */