/**
 * Checkboxes & radios
 */
 .fh-checkbox > [type="checkbox"]:checked, .fh-checkbox > [type="checkbox"]:not(:checked),
 .fh-radio > [type="radio"]:checked,
 .fh-radio > [type="radio"]:not(:checked) {
   width: 0;
   height: 0;
   display: none;
   opacity: 0; }
   .fh-checkbox > [type="checkbox"]:checked + label, .fh-checkbox > [type="checkbox"]:not(:checked) + label,
   .fh-radio > [type="radio"]:checked + label,
   .fh-radio > [type="radio"]:not(:checked) + label {
     display: inline-block;
     margin-right: 7px;
     margin-top: 7px;
     margin-bottom: 7px;
     padding-left: 22px;
     padding-top: 2px;
     position: relative;
     cursor: pointer; }
     .fh-checkbox > [type="checkbox"]:checked + label:before, .fh-checkbox > [type="checkbox"]:not(:checked) + label:before,
     .fh-radio > [type="radio"]:checked + label:before,
     .fh-radio > [type="radio"]:not(:checked) + label:before {
       position: absolute;
       display: inline-block;
       bottom: 1px;
       left: 0;
       width: 13px;
       height: 13px;
       border: 2px solid #849fbb;
       color: #849fbb; }
     .fh-checkbox > [type="checkbox"]:checked + label:hover:before, .fh-checkbox > [type="checkbox"]:not(:checked) + label:hover:before,
     .fh-radio > [type="radio"]:checked + label:hover:before,
     .fh-radio > [type="radio"]:not(:checked) + label:hover:before {
       background-color: #849fbb; }
   .fh-checkbox > [type="checkbox"]:checked:focus + label:before, .fh-checkbox > [type="checkbox"]:not(:checked):focus + label:before,
   .fh-radio > [type="radio"]:checked:focus + label:before,
   .fh-radio > [type="radio"]:not(:checked):focus + label:before {
     border-color: #6fb5fb;
     box-shadow: 0 0 6px 0 #6fb5fb; }
   .fh-checkbox > [type="checkbox"]:checked[disabled] + label, .fh-checkbox > [type="checkbox"]:not(:checked)[disabled] + label,
   .fh-radio > [type="radio"]:checked[disabled] + label,
   .fh-radio > [type="radio"]:not(:checked)[disabled] + label {
     cursor: not-allowed;
     opacity: .4; }
     .fh-checkbox > [type="checkbox"]:checked[disabled] + label:before, .fh-checkbox > [type="checkbox"]:not(:checked)[disabled] + label:before,
     .fh-radio > [type="radio"]:checked[disabled] + label:before,
     .fh-radio > [type="radio"]:not(:checked)[disabled] + label:before {
       opacity: .7; }
 
 .fh-checkbox > [type="checkbox"]:checked + label:before,
 .fh-checkbox > [type="checkbox"]:not(:checked) + label:before {
   font-family: "FontAwesome";
   font-size: 13px;
   text-align: center;
   -webkit-transition: border-color .2s ease-in, background-color .2s ease-in;
   -moz-transition: border-color .2s ease-in, background-color .2s ease-in;
   -o-transition: border-color .2s ease-in, background-color .2s ease-in;
   -ms-transition: border-color .2s ease-in, background-color .2s ease-in;
   transition: border-color .2s ease-in, background-color .2s ease-in; }
 
 .fh-checkbox > [type="checkbox"]:checked + label:before {
   content: "\f00c";
   color: #FFF;
   background-color: #57cb85;
   border-color: #57cb85; }
 
 .fh-checkbox > [type="checkbox"]:not(:checked) + label:before {
   content: ""; }
 
 .fh-radio > [type="radio"]:checked + label:before,
 .fh-radio > [type="radio"]:not(:checked) + label:before {
   content: "";
   border-radius: 15px;
   -webkit-transition: border-color .2s ease-in, box-shadow .1s ease-in, background-color .2s ease-in, box-shadow .2s ease-in;
   -moz-transition: border-color .2s ease-in, box-shadow .1s ease-in, background-color .2s ease-in;
   -o-transition: border-color .2s ease-in, box-shadow .1s ease-in, background-color .2s ease-in;
   -ms-transition: border-color .2s ease-in, box-shadow .1s ease-in, background-color .2s ease-in;
   transition: border-color .2s ease-in, box-shadow .1s ease-in, background-color .2s ease-in; }
 
 .fh-radio > [type="radio"]:checked + label:before {
   color: #57cb85;
   border-color: #57cb85;
   background-color: #57cb85;
   box-shadow: inset 0 0 0 1px #fff; }
 
 .fh-radio > [type="radio"]:not(:checked) + label:before {
   box-shadow: inset 0 0 0 3px #fff; }
 
 /**
  * On/off switch
  */
 .fh-switch {
   position: relative; }
 
 .fh-switch > [type="checkbox"]:checked,
 .fh-switch > [type="checkbox"]:not(:checked) {
   width: 0;
   height: 0;
   display: none;
   opacity: 0; }
   .fh-switch > [type="checkbox"]:checked + label,
   .fh-switch > [type="checkbox"]:not(:checked) + label {
     cursor: pointer;
     display: inline-block;
     margin-right: 0px;
     margin-top: 7px;
     margin-bottom: 7px;
     padding-right: 20px; }
     .fh-switch > [type="checkbox"]:checked + label:after,
     .fh-switch > [type="checkbox"]:not(:checked) + label:after {
       content: "";
       top: 4px;
       right: 5px;
       width: 40px;
       height: 12px;
       position: absolute;
       border-radius: 3px; 
}
     .fh-switch > [type="checkbox"]:checked + label + .fh-switch-knob,
     .fh-switch > [type="checkbox"]:not(:checked) + label + .fh-switch-knob {
       top: 0;
       width: 20px;
       height: 20px;
       border-radius: 30px;
       display: inline-block;
       position: absolute;
       cursor: pointer;
       pointer-events: none;
       box-shadow: 1px 1px 1px #dddddd;
       -webkit-transition: right .1s ease-in, background-color .1s ease-in;
       -moz-transition: right .1s ease-in, background-color .1s ease-in;
       -o-transition: right .1s ease-in, background-color .1s ease-in;
       -ms-transition: right .1s ease-in, background-color .1s ease-in; }
   .fh-switch > [type="checkbox"]:checked:focus + label:after, .fh-switch > [type="checkbox"]:checked:focus + label + .fh-switch-knob,
   .fh-switch > [type="checkbox"]:not(:checked):focus + label:after,
   .fh-switch > [type="checkbox"]:not(:checked):focus + label + .fh-switch-knob {
     box-shadow: 0 0 6px 0 #6fb5fb; }
   .fh-switch > [type="checkbox"]:checked[disabled] + label, .fh-switch > [type="checkbox"]:checked[disabled] + label:after, .fh-switch > [type="checkbox"]:checked[disabled] + label + .fh-switch-knob,
   .fh-switch > [type="checkbox"]:not(:checked)[disabled] + label,
   .fh-switch > [type="checkbox"]:not(:checked)[disabled] + label:after,
   .fh-switch > [type="checkbox"]:not(:checked)[disabled] + label + .fh-switch-knob {
     cursor: not-allowed;
     opacity: 0.4; }
 
 .fh-switch > [type="checkbox"]:checked + label:after {
   background-color: #efcccc; }
 
 .fh-switch > [type="checkbox"]:not(:checked) + label:after {
   background-color: #ccc; }
 
 .fh-switch > [type="checkbox"]:checked + label + .fh-switch-knob {
   right: 0px;
   background-color: #cf0000; }
 
 .fh-switch > [type="checkbox"]:not(:checked) + label + .fh-switch-knob {
   right: 25px;
   background-color: #555; }
 
.fh-switch label .webaudit-toggle-label {
  padding-left: 32px;
}

.fh-switch-knob + .webaudit-toggle-label {
    position: relative;
    left: 32px;
}







.form-radio-group {
  display: block;
  clear: both;
  padding: 16px 32px;
  justify-self: center;
}

.form-radio-group-header {
	font-size: 16px;
}

.form-radio
{
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     display: inline-block;
     position: relative;
     background-color: #595959;
     color: #666;
     top: 10px;
     height: 30px;
     width: 30px;
     border: 0;
     border-radius: 2px;
     cursor: pointer;     
     margin-right: 7px;
     outline: none;
}
.form-radio:checked::before
{
     position: absolute;
     font: 13px/1 'Open Sans', sans-serif;
     left: 11px;
     top: 7px;
     content: '\02143';
     transform: rotate(40deg);
  color: #fff;
  font-weight: 600;
}

.form-radio:hover
{
     background: #696969;
}

.form-radio:checked
{
     background-color: #cf0000;
}

.webaudit-question label
{
     /*! font: 300 16px/1.7 'Open Sans', sans-serif; */
     /*! color: #666; */
     cursor: pointer;
     font-weight: bold;

     padding-right: 16px;
} 