input[type="checkbox"]:checked {
    border-radius: 3px !important;
    border: 1px solid var(--primary-green)!important;
    background: var(--primary-green) !important;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.05) !important;
    position: relative;
}

input[type="checkbox"]:checked::after {
    content: "✓";
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    font-size: 0.75em;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}