.service-request {
	padding-block: 2.5rem 4.5rem;
	color: var(--color-text);
	font-family: var(--f-manr, "Manrope", Arial, sans-serif);
}

.service-request__grid {
	display: grid;
	grid-template-columns: minmax(0, 2.1fr) minmax(15rem, 0.9fr);
	gap: 1.25rem;
	align-items: stretch;
}

.service-request__content {
	min-width: 0;
}

.service-request__header {
	margin-bottom: 1.75rem;
	min-height: 4rem;
}

.service-request__title,
.service-request__requisites h2 {
	margin: 0;
	color: var(--color-text);
	font-size: var(--s32);
	font-weight: var(--fw-bold, 700);
	line-height: 1.2;
}

.service-request__title span,
.service-request__requisites h2 {
	color: var(--color-total);
}

.service-request__lead {
	margin: 0.65rem 0 0;
	color: var(--color-white-72);
	font-size: var(--s13, 0.8125rem);
	line-height: 1.5;
}

.service-request__form form {
	margin: 0;
}

.service-request__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem 1rem;
}

.service-request__field {
	display: block;
	min-width: 0;
}

.service-request__field--wide {
	grid-column: 1 / -1;
}

.service-request__field input,
.service-request__field select,
.service-request__field textarea,
.service-request__captcha input {
	display: block;
	width: 100%;
	min-width: 0;
	min-height: 2.75rem;
	padding: 0.7rem 0.85rem;
	color: var(--color-text);
	font: inherit;
	font-size: var(--s13, 0.8125rem);
	border: 0.0625rem solid var(--color-white-45);
	border-radius: 0.45rem;
	outline: 0;
	background: var(--color-white-13);
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.service-request__field input::placeholder,
.service-request__field textarea::placeholder {
	color: var(--color-white-72);
	opacity: 1;
}

.service-request__field select {
	appearance: auto;
	color-scheme: dark;
}

.service-request__field textarea {
	min-height: 9rem;
	resize: vertical;
}

.service-request__field input:hover,
.service-request__field select:hover,
.service-request__field textarea:hover,
.service-request__field input:focus,
.service-request__field select:focus,
.service-request__field textarea:focus {
	border-color: var(--color-total);
	background: var(--color-white-17);
}

.service-request__field .is-invalid,
.service-request__agreement .is-invalid {
	border-color: var(--color-error);
	outline: 0.0625rem solid var(--color-error);
}

.service-request__agreement {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: 1rem;
	color: var(--color-white-72);
	font-size: var(--s11, 0.6875rem);
	line-height: 1.5;
	cursor: pointer;
}

.service-request__agreement input {
	width: 1rem;
	height: 1rem;
	flex: 0 0 1rem;
	margin-top: 0.05rem;
	accent-color: var(--color-total);
}

.service-request__agreement a {
	color: inherit;
	text-decoration: underline;
}

.service-request__captcha {
	display: grid;
	gap: 0.5rem;
	max-width: 18rem;
	margin-top: 1rem;
	color: var(--color-white-80);
	font-size: var(--s12, 0.75rem);
}

.service-request__errors {
	margin-top: 0.75rem;
	color: var(--color-error-text);
	font-size: var(--s13, 0.8125rem);
}

.service-request__errors:empty {
	display: none;
}

.service-request__submit {
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}

.service-request__submit input {
	width: min(100%, 18rem);
	min-height: 2.75rem;
	padding: 0.65rem 1.5rem;
	color: var(--color-text);
	font: inherit;
	font-size: var(--s14, 0.875rem);
	font-weight: var(--fw-semibold, 600);
	border: 0;
	border-radius: 0.4rem;
	background: var(--color-total);
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.service-request__submit input:hover,
.service-request__submit input:focus-visible {
	background: var(--brand-green);
	transform: translateY(-0.0625rem);
}

.service-request__success {
	display: grid;
	gap: 0.4rem;
	margin-bottom: 2rem;
	padding: 1.25rem;
	color: var(--color-text);
	background: var(--color-accent-18);
	border: 0.0625rem solid var(--color-total);
	border-radius: 0.6rem;
}

.service-request__requisites {
	margin-top: 2rem;
}

.service-request__requisites h2 {
	margin-bottom: 1.25rem;
}

.service-request__table-wrap {
	overflow: hidden;
	border: 0.0625rem solid var(--color-white-42);
	border-radius: 0.5rem;
}

.service-request__table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.service-request__table th,
.service-request__table td {
	padding: 0.6rem 1rem;
	color: var(--color-white-88);
	font-size: var(--s12, 0.75rem);
	font-weight: var(--fw-regular, 400);
	line-height: 1.35;
	text-align: left;
	vertical-align: middle;
	border-right: 0.0625rem solid var(--color-white-25);
	border-bottom: 0.0625rem solid var(--color-white-25);
}

.service-request__table th {
	width: 44%;
	color: var(--color-total);
	font-weight: var(--fw-semibold, 600);
}

.service-request__table td:last-child {
	border-right: 0;
}

.service-request__table tr:last-child > * {
	border-bottom: 0;
}

.service-request__visual {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 1rem;
	margin: 5.75rem 0 0 0;

}

.service-request__visual--empty {
	background:
			linear-gradient(180deg, var(--color-ink-20), var(--color-ink-85)),
			var(--brand-green);
}

.service-request__sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 64rem) {
	.service-request__grid {
		grid-template-columns: minmax(0, 1.7fr) minmax(13rem, 0.8fr);
	}
}

@media (max-width: 48rem) {
	.service-request {
		padding-block: 2rem 3rem;
	}

	.service-request__grid {
		grid-template-columns: 1fr;
	}

	.service-request__visual {
		min-height: 28rem;
		grid-row: 2;
		background-position: center;
	}
}

@media (max-width: 36rem) {
	.service-request__fields {
		grid-template-columns: 1fr;
	}

	.service-request__field--wide {
		grid-column: auto;
	}

	.service-request__table th,
	.service-request__table td {
		padding: 0.55rem 0.65rem;
		font-size: 0.6875rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.service-request__field input,
	.service-request__field select,
	.service-request__field textarea,
	.service-request__submit input {
		transition: none;
	}
}
.service-request__field select {
	width: 100%;
	max-width: 100%;
	color: var(--color-text);
	color-scheme: dark;
}

.service-request__field select option {
	max-width: 100%;
	padding: 0.75rem 1rem;
	color: var(--color-text);
	background-color: var(--color-page);
}

.service-request__field select option:checked {
	color: var(--color-ink);
	background-color: var(--color-total);
}
