/* Extend Sub Menu Truncation */
@media only screen and (min-width: 768px) {
.navContent ul li ul {
   max-width: 500px !important;
}
}

/* Equalize Simple List Blocks SITEWIDE */
/* Make sure to UNCHECK "Height-optimized grid" */
.itemsCollectionContent { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}
.itemsCollectionContent > .item {
	display: flex;
	flex-direction: column;
}
/********************
ACCORDION BASE STYLES
********************/
.mwd-header {
  font-size: 30px;
}

.mwd-accordion {
  margin: 30px 0;
}

.mwd-accordion .mwd-accordion-item {
  border: 1px solid #dddddd;
  margin-bottom: 15px;
}

.mwd-accordion .mwd-accordion-title {
  font-size: 24px;
  background: #000000;
  color: white;
  padding: 10px 50px 10px 20px;
  cursor: pointer;
  position: relative;
}

.mwd-accordion .mwd-accordion-content {
  color: black;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mwd-accordion .mwd-accordion-item.active .mwd-accordion-content {
  max-height: 2000px;
  padding: 20px;
}

.mwd-accordion .mwd-accordion p {
  margin: 0;
}

.mwd-accordion-title > :first-child {
  max-width: 90%;
}

.mwd-accordion-title .mwd-accordion-icon {
  position: absolute;
  background: white;
  width: 20px;
  height: 3px;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.mwd-accordion-title .mwd-accordion-icon:after {
  content: "";
  position: absolute;
  background: white;
  width: 3px;
  height: 20px;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.active .mwd-accordion-icon:after {
  transform: translateY(-50%) rotate(90deg);
}