.mj-form-card {
	--mj-accent: #19a7a8;
	--mj-bg: #fff;
	--mj-button-text: #fff;
	--mj-text: #29254f;
	--mj-field-bg: #fff;
	--mj-border: #e4e8f1;
	--mj-radius: 20px;
	--mj-width: 680px;
	--mj-min-height: 0;
	--mj-padding: 28px;
	background: var(--mj-bg);
	border-radius: var(--mj-radius);
	box-shadow: 0 10px 32px rgba(45, 39, 101, .08);
	box-sizing: border-box;
	color: var(--mj-text);
	font-family: inherit;
	margin: 22px auto;
	max-width: min(100%, var(--mj-width));
	min-height: var(--mj-min-height);
	overflow: hidden;
	padding: var(--mj-padding);
}

.mj-form-card.mj-bg-solid {
	background: var(--mj-bg) !important;
	background-color: var(--mj-bg) !important;
}

.mj-form-card.mj-bg-transparent {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

.mj-form-head h2 {
	color: var(--mj-text);
	font-size: clamp(24px, 4vw, 30px);
	line-height: 1.15;
	margin: 0 0 9px;
}

.mj-form-head p {
	color: var(--mj-text);
	font-size: 15px;
	line-height: 1.55;
	margin: 0 0 26px;
	opacity: .78;
}

.mj-fields {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mj-form label > span,
.mj-fields label > span {
	color: var(--mj-text);
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 7px;
}

.mj-fields b {
	color: var(--mj-accent);
}

.mj-form input[type="text"],
.mj-form input[type="email"],
.mj-form select {
	background: var(--mj-field-bg);
	border: 1px solid var(--mj-border);
	border-radius: 10px;
	box-shadow: none;
	box-sizing: border-box;
	color: #23203f;
	font-size: 16px;
	height: 48px;
	padding: 0 13px;
	transition: border-color .18s, box-shadow .18s;
	width: 100%;
}

.mj-list-select {
	display: block;
	margin: 16px 0 0;
}

.mj-form input:focus {
	border-color: var(--mj-accent);
	box-shadow: 0 0 0 3px rgba(25, 167, 168, .16);
	outline: none;
}

.mj-tip {
	align-items: center;
	background: #eef7f8;
	border-radius: 50%;
	color: var(--mj-accent);
	cursor: help;
	display: inline-flex;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
	height: 18px;
	justify-content: center;
	margin-left: 4px;
	width: 18px;
}

.mj-captcha {
	background: #f6f9fb;
	border: 1px solid #e5ebf2;
	border-radius: 14px;
	margin: 22px 0 18px;
	padding: 13px 15px 15px;
}

.mj-captcha legend {
	color: #2d2765;
	font-size: 14px;
	font-weight: 700;
	padding: 0 6px;
}

.mj-captcha p {
	color: #59627a;
	font-size: 14px;
	margin: 4px 0 12px;
}

.mj-fruits {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mj-fruit {
	align-items: center;
	background: #fff;
	border: 1px solid #e4e8f1;
	border-radius: 11px;
	cursor: pointer;
	display: grid;
	gap: 4px;
	grid-template-columns: auto 1fr;
	justify-items: center;
	min-height: 82px;
	padding: 7px 9px;
	text-align: center;
	transition: border-color .16s, background .16s;
}

.mj-fruit:hover,
.mj-fruit:has(input:checked) {
	background: #effbfb;
	border-color: var(--mj-accent);
}

.mj-fruit input {
	grid-row: 1 / 3;
	margin: 0;
}

.mj-fruit img {
	height: 47px;
	object-fit: contain;
	width: 47px;
}

.mj-fruit span {
	font-size: 12px;
	font-weight: 600;
	grid-column: 2;
	margin: 0;
}

.mj-consent {
	align-items: flex-start;
	display: flex;
	gap: 9px;
	margin: 16px 0 20px;
}

.mj-consent input {
	accent-color: var(--mj-accent);
	margin-top: 3px;
}

.mj-consent span {
	color: var(--mj-text);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.45;
	margin: 0;
	opacity: .78;
}

.mj-consent a {
	color: var(--mj-accent);
}

.mj-optional-consent {
	background: color-mix(in srgb, var(--mj-accent) 7%, white);
	border-radius: 8px;
	margin-top: -8px;
	padding: 10px;
}

.mj-cf7-optin {
	margin: 14px 0;
}

.mj-cf7-optin .mj-consent {
	margin: 10px 0;
}

.mj-submit {
	background: var(--mj-accent);
	border: 0;
	border-radius: 11px;
	color: var(--mj-button-text);
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	min-height: 50px;
	padding: 12px 28px;
	transition: filter .16s, transform .16s;
	width: 100%;
}

.mj-submit:hover {
	filter: brightness(.93);
	transform: translateY(-1px);
}

.mj-required {
	color: #737c90;
	font-size: 12px;
	line-height: 1.45;
	margin: 13px 0 0;
	text-align: center;
}

.mj-confirm-popup {
	align-items: center;
	background: rgba(17, 24, 39, .62);
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 22px;
	position: fixed;
	z-index: 999999;
}

.mj-confirm-box {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
	box-sizing: border-box;
	color: #24313d;
	max-width: 460px;
	padding: 26px;
	width: 100%;
}

.mj-confirm-box h3 {
	color: #24313d;
	font-size: 24px;
	line-height: 1.2;
	margin: 0 0 12px;
}

.mj-confirm-box p {
	color: #344054;
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 20px;
}

.mj-confirm-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.mj-confirm-actions button {
	border-radius: 10px;
	cursor: pointer;
	font-weight: 700;
	padding: 11px 16px;
}

.mj-confirm-cancel {
	background: #fff;
	border: 1px solid #cfd6e3;
	color: #24313d;
}

.mj-confirm-send {
	background: var(--mj-accent, #0f766e);
	border: 1px solid var(--mj-accent, #0f766e);
	color: var(--mj-button-text, #fff);
}

.mj-layout-compact .mj-form-head h2 {
	font-size: clamp(21px, 3.5vw, 25px);
}

.mj-layout-compact .mj-form-head p {
	margin-bottom: 18px;
}

.mj-layout-compact .mj-fields {
	gap: 11px;
}

.mj-layout-compact .mj-form input[type="text"],
.mj-layout-compact .mj-form input[type="email"] {
	height: 42px;
}

.mj-layout-compact .mj-captcha {
	margin: 16px 0 13px;
	padding: 9px 11px 11px;
}

.mj-layout-compact .mj-fruit {
	min-height: 72px;
}

.mj-layout-compact .mj-fruit img {
	height: 37px;
	width: 37px;
}

.mj-layout-compact .mj-submit {
	min-height: 44px;
}

.mj-layout-minimal {
	border-radius: 0;
	box-shadow: none;
	margin: 10px auto;
}

.mj-layout-minimal .mj-form-head h2 {
	font-size: 22px;
}

.mj-layout-minimal .mj-form-head p {
	margin-bottom: 15px;
}

.mj-layout-minimal .mj-fields {
	gap: 9px;
}

.mj-layout-minimal .mj-form input[type="text"],
.mj-layout-minimal .mj-form input[type="email"] {
	height: 40px;
}

.mj-layout-minimal .mj-captcha {
	margin: 13px 0 11px;
	padding: 8px 10px 10px;
}

.mj-layout-minimal .mj-fruit {
	min-height: 68px;
}

.mj-layout-minimal .mj-fruit img {
	height: 33px;
	width: 33px;
}

.mj-layout-minimal .mj-consent {
	margin: 11px 0 13px;
}

.mj-layout-minimal .mj-submit {
	min-height: 42px;
}

.mj-notice {
	border-radius: 10px;
	font-size: 14px;
	margin-bottom: 20px;
	padding: 12px 14px;
}

.mj-success {
	background: #e9f8f3;
	color: #116542;
}

.mj-error {
	background: #fff0f0;
	color: #a22d39;
}

.mj-hp {
	left: -10000px !important;
	position: absolute !important;
	top: auto !important;
}

@media (max-width: 760px) {
	.mj-fruits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.mj-fields {
		grid-template-columns: 1fr;
	}

	.mj-fruits {
		grid-template-columns: 1fr;
	}
}
