/* CSS file to implement integration of Collapse-O-Matic plugin */


/*--- Default and small screens ---*/

/* Style the collapse-o-matic trigger element */
.collapseomatic{
	color: #005239;
	font-size: 3rem;
	font-family: 'Figtree', sans-serif;
    font-weight: 600;
	cursor: pointer;
	margin-top: 1rem;
	margin-bottom: 1rem;
	user-select: none;
	display: block;
	position: relative;
	padding-left: 0;
	padding-right: 5rem;
	background-image:none; /* Remove default collapse-o-matic expand/collapse icons */
}

/* Add an :after pseudo-element to the trigger for an open/close graphic that changes when the trigger is clicked */
.collapseomatic::after{
	font-weight: 900;
	display: inline-block;
	font-family: Font Awesome\ 5 Free;
	content: '\f055';
	position: absolute;
	top: .5rem;
	right: 0;
}

/* Switch the trigger graphic when the target element is open */
.collapseomatic.colomat-close::after{
	font-weight: 900;
	content: "\f056";
}
