/*
.hs-form-checkbox > label{
	padding-left: 25px;
  position: relative;
}

.hs-form-checkbox input[type="checkbox"] {
    opacity: 0;
    outline: 0;
    z-index: 100;
    width: 20px !important;
    height: 20px !important;
    top: 0;
    left: 0;
    position: absolute;
    appearance: none;
    cursor: pointer;
    opacity: 1;
    display: block;
    border-radius: 5px;
}


.hs-form-checkbox input[type="checkbox"] label {
	cursor: pointer;
}

.hs-form-checkbox label:after {
  width: 20px;
  height: 20px;
  content: "";
  background: rgba(000, 000, 000, 0.25);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 2px;
  border: 1px solid rgba(000, 000, 000, 0.25);
  z-index: 0;
}


.hs-form-checkbox :checked + label{
  background:purple;
}

.hs-form-checkbox input[type="checkbox"]:checked:after {
    content: '\2713';
    position: absolute;
    top: 1px;
    font-size: 16px;
    left: 5px;
    color: #fff;
}
*/


