CSS to have the rating scale in one line for mobile devices

CSS to have the rating scale in one line for mobile devices.

By implementing this CSS code, the NPS scale, which might be displayed in two lines, will be transformed to appear as a single line. This modification ensures that the scale is displayed seamlessly.

@media screen and (max-width: 767px){
.ss_rating_input--classic{
flex-wrap: nowrap !important;
}

.ss-answer-option--rating {
width:22px;
height: 22px;
min-width: 22px;
padding: 10px !important;
}
}