
  label:not(.form-check-label):not(.custom-file-label) {
    font-weight: 400 !important;
  }
  
  input::placeholder, select::placeholder {
    color: #aaa !important;
  }

  input, select, textarea {
    border: 1px solid #aaa !important;
    border-radius: 5px !important;
    background-color: #fafafa;
    color: #666;
  }
  
  input, select{
    line-height: 20px;
  }
  
  input:hover, select:hover, textarea:hover {
    border: 1px solid #444 !important;
  }
  
  input:focus, select:focus, textarea:focus {
    outline: none;
    border: 2px solid #666 !important;
    background-color: #fff;
  }
  
  select:hover, checkbox:hover, radio:hover, .datafeildTable:hover {
    cursor: pointer;
  }
  
  table {
    border-collapse: collapse;
    border-radius: 0;
    border-style: hidden; /* hide standard table (collapsed) border */
    box-shadow: 0 0 0 0.5px #666; /* this draws the table border  */ 
    background-color: #f6f6f6;
    color: #666;
    border: 1px solid #aaa;
  }

  .datafeildTable td {
    border: 1px solid #aaa;
  }
  
  .feildWraper {
    padding: 0 20px !important;
  }

  input.form-field[type="checkbox"], input.singlecheckbox[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: #fafafa;
  /* Not removed via appearance */
  margin: 0;

  font: inherit;
  color: #888;
  width: 20px !important;
  height:20px !important;
  padding: 10px !important;
  line-height: 25px !important;
  border: 1px solid #888 !Important;
  border-radius: 3px !important;
  transform: translateY(-0.075em);

  display: inline-grid;
  place-content: center;
}

input.form-field[type="checkbox"]::before, input.singlecheckbox[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  /* Windows High Contrast Mode */
  background-color: #fff;
}

input[type="checkbox"]:checked {
  color: #fff !important;
  background-color: #4af;
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}

input[type="checkbox"]:focus {
  outline: max(2px, 0.15em) solid #888;
  outline-offset: max(2px, 0.15em);
}

input[type="checkbox"]:disabled {
  --form-control-color: var(--form-control-disabled);

  color: var(--form-control-disabled);
  cursor: not-allowed;
}

.feildWraper .checkbox label {
  display: inline-grid !important;
  grid-template-columns: 20px auto;
  gap: 0.5em;
  margin: 8px 5px !important;
}

.feildWraper .checkbox label:focus-within {
  color: var(--form-control-color);
}

input.form-field[type="radio"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 10px 0 10px 0;

  font: inherit;
  color: #888;
  width: 20px !important;
  height:20px !important;
  padding: 5px !important;
  border: 1px solid #888 !Important;
  border-radius: 50%;
  transform: translateY(-0.075em);
  place-content: center;
  display: grid;
}

.radio label {
  display: inline-grid;
  grid-template-columns: 20px auto;
  gap: 0.5em;
}

.radio label:focus-within {
  color: var(--form-control-color);
}


input[type="radio"]::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: scale(0);
  border: 1px solid #888 !Important;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
}

input[type="radio"]:checked::before {
  transform: scale(1);
  background-color: #4af;
}

input[type="radio"]:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
}


.btn-xs {
	border-radius: 5px !important;
	padding: 5px 10px !important;
  border: 0;
}

.sigPad > div {
  text-align: right;
}

.sigpad {
	border: 1px solid #aaa !important;
	padding: 10px !important;
	margin: 10px 0 !important;
}

.signature-pad {
	box-shadow: none !important;
  margin: 20px auto;
}

#sign_delete {
	opacity: 0 !important;
	width: 1px !important;
	height: 1px !important;
}

.signature-pad--body {
	    border: 1px dashed #bbb !important;
}

.btn {
  border-radius: 5px  !Important;
}