/* Sticky Bottom - bottom of a form */
div.sticky_bottom {
	width:calc(100% + (var(--margin-l) *2));
	position: sticky;
	bottom:0px;
	height:calc(var(--margin) * 2);
	padding:var(--margin-m);
	border-top:1px solid var(--lighter);
	margin-top:var(--margin-s);
	margin-left:calc(0px - var(--margin-l));
	padding-left:var(--margin-l);
	padding-right:var(--margin-l);
	background-color:var(--white);
	border-radius:0px 0px var(--radius-tight) var(--radius-tight);
}

	div.layout div.sticky_bottom {
		margin-left:calc(0px - var(--margin-l));
		background-color:var(--lightest);
	}
	
	div.sticky_bottom a.cancel {
		float:left;
	}
	
	div.sticky_bottom button {
		float:right;
	}