

/* Spacing */
.custom-checkbox{
    margin-bottom: 2px;
}

/* Hide Bootstrap default */
.custom-control-input{
    z-index: 1;
}

/* Checkbox */
.custom-control-label::before{
    width: 14px;
    height: 14px;
    border: 1px solid #000;
    border-radius: 0;
    background: #fff;
    top: 5px;
}

.custom-control-label::after{
    width: 14px;
    height: 14px;
    top: 5px;
}

/* Checked */
.custom-control-input:checked~.custom-control-label::before{
    background-color: #0b73a8;
    border-color: #0b73a8;
}

.custom-control-input:checked~.custom-control-label::after{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M3.5 8.5l2.5 2.5 6-6'/%3E%3C/svg%3E");
}

  /* Remove blue outline/shadow */
.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none !important;
    outline: none !important;
}

/* Optional: also remove Bootstrap's active shadow */
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    box-shadow: none !important;
}

/* Remove outline from the actual input */
.custom-control-input:focus {
    outline: none !important;
}

