[v-cloak] {
	display: none;
}
#contacts-content {
	height: 100%
	min-height: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
}
#contacts-top-image {
	width: 100%;
	flex: 0;
}
.contacts-text {
	width: 80%;
	margin: auto;
	flex: 1;
}
.contacts-text {
	a, a:visited, a:active {
		color: #0064ff;
	}
}
.contacts-text a:hover {
	color: #0064ff;
	text-decoration: underline;
	text-underline-offset: 0.4rem;
}
.columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 2rem;
}
#contacts-feedback-header {
	padding: 3rem 0 1rem;
}
#feedback-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px 50px;
}
.contacts-form-field-title {
	text-align: left;
	padding: 0 0 1.4rem 0;
}
#feedback input[type=text] {
	height: 30px;
	width: 100%;
	font-size: 2.2rem;
	margin: 0 0 20px;
	border: none;
	border-bottom: 1px solid #a0a0a0;
}
#feedback input[type=checkbox] {
	width: 2.2rem;
	height: 2.2rem;
}
#feedback textarea {
	width: 100%;
	height: 20rem;
	font-family: Montserrat;
	font-weight: 500;
	font-size: 2.2rem;
	resize: none;
	margin: 0 0 20px;
	border: 1px solid #a0a0a0;
}
#feedback input[type=text]:focus, #feedback textarea:focus {
	outline: none;
	border-color: #000;
}
.grid-element {
	width: 100%;
}
.grid-element.submit {
	text-align: center;
}
.grid-rows-merged {
	text-align: center;
}
.agreement {
	display: flex;
	flex-flow: row;
	flex-wrap: nowrap;
	align-items: center;
}
#feedback-form-submit {
	font-family: "Raleway", sans-serif;
	font-size: 2.2rem;
	padding: 0.5rem 2.0rem;
}
.form-errors {
	font-family: "Raleway", sans-serif;
	font-size: 1.6rem;
	color: red;
	padding: 0.5rem 2.0rem;
}
@media (max-width: 768px) {
}
@media (min-width: 768px) {
	#feedback-form {
		grid-template-columns: 1fr 1fr;
	}
	.grid-rows-merged {
		grid-column: 1/3;
	}
}
