
/* Убрать границы ячеек в таблице*/
.uc-table-no-border td{
    border:hidden;
}


/* Стили нуперованного списка Turboflex */
.uc-ol-big-digits ol {
  list-style: none;
  padding-left: 0;
  counter-reset: ordered-counter;
}

.uc-ol-big-digits ol li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
  min-height: 30px;
  counter-increment: ordered-counter;
  display: flex;
  align-items: center;
}

.uc-ol-big-digits ol li::before {
  content: counter(ordered-counter);
  position: absolute;
  left: 0;
  width: 35px;
  height: 35px;
  background: #4CAF50;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}