.checkbox-003 {
    border: none;
}

.checkbox-003 label {
    display: flex;
    align-items: center;
    gap: 0 0.5em;
    position: relative;
    /* max-width: max-content; */
    margin-bottom: 0.4em;
    padding: 0.5em 0.7em;
    border: 1px solid #3994d526;
    border-radius: 3px;
    background-color: #e3e8ec26;
    cursor: pointer;
}

.checkbox-003 label:has(:checked) {
    background-color: #3994d526;
    color: #333333;
}

.checkbox-003 label::before {
    width: 14px;
    height: 14px;
    border-radius: 1px;
    background-color: #fff;
    content: '';
}

.checkbox-003 label:has(:checked)::after {
    position: absolute;
    top: 10px;
    left: 14px;
    transform: rotate(45deg);
    width: 4px;
    height: 8px;
    border: solid #3994d5;
    border-width: 0 2px 2px 0;
    content: '';
}

.checkbox-003 input {
    display: none;
}

.checkbox-002 {
    display: flex;
    flex-wrap: wrap;
    gap: .5em 2em;
    border: none;
}

.checkbox-002 label {
    display: flex;
    align-items: center;
    gap: 0 0.5em;
    position: relative;
    padding: 0;
    cursor: pointer;
    margin-top: 6px;
}

.checkbox-002 label::before {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 1px solid #d6dde3;
    content: '';
}

.checkbox-002 label:has(:checked)::after {
    position: absolute;
    top: 4px;
    left: 6px;
    transform: rotate(45deg);
    width: 4px;
    height: 8px;
    border: solid #2589d0;
    border-width: 0 2px 2px 0;
    content: '';
}

.checkbox-002 input {
    display: none;
}