/* Custom Colors */
/* defined in custom CSS file */


/* Customise Bootstrap Accordion */
.accordion-button:not(.collapsed) {
  color: #FFF  !important;
  background-color: var(--custom-color) !important;
}
.accordion-button:link, .accordion-button:visited, .accordion-button:hover, .accordion-button:active  {
  background-color: var(--custom-color) !important;
  color:#FFF !important;
  text-decoration: none !important;
  border: hidden !important;
  border-color: #FFF !important;
  box-shadow: 0px !important;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #FFF !important;
  outline: 0;
  box-shadow: 0 0 0 .25rem var(--custom-color-light) !important;
}
/* Customise Bootstrap Accordion: change chevron colour by adding HEX after fill='%23XXXXXX (replace the Xs) */
  .accordion-button:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}/* END Customise Bootstrap Accordion */


/* Customise Bootstrap Dropdown */
.nav-item.dropdown .dropdown-item:active {
  background-color: var(--custom-color) !important;
}
