/*
 * Breakdance Rich Text Styles
 * Custom CSS for image wrapping and formatting
 * Targets divs with class "breakdance-rich-text-styles"
 */

/* Target divs with the breakdance-rich-text-styles class */

/* .breakdance-rich-text-styles {
  overflow: hidden;
} */

/* Style all images within the targeted divs */

.breakdance-rich-text-styles img {
/*  max-width: 300px; */
  margin: 20px;
/*  float: left; */
/*  height: auto; */
}

/* Force horizontal rules to break out of text wrapping */
.breakdance-rich-text-styles hr {
  clear: both; /* Clears any floating elements (images) */
  margin: 20px 0; /* Adds some vertical spacing around the HR */
  border: none; /* Reset default border */
  border-top: 1px solid #ccc; /* Add a simple line */
  }
  
.breakdance .location__content h4 {
    color: #000 !important;
    font-family: Arial, sans-serif !important;
    font-size: 1.5rem !important;
}

#popuptoggle {
  z-index: 990; /* or whatever it's currently set to */
}

/* Raise the mobile menu above the popup */
.breakdance-menu-list.is-visible {
  z-index: 1000; /* must be greater than #popuptoggle's z-index */
}