/*
  BOOTSTRAP ACCORDION
  -------------------------
*/
.accordion {
  font-weight: 100;
}

.accordion h2,
.accordion h3,
.accordion h4 {
  margin-top: 0;
}

.accordion-button {
  font-size: 18px;
  color: #006a98 !important;
}

.table .accordion-button {
  font-size: 13px;
}

.accordion h3 .accordion-button,
.accordion h4 .accordion-button {
  font-size: 16px;
  color: #555 !important;
}

.accordion-button:not(.collapsed) {
  background: #F8F9FA;
}

.accordion-body {
  font-size: 15px;
}

.title-block {
  margin-bottom: 20px;
}

td,
th {
  line-height: 1.8 !important;
}

.btn.btn-warning {
  color: #ffffff !important;
  background-color: #f0ad4e !important;
  border-color: #eea236 !important;
}

.table-not-bordered {
  border-collapse: collapse;
}

.table .accordion-header {
  cursor: pointer;
  border: none;
  padding: 15px 5px;
}

.table .accordion-button:not(.collapsed),
.accordion-button.active,
.accordion-button:focus {
  border-bottom: none !important;
  background: white;
}

.table>:not(caption)>*>* {
  background-color: transparent;
  box-shadow: none;
}

.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
  border-top: none;
}

.bg-gray {
  background: transparent;
  background-color: #f8f8f8 !important;
}

.bg-light-blue {
  background: transparent;
  background-color: #f7fbff !important;
}

.badge {
  padding: 7px;
  min-width: 30px;
  font-size: 1.2rem;
  font-weight: 400;
  margin-right: 10px;
}

.page-link {
  font-size: 1.3rem;
}

.pagination>li>span.no-borders {
  border-top: none !important;
  border-bottom: none !important;
}

/* SEARCH BAR */

.form-select,
.form-control {
  font-size: 1.3rem;
  border-radius: 8px !important;
  padding: 8px 14px;
  box-shadow: none;
  border: 1px solid #dee2e6;
}

.form-control {
  height: 40px;
}

.border-radius-start-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.border-radius-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.form-control:active,
.form-control:focus,
.form-select:active,
.form-select:focus {
  border-color: #dee2e6;
}

.btn {
  font-size: 1.3rem;
  padding: 8px 18px;
  border-radius: 8px;
}

.btn-primary {
  background-color: #1b6fab;
  border-color: #005b82;
}

.btn-primary:hover {
  background-color: #286090;
  border-color: #204d74;
}

.btn-secondary {
  border-color: transparent;
}

.spinner-border {
  border-radius: 50% !important;
}

.spinner-input {
  margin-left: -30px !important;
  margin-top: 10px;
  z-index: 999;
}

.input-group-text {
  border-radius: 8px;
  background: transparent;
  padding: 11px 0 11px 11px;
}

.search-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  max-width: 1120px;
}

.search-bar .form-control {
  max-width: 300px;
}

.search-bar .form-select {
  max-width: 200px;
}

/* TIMELINE */

.timeline a {
  color: #000;
}

.timeline a:hover {
  color: #006a98;
}

.timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 20px 0;
}

.timeline:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #e9ecef;
  top: 50%;
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 0 50px;
}

.steps-2 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.steps-3 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.timeline .timeline-step:first-child {
  padding-left: 10px;
}

.timeline .timeline-step:last-child {
  padding-right: 10px
}

.timeline-step .icon {
  background-color: #f8f8f8;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-right: 10px;
}

.timeline-step.completed .icon {
  background-color: #c5ffe8;
  color: #237265;
}

.timeline-step .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* RESPONSIVE DIV TABLE */

.table {
  display: flex;
  flex-direction: column;
  border-collapse: separate;
}

.table_row {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: #e7e7e7 1px solid !important;
}

.table .table_row:hover {
  background: #f8f8f8;
}

.theader {
  display: flex;
  width: 100%;
  border-bottom: #e7e7e7 1px solid;
  padding-right: 8px;
  padding-left: 8px;
}

.table_header {
  flex-grow: 1;
  flex-basis: 15%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 700;
}

.table_header_last {
  width: 30px;
  flex-grow: 0;
  flex-shrink: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.table_small {
  flex-grow: 1;
  flex-basis: 15%;
}

.table_small.last {
  width: 30px;
  flex-grow: 0;
  flex-shrink: 0;
}

.table_row>.table_small>.table_cell:nth-child(odd) {
  display: none;
  padding-top: 10px;
  padding-bottom: 10px;
}

.table_row>.table_small>.table_cell {
  padding-top: 3px;
  padding-bottom: 3px;
}

.table_small_shrink {
  flex: 1 1 70px;
}

/********************
 * NAV TABS
 ********************/
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-link {
  font-weight: 500;
  color: #6c757d;
}

.nav>li>a:hover,
.nav>li>a:focus {
  background-color: transparent;
  border-color: transparent;
}

.nav-link.active {
  color: #1B6FAB !important;
  background-color: transparent;
}

.nav-link:not(.active):hover {
  border-color: transparent !important;
  color: #1B6FAB;
}

.nav-link .badge {
  font-size: 1.2rem;
  margin-left: 5px;
  border-radius: 15px;
  padding: 0.4em 0.6em;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border-color: transparent transparent #2D8ACA;
  border-bottom-width: 2px;
}

.nav-tabs .nav-link .badge {
  background-color: #e9ecef;
  color: #343a40;
}

.nav-tabs .nav-link.active .badge {
  background-color: rgba(13, 110, 253, 0.1);
  color: #006a98;
}

.tab-container {
  display: flex;
  justify-content: start;
}

.flex-grow-3 {
  flex-grow: 3;
}

.flex-grow-4 {
  flex-grow: 4;
}

.dropdown-menu {
  font-size: 1.3rem;
}

.dropdown-menu>li>a {
  padding: 15px;
}

.dropdown-toggle.hide-after::after {
  display: none;
}

@media screen and (max-width: 767px) {
  .nav-tabs-mobile {
    margin-left: -15px;
    margin-right: -15px;
  }

  .nav-tabs-mobile li {
    width: 25%;
    text-align: center;
  }

  .nav-tabs-mobile li>a {
    padding: 0 0 10px 0;
    margin: 0 0 0 5px;
    text-align: center;
  }

  .nav-tabs-mobile li>a.nav-link .badge {
    font-size: 1rem;
    min-width: 15px;
    margin-right: 0;
  }
}

@media screen and (max-width: 400px) {
  .nav-tabs-mobile li>a.nav-link .badge {
    display: block;
    width: 30px;
    margin: 0 auto;
  }
}

.no-flex {
  flex-grow: unset;
  flex-basis: unset;
}

/*************
 * RESPONSIVE
 *************/

@media screen and (max-width: 992px) {
  .container {
    max-width: 100%;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .hide-max-992 {
    display: none;
  }

  .timeline-step {
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .search-bar {
    display: block;
  }

  .hide-max-992 {
    display: inline;
  }

  .search-bar .form-control {
    max-width: 100%;
  }

  .search-bar .input-group {
    margin-bottom: 15px;
  }

  .search-bar .form-select {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .hide-max-768 {
    display: none;
  }

  .timeline-step {
    padding: 0 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon-container {
    display: none !important;
  }
}

@media screen and (max-width: 676px) {
  .table {
    display: block;
  }

  .table_row:nth-child(2n+3) {
    background: none;
  }

  .theader {
    display: none;
  }

  .table_row>.table_small>.table_cell:nth-child(odd) {
    display: table-cell;
    width: 50%;
  }

  .table_cell {
    display: table-cell;
    width: 50%;
  }

  .bg-gray {
    border: #e7e7e7 1px solid !important;
    border-top: none;
  }

  .table_row {
    display: table;
    width: 100%;
    border-collapse: separate;
    padding-bottom: 20px;
    text-align: center;
    border: #e7e7e7 1px solid !important;
    margin-top: 15px;
  }

  .table_small {
    display: table-row;
  }

  .small-mobile {
    font-size: 1rem;
  }

  .text-left-mobile {
    text-align: left !important;
  }

  .accordion-button::after {
    position: absolute;
    right: 15px;
  }

  .hide-mobile {
    display: none !important;
  }
}

.hide {
  display: none;
}
