.table-container {
  box-sizing: border-box !important;
  border-top: 1px solid var(--gray-100);
  border-radius: 12px;
  box-shadow: 0px 4px 12px 0px #0000000D;
  background: white;
  width: 100%;
  margin: 0 auto;
  color: var(--gray-700);
}

.table-wrapper {
  overflow-y: hidden;
  height: 335px;
  transition: height 0.6s ease;

}

.table-wrapper__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0 32px;
}

.comparison-table {
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1rem;
  background-color: #ffffff;
  min-width: 720px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 30%;
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
  width: 35%;
}

.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3) {
  width: 35%;
}

.comparison-table tr:first-child td {
  border-top: none;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  border-left: none;
}

.comparison-table td:last-child {
  border-right: none;
}

.comparison-table th {
  text-align: left;
  padding: 16px;
  background-color: var(--gray-100);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.comparison-table th:last-child {
  color: var(--blue);
}

.comparison-table td {
  border: 1px solid var(--gray-100);
  padding: 12px 16px;
  vertical-align: top;
}

.comparison-table td:first-child {
  font-weight: 500;
}

.important {
  color: var(--black);
  font-weight: 500;
}

@media (max-width: 640px) {

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
  }
}