.delivery-block .delivery-form {
	border-radius: 60px 60px 0 0;
	padding: 40px 0 76px;
	background: var(--main-color) url('img/form_delivery-bg.svg') right top / cover no-repeat;
}

form .form-content {
	display: flex;
	flex-direction: column;
}
form .form-title-holder {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
}
form .form-switch {
	display: flex;
	gap: 8px;
	margin-bottom: 24px;
}
form .form-switch button {
	border-radius: 91px;
	padding: 16px 24px;
	background-color: rgba(255, 255, 255, 0.3);
	color: var(--white-color);
	font-size: var(--p2-size);
	line-height: 125%;
	font-weight: 600;
	transition: .15s ease-out
}
form .form-switch button.active {
	background-color: var(--white-color);
	color: var(--main-color);
}
form .form-title-holder .form-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	margin-right: 54px;
	flex-shrink: 0;
}
form .form-title-holder .form-arrow img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}
form .form-title-holder h2 {
	color: var(--white-color);
	font-size: var(--h2-size);
	font-weight: 700;
}
form .form-content .form-table {
	max-width: 724px;
	margin-left: 138px;
}
form .form-table .form-group > span {
	display: block;
	width: 100%;
	margin-bottom: 4px;
	font-size: var(--p2-size);
	line-height: 125%;
	font-weight: 600;
	color: var(--white-color);
	opacity: 0.6;
}
form .form-table .form-group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}
form .form-table .form-group .input-holder {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}
form .form-table .form-group .input-holder input::placeholder {
	font-size: var(--p2-size);
	color: var(--gray-1);
}
form .form-table .form-group input {
	flex: 1;
	width: 100%;
}
form .form-table .submit-btn {
	width: 100%;
	text-align: center;
	border: none;
	padding: 18px 20px;
	background-color: var(--gray-black);
	color: var(--white-color);
	border-radius: 38px;
	margin-bottom: 12px;
	transition: .15s ease-out;
}
form .form-table .submit-btn:hover {
	background-color: var(--main-color);
}
form .form-table .form-agreement {
	font-weight: 600;
	opacity: 0.6;
	font-size: var(--p1-size);
	color: var(--white-color);
	font-size: var(--p2-size);
}
form .form-group p {
	width: 100%;
	font-size: var(--p2-size);
	line-height: 125%;
	text-align: center;
	color: var(--white-color);
	opacity: 0.6;
}
form .form-group .input-file {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 108px;
	border-radius: 24px;
	margin: 0;
	border: 3px dashed rgba(255, 255, 255, 0.6);
	opacity: 1;
}
form .form-group .input-file input {
	display: none;
}
form .input-file .upload-area,
form .input-file .drag-drop-holder {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	max-width: 294px;
	width: 100%;
}
form .input-file .drag-drop-holder {
	display: none;
}
form .form-group .input-file.drag-drop .drag-drop-holder {
	display: flex;
}
form .form-group .input-file.drag-drop .upload-area {
	display: none;
}
form .input-file .upload-icon {
	width: 24px;
	height: 24px;
}
form .input-file .upload-icon img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}
form .input-file .upload-title {
	font-size: var(--p2-size);
	color: var(--white-color);
	font-weight: 600;
	line-height: 125%;
	text-align: center;
}
form .file-item {
	display: flex;
	align-items: center;
	margin-top: 8px;
}
form .file-item::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	margin-right: 3px;
	background: url('images/file.svg') center / contain no-repeat;
}
form .file-item span {
	font-size: 14px;
	font-weight: 600;
	line-height: 129%;
	color: var(--white-color);
}
form .file-item button {
	margin-left: 24px;
	border: none;
	outline: none;
	width: 24px;
	height: 24px;
	cursor: pointer;
	background: url('images/close.svg') center / contain no-repeat;
}
@media (max-width: 991px) {
	form .form-content .form-table {
		margin: 0;
	}
	form .form-title-holder .form-arrow {
		width: 56px;
		height: 56px;
		margin-right: 50px;
	}
	form .form-title-holder .form-arrow img {
		width: 32px;
		height: 32px;
	}
}
@media screen and (max-width: 767px) {
	form .form-table span {
		margin: 0;
	}
	form .form-switch button {
		padding: 14px 18px;
	}
	form .form-title-holder {
		margin-bottom: 21px;
	}
}
@media screen and (max-width: 700px) {
	form .form-table span {
		margin: 0;
	}
	form .form-table .form-group .input-holder {
		grid-template-columns: repeat(1, 1fr);
		width: 100%;
	}
}
@media screen and (max-width: 578px) {
	form .form-title-holder .form-arrow {
		margin-right: 16px;
	}
	form .form-table .form-group input {
		flex: auto;
	}
	form .form-switch {
		flex-direction: column;
	}
	form .form-title-holder {
		margin-bottom: 38px;
	}
}
