
:root {
    --primary-color: #2881D7;
    --r1: 10px;
    --r2: 20px;
}
.tn-atom ul {
    list-style-type: none;
    margin-bottom: 1rem;
    padding-left: 1rem;
}
.tn-atom ul li {
    margin-bottom: .5rem;
    position: relative;
    padding-left: 1.5em;
}
.tn-atom ul li:before {
    content: "";
    position: absolute;
    width: .5em;
    height: .5em;
    border-radius: var(--r1);
    background: var(--primary-color);
    left: 0;
    top: 0.5em;
}

/*Скруглённые и круглые цифры нумерованного списка*/
.ol-round ol,
.ol-circle ol {
    list-style-type: none; 
    counter-reset: num;
    margin: 0 0 0 .3rem;
    padding-left: 2.2rem !important;
}
.ol-round ol li,
.ol-circle ol li {
    position: relative;    
    margin: 0 0 1rem 0;
    padding-left: .5rem;
}
.ol-round ol li:before,
.ol-circle ol li:before {
    content: counter(num); 
    counter-increment: num;
    display: inline-block;
    position: absolute;
    top: -.2rem;
    left: -2.5rem;
    width: 2rem;
    height: 2rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    line-height: 2rem;
    font-size: 1rem;
}
.ol-round ol li:before {
    border-radius: var(--r1);
}
.ol-circle ol li:before {
    border-radius: 99px;
}

/*Цветная нумерация списка*/
.ol-color ol {
    list-style-type: none; 
    counter-reset: num;
    margin: 0 0 1rem .3rem;
}
.ol-color ol li {
    position: relative;   
    margin: 0 0 .5rem 0;
}
.ol-color ol li:before {
    content: counter(num) '.'; 
    counter-increment: num;
    display: inline-block;    
    position: absolute;
    top: 0px;
    left: -2rem;
    width: 1rem;    
    color: var(--primary-color);
    text-align: center;
}
</style>