/* [project]/src/styles/Hire/HireTable.css [client] (css) */
.hire-table-section {
  background-color: #000;
  justify-content: center;
  width: 100%;
  padding: 60px 0;
  display: flex;
}

.hire-table-container {
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
}

.comparison-table-wrapper {
  background-color: #0000;
  border: 3px solid #fff;
  border-radius: 15px;
  width: 100%;
  overflow: hidden;
}

.comparison-table {
  flex-direction: column;
  display: flex;
}

.table-row {
  border-bottom: 2.5px solid #fff;
  grid-template-columns: 1.2fr 1fr 1fr;
  width: 100%;
  display: grid;
}

.table-cell {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  font-family: var(--font-body, "Inter", sans-serif);
  background-color: #54b248;
  border-right: 2.5px solid #fff;
  align-items: center;
  padding: 20px 25px;
  display: flex;
}

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

.total-row {
  border-bottom: none;
}

.table-header .table-cell {
  color: #000;
  padding: 25px;
  font-size: 18px;
}

.total-row .table-cell {
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .table-cell {
    padding: 15px 10px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hire-table-container {
    padding: 0 20px;
  }

  .table-row {
    border-bottom: none;
    grid-template-columns: 1fr;
  }

  .table-cell {
    border-bottom: 2px solid #fff;
    border-right: none;
  }

  .empty-cell {
    display: none;
  }

  .table-header .table-cell {
    font-size: 18px;
  }
}

/*# sourceMappingURL=src_styles_Hire_HireTable_css_65f1660e._.single.css.map*/