.lavelal-mf-component,
.lavelal-mf-line,
.lavelal-mf-empty {
	--lavelal-violet: #823f7c;
	--lavelal-violet-dark: #6f356a;
	--lavelal-gold: #deac5e;
	--lavelal-text: #1f2937;
	--lavelal-border: #d9d3dc;
	--lavelal-soft: #f7f1f6;
	color: var(--lavelal-text);
}

.lavelal-mf-form {
	display: grid;
	gap: 1.25rem;
	max-width: 48rem;
	margin: 1.5rem 0;
}

.lavelal-mf-field {
	display: grid;
	gap: 0.4rem;
}

.lavelal-mf-field label,
.lavelal-mf-fieldset legend {
	font-weight: 600;
}

.lavelal-mf-field input[type="text"],
.lavelal-mf-field input[type="email"] {
	box-sizing: border-box;
	width: 100%;
	min-height: 44px;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--lavelal-border);
	border-radius: 6px;
	background: #fff;
	color: var(--lavelal-text);
	font: inherit;
}

.lavelal-mf-field input:focus-visible,
.lavelal-mf-checkbox input:focus-visible,
.lavelal-mf-button:focus-visible,
.lavelal-mf-line a:focus-visible {
	outline: 3px solid var(--lavelal-gold);
	outline-offset: 3px;
}

.lavelal-mf-help,
.lavelal-mf-required,
.lavelal-mf-optional {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

.lavelal-mf-optional {
	font-weight: 400;
}

.lavelal-mf-fieldset {
	margin: 0;
	padding: 1rem;
	border: 1px solid var(--lavelal-border);
	border-radius: 8px;
	background: var(--lavelal-soft);
}

.lavelal-mf-checkbox {
	display: grid;
	grid-template-columns: 1.25rem 1fr;
	gap: 0.7rem;
	align-items: start;
	font-weight: 400 !important;
	line-height: 1.55;
}

.lavelal-mf-checkbox input {
	width: 1.1rem;
	height: 1.1rem;
	margin-top: 0.25rem;
	accent-color: var(--lavelal-violet);
}

.lavelal-mf-button {
	justify-self: start;
	min-height: 44px;
	padding: 0.7rem 1.1rem;
	border: 2px solid var(--lavelal-violet);
	border-radius: 8px;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.lavelal-mf-button--primary {
	background: var(--lavelal-violet);
	color: #fff;
}

.lavelal-mf-button--primary:hover {
	border-color: var(--lavelal-violet-dark);
	background: var(--lavelal-violet-dark);
	color: #fff;
}

.lavelal-mf-button--secondary {
	background: #fff;
	color: var(--lavelal-violet);
}

.lavelal-mf-button--secondary:hover {
	background: var(--lavelal-soft);
	color: var(--lavelal-violet-dark);
}

.lavelal-mf-message {
	max-width: 48rem;
	margin: 1rem 0;
	padding: 0.8rem 1rem;
	border-left: 5px solid var(--lavelal-violet);
	background: var(--lavelal-soft);
}

.lavelal-mf-message p {
	margin: 0;
}

.lavelal-mf-message--error {
	border-left-color: #9b2c2c;
}

.lavelal-mf-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.lavelal-mf-line {
	max-width: 52rem;
	margin: 1.5rem 0;
}

.lavelal-mf-line__list {
	position: relative;
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0 0 0 2.25rem;
	list-style: none;
}

.lavelal-mf-line__list::before {
	position: absolute;
	top: 0.75rem;
	bottom: 0.75rem;
	left: 0.65rem;
	width: 3px;
	background: var(--lavelal-violet);
	content: "";
}

.lavelal-mf-line__item {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(7rem, auto);
	gap: 0.75rem 1.25rem;
	align-items: baseline;
	padding: 0.8rem 0;
	border-bottom: 1px solid var(--lavelal-border);
}

.lavelal-mf-line__item::before {
	position: absolute;
	top: 1.25rem;
	left: -2rem;
	width: 0.8rem;
	height: 0.8rem;
	border: 3px solid #fff;
	border-radius: 50%;
	background: var(--lavelal-gold);
	box-shadow: 0 0 0 2px var(--lavelal-violet);
	content: "";
}

.lavelal-mf-line__name {
	font-weight: 600;
}

.lavelal-mf-line__place {
	color: #4b5563;
	text-align: right;
}

.lavelal-mf-empty {
	max-width: 48rem;
	padding: 1rem;
	border-left: 5px solid var(--lavelal-gold);
	background: var(--lavelal-soft);
}

.lavelal-mf-empty p {
	margin: 0;
}

@media (max-width: 640px) {
	.lavelal-mf-line__item {
		grid-template-columns: 1fr;
		gap: 0.2rem;
	}

	.lavelal-mf-line__place {
		text-align: left;
	}

	.lavelal-mf-button {
		width: 100%;
		justify-self: stretch;
	}
}
