.form-wrapper {
  padding: 30px 0px;
}

.form-pos {
  display: flex;
  justify-content: center;
}

.form-block {
  width: fit-content;
  border-radius: 4px;
  padding: 40px;
}

.text-wrap-titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.form-sub-title {
  text-align: center;
  width: 70%;
}

.form-block form label {
  color: var(--c--dark);
}

@media(max-width:870px) {
  .form-block {
    padding: 30px;
  }
}

.survey-rating ul.inputs-list {
      display: flex;
    gap: 15px;
  flex-wrap: wrap;
}

.survey-rating ul.inputs-list li {
      flex-basis: calc(10% - 15px);
    max-width: 49px;
      min-width: 35px;
}

.survey-rating ul.inputs-list input {
      opacity: 0;
}


.survey-rating ul.inputs-list label span {
  font-family: Ubuntu;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    background: #FFFFFF;
    border: 1.5px solid #D1DCDB;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.survey-rating ul.inputs-list label input:checked + span {
  background: #B5BD00;
  border: 1.5px solid #B5BD00;
  color: #ffffff;
 ) 