/* developers-halpas-production/notification-trash.css */
.notification-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.notification-row.live-unread {
  background: #f8fff9;
}

.notification-content {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 17px 14px;
  border: 0;
  background: transparent;
  color: #111;
  text-align: left;
  cursor: pointer;
}

.notification-content > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.notification-content small {
  color: #777;
}

.notification-trash {
  align-self: center;
  margin-right: 12px;
  padding: 8px 10px;
  border: 1px solid #c93642;
  background: #fff;
  color: #b4232f;
  cursor: pointer;
}

.notification-trash:hover {
  background: #c93642;
  color: #fff;
}

@media (max-width: 650px) {
  .notification-content {
    grid-template-columns: 24px 1fr;
  }

  .notification-content > span:last-child {
    grid-column: 2;
  }
}

.notification-popover .notification-row {
  min-height: 64px;
}

.notification-popover .notification-content {
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 9px;
  padding: 12px 8px 12px 13px;
}

.notification-popover .notification-content > span:last-child {
  font-size: 9px;
  color: #888;
}

.notification-popover .notification-trash {
  width: 28px;
  height: 28px;
  margin: auto 10px auto 2px;
  padding: 0;
  border-color: #ddd;
  color: #8d3138;
  font-size: 14px;
  line-height: 1;
}

.notification-popover .live-empty {
  padding: 24px 17px;
}