/* ============================================================
   CHECK LIST — список с иконкой-галочкой вместо стандартного
   маркера/цифры: оборачивающий <ol>/<ul> получает класс
   .check-list, а его пункты — класс .li-home.
   Используется в: home, dispatch, crm.
   ============================================================ */

.check-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1em;
}

.li-home {
    position: relative;
    margin-top: 1em;
    padding-left: 1.7em;
}

.li-home::before {
    content: "";
    position: absolute;
    left: 0;
    top: .2em;
    width: 1.1em;
    height: 1.1em;
    background: url("/media/ok64.png") no-repeat center / contain;
}
