.tcf-form-wrap {
	width: 100%;
	max-width: 100%;
	margin-top: 24px;
	box-sizing: border-box;
}

#challenge-shop-form {
	scroll-margin-top: 120px;
}

.tcf-form,
.tcf-form * {
	box-sizing: border-box;
}

.tcf-form {
	display: grid;
	gap: 24px;
	width: 100%;
}

.tcf-section {
	margin: 0;
	padding: 22px;
	border: 1px solid #d8ddd9;
	border-radius: 6px;
	background: #fff;
}

.tcf-section > legend {
	padding: 0 8px;
	font-size: 1.08em;
	font-weight: 700;
	color: #1f2a24;
}

.tcf-field {
	margin-top: 18px;
}

.tcf-field:first-child {
	margin-top: 0;
}

.tcf-field label,
.tcf-field-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	color: #222;
}

.tcf-input {
	display: block;
	width: 100%;
	max-width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid #cbd3ce;
	border-radius: 4px;
	background: #fff;
	color: #222;
	font: inherit;
	line-height: 1.5;
}

select.tcf-input {
	appearance: auto;
}

textarea.tcf-input {
	min-height: 120px;
	resize: vertical;
}

.tcf-input:focus {
	border-color: #34785f;
	outline: 2px solid rgba(52, 120, 95, 0.18);
	outline-offset: 1px;
}

.tcf-choice-group {
	display: grid;
	gap: 10px;
}

.tcf-choice {
	display: inline-flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0;
	font-weight: 400;
	line-height: 1.6;
	cursor: pointer;
}

.tcf-choice input {
	flex: 0 0 auto;
	margin-top: 0.35em;
}

.tcf-required {
	display: inline-block;
	margin-left: 8px;
	padding: 2px 7px;
	border-radius: 4px;
	background: #b83232;
	color: #fff;
	font-size: 0.78em;
	font-weight: 700;
	line-height: 1.4;
	vertical-align: middle;
}

.tcf-note,
.tcf-small-note {
	margin-top: 14px;
	padding: 14px 16px;
	border-left: 4px solid #34785f;
	background: #f5f8f6;
	color: #2d3832;
	line-height: 1.8;
}

.tcf-note p,
.tcf-small-note {
	margin-bottom: 0;
}

.tcf-note p + p {
	margin-top: 10px;
}

.tcf-preview-details {
	margin-top: 18px;
}

html.js .tcf-preview-details {
	display: none;
}

html.js .tcf-preview-details.is-open {
	display: block;
}

.tcf-message {
	margin: 0 0 22px;
	padding: 16px 18px;
	border-radius: 6px;
	line-height: 1.8;
}

.tcf-message p {
	margin: 0;
}

.tcf-message p + p {
	margin-top: 10px;
}

.tcf-message ul {
	margin: 8px 0 0 1.3em;
	padding: 0;
}

.tcf-success {
	border: 1px solid #b9d9c8;
	background: #f0faf4;
	color: #1f563d;
}

.tcf-error {
	border: 1px solid #edc2c2;
	background: #fff5f5;
	color: #842029;
}

.tcf-actions {
	margin-top: 2px;
}

.tcf-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 24px;
	border: 1px solid #2d6f58;
	border-radius: 4px;
	background: #34785f;
	color: #fff;
	font: inherit;
	font-weight: 700;
	line-height: 1.4;
	cursor: pointer;
	transition: background-color 0.16s ease, border-color 0.16s ease;
}

.tcf-submit:hover,
.tcf-submit:focus {
	border-color: #245f4b;
	background: #2b6b54;
	color: #fff;
}

.tcf-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (min-width: 720px) {
	.tcf-choice-group {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 599px) {
	.tcf-section {
		padding: 18px 14px;
	}

	.tcf-submit {
		width: 100%;
	}
}
