.input-div input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.input-div input+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}

.input-div input+label::before {
    content: '';
    display: inline-block;
    width: 0.75em;
    height: 0.75em;
    border: 1px solid #adb5bd;
    border-radius: 0.2em;
    margin-right: 0.2em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 75% 75%;
}

.input-div input:checked+label::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.input-div input:not(:disabled):not(:checked)+label:hover::before {
    border-color: #b3d7ff;
}

.input-div input:not(:disabled):active+label::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}

.input-div input:disabled+label::before {
    background-color: #e9ecef;
}