/* -------   Custom CheckboxV2 -------*/ 
.GO-checkboxV2 {
  position: absolute;
  display: none; 
}
.GO-checkboxV2 + label {
  position: relative;
  display: block;
  padding-left: 0px;
  line-height: 26px;
  cursor: pointer;
  vertical-align: middle; 
}
.GO-checkboxV2 + label p{
  color: #000000;   
  font-weight: normal;
  padding-left: 35px;
}
.GO-checkboxV2 + label:before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 26px;
    height: 26px;
    content: '';
    border: 1px solid #ADB5BD;
    border-radius: 0px; 
}
.GO-checkboxV2 + label:after {
    position: absolute;
    display: none;
    top: 0px;
    left: 2px;
    color: #FFFFFF;
    font-size: 20px;
    font-family: bootstrap-icons;
    content: "\F633";
}
/* -------   Checkbox Checked   -------*/ 
.GO-checkboxV2:checked + label:after {
  display: block; 
}
.GO-checkboxV2:checked + label:before {
  border: #3e97eb;
  background: #F47A20; 
}