

.c-form {
	width: 100%;
	min-width: 0;
}

.c-form form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-m);
	width: 100%;
	min-width: 0;
}

.c-form .form-group,
.c-form .bricks-form-field {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	width: 100%;
	min-width: 0;
}

.c-form .form-group.is-full,
.c-form .bricks-form-field.is-full,
.c-form .form-group:has(textarea),
.c-form .bricks-form-field:has(textarea) {
	grid-column: 1 / -1;
}

.c-form label {
	color: var(--dark-grey);
	font-family: "Just Sans", system-ui, sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.2;
}

.c-form input,
.c-form textarea,
.c-form select {
	width: 100%;
	min-height: 5.2rem;
	padding: 1.3rem 1.5rem;
	color: var(--text-body);
	background-color: var(--bg-body);
	border: 1px solid rgba(76, 80, 82, 0.18);
	font-family: "Just Sans", system-ui, sans-serif;
	font-size: 1.7rem;
	font-weight: 400;
	line-height: 1.4;
}

.c-form textarea {
	min-height: 15rem;
	resize: vertical;
}

.c-form input::placeholder,
.c-form textarea::placeholder {
	color: rgba(76, 80, 82, 0.62);
}

.c-form input:focus,
.c-form textarea:focus,
.c-form select:focus {
	outline: 2px solid var(--secondary);
	outline-offset: 2px;
	border-color: var(--secondary);
}

.c-form button,
.c-form button[type="submit"],
.c-form .bricks-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 5rem;
	width: fit-content;
	padding: 1.3rem 2.4rem;
	color: var(--light);
	background-color: var(--primary);
	border: 2px solid var(--primary);
	font-family: "Just Sans", system-ui, sans-serif;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.c-form button:hover,
.c-form button[type="submit"]:hover,
.c-form .bricks-button:hover {
	color: var(--dark-grey);
	background-color: var(--accent);
	border-color: var(--accent);
}

.c-form .message,
.c-form .bricks-form-message {
	grid-column: 1 / -1;
	margin: 0;
	font-family: "Just Sans", system-ui, sans-serif;
	font-size: 1.6rem;
	line-height: 1.4;
}






.c-order-section {
	background-color: var(--bg-body);
}

.c-order-section__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.6fr);
	gap: var(--space-2xl);
	align-items: start;
	width: 100%;
	max-width: 140rem;
	margin-inline: auto;
	padding: var(--space-2xl) var(--space-m);
}




.c-order-intro {
	color: var(--text-body);
	font-family: "Just Sans", system-ui, sans-serif;
	font-size: 1.8rem;
	line-height: 1.5;
}

.c-order-intro h2,
.c-order-intro .brxe-heading {
	margin: 0 0 var(--space-s);
	color: var(--primary);
	font-family: "Just Sans", system-ui, sans-serif;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.1;
}

.c-order-intro .brxe-text,
.c-order-intro .brxe-text-basic,
.c-order-intro .brxe-rich-text {
	color: var(--text-body);
	font-family: "Just Sans", system-ui, sans-serif;
	font-size: 1.8rem;
	line-height: 1.5;
}

.c-order-intro p {
	margin: 0 0 1.4rem;
}

.c-order-intro p:last-child {
	margin-bottom: 0;
}

.c-order-intro ol,
.c-order-intro ul {
	margin: 0;
	padding-left: 2.2rem;
}

.c-order-intro li {
	margin-bottom: 0.9rem;
}

.c-order-intro li:last-child {
	margin-bottom: 0;
}




.c-order-form,
.c-order-form .brxe-jet-form-builder-form,
.c-order-form .jet-fb-form-block,
.c-order-form .jet-form-builder {
	width: 100%;
	max-width: 100%;
}

.c-order-form .jet-form-builder {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
	padding: var(--space-l);
	background-color: var(--light);
	border: 1px solid rgba(76, 80, 82, 0.14);
	border-bottom: 3px solid var(--secondary);
	box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.07);
	font-family: "Just Sans", system-ui, sans-serif;
}




.c-order-form .wp-block-columns {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.8rem !important;
	width: 100%;
	margin: 0 !important;
}

.c-order-form .wp-block-column {
	min-width: 0;
	margin: 0 !important;
}




.c-order-form .jet-form-builder-row {
	margin: 0;
}

.c-order-form .jet-form-builder__label {
	margin: 0 0 0.7rem;
}

.c-order-form .jet-form-builder__label-text {
	color: var(--dark-grey);
	font-family: "Just Sans", system-ui, sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.25;
}

.c-order-form .jet-form-builder__required {
	color: var(--primary);
	font-weight: 800;
}




.c-order-form .jet-form-builder__field-wrap {
	width: 100% !important;
	max-width: 100% !important;
}

.c-order-form .jet-form-builder__field,
.c-order-form input[type="text"],
.c-order-form input[type="email"],
.c-order-form input[type="tel"],
.c-order-form input[type="number"],
.c-order-form select,
.c-order-form textarea {
	width: 100% !important;
	max-width: 100% !important;
	min-height: 5.2rem;
	padding: 1.2rem 1.4rem;
	background-color: var(--light) !important;
	border: 1px solid rgba(76, 80, 82, 0.28);
	border-radius: 0;
	color: var(--text-body) !important;
	font-family: "Just Sans", system-ui, sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.35;
	box-shadow: none;
	outline: none;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}



.c-order-form select,
.c-order-form .select-field {
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	padding-right: 4.4rem !important;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--dark-grey) 50%),
		linear-gradient(135deg, var(--dark-grey) 50%, transparent 50%) !important;
	background-position:
		calc(100% - 2.2rem) 50%,
		calc(100% - 1.65rem) 50% !important;
	background-size:
		0.55rem 0.55rem,
		0.55rem 0.55rem !important;
	background-repeat: no-repeat !important;
}

.c-order-form textarea {
	min-height: 13rem !important;
	resize: vertical;
}

.c-order-form .jet-form-builder__field::placeholder,
.c-order-form textarea::placeholder {
	color: rgba(76, 80, 82, 0.62);
}

.c-order-form .jet-form-builder__field:focus,
.c-order-form input[type="text"]:focus,
.c-order-form input[type="email"]:focus,
.c-order-form input[type="tel"]:focus,
.c-order-form input[type="number"]:focus,
.c-order-form select:focus,
.c-order-form textarea:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px var(--primary-20);
}




.c-order-form .field-type-checkbox-field {
	padding: 1.4rem 1.6rem;
	background-color: var(--bg-body);
	border: 1px solid rgba(76, 80, 82, 0.14);
}

.c-order-form .jet-form-builder__fields-group {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.c-order-form .jet-form-builder__field-label.for-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	color: var(--text-body);
	font-family: "Just Sans", system-ui, sans-serif;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.3;
	cursor: pointer;
}

.c-order-form input[type="checkbox"] {
	width: 1.8rem;
	height: 1.8rem;
	accent-color: var(--primary);
}




.c-order-form .jet-form-builder__conditional {
	width: 100%;
	padding: 0;
}

.c-order-form .jet-form-builder__conditional:not([style*="display: none"]) {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
}




.c-order-form .field-type-repeater-field {
	margin-top: var(--space-s);
	padding-top: var(--space-m);
	border-top: 2px solid var(--primary);
}

.c-order-form .field-type-repeater-field > .jet-form-builder__label {
	margin-bottom: 1.4rem;
}

.c-order-form .field-type-repeater-field > .jet-form-builder__label .jet-form-builder__label-text {
	color: var(--primary);
	font-size: 2.2rem;
	font-weight: 700;
}

.c-order-form .jet-form-builder-repeater {
	width: 100%;
}

.c-order-form .jet-form-builder-repeater__items {
	display: flex;
	flex-direction: column;
	gap: var(--space-m);
}

.c-order-form .jet-form-builder-repeater__row {
	position: relative;
	padding: var(--space-m);
	background-color: var(--bg-body);
	border: 1px solid rgba(76, 80, 82, 0.16);
	border-bottom: 3px solid var(--secondary);
}

.c-order-form .jet-form-builder-repeater__row-fields {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
}

.c-order-form .jet-form-builder-repeater__row-remove {
	position: absolute;
	top: 1rem;
	right: 1rem;
}

.c-order-form .jet-form-builder-repeater__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.6rem;
	height: 3.6rem;
	padding: 0;
	background-color: var(--dark-grey);
	border: 0;
	border-radius: 0;
	color: var(--light);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.c-order-form .jet-form-builder-repeater__remove:hover,
.c-order-form .jet-form-builder-repeater__remove:focus {
	background-color: var(--primary);
}

.c-order-form .jet-form-builder-repeater__actions {
	display: flex;
	justify-content: flex-start;
	margin-top: var(--space-s);
}

.c-order-form .jet-form-builder-repeater__new {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 5.2rem;
	padding: 1.3rem 2.4rem;
	background-color: var(--primary);
	border: 0;
	border-radius: 0;
	color: var(--light);
	font-family: "Just Sans", system-ui, sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.c-order-form .jet-form-builder-repeater__new:hover,
.c-order-form .jet-form-builder-repeater__new:focus {
	background-color: var(--secondary);
	color: var(--dark-grey);
}




.c-order-form .jet-form-builder__submit-wrap {
	display: flex;
	justify-content: flex-start;
	margin-top: var(--space-s);
}

.c-order-form .jet-form-builder__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 5.8rem;
	padding: 1.5rem 3rem;
	background-color: var(--dark-grey);
	border: 0;
	border-radius: 0;
	color: var(--light);
	font-family: "Just Sans", system-ui, sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.c-order-form .jet-form-builder__submit:hover,
.c-order-form .jet-form-builder__submit:focus {
	background-color: var(--primary);
	color: var(--light);
}




.c-order-form .jet-form-builder-messages-wrap {
	margin-top: var(--space-s);
	font-family: "Just Sans", system-ui, sans-serif;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.4;
}




.c-order-form .wp-block-paragraph:empty,
.c-order-form p:empty {
	display: none;
}




.c-order-form .jfb-user-info {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}




@media (max-width: 991px) {
	.c-order-section__inner {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
	}

	.c-order-form .jet-form-builder {
		padding: var(--space-m);
	}
}

@media (max-width: 767px) {
	.c-form form {
		grid-template-columns: 1fr;
	}

	.c-order-section__inner {
		padding-top: var(--space-xl);
		padding-bottom: var(--space-xl);
	}

	.c-order-intro h2,
	.c-order-intro .brxe-heading {
		font-size: 2.6rem;
	}

	.c-order-form .wp-block-columns {
		grid-template-columns: 1fr;
		gap: 1.4rem !important;
	}

	.c-order-form .jet-form-builder {
		padding: var(--space-s);
	}

	.c-order-form .jet-form-builder-repeater__row {
		padding: var(--space-s);
		padding-top: 5.4rem;
	}

	.c-order-form .jet-form-builder-repeater__row-remove {
		top: 1rem;
		right: 1rem;
	}

	.c-order-form .jet-form-builder__submit,
	.c-order-form .jet-form-builder-repeater__new {
		width: 100%;
	}
}


@media (max-width: 767px) {
	.c-order-form .jet-form-builder__submit-wrap,
	.c-order-form .jet-form-builder__action-button-wrapper,
	.c-order-form .field-type-submit-field .jet-form-builder__action-button-wrapper {
		display: flex !important;
		justify-content: center !important;
		width: 100% !important;
	}

	.c-order-form .jet-form-builder__submit,
	.c-order-form .jet-form-builder__action-button {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		text-align: center !important;
	}
}



.c-contact-panel .c-form .options-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-contact-panel .c-form .options-wrapper li {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 1rem;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: left;
}

.c-contact-panel .c-form .options-wrapper input[type="checkbox"] {
	position: relative;
	flex: 0 0 1.8rem;
	width: 1.8rem !important;
	height: 1.8rem !important;
	min-width: 1.8rem !important;
	min-height: 1.8rem !important;
	margin: 0.2rem 0 0;
	padding: 0 !important;
	border: 1px solid var(--border-primary);
	background-color: var(--light);
	accent-color: var(--primary);
	cursor: pointer;
}

.c-contact-panel .c-form .options-wrapper label {
	display: block;
	max-width: 52rem;
	margin: 0;
	color: var(--text-body);
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.35;
	text-align: left;
	cursor: pointer;
}

.c-contact-panel .c-form .options-wrapper input[type="checkbox"]:focus-visible {
	outline: 3px solid var(--secondary-30);
	outline-offset: 0.2rem;
}

@media (max-width: 767px) {
	.c-contact-panel .c-form .options-wrapper label {
		max-width: none;
		font-size: 1.5rem;
	}

	.c-contact-panel .c-form .options-wrapper input[type="checkbox"] {
		flex-basis: 1.6rem;
		width: 1.6rem !important;
		height: 1.6rem !important;
		min-width: 1.6rem !important;
		min-height: 1.6rem !important;
	}
}