.orderFabric {
	width: 100%;
	background: url("../../media/order-fabric/bg.webp") no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 24px;
	height: 252px;
	margin: 500px 0 50px;
}

.block {
	text-align: center;
	background: var(--c2);
	border-radius: 65px;
	padding: 40px 50px 70px;
	margin: 0 40px;
	box-shadow: var(--c2) 0 0 40px;
	position: relative;
	top: -150%;
}

.orderFabric__content {
	display: flex;
	align-items: flex-start;
	gap: 50px;
	margin-top: 30px;
	justify-content: center;
}

.orderFabric__form {
	width: 100%;
	max-width: 500px;

	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
}

.points__wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	text-align: left;
	margin-top: 25px;
}
.formPoint {
	font-size: 0.875rem;
	font-weight: 600;

	display: flex;
	align-items: center;
	gap: 10px;
}
.form__checkbox {
	appearance: none;
	border-radius: 100%;
	border: 2px solid var(--c1);
	height: 24px;
	aspect-ratio: 1;
}
.form__checkbox:checked {
	background: url("../../media/order-fabric/point-mark.png") no-repeat;
	background-position: center;
	background-size: contain;
}

.text__container {
	max-width: 595px;
	width: 100%;
	text-align: left;
	font-weight: 600;
}
.text__container span {
	font-weight: 400;
}

.decoration {
	position: absolute;
	width: 534px;
	height: auto;
	left: 50%;
	transform: translateX(-50%);
	bottom: -7%;
}

/* Adaptability */
@media (max-width: 992px) {
	.orderFabric {
		margin: 700px 0 30px;
		height: 449px;
	}

	.block {
		margin: 0;
		border-radius: 33px;
		padding: 30px 15px 80px;
	}

	.orderFabric__content {
		flex-direction: column;
		align-items: center;
	}
	.orderFabric__content * {
		max-width: none;
	}

	.decoration {
		display: none;
	}
}
