.em2-lists .items{
    display: flex;
    flex-flow: column;
    border: 1px solid #fff;
    & .item{
        font-weight: 300;
        &:last-child{
            border: none;
        }
        & .number span{
            display: inline-flex;
            width: 50px;
            height: 50px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 30px;
            font-weight: 300;
        }
        & .title{
            font-size: 20px;
            line-height: 26px;
        }
    }
    & .item.hasNumber{
        display: grid;
        border-bottom: 1px solid #fff;
        grid-template-columns: 50px 1fr;
        gap: 0 20px;
        align-items: center;
    }
    & .item{
        padding: 10px 25px;
    }
}
.em2-lists.box_white .items{
    border: none;
    gap: 20px;
    & .item{
        background: rgba(255,255,255,0.8);
        border: 1px solid #fff;
    }
}