/**
 * SignatureTheme: Shared Styles.
 * These styles are shared between the front end and admin
 * https://project-website.tld
 *
 */

.heading-underline:is(h2,h3) {
	position: relative;
	margin-bottom: 2ex;
	padding-bottom: 2ex;
}
.heading-underline:is(h2,h3)::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 3.375rem;
	height: 2px;
	background-color: var(--color-accent);
}
.heading-underline.heading-underline--center:is(h2,h3)::after {
	left: 50%;
	transform: translateX(-1.6875rem);
}
.wp-block-columns-is-layout-flex {
	gap: var(--space-md);
}

button.wpforms-submit {
	appearance: none;
	font-size: var(--btn-font-size) !important;
	background: var(--color-accent) !important;
	color: var(--color-white) !important;
	border: none !important;
	border-radius: var(--radius-sm) !important;
	cursor: pointer !important;
	margin: 0 !important;
	padding: var(--space-xs) var(--space-md) !important;
	font-family: var(--font-secondary) !important;
	--btn-font-size: inherit;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	line-height: 1.2 !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition: all 0.2s ease !important;
	will-change: transform;
}
button.wpforms-submit:hover {
	background: var(--color-black) !important;
}
div.wpforms-confirmation-container {
	background-color: hsl(170, 78%, 95%);
	border: 1px solid var(--color-success);
	padding: var(--component-padding);
	text-align: center;
}

.wpforms-field-radio li:not([class]),
.wpforms-field-checkbox li:not([class]) {
	display: none;
}
.wpforms-container .wpforms-form ul {
	list-style: none;
	margin-bottom: 0;
}
