/* "Add us to your contacts" -- the sheet before a form is sent, and the thank-you button. */
.fcc-sheet {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background: rgba(10, 21, 32, 0.55);
	padding: 16px;
}
@media (min-width: 640px) {
	.fcc-sheet { align-items: center; }
}
.fcc-sheet__panel {
	width: 100%;
	max-width: 440px;
	background: #ffffff;
	color: #2b1b3f;
	border-radius: 14px;
	padding: 22px 22px 18px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
	font-family: inherit;
}
.fcc-sheet__title {
	margin: 0 0 8px;
	font-size: 19px;
	font-weight: 800;
	line-height: 1.2;
}
.fcc-sheet__body {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(43, 27, 63, 0.8);
}
.fcc-sheet__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.fcc-sheet__add,
.fcc-sheet__go {
	display: inline-block;
	padding: 12px 20px;
	border-radius: 3px;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: lowercase;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}
.fcc-sheet__add { background: #3c2078; color: #fff; border: 2px solid #3c2078; }
.fcc-sheet__add:hover, .fcc-sheet__add:focus-visible { background: #fff; color: #3c2078; }
.fcc-sheet__go { background: transparent; color: #3c2078; border: 2px solid #3c2078; }
.fcc-sheet__go:hover, .fcc-sheet__go:focus-visible { background: #3c2078; color: #fff; }

.fcc-thanks { margin: 14px 0 0; font-size: 15px; }
.fcc-thanks__add {
	display: inline-block;
	margin-top: 6px;
	padding: 10px 18px;
	border: 2px solid currentColor;
	border-radius: 3px;
	color: inherit;
	font-weight: 700;
	text-decoration: none;
}
