body .text-primary {
  color: #4256ac !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: #4256ac;
}
body a:hover, body .btn-link:hover {
  color: #3b4d9a;
}
body .nav-pills .nav-link.active, body .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #333;
}
body nav.bg-light {
  background-color: #4256ac !important;
}
body nav.bg-light .navbar-brand {
  color: #ffffff !important;
  font-weight: 100;
}
body nav.bg-light a.nav-link {
  color: #ffffff !important;
}
body nav.bg-light a.nav-link:hover {
  color: #e6e6e6 !important;
}
body nav.bg-light .navbar-toggler {
  color: #ffffff !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: #4256ac;
  color: #FFFFFF;
}

.btn-primary {
  background-color: #4256ac;
  border-color: #3e50a1;
  color: #FFFFFF;
}

.form-control:focus {
  border-color: #4256ac;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(66, 86, 172, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(66, 86, 172, 0.25);
}

/* Hover button */
.btn-primary:hover, .btn-outline-primary:hover {
  background-color: #344487;
  border-color: #2d3a75;
  color: #FFFFFF;
  text-decoration: none;
}

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

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

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

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

.show > .btn-primary.dropdown-toggle {
  background-color: #344487 !important;
  border-color: #2d3a75 !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 #7282c9;
  box-shadow: 0 0 0 0.2rem #7282c9;
}

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

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

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

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

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

.btn-primary:disabled {
  background-color: #7282c9;
  border-color: #7282c9;
}

/* 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: #2f2f2f !important;
}

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

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

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


.manage-preference-sidebar {
  display: none;
}

.install-champ {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.below-header {
  background: url(https://cdn.shopify.com/s/files/1/2786/3878/t/1/assets/pic3-p2.png?4509396534301255899);
  background-repeat: no-repeat;
  height: auto;
  width: 100%;
  background-size: cover;
  background-position: 50% 73%;
  color: white;
  position: relative;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.below-header h2 {
  font-size: 30px;
  font-weight: 100;
}
.below-header p {
  font-size: 20px;
}
.below-header h2, .below-header p {
  font-weight: 100;
  color: white !important;
  text-align: center;
}
.below-header .below-header-wrapper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: rgb(37.7142857143, 49.1428571429, 98.2857142857);
  position: relative;
  top: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

@media (min-width: 768px) {
  .below-header {
    height: 300px;
  }
  .below-header .below-header-wrapper {
    position: absolute;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.latest-topics {
  font-size: 90%;
}

h1 {
  font-size: 1.5rem;
}

.post ul, .post li {
  list-style-type: disc;
}
.post ul {
  padding-left: 20px;
}

.champ-moderator-badge-inner-wrapper {
  position: relative;
}
.champ-moderator-badge-inner-wrapper .champ-moderator-badge-icon {
  background: #333333;
  color: white !important;
  border-radius: 50px;
  position: absolute;
  right: 10px;
  top: -5px;
  font-size: 10px;
  height: 15px;
  width: 15px;
  display: flex;
  justify-content: center;
  font-weight: bold;
}

.champ-users-online .champ-moderator-badge-inner-wrapper .champ-moderator-badge-icon {
  top: 0;
  right: 0;
  border-radius: 0;
}