.acc-flex-container-plus {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
}

.entry-content > .acc-flex-container-plus:first-of-type .acc-row-plus {
	border-top: 1px solid var(--color-theme-grey);
}

.acc-title {
	font-size: var(--font-size-large);
	font-family: var(--secondary-font-family);
	font-weight: 600;
	color: var(--color-theme-primary);
	padding: 8px;
	padding-bottom: 4px;
	transition: all 0.3s ease-in;
}

@media (max-width: 768px) {
	.acc-title {
		padding-left: 0;
	}
}

.acc-pointer {
	cursor: pointer;
}

.acc-heading {
	color: var(--color-theme-primary);
	font-family: var(--secondary-font-family);
	font-size: var(--font-size-largest);
	font-weight: 600;
	margin-bottom: 30px;
	text-transform: uppercase;
	text-align: center;
}

@media (max-width: 768px) {
	.acc-heading {
		font-size: var(--font-size-mobile-largest);
	}
}

.acc-intro {
	margin: 0;
	margin-bottom: 24px;
	margin-top: 12px;
	font-size: var(--font-size-regular);
	font-family: var(--global-font-family);
	color: var(--color-theme-primary);
}

.acc-row-plus {
	display: flex;
	flex-direction: row;
	padding: 8px 0;
	border: none;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	background: none;
	border-bottom: 1px solid var(--color-theme-grey);
	margin-left: 10px;
}

@media (max-width: 768px) {
	.acc-row-plus {
		margin-left: 0;
	}
}

.acc-icon {
	width: 30px;
}

.acc-panel-plus {
	display: none;
	padding: 18px;

	h3.wp-block-heading {
		font-family: var(--global-font-family);
		/*font-size: 28px; !important;*/
		font-size: clamp(18px, calc(18px + (10 * (100vw - 390px) / 1050)), 28px);
		font-weight: 300;
	}
}

/* Accordion Style Overrides */
.acc-row-plus {
	position: relative;
	margin-left: 0;
	padding-right: 50px;
	border-radius: 0;
	border-bottom-color: #d1e0d7;
}
.acc-row-plus::after {
	position: absolute;
	content: '';
	top: 50%;
	right: 0;
	width: 30px;
	height: 30px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="29" height="29" viewBox="0 0 29 29" fill="none"><circle cx="14.25" cy="14.25" r="13.875" transform="rotate(-90 14.25 14.25)" stroke="%2313294B" stroke-width="0.75"/><line x1="14.9229" y1="7.55518" x2="14.9229" y2="20.6034" stroke="%2313294B"/><line x1="21.291" y1="14.2358" x2="8.24282" y2="14.2358" stroke="%2313294B"/></svg>')
		no-repeat center;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}
.acc-row-plus[aria-expanded='true']::after {
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="29" height="29" viewBox="0 0 29 29" fill="none"><circle cx="14.25" cy="14.25" r="13.875" transform="rotate(-90 14.25 14.25)" stroke="%2313294B" fill="%2313294B" stroke-width="0.75"/><line x1="14.9229" y1="7.55518" x2="14.9229" y2="20.6034" stroke="white"/><line x1="21.291" y1="14.2358" x2="8.24282" y2="14.2358" stroke="white"/></svg>')
		no-repeat center;
	transform: translateY(-50%) rotate(45deg);
}
.acc-title {
	padding: 10px 0;
	font-size: clamp(18px, calc(18px + (10 * (100vw - 390px) / 1050)), 28px);
	font-family: var(--global-font-family);
	font-weight: 300;
}
