.features {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .features {
    padding: 64px 0;
  }
}
.features__label {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 12px;
}
.features__title {
  margin: 0 0 48px;
}
@media (max-width: 768px) {
  .features__title {
    margin-bottom: 32px;
  }
}
.features__tables {
  display: flex;
  flex-direction: column;
  gap: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.features__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  margin-top: 48px;
}
.features__header_row {
  border-bottom: 1px solid #D9D9D9;
}
.features__th {
  padding: 0 16px 16px;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: #17171C;
  white-space: nowrap;
}
.features__th--feature {
  width: 32%;
  padding-left: 0;
}
.features__th:not(.features__th--feature) {
  width: 17%;
  text-align: center;
}
.features__row:last-child {
  border-bottom: none;
}
.features__cell {
  padding: 20px 32px;
  text-align: center;
  vertical-align: middle;
}
.features__cell--feature {
  text-align: left;
  padding-left: 0;
}
.features__cell--active {
  background: #FFEAC5;
}
.features__cell_label {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #17171C;
}
.features__cell_none {
  color: #B5B5B5;
  font-size: 16px;
  line-height: 1;
}
.features__cell_text {
  font-size: 16px;
  font-weight: 400;
  color: #17171C;
}
.features__check {
  display: inline-block;
  vertical-align: middle;
}
.features__cell--feature {
  display: table-cell;
}
.features__cell--feature .features__cell_label {
  display: inline;
}
.features__tooltip {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  position: relative;
  cursor: default;
  vertical-align: middle;
}
.features__tooltip:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 0%;
  bottom: calc(100% + 6px);
  background: #17171C;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  max-width: 220px;
  white-space: normal;
  z-index: 10;
  pointer-events: none;
  min-width: 200px;
}
.features__tooltip:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 1px);
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #17171C;
  z-index: 10;
  pointer-events: none;
}
.features__tooltip svg {
  display: block;
}
