html {
  scroll-behavior: smooth;
}
[id^="rec"] {
  scroll-margin-top: 100px;
}



/* Скрываем стандартный чекбокс */
.t-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 20px;
  width: 20px;
  min-height: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  background: white;
}

/* Стиль при наведении */
.t-checkbox:hover {
  border-color: #999;
}

/* Стиль для отмеченного чекбокса */
.t-checkbox:checked {
  background: white;
  border-color: #ccc;
}

/* Красная точка в отмеченном чекбоксе */
.t-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: red;
}