li {
    list-style: unset;
}
ol {
    padding-left: 20px;    
}
.wpb_text_column p {
    margin-bottom: 10px;
}
ol.set_counter {
	counter-reset: cnt;
}
ol.set_counter li {
	list-style-type: none;
	counter-increment: cnt;
}
ol.set_counter li::before {
	content: "(" counter(cnt) ") ";
}
ol li {
    list-style-position: outside !important;
}