.nt-checklist {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nt-checklist__item {
    position: relative;
    margin-bottom: 0!important;
}
.nt-checklist__item-title-1 {
    display: block;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--kg--color--septenary);
}
.nt-checklist__item-title-2 {
    display: block;
}


.nt-checklist .nt-checklist__item--check {
    background-color: #F3F7FA;
    border-radius: 10px;
    padding: 15px 16px 15px 72px;
}
.nt-checklist .nt-checklist__item--check:before {
    content: "";
    display: block;
    height: 35px;
    width: 35px;
    border-radius: 100%;
    background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M49.1,8.9c1.2,1.2,1.2,3.1,0,4.2l-28,28c-1.2,1.2-3.1,1.2-4.2,0L.9,25.1c-1.2-1.2-1.2-3.1,0-4.2,1.2-1.2,3.1-1.2,4.2,0l13.9,13.9,25.9-25.9c1.2-1.2,3.1-1.2,4.2,0Z" fill="white"/></svg>') no-repeat var(--kg--color--quinary);
    background-position: center 10px;
    background-size: 17px;
    position: absolute;
    top: 11px;
    left: 16px;
}
.nt-checklist .nt-checklist__item--error {
    color: #B50000;
    padding-left: 42px;
}
.nt-checklist .nt-checklist__item--error:before {
    content: "";
    display: block;
    height: 27px;
    width: 27px;
    border-radius: 100%;
    background: url('data:image/svg+xml;charset=utf-8,<svg height="329pt" viewBox="0 0 329.26933 329" width="329pt" xmlns="http://www.w3.org/2000/svg" fill="%23B50000"><path d="m194.800781 164.769531 128.210938-128.214843c8.34375-8.339844 8.34375-21.824219 0-30.164063-8.339844-8.339844-21.824219-8.339844-30.164063 0l-128.214844 128.214844-128.210937-128.214844c-8.34375-8.339844-21.824219-8.339844-30.164063 0-8.34375 8.339844-8.34375 21.824219 0 30.164063l128.210938 128.214843-128.210938 128.214844c-8.34375 8.339844-8.34375 21.824219 0 30.164063 4.15625 4.160156 9.621094 6.25 15.082032 6.25 5.460937 0 10.921875-2.089844 15.082031-6.25l128.210937-128.214844 128.214844 128.214844c4.160156 4.160156 9.621094 6.25 15.082032 6.25 5.460937 0 10.921874-2.089844 15.082031-6.25 8.34375-8.339844 8.34375-21.824219 0-30.164063zm0 0"/></svg>') no-repeat #F9EBE9;
    background-position: center;
    background-size: 9px;
    position: absolute;
    top: 1px;
    left: 0;
}
.nt-checklist .nt-checklist__item--warning {
    color: #9a682a;
    padding-left: 42px;
}
.nt-checklist .nt-checklist__item--default {
    margin-left: 42px;
}

.nt-checklist .nt-checklist__item--error .nt-checklist__item-title-1,
.nt-checklist .nt-checklist__item--warning .nt-checklist__item-title-1 {
    color: inherit;
}



@media (max-width: 1024px) {
    .nt-checklist {
        gap: 6px;
    }
    .nt-checklist .nt-checklist__item--check {
        border-radius: 5px;
        padding: 11px 11px 11px 45px;
    }
    .nt-checklist .nt-checklist__item--check:before {
        height: 24px;
        width: 24px;
        background-position: center 7px;
        background-size: 12px;
        top: 11px;
        left: 10px;
    }
    .nt-checklist__item-title-1 {
        font-size: 1rem;
    }
}


