﻿/* === Tabulka === */


.table-wrap {
  border: 1px solid #d9deea;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
}


.custom-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}


.custom-table th,
.custom-table td {
  vertical-align: middle;
  word-break: break-word;
  overflow-wrap: break-word;
}


.custom-table thead th {
  background: #edeff7;
  color: #323546;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid #d9deea;
}


.custom-table tbody td {
  color: #323546;
  font-size: 16px;
  line-height: 1.6;
  padding: 18px 20px;
  border-bottom: 1px solid #d9deea;
}


.custom-table tbody tr:last-child td {
  border-bottom: none;
}


.custom-table tbody td strong {
  font-weight: 700;
}


.custom-table th:first-child,
.custom-table td:first-child {
  width: 20%;
}


@media (max-width: 767px) {
  .table-wrap {
    border-radius: 4px;
    overflow-x: auto;
  }


  .custom-table {
    min-width: 640px;
  }


  .custom-table thead th,
  .custom-table tbody td {
    padding: 14px 14px;
    font-size: 15px;
  }
}