/* Equalize Simple List Blocks - Pin Buttons to Bottom*/

/* Change item class here */
.items_fb8f1a7484154aec983227d5b4bc40ec { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_fb8f1a7484154aec983227d5b4bc40ec > .item {
	display: flex;
	flex-direction: column;
  position: relative;
}

/* Change item class here */
.items_fb8f1a7484154aec983227d5b4bc40ec > .item a.button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px; 
}

/* Change item class here */
.items_fb8f1a7484154aec983227d5b4bc40ec > .item p {
    margin-bottom: 20px;
}

 /********************
BASE +/- STYLES
********************/
.mwd-accordion-content {
  display: block;
  overflow: hidden;
  max-height: 100%;
  transition: all 0.3s ease-in-out;
}

.mwd-accordion-title > :first-child {
  max-width: 90%;
}

.mwd-accordion-title {
  position: relative;
}
.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);
}