body .text-primary {
  color: #546174 !important;
}
body a {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
body {
  background-color: #ffffff;
}
body a, body .btn-link {
  color: #546174;
}
body a:hover, body .btn-link:hover {
  color: #495565;
}
body .nav-pills .nav-link.active, body .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #333;
}
body nav.bg-light {
  background-color: #ffffff !important;
}
body nav.bg-light .navbar-brand {
  color: #000000 !important;
  font-weight: 100;
}
body nav.bg-light a.nav-link {
  color: #000000 !important;
}
body nav.bg-light a.nav-link:hover {
  color: #1a1a1a !important;
}
body nav.bg-light .navbar-toggler {
  color: #000000 !important;
  border-color: transparent;
}
body {
  color: #878e95 !important;
}
body .list-group-item-action {
  color: #878e95 !important;
}
body .text-muted {
  color: #8d8e8f !important;
}

/* Primary Color */
.badge-primary {
  background-color: #546174;
  color: #FFFFFF;
}

.btn-primary {
  background-color: #546174;
  border-color: #4e5a6b;
  color: #FFFFFF;
}

.form-control:focus {
  border-color: #546174;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(84, 97, 116, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(84, 97, 116, 0.25);
}

/* Hover button */
.btn-primary:hover, .btn-outline-primary:hover {
  background-color: #3f4856;
  border-color: #343c48;
  color: #FFFFFF;
  text-decoration: none;
}

.btn:not([disabled]):not(.disabled) {
  cursor: pointer;
}

.btn-outline-primary {
  color: #546174;
  background-color: transparent;
  background-image: none;
  border-color: #546174;
}

/* Active button */
.btn-primary:not([disabled]):not(.disabled):active, .btn-outline-primary:not([disabled]):not(.disabled):active {
  background-color: #3f4856 !important;
  border-color: #343c48 !important;
  color: #FFFFFF !important;
}

.btn-primary:not([disabled]):not(.disabled).active, .btn-outline-primary:not([disabled]):not(.disabled).active {
  background-color: #3f4856 !important;
  border-color: #343c48 !important;
  color: #FFFFFF !important;
}

.show > .btn-primary.dropdown-toggle {
  background-color: #3f4856 !important;
  border-color: #343c48 !important;
  color: #FFFFFF !important;
}

.btn-primary:not([disabled]):not(.disabled):active:focus, .btn-outline-primary:not([disabled]):not(.disabled):active:focus {
  -webkit-box-shadow: 0 0 0 0.2rem #78879d;
  box-shadow: 0 0 0 0.2rem #78879d;
}

.btn-primary:not([disabled]):not(.disabled).active:focus, .btn-outline-primary:not([disabled]):not(.disabled).active:focus {
  -webkit-box-shadow: 0 0 0 0.2rem #78879d;
  box-shadow: 0 0 0 0.2rem #78879d;
}

.show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem #78879d;
  box-shadow: 0 0 0 0.2rem #78879d;
}

/* Focus button */
.btn-primary:focus, .btn-outline-primary:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem #78879d;
  box-shadow: 0 0 0 0.2rem #78879d;
  text-decoration: none;
}

.btn-primary.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem #78879d;
  box-shadow: 0 0 0 0.2rem #78879d;
  text-decoration: none;
}

/* Disabled button */
.btn-primary.disabled {
  background-color: #78879d;
  border-color: #78879d;
}

.btn-primary:disabled {
  background-color: #78879d;
  border-color: #78879d;
}

/* Heading Colours */
h1, h2, h3, h4, h5, h6 {
  color: #333333 !important;
}

/* Text Colours */
.text-muted {
  color: #878e95 !important;
}

.list-group-item-header {
  background-color: #ffffff !important;
  color: #878e95 !important;
}

.champ-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(84, 97, 116);
  cursor: pointer;
  box-shadow: 0 0 0 rgba(84, 97, 116, 0.4);
  animation: pulse 2s infinite;
}

.champ-pulse:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(84, 97, 116, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(84, 97, 116, 0.0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(84, 97, 116, 0.0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(84, 97, 116, 0.4);
    box-shadow: 0 0 0 0 rgba(84, 97, 116, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(84, 97, 116, 0.0);
    box-shadow: 0 0 0 10px rgba(84, 97, 116, 0.0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(84, 97, 116, 0.0);
    box-shadow: 0 0 0 0 rgba(84, 97, 116, 0.0);
  }
}
body {
  font-family: "Arial", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}


