.btn-alerta {
  width: 48px;
  min-width: 10px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--border-hover);
  border-radius: 14px;

  background: var(--card);
  color: var(--brand);

  font-size: 24px;
  cursor: pointer;

  transition: all .2s ease;
}

.btn-alerta:hover {
  background: var(--brand-dim);
  transform: translateY(-2px);
}

.btn-alerta:active {
  transform: translateY(0);
}

.alert-info {
  margin: 12px 0;
  padding: 14px 16px;

  background: var(--brand-dim);
  border: 1px solid var(--border-hover);
  border-left: 4px solid var(--brand);

  border-radius: 12px;

  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.alert-notify {
  margin: 12px 0 20px;
  padding: 14px 16px;

  background: var(--card2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--muted);

  border-radius: 12px;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* link my alert */
.alerts-link {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.my-alerts {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all .2s ease;
}

.my-alerts:hover {
    transform: scale(1.08);
    color: #ff7f24;
}