div.productForm {
	.form {
		table {
			&.table {
				tr {
					th {
						padding:13px 20px;
					}

					td {
						padding:10px 20px;
					}
				}
			}
		}

		div {
			&.line {
				&#actionLine {
					.block {
						.btn {
							margin:0;
							text-decoration:none;
						}
					}
				}

				&:has(.table.payments) {
					&:not(:has(tr:nth-child(3))) {
						display:none;
					}

					flex-wrap:nowrap;
					flex-direction:column;
					align-items:unset;

					h2 {
						&.title {
							margin:0;
						}
					}
				}

				div {
					&.block {
						&.r {
							padding:0;

							.cb {
								&+label {
									/* line-height: 40px; */

									&:before,
									&:after {
										top:50%;
										transform:translateY(-50%);
									}
								}
							}
						}

						a {
							display:inline-block;
							font-size:14px;
							text-decoration:underline;
							margin-top:10px;

							&:hover {
								text-decoration:none;
							}
						}
					}
				}
			}
		}
	}

	#orderForm {
		&[data-step="1"] {
			.line {
				/* &:not(:has(#notificationEMail:checked)) {
					.block {
						&:has(#email) {
							display:none;
						}

						&.r {
							&>label {
								&:first-child {
									display:none;
								}
							}

							.cb {
								&+label {
									line-height: 20px;
								}
							}
						}
					}
				} */
			}

			&:not(:has(#insuredType option[value="OTHER"]:checked)) {
				.line {
					&:has(#insuredIin) {
						display:none;
					}
				}
			}
		}

		&[data-step="2"] {
			.line {
				&:has(#paymentOrder option[value="OT"]:checked) {
					.block {
						&:has(#paymentPeriod) {
							display:none;
						}
					}
				}
			}
		}

		&[data-step="3"] {
			&:not(:has(#healthDeclaration:checked)) {
				&:not(:has([name*="question"][value="y"]:checked)) {
					#actionLine {
						input {
							&.btn {
								pointer-events:none;
								opacity:0.5;
								background: rgba(244,115,22,.3);
								cursor:default;
								color:var(--NomadColor);
							}
						}
					}
				}
			}
		}

		&[data-step="4"] {
			.line {
				&.sign {
					display:flex;
					flex-direction:row;
					gap:15px;
					align-items:center;

					.title {
						font-size:18px;
						font-weight:500;
						margin:0;
						flex:1;
					}

					&.Insurer,
					&.Insured,
					&.ExtraInsured {
						&.success {
							.action {
								.signed {
									&::before {
										content:attr(data-s);
										color:var(--Success);
									}
								}
							}
						}

						.action {
							.signed {
								&::before {
									content:attr(data-w);
								}
							}
						}
					}

					.action {
						display:flex;
						align-items:center;
						gap:15px;
						position:relative;

						.signed {
							font-size:14px;
							font-weight:500;
							color:var(--NomadColor);
							white-space:nowrap;

							&.success {
								color:var(--Success);
							}
						}

						.message {
							&.error {
								position:absolute;
								top:100%;
								right:0;
								margin-top:10px;
								color:var(--NomadColor);
								font-weight:500;
								white-space:nowrap;
								text-align:right;
								pointer-events:none;
								z-index:2;
							}
						}
					}
				}
			}
		}

		&:has(#healthDeclaration) {
			&:has(#healthDeclaration:checked) {
				.line {
					&.questions {
						display:none;
					}
				}
			}
		}

		.line {
			&.description {
				p {
					width:100%;
				}
			}
		}
	}

	dl {
		&.line {
			display:flex;
			flex-direction:column;
			gap:30px;
			margin-top:20px;

			dt {
				font-size: 18px;
				font-weight: 500;
			}

			dd {
				padding:0;
				margin:0;
				display:flex;
				flex-direction:column;
				gap:20px;

				.line {
					&+.line {
						margin:0;
					}

					.actions {
						display:flex;
						gap:30px;
						row-gap:10px;
						flex-wrap:wrap;
						align-items:center;

						input {
							&.cb {
								&~* {
									margin:0;
								}
							}
						}
					}
				}
			}
		}
	}
}