.signature {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	height: 132px;
	margin-top: 6px;
	border: 1px solid #DDDDDD;
	border-radius: 12px;
	background-color: #FFFFFF;
	overflow: hidden;
}

	/* the pen writes here and the page does not scroll under the finger doing it */
	.signatureCanvas {
		display: block;
		width: 100%;
		height: 100%;
		touch-action: none;
		cursor: crosshair;
	}

	/* the line a signature is written on, as on paper */
	.signature:after {
		content: '';
		position: absolute;
		left: 24px;
		right: 24px;
		bottom: 30px;
		height: 1px;
		background-color: #EEEEEE;
		pointer-events: none;
	}

	.signatureHint {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		opacity: 1;
		transition: opacity 200ms linear;
		pointer-events: none;
	}
		.signatureHintOff {
			opacity: 0;
		}

		.signatureHintText {
			margin-top: 6px;
			font-size: 13px;
			color: #999999;
		}

	.signatureClear {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 8px;
		right: 8px;
		width: 26px;
		height: 26px;
		border-radius: 13px;
		background-color: #F4F6F9;
		opacity: 1;
		transition: opacity 200ms linear;
		cursor: pointer;
	}
		.signatureClearOff {
			opacity: 0;
			pointer-events: none;
		}
