/* Nav Dropdowns */

.navContent ul li ul a {
    white-space: normal !important;
    overflow: visible !important;
}

@media only screen and (min-width: 768px) {
    .navContent ul li ul {
        min-width: 250px !important;
        right: auto !important; 
    }
}

/* Flip 50-50 Stacking Order in Mobile */

.block_ca1ee18fdbce4f3aa90e5a9067086564 {
    display: flex;
    flex-flow: wrap-reverse;
}

.blockWrap_ca1ee18fdbce4f3aa90e5a9067086564 .blockImg {
    padding-bottom: 0px !important;
    padding-top: 30px !important;
}

/* Equalize Simple List Blocks*/

/* Change item class here */
.items_f5ab17bb7c8645d2aa6e35c0747e2254 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_f5ab17bb7c8645d2aa6e35c0747e2254 > .item {
	display: flex;
	flex-direction: column;
}
/* Change item class here */
.items_f1688750e89544ebba704d92cfb95a26 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_f1688750e89544ebba704d92cfb95a26 > .item {
	display: flex;
	flex-direction: column;
}

/* Accordian Dropdown Button Styles */
.accordion {
    background-color: #eee;
    color: #ffffff;
    cursor: pointer;
    margin-top: 10px;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: 0px;
    outline: none;
    transition: 0.4s;
}

/* Accordian Button Hover */
.active, .accordion:hover {
    background-color: #dfdfdf;
}

/* Accordian Button Icon */
.accordion:after {
    content: '+'; /* Unicode character for "plus" sign (+) */
    font-size: 20px;
    color: #ffffff;
    margin-left: 20px;
}

.active:after {
    content: "-"; /* Unicode character for "minus" sign (-) */
}

/* Accordian Panel Styles */
.panel {
    padding: 10px 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}