/* ------------------------------------------------------
---------------------------------------------------------
		COLLAPSIBLE STYLES
---------------------------------------------------------
--------------------------------------------------------- */

.collapsibleContainer {
    margin: 30px 0;
}
.collapsibleGroup {
	margin-bottom: 10px;
	border-radius: 0;
	overflow: hidden;
}
.collapsible {
    background-color: #fff;
    font-family: "adobe-garamond-pro", serif;
	font-weight: 400;
    font-size: 20px;
    text-align: left;
    position: relative;
	color: var(--wp--preset--color--blue);
    cursor: pointer;
    width: 100%;
    border: none;
    outline: none;
    padding: 25px 70px 25px 5%;
}
.collapsible.active {
    transition: all .2s ease-in-out!important;
    background-color:var(--wp--preset--color--oatmeal);
}
.collapsible:after {
    font-family: "Font Awesome 7 Pro";
    font-weight: 400;
    content: '\f078';
    font-size: 18px;
    margin-left: 5px;
    margin-top: 3px;
    position: absolute;
    right: 5%;
    top: 25px;
	color: var(--wp--preset--color--oatmeal);
}
.active:after {
    content: "\f077";
	color: var(--wp--preset--color--offwhite);
}
.collcontent {
	background-color: #fff;
    padding: 0 5%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-out;
}