/* Выравниваем чекбокс и текст по верхнему краю */
.t-checkbox__control {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

/* Сам чекбокс */
.t-checkbox__indicator, .t-checkbox__box {
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

/* Текст рядом с чекбоксом */
.t-checkbox__labeltext {
  display: block !important;
  margin: 0 !important;              /* убираем лишний отступ */
  padding: 0 !important;
  line-height: 1.4 !important;
  white-space: normal !important;
  position: relative !important;
  top: 2px !important;               /* слегка опускаем текст вниз */
}