
* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-family: "Lato", Helvetica, Arial, sans-serif
}
*:hover, *:focus,*:active {
	text-decoration:none !important;
}
.btn.btn-default {width:auto !important;} 

body{
	padding: 25px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Frank Ruhl Libre", serif !important;
	color:#548AC3 !important;
	font-weight:400;
}
label {
	color:#3E3935 !important;
	font-weight:bold !important;
} 
.help-block, p {
	font-size:14px;
	color: #3E3935;
}
button {
	width:auto;
	margin:0 auto;
}
button.btn-default {
	border-radius:6px !important;
	border:2px solid #00853B !important;
	background-image:none !important;
	background-color:transparent !important;
	color:#00853B !important;
	text-transform:uppercase !important;
	letter-spacing: 2px !important;
	font-size:14px !important;
	font-weight:bold !important;
	padding:15px 30px !important;
	transition: background-color 0.25s ease;
}
button.btn-default:hover,
button.btn-default.white:hover {
	background-color: #00853B !important;
	color:white !important;
	text-shadow:none !important;
	box-shadow:none !important;
}
button.btn-default.white {
	background-color:white !important;
	color:#00853B !important;
	text-shadow:none !important;
	border-color:white !important;
}
.form-header-image {
	margin: auto;
	max-width: 300px;
	width: 100%;
}
.signature-pad,
.signature-pad--body {
	border-color:#cccccc !important;
	box-shadow:none !important;
}
.signature-pad:before,
.signature-pad:after {
	display:none !important;
}

/* radio and checkbox buttons and button groups */

.radio_buttons,
.checkbox_buttons{
	display: flex;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    display: flex;
	margin-left: -15px;
	margin-right: -15px;
}
.radio_button input,
.checkbox_button input {
    clip: rect(0,0,0,0);
    position: absolute;
}
.radio_button label,
.checkbox_button label {
    padding: 10px 5px;
    font-weight: normal;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #00853B;
    border: 2px solid #00853B;
    border-radius: 6px;
    cursor:pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: stretch;	
   }
.radio_button label:hover,
.checkbox_button label:hover {
    background: #548AC3;
    color: white !important;
}
.radio_button input:checked+label,
.checkbox_button input:checked+label {
    background: #00853B;
    color: #fff !important;
}
.radio_button_group,
.checkbox_button_group{
	padding: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: space-evenly;
	align-items: stretch;
}
.radio_button_group .radio_button,
.checkbox_button_group .checkbox_button{
	padding:0;
}
.radio_button_group .radio_button label,
.checkbox_button_group .checkbox_button label{
	border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.radio_button_group .radio_button:first-child label,
.checkbox_button_group .checkbox_button:first-child label{
	border-top-left-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 5px;
    border-right:none;
}
.radio_button_group .radio_button:last-child label,
.checkbox_button_group .checkbox_button:last-child label{
	border-top-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 0;
    border-left:none;
}