.feedback-panel {
	max-width: 720px;
	margin: 16px auto 32px;
	padding: 20px 18px 28px;
	background: #fff;
	border-radius: 10px;
	text-align: left;
}

.feedback-title {
	margin: 0 0 8px;
	font-size: 28px;
	line-height: 1.2;
	text-transform: uppercase;
	color: #1b2730;
}

.feedback-lead {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.4;
	color: #6f7d86;
}

.feedback-status {
	margin: 0 0 14px;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.35;
	display: none;
}

.feedback-status.is-error,
.feedback-status.is-success {
	display: block;
}

.feedback-status.is-error {
	background: #fff1f0;
	border: 1px solid #f5b7b1;
	color: #a8071a;
}

.feedback-status.is-success {
	background: #ecfdf3;
	border: 1px solid #abefc6;
	color: #0f5132;
}

.feedback-field {
	margin-bottom: 14px;
}

.feedback-field label {
	display: block;
	margin-bottom: 6px;
	font-size: 15px;
	font-weight: 700;
	color: #1b2730;
	line-height: 1.35;
}

.feedback-field input,
.feedback-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 2px solid #dce8f0;
	border-radius: 10px;
	font-size: 16px;
	line-height: 1.35;
	color: #1b2730;
	background: #fff;
	font-family: inherit;
	resize: vertical;
}

.feedback-field input:focus,
.feedback-field textarea:focus {
	outline: none;
	border-color: #2AABEE;
	box-shadow: 0 0 0 3px rgba(42, 171, 238, .12);
}

.feedback-actions {
	margin-top: 18px;
	text-align: center;
}

.feedback-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 280px;
	min-height: 48px;
	padding: 12px 18px;
	border: 0;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	cursor: pointer;
}

.feedback-btn-primary {
	background: #2AABEE;
	color: #fff;
}

.feedback-btn-primary:hover,
.feedback-btn-primary:focus {
	background: #2299d6;
}

.feedback-btn-primary:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

@media (max-width: 560px) {
	.feedback-title {
		font-size: 22px;
	}
}
