/**
* ------------------------------------------------------------------
* Button properties
* ------------------------------------------------------------------
*/
.formbutton {
	-moz-user-select: none;
	border: 1px solid rgba(0, 0, 0, 0);
	border-radius: 2px;
	display: inline-block;
    font-weight:400;
    font-size: 15pt;
	line-height: 1.42857;
	margin-bottom: 0;
	text-align: center;
	vertical-align: middle;
    box-sizing:border-box;
    padding: 7px 40px;
	background-color: #1871BD;
	color: #FFFFFF;
	transition:background .4s;
    cursor:pointer;
	box-shadow: none;
	height: 45px;
}

.formbutton:hover,.formbutton:focus {
	color: #FFFFFF;
	background-color: #B0150E;
	border: none;
	box-shadow: none;
	height: 45px;
}

.formbutton:active,.formbutton.active {
	background-image: none;
	box-shadow: none;
	outline: 0 none;
}

.webform_confirm_wrapper {
    padding-left: 20px;
}

div.webform_wrapper select {
    border: 1px solid #888888;
    height: 22px;
    padding: 2px 0;
    width: 99%;
}

.webform_row > .webform_label {
    display: none !important;
}

.webform_confirm_wrapper .webform_row > .webform_label {
    display: inline-block !important;
}