/* GLOBAL STYLE SHEET */
.sticky-top--header {
  position: sticky;
  top: calc(var(--aa-header-height)*1.75);
  /* Adjust this value as needed */
}
.no-wrap {
  white-space: nowrap;
}
.no-border {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
/* Fix Video Lightbox */
section > div.pswp__container {
  max-inline-size: unset;
}
/* STYLE POLICY PAGES */
#brx-content.wordpress {
  padding: 3em;
}
#brx-content.wordpress p, #brx-content.wordpress h1, #brx-content.wordpress h2, #brx-content.wordpress h3, #brx-content.wordpress h4, #brx-content.wordpress h5, #brx-content.wordpress h6 {
  margin-bottom: 1em;
}
/* STICKY HEADER SCROLL OFFSET */
html {
  scroll-padding-top: 8dvh !important;
  scroll-behavior: smooth;
}
/* adjust scroll offset for mobile header */
@media (max-width: 767px) {
  html {
    scroll-padding-top: 8dvh !important;
  }
}
/* CATEGORY AND TAG BUTTON STYLING */
.taxonomy-button {
  display: inline-block;
  padding: 5px 16px;
  /* Adjust the padding as needed */
  margin: 5px;
  color: var(--primary-medium);
  /* Change the text color */
  background-color: none;
  /* Change the background color */
  text-decoration: none;
  border: 1px solid var(--primary-medium);
  border-radius: 30px;
  /* Rounded corners */
  margin-right: 5px;
  /* Add spacing between buttons */
}
.taxonomy-button:hover {
  color: var(--white);
  /* Change the text color on hover */
  background-color: var(--action);
  /* Change the background color on hover */
}
/* DISABLE TABS ACCESSIBILITY OUTLINE */
body.bricks-is-frontend :focus {
  outline: none;
}
.list-spacing ul {
  margin: 1em 0 !important;
}
