.cb-table {
  table-layout: fixed;
  width: 100%;
  border: none;
}

.cb-table thead tr th {
  padding: 8px 16px;
  border: 1px solid var(--cb-border_light_color);
  font-size: 0;
  line-height: 0;
  text-align: center;
}

.cb-table thead tr th i {
  display: inline-block;
  font-size: 20px;
  line-height: 24px;
  margin: 0 4px 0 0;
  vertical-align: middle;
}

.cb-table thead tr th .text {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  vertical-align: middle;
}

.cb-table tbody tr td {
  padding: 8px 16px;
  border: 1px solid var(--cb-border_light_color);
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.cb-table tbody tr td.small {
  font-size: 12px;
}

.cb-table tbody tr td.title {
  font-weight: bold;
}

.cb-table tbody tr td.left,
.cb-table thead tr th.left {
  text-align: left;
}

.cb-table tbody tr td.subtitle {
  padding: 8px 16px 8px 32px;
}

.cb-table tbody tr td.sep {
  border-left: none;
  border-right: none;
  font-size: 0;
  line-height: 0;
}

.cb-table tbody tr td a {
  color: var(--cb-fg_color);
}

.cb-table tbody tr td a:hover,
.cb-table tbody tr td a:focus {
  color: var(--cb-primary-color);
}

.cb-table tbody tr td a:hover:before,
.cb-table tbody tr td a:focus:before {
  color: var(--cb-primary-color);
}

.cb-table.table-subscriptions tbody tr td:nth-child(2){
  width: 200px;
}

.cb-table.table-subscriptions tbody tr td:nth-child(3){
  width: 120px;
}

.cb-table.table-subscriptions tbody tr td .date {
  display: none;
  font-size: 12px;
  color: var(--cb-secondary_fg_color);
}

.cb-table.table-notifications-settings tbody tr td:nth-child(2),
.cb-table.table-notifications-settings tbody tr td:nth-child(3),
.cb-table.table-notifications-settings thead tr th:nth-child(2),
.cb-table.table-notifications-settings thead tr th:nth-child(3){
  width: 120px;
}

.cb-table.table-notifications input[type="checkbox"] {
  margin: 0;
}

.cb-table.table-notifications tbody tr td:first-child,
.cb-table.table-notifications thead tr th:first-child {
  width: 47px;
}

.cb-table.table-notifications tbody tr td:nth-child(3),
.cb-table.table-notifications thead tr th:nth-child(3){
  width: 180px;
}

.cb-table.table-notifications tbody tr td:nth-child(3){
  font-size: 12px;
  color: var(--cb-secondary_fg_color);
}

.cb-table.table-notifications tbody tr td:nth-child(4),
.cb-table.table-notifications thead tr th:nth-child(4){
  width: 122px;
}

.cb-table.table-notifications tbody tr td:nth-child(4){
  font-size: 0;
  letter-spacing: 0;
  line-height: 1;
}

.cb-table.table-notifications .cb-btn {
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 36px;
  padding: 0;
}

.cb-table.table-notifications .cb-btn:first-child {
  margin-right: 8px;
}

.cb-table.table-notifications .cb-btn.blue {
  color: var(--cb-blue);
}

.cb-table.table-notifications .cb-btn.red {
  color: var(--cb-red_dark);
}

.cb-table.table-notifications tbody tr td .bottom-mobile {
  display: none;
  margin-top: 4px;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  line-height: 16px;
  color: var(--cb-secondary_fg_color);
}

.cb-table.table-notifications tbody tr td .bottom-mobile > div {
  display: none;
}

.cb-table.table-notifications tbody tr td .bottom-mobile .actions a.read {
  color: var(--cb-blue);
}

.cb-table.table-notifications tbody tr td .bottom-mobile .actions a.delete {
  color: var(--cb-red_dark);
}

@media (max-width: 767px) {
  .cb-table.table-notifications thead tr th:nth-child(3),
  .cb-table.table-notifications tbody tr td:nth-child(3){
    display: none;
  }
  .cb-table.table-notifications tbody tr td .bottom-mobile {
    display: flex;
  }
  .cb-table.table-notifications tbody tr td .bottom-mobile .date {
    display: block;
  }
}

@media (max-width: 720px) {
  .cb-table.table-subscriptions tbody tr td:nth-child(2) {
    display: none;
  }
  .cb-table.table-subscriptions tbody tr td .date {
    display: block;
  }
  .cb-table.table-subscriptions tbody tr td:nth-child(3){
    width: 80px;
  }
  .cb-table.table-notifications-settings thead tr th .text {
    display: none;
  }
  .cb-table.table-notifications-settings tbody tr td:nth-child(2),
  .cb-table.table-notifications-settings tbody tr td:nth-child(3),
  .cb-table.table-notifications-settings thead tr th:nth-child(2),
  .cb-table.table-notifications-settings thead tr th:nth-child(3){
    width: 80px;
  }
}

@media (max-width: 550px) {
  .cb-table.table-notifications thead tr th:nth-child(4),
  .cb-table.table-notifications tbody tr td:nth-child(4) {
    display: none;
  }
  .cb-table.table-notifications tbody tr td .bottom-mobile .actions {
    display: block;
  }
  .cb-table.table-notifications tbody tr td .bottom-mobile .actions > a {
    display: inline-block;
    margin-left: 8px;
  }
  .cb-table.table-notifications tbody tr td .bottom-mobile .actions .read,
  .cb-table.table-notifications tbody tr td .bottom-mobile .actions .unread {
    color: var(--cb_blue);
  }
  .cb-table.table-notifications tbody tr td .bottom-mobile .actions .delete {
    color: var(--cb-red_dark);
  }
}