input,
textarea,
select
{
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    background: #fff;
    border: 1px solid #bfbfbf;		 /* colbg:-64 */
    padding: 8px;
    margin-bottom: 16px;
    color: #1a1a1a;			 /* colfg */
}
input:focus,
textarea:focus,
select:focus
{
    box-shadow: 0 0 5px #3d7811;	 /* colhl */
    border: 1px solid #3d7811; 		 /* colhl */
}

label {
    display: block;
    padding-left: 15px;
/*    text-indent: -15px; */
    margin-right: 10px;
}
/*.checkbox input{
    width: 13px;
    height: 13px;
    padding: 0;
    margin:0;
    vertical-align: bottom;
    position: relative;
    top: -1px;
    *overflow: hidden;
}*/

.spacer input[type='radio'], .spacer input[type='checkbox']
{
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     display: inline-block;
     position: relative;
     background-color: #fff;
     top: 10px;
     height: 21px;
     width: 21px;
     border: 2px solid #bfbfbf;
     cursor: pointer;     
     margin-right: 7px;
     outline: none;
}
.spacer input[type='radio'] {
     border-radius: 50px;
}
.spacer input[type='checkbox'] {
     border-radius: 3px;
}
.spacer input[type='radio']:checked::before, .spacer input[type='checkbox']:checked::before
{
     position: relative;
     left: -6px;
     top: -12px;
     font-size: 20px;
     content: '\02714';
    color: #3d7811; 		 /* colhl */ 
}
.spacer input[type='radio']:hover, .spacer input[type='checkbox']:hover
{
     background-color: #f7f7f7;
}
.spacer input[type='radio']:checked, .spacer input[type='checkbox']:checked
{
/*     background-color: #f1f1f1;*/ 
}
label
{
     font: 300 16px/1.7 'Open Sans', sans-serif;
     color: #666;
     cursor: pointer;
} 

button, .button, .content .button, .small-button{
	background-color: #3d7811;		/* colhl */
	color: #fff;			/* colbg */
	text-decoration: none; 
	border: none; 
	padding: 8px 24px;
	font-weight: bold;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

button:hover, .button:hover, .content .button:hover, .small-button:hover {
	background-color: #003800;		/* colhl:-64 */
	color: #fff;				/* colbg */
}

button:disabled, .disabled-button {
	background-color: #ccc;			/* colfg:-48 */
}

.content .button::after, .content .button::before {
	width: 0;
	height: 0;
}

.small-button {
    padding: 2px;
    font-weight: normal;
    border-radius: 8px;
    min-width: 36px;
    margin: 0px 0px 0px 14px;
}

