.cbox {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.cbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.radiobtn {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
	border:1px solid #ccc;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.cbox:hover input ~ .radiobtn {
    background-color: #fff;
	border:1px solid #ddd;
}

/* When the radio button is checked, add a blue background */
.cbox input:checked ~ .radiobtn {
    background-color: #083f78;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiobtn:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.cbox input:checked ~ .radiobtn:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.cbox .radiobtn:after {
 	top: 7px;
	left: 7px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

.fields {
	width:70%;
	margin:0 auto 10px;
	text-align:left;
	line-height:normal;
}
.contact-us .fields label {
	width:auto;
}
/* .cbox {
	margin-left:10px;
} */


/* ///////////////////////*/
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #fff;
	border:1px solid #ccc;
}

/* On mouse-over, add a grey background color */
.cbox:hover input ~ .checkmark {
    border:1px solid #eee;
}

/* When the checkbox is checked, add a blue background */
.cbox input:checked ~ .checkmark {
    background-color: #7ba743;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.cbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.cbox .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* ///////////////////////*/

select {
   -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}
