.checklist {
    width: 100%;
}

.checklist-title {
    font-size: 20px;
    font-family: var(--secondary-font-family);
    font-weight: 900;
    text-align: left;
}

.checklist-item-wrapper {
    --checkbox-size: 20px;

    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-top: 10px;
    gap: 15px;
}

.checklist-items-nested {
    margin-left: 30px;
}

.checklist-item-wrapper input[type='checkbox'] {
    height: var(--checkbox-size);
    width: var(--checkbox-size);
    min-height: var(--checkbox-size);
    min-width: var(--checkbox-size);
    align-self: flex-start;
}

.checklist-item-label {
    text-align: left;
}

@media screen and (min-width: 500px) {
    .checklist-item-wrapper {
        --checkbox-size: 15px;
        margin-top: 15px;
    }
}