/* Equalize Simple List Blocks Napa*/

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

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

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

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

 /********************
ACCORDION BASE STYLES
-edit look of accordion here
********************/
.mwd-header {
    font-size: 30px;
}
.mwd-accordion-content h4 {
    font-weight: 700;
}
.mwd-accordion-content p {
    padding-top: 10px;
    padding-bottom: 10px;
}
 .mwd-accordion {
    margin: 30px 0;
}  
.mwd-accordion .mwd-accordion-item {
    border: 1px solid #dddddd;
    margin-bottom: 15px;
}
.mwd-accordion .mwd-accordion-item .mwd-accordion-title {
    font-size: 20px;
    background: #6d8b75;
    color: white;
    padding: 20px 20px 10px 20px;
    cursor: pointer;
}
.mwd-accordion .mwd-accordion-item .mwd-accordion-content {
    color: #2f292b;
    padding: 20px 20px 0 20px;
    background-color: #ffffff;
}
.mwd-accordion .mwd-accordion-item .mwd-accordion p {
    margin: 0;
}
  
/********************
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);
}

/* Popup Styles */

.dismiss{
    cursor: pointer;
}
.popupTitle {
    font-size: 27px;
    color: #6D8B75;
    margin-top: 5px;
    margin-bottom: -5px;
}