hark-form form {
	display: flex;
	flex-wrap: wrap;
}

hark-form .success {
	color: #2a2;
}

hark-form .message {
	color: #f44;
}

hark-form input[type=text], hark-form input[type=tel], hark-form input[type=number], hark-form input[type=email], hark-form input[type=date], hark-form select {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	line-height: 16px;
	height: 42px;
	transition: none !important;
	background: none !important;
}

hark-form input::placeholder {
	color: #aaaaaa;
}

hark-form select:not(:valid) {
	color: #aaa;
}

hark-form select:focus, hark-form input:focus {
	border: 1px solid #4f87a0 !important;
}

hark-form textarea {
	resize: vertical;
	box-sizing: border-box;
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	line-height: 16px;
	min-height: 42px;
	font-family: inherit;
}

hark-form button, hark-form a[role=button] {
	grid-column: span 2;
	font-family: inherit;
	border: none;
	min-width: 200px;
	justify-self: center;
	background: #4f87a0;
	color: #fff;
	line-height: 18px;
	text-align: center;
	display: inline-block;
	font-size: 14px;
	padding: 12px 20px;
	box-sizing: border-box;
	cursor: pointer;
}

hark-field:not(.breakpoint):not(.content) {
	padding: 16px 8px;
	box-sizing: border-box;
	border-bottom: 1px solid #aaa;
}

hark-field.hidden {
	display: none !important;
}

hark-field.Single {
	flex-basis: 50%;
	min-width: 250px;
	flex-grow: 1;
}

hark-field.Double {
	flex-basis: 100%;
}

hark-field .field--title {
	display: block;
	grid-column: span 2;
	margin-bottom: 4px;
}

hark-field .field--subtitle {
	display: block;
	grid-column: span 2;
	margin-bottom: 4px;
	font-size: 14px;
	color: #888;
}

hark-field.checkboxes, hark-field.radio {
	grid-row: span 2;
	display: grid;
	grid-template-columns: max-content 1fr;
	align-items: flex-start;
	column-gap: 8px;
	row-gap: 6px;
}

hark-field.checkboxes > label, hark-field.radio > label {
	justify-self: flex-start;
}

hark-field > input, hark-field > select {
	margin: 0 !important;
}

hark-field.checkboxes > span, hark-field.radio > span {
	grid-column: span 2;
}

.actions {
	flex-basis: 100%;
}