body .text-primary {
  color: #402c41 !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: #2683c7;
}
body a:hover, body .btn-link:hover {
  color: #2275b2;
}
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: #402c41 !important;
  font-weight: 100;
}
body nav.bg-light a.nav-link {
  color: #402c41 !important;
}
body nav.bg-light a.nav-link:hover {
  color: #5e415f !important;
}
body nav.bg-light .navbar-toggler {
  color: #402c41 !important;
  border-color: transparent;
}
body {
  color: #402c41 !important;
}
body .list-group-item-action {
  color: #402c41 !important;
}
body .text-muted {
  color: #3e2f3e !important;
}

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

.btn-primary {
  background-color: #402c41;
  border-color: #372638;
  color: #FFFFFF;
}

.form-control:focus {
  border-color: #402c41;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(64, 44, 65, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(64, 44, 65, 0.25);
}

/* Hover button */
.btn-primary:hover, .btn-outline-primary:hover {
  background-color: #221723;
  border-color: #130d13;
  color: #FFFFFF;
  text-decoration: none;
}

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

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

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

.btn-primary:not([disabled]):not(.disabled).active, .btn-outline-primary:not([disabled]):not(.disabled).active {
  background-color: #221723 !important;
  border-color: #130d13 !important;
  color: #FFFFFF !important;
}

.show > .btn-primary.dropdown-toggle {
  background-color: #221723 !important;
  border-color: #130d13 !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 #6d4b6f;
  box-shadow: 0 0 0 0.2rem #6d4b6f;
}

.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 #6d4b6f;
  box-shadow: 0 0 0 0.2rem #6d4b6f;
}

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

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

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

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

.btn-primary:disabled {
  background-color: #6d4b6f;
  border-color: #6d4b6f;
}

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

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

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

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

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

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(64, 44, 65, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(64, 44, 65, 0.0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(64, 44, 65, 0.0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(64, 44, 65, 0.4);
    box-shadow: 0 0 0 0 rgba(64, 44, 65, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(64, 44, 65, 0.0);
    box-shadow: 0 0 0 10px rgba(64, 44, 65, 0.0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(64, 44, 65, 0.0);
    box-shadow: 0 0 0 0 rgba(64, 44, 65, 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";
}


.navbar {
  padding: 2rem 0.5rem;
  max-width: 1140px;
  margin: 0 auto;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 50px;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: flex-end;
}

#champ-pp * {
  font-family: neuzeit-grotesk, Helvetica, Open Sans, sans-serif !important;
}

#champ-pp h1,
#champ-pp h2,
#champ-pp h3,
#champ-pp h4,
#champ-pp h5 {
  font-weight: bold;
}

#champ-pp h1 {
  font-size: 40px;
}

.mt-2, .my-2 .mb-2,
.my-2 {
  margin-top: 0;
  margin-bottom: 0;
}

.champ-users-online {
  display: none;
}