.text ol {
    margin-left: 45px;
    margin-bottom: 24px;
    padding: 0;
}

.text ol,
.text ol li {
    list-style-type: decimal;
    list-style-position: outside;
}

.text ul {
    margin-left: 30px;
    margin-bottom: 24px;
    padding: 0;
}

.text ul:not([class]) li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    background: #f43676;
    border-radius: 50%;
}

.text li {
    padding-bottom: 8px;
}

.text ul:not([class]) li {
    position: relative;
    z-index: 1;
    padding-left: 20px;
    list-style-type: none;
}

.text ol ol, 
.text ol ul, 
.text ul ol, 
.text ul ul {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 10px;
}

.text ol ol {
    list-style: upper-alpha;
}

.text ol li:last-of-type, 
.text ul li:last-of-type {
    padding-bottom: 0;
}

.text ul, 
.text ul li {
    list-style-type: disc;
    list-style-position: inside;
    position: relative;
}

@media only screen and (max-width: 768px) {

    .text ol, 
    .text ul {
        margin-left: 15px;
    }

}