.formBox{
	width: 100%;
	display: block;
	box-sizing: border-box;
	border: 0;
	padding: 20px;
	margin: 0 0 20px 0;
	background: #fff;
	border-radius: 9px;
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.27);
	-moz-box-shadow:    0px 3px 5px 0px rgba(0, 0, 0, 0.27);
	box-shadow:         0px 3px 5px 0px rgba(0, 0, 0, 0.27);
}

.fieldTitle{
	display: block;
	font-family: 'montserratbold', sans-serif;
	font-size: 22px;
	color: #000;
	margin: 0;
	border: 0;
	padding: 10px 0 0 0;
}

.formButton{
	font-family: 'montserratlight', sans-serif;
	font-size: 23px;
	color: #fff;
	border: 0px solid #fff;
	background: rgb(251,75,57);
	background: -moz-linear-gradient(left,  rgba(251,75,57,1) 0%, rgba(222,38,116,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(251,75,57,1) 0%,rgba(222,38,116,1) 100%);
	background: linear-gradient(to right,  rgba(251,75,57,1) 0%,rgba(222,38,116,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb4b39', endColorstr='#de2674',GradientType=1 );
	padding: 12px 21px; 
	-moz-border-radius: 4px; 
	-webkit-border-radius: 4px; 
	border-radius: 4px; cursor: pointer;
	-webkit-transition: background-color 0.4s ease-in-out;
	-moz-transition: background-color 0.4s ease-in-out;
	transition: background-color 0.4s ease-in-out;
	text-decoration: none;
	display: inline-block;
}

.formButton.small{
	font-size: 16px;
	padding: 9px 16px; 
}

.formButton:hover{
	background: rgb(222,38,116);
	background: -moz-linear-gradient(left,  rgba(222,38,116,1) 0%, rgba(251,75,57,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(222,38,116,1) 0%,rgba(251,75,57,1) 100%);
	background: linear-gradient(to right,  rgba(222,38,116,1) 0%,rgba(251,75,57,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#de2674', endColorstr='#fb4b39',GradientType=1 );
	text-decoration: none;
	color: #fff;
}

.formButtonPrimary{
	background: green;
}

.formButtonPrimary:hover{
	background: rgb(6, 71, 6);
}

.formButtonDanger{
	background: red;
}

.formButtonDanger:hover{
	background: rgb(100, 7, 7);
}







/* Checkboxes */
.checkboxFieldWrapper{
	display: flex;
	align-items: center;
}

.checkboxLabel{
	margin-left: 10px;
}

.checkboxLabel:first-child{
	margin-left: 0px;
}

.checkboxContainer {
	display: block;
	width: 45px;
	height: 42px;
	margin: 10px 0 10px 10px;
	margin-top: 10px;
}

.checkboxContainer input[type="checkbox"]{
	display: none;
}

.checkboxContainer label{
	cursor: pointer;
	position: absolute;
	width: 42px;
	height: 42px;
	border-radius: 4px;
	border: 1px solid #c6c6c6;
	-webkit-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,.4);
	-moz-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,.4);
	box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,.4);
	background: #fff;
}

.checkboxContainer label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	content: '';
	position: absolute;
	width: 13px;
	height: 8px;
	background: transparent;
	top: 14px;
	left: 13px;
	border: 3px solid #e0296f;
	border-top: none;
	border-right: none;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.checkboxContainer label:hover::after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
	filter: alpha(opacity=40);
	opacity: 0.4;
}

.checkboxContainer input[type=checkbox]:checked + label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}

.globalTable div.innerTable{
	padding: 10px;
	line-height: 22px;
	text-align: left;
}

.globalTable div.innerTable .heading{
	width: 60px;
	display: inline-block;
}
