.custom-checkbox {
    position: relative;
    margin-top: 15px;
    padding-left: 15px;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox input[type="checkbox"] + label {
    font-size: 12px;
    color: black;
    margin-bottom: 0;
    cursor: pointer;
    white-space: normal;
    text-align: left;
}

.custom-checkbox input[type="checkbox"] + label a {
    text-decoration: none;
    color: inherit;
}
.custom-checkbox input[type="checkbox"] + label i {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    top: 3px;
}
.custom-checkbox input[type="checkbox"] + label i:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: transparent;
    border: 2px solid #a07a50;
}

.custom-checkbox input[type="checkbox"]:checked + label i:before {
    content: '';
    background-color: #a07a50;
}