.sby-suggestion-box {
	max-width: 720px;
}

.sby-suggestion-box__form {
	display: grid;
	gap: 18px;
}

.sby-suggestion-box__field {
	margin: 0;
}

.sby-suggestion-box textarea,
.sby-suggestion-box input[type="number"] {
	box-sizing: border-box;
	font: inherit;
	width: 100%;
}

.sby-suggestion-box textarea {
	border: 1px solid #b9b9b9;
	font-size: 14px;
	line-height: 1.45;
	min-height: 250px;
	padding: 12px 14px;
	resize: vertical;
}

.sby-suggestion-box textarea:focus,
.sby-suggestion-box input[type="number"]:focus {
	border-color: #1d4ed8;
	box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.16);
	outline: none;
}

.sby-suggestion-box__math label {
	display: grid;
	gap: 8px;
	max-width: 260px;
}

.sby-suggestion-box__captcha {
	min-height: 78px;
}

.sby-suggestion-box__actions {
	align-items: flex-start;
	display: flex;
	gap: 18px;
	justify-content: space-between;
}

.sby-suggestion-box__submit {
	background: #1d1d1f;
	border: 0;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 18px;
	font-weight: 700;
	flex: 0 0 auto;
	justify-self: start;
	line-height: 1.2;
	margin-left: auto;
	padding: 13px 24px;
	transition: background-color 160ms ease, transform 160ms ease;
}

.sby-suggestion-box__submit:hover,
.sby-suggestion-box__submit:focus {
	background: #b01842;
	outline: none;
}

.sby-suggestion-box__submit:active {
	transform: translateY(1px);
}

.sby-suggestion-box__notice {
	border-left: 4px solid currentColor;
	margin: 0 0 16px;
	padding: 10px 12px;
}

.sby-suggestion-box__notice--success {
	background: #ecfdf3;
	color: #146c43;
}

.sby-suggestion-box__notice--error {
	background: #fff4f4;
	color: #9f1239;
}

.sby-suggestion-box__trap {
	height: 1px;
	left: -9999px;
	overflow: hidden;
	position: absolute;
	top: auto;
	width: 1px;
}

.sby-suggestion-box--editor textarea {
	background: #f6f7f7;
}

@media (max-width: 640px) {
	.sby-suggestion-box__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.sby-suggestion-box__submit {
		margin-left: 0;
		width: 100%;
	}
}
