body {
  --red: #b71547;
  --gray-dark: #4c5256;
  --gray: #7f7f7f;
  --gray-light: #f2f2f2;
  --white: #fff;

  padding-top: 70px;
  padding-bottom: 40px;
  color: var(--gray-dark);
}

.highlight {
  color: var(--red);
}

.btn-data {
  color: var(--white);
  background-color: var(--red);
  border-color: var(--red);
}

.btn-data:hover {
  color: var(--red);
  border-color: var(--red);
  background-color: var(--white);
}

.btn-data:focus, .btn-data.focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  border-color: var(--red);
  outline: 0;
  box-shadow: none;
}

.bg-data {
  background-color: var(--red) !important;
}

.bg-dark {
  background-color: var(--gray-dark) !important;
}

.alert ul {
  margin: 1rem 0;
}

div.container a.navbar-brand > img {
  display: inline;
  margin-right: 4px;
  margin-top: -2px;
}

.table-centered th,
.table-centered td {
  text-align: center;
  vertical-align: middle;
}

.table-gray {
  background-color: var(--gray-light);
  /*color: var(--white);*/
}

a {
  color: var(--red);
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: var(--gray-dark);
  text-decoration: none;
}

.table a {
  color: var(--gray-dark);
  font-weight: bold;
}

.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: var(--gray-light);
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  font-weight: normal;
  color: var(--gray);
  content: "|";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--red);
  font-weight: bold;
}

.breadcrumb-item.disabled {
  color: var(--gray);
}

.breadcrumb-item a {
  text-decoration: none;
  color: var(--gray-dark);
}

.breadcrumb.attached {
  border-radius: 0 0 0.25rem 0.25rem;
}


.progress {
  display: -ms-flexbox;
  display: flex;
  height: 0.3rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: var(--gray-light);
  border-radius: 0.25rem;
}
/*
.progress-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}
*/

.progress.attached {
  border-radius: 0.25rem 0.25rem 0 0;
}

.jumbotron {
  padding: 2rem 2rem;
  margin-bottom: 2rem;
  background-color: var(--gray-light);
  border-radius: 0.3rem;
}

.caret-off::before {
    display: none;
}
.caret-off::after {
    display: none;
}

.breadcrumb-toggle::after {
  display: none;
  margin-left: 0;
  vertical-align: baseline;
  content: "";
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
}



/*
.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}
*/

