.form {
	max-width: 550px;
	margin: 0 auto;
	color: #FFF;
	padding: 30px;
}

.form * {
	outline: none;
}

.form__body {}

.form__title {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
}

.form__item {
	margin-bottom: 20px;
}

.form__lable {
	font-size: 18px;
	display: block;
	margin-bottom: 10px;
}

.form__input {
	height: 50px;
	width: 100%;
	border-radius: 5px;
	padding: 0 20px;
	font-size: 18px;
	transition: box-shadow .5s ease 0s;
}

.form__input:focus {
	box-shadow: 0 0 10px #FFF;
}

.form__input._error {
	box-shadow: 0 0 15px var(--main-color_alt);
	background: var(--color-0);
	color: #FFF;
}

textarea.form__input {
	min-height: 120px;
	resize: vertical;
}

.options {
	padding-top: 10px;
}

.options__item {}

.options__input {
	display: none;
}

.options__input:checked+.options__lable::after {
	transform: scale(1);
}

.options__lable {
	display: inline-flex;
	font-size: 16px;
	line-height: 140%;
	align-items: center;
	margin-bottom: 10px;
	position: relative;
	cursor: pointer;
}

.options__lable::before {
	content: '';
	align-self: start;
	flex: 0 0 24px;
	height: 24px;
	background-color: #fff;
	border-radius: 50%;
	margin-right: 10px;
}

.options__lable::after {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 16px;
	height: 16px;
	background-color: yellowgreen;
	border-radius: 50%;
	transform: scale(0);
	transition: transform .3s ease 0s;
}

.select {
	height: 50px;
	width: 100%;
	border-radius: 5px;
	font-size: 18px;
	padding: 0 20px;
}

.file {}

.file__item {
	position: relative;
}

.file__input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	font-size: 0;
	cursor: pointer;
}

.file__button {
	display: inline-flex;
	min-height: 40px;
	border-radius: 20px;
	align-items: center;
	justify-content: center;
	background-color: yellowgreen;
	padding: 0 20px;
}

.file__preview {
	display: inline-flex;
	max-width: 100px;
	padding-top: 10px;
}

.file__preview img {
	max-width: 100%;
}

.checkbox {}

.checkbox._error .checkbox__lable::before {
	box-shadow: 0 0 15px #c93838;
}

.checkbox__input {
	display: none;
}

.checkbox__input:checked+.checkbox__lable::after {
	transform: scale(1);
}

.checkbox__lable {
	font-size: 16px;
	line-height: 140%;
	display: inline-flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.checkbox__lable::before {
	content: '';
	flex: 0 0 24px;
	height: 24px;
	background-color: #fff;
	border-radius: 4px;
	align-self: flex-start;
	margin-right: 10px;
}

.checkbox__lable::after {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 16px;
	height: 16px;
	background-color: var(--main-color_alt);
	border-radius: 2px;
	transform: scale(0);
	transition: transform .5s ease 0s;
}

.checkbox__lable a {
	color: var(--main-color_alt);
}

.form__button {
	font-family: var(--font);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	background-color: #FFF;
	color: var(--color-0);
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	cursor: pointer;
	border-radius: 10px;
	box-shadow: 0 5px 0 var(--main-color_alt);
	position: relative;
	top: 0;
}

.form__button:hover {
	transition: background-color .5s ease 0s;
	background-color: var(--main-color_alt);
	color: #FFF;
}

.form__button:active {
	top: 3px;
	box-shadow: 0 2px 0 #FFF;
}

.form__row {
	display: flex;
}

.form__row>* {
	flex: 0 1 50%;
}

.form__row>*:not(:last-child) {
	margin-right: 20px;
}

.form {
	margin: 0;
	margin-left: var(--mb-60);
	padding-left: 0;
}


.form__item {
	display: flex;
}

.form__button {
	flex: 0 1 48%;
	margin-right: 20px;
}

.wpcf7-form-control-wrap {
	width: 100%;
}


.form__text a {
	font-weight: 700;
	color: #FFF;
	text-decoration: underline;
}