input[type=checkbox].hidden {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

div.checkbox-label {
    display: flex;
    align-items: center;
}

div.checkbox-label .box {
    width: 25px;
    height: 25px;
    border-color: #2b2b2b;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
    margin-right: 10px;
}

div.checkbox-label .box.checked {
    background-color: #1f233d;
    background-image: url("/assets/img/check.svg");
    background-repeat: no-repeat;
    background-position: center;
}

div.custom-checkbox::before {
    content: "😃";
    font-size: 100px;
}

input[type=checkbox].hidden:not(:checked) ~ div.checkbox-label .box.unchecked {
    display: unset;
}

input[type=checkbox].hidden:not(:checked) ~ div.checkbox-label .box.checked {
    display: none;
}

input[type=checkbox].hidden:checked ~ div.checkbox-label .box.unchecked {
    display: none;
}

input[type=checkbox].hidden:checked ~ div.checkbox-label .box.checked {
    display: unset;
}