.bf-checkbox {
    display: block;
    margin-bottom: 15px;
}

.bf-checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.bf-checkbox label {
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 200;
}

.bf-checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #60ba6b;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 9px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 15px;
    border-radius: 3px
}

.bf-checkbox input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 8px;
    width: 6px;
    height: 14px;
    border: solid #60ba6b;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.package-checkbox {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.package-checkbox h6 {
    padding-top: 15px;
    padding-bottom: 10px;
    font-weight: 700;
}

.package-checkbox span {
    font-weight: 300;
    float: right;
    font-size: 14px;
}