.stop-bang__content {
	max-width: 760px;
	margin: 0 auto;
	padding: 50px 0 100px;
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
}

.stop-bang__title {
	font-weight: var(--e-global-typography-primary-font-weight);
	color: var(--e-global-color-primary);
}

.stop-bang__description {
	font-weight: 500;
	color: var(--e-global-color-primary);
}

.stop-bang__form {
	margin-top: 40px;
	margin-bottom: 40px;
}

.stop-bang__notice {
	padding: 12px 16px;
	margin-bottom: 16px;
	border-radius: 6px;
}

.stop-bang__notice--error {
	background: #fdecea;
	border: 1px solid #f5c2c0;
	color: #842029;
}

.stop-bang__notice--success {
	background: #e8f7ee;
	border: 1px solid #b9e5c9;
	color: #14532d;
}

.stop-bang__result {
	margin-bottom: 20px;
	padding: 14px 16px;
	border: 1px solid #d9d9d9;
	border-radius: 6px;
	background: #fafafa;
}

.stop-bang__recommendation {
	margin-bottom: 20px;
	padding: 16px;
	border: 1px solid #d9d9d9;
	border-radius: 6px;
	background: #fafafa;
}

.stop-bang__recommendation-title {
	margin: 0 0 10px;
}

.stop-bang__recommendation-text p {
	margin: 0 0 10px;
}

.stop-bang__recommendation-text p:last-child {
	margin-bottom: 0;
}

.stop-bang__form .stop-bang__email {
	margin-bottom: 10px;
}

.stop-bang__question {
	padding: 16px;
	margin: 0 0 30px;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
}

.stop-bang__question-label {
	font-size: 22px;
	line-height: 1.2;
	font-weight: 500;
}

.stop-bang__form .stop-bang__question-text {
	margin-bottom: 12px;
}

.stop-bang__option {
	display: inline-flex;
	align-items: center;
	margin-right: 16px;
	gap: 6px;
	vertical-align: baseline;
}

.stop-bang__option:not(:last-child) {
	margin-bottom: 12px;
}

.stop-bang__option input[type="radio"] {
	appearance: none;
	width: 15px;
	height: 15px;
	margin: 0;
	border: 2px solid #006daf;
	border-radius: 50%;
	display: grid;
	place-content: center;
	cursor: pointer;
}

.stop-bang__option input[type="radio"]::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #006daf;
	transform: scale(0);
	transition: transform 0.15s ease-in-out;
}

.stop-bang__option input[type="radio"]:checked::before {
	transform: scale(1);
}

.stop-bang__option input[type="radio"]:focus-visible {
	outline: 2px solid #006daf;
	outline-offset: 2px;
}

.stop-bang__bmi-inputs {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px 12px;
	max-width: 320px;
	margin-bottom: 20px;
	margin-top: 20px;
}

.stop-bang__question--bmi input[type="text"] {
	margin-top: 0;
	margin-bottom: 0;
}

.stop-bang__submit-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.stop-bang__bmi-result {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px 12px;
	max-width: 320px;
}

.stop-bang__bmi-threshold {
	grid-column: 1 / -1;
	margin: 0;
}
