CSS of NPS type survey to reverse the scale from 10 to 0 or 10 to 1:
.ss_rating_input--classic.ss_rating_input--nps{
flex-direction: row-reverse;
}
.ss-answer-option--rating:nth-of-type(1){
border-radius: 0px 10px 10px 0px;
border-right-width: 1px;
}
.ss-answer-option--rating:last-of-type{
border-radius: 10px 0px 0px 10px;
border-right-width: 0px;
}