.search-alert-panel {
  margin: 14px 0 0;
  padding: 14px 16px;
  border: 1px solid #cfe1ee;
  border-radius: 14px;
  background: #f7fbfe;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.search-alert-panel-copy {
  min-width: 220px;
  flex: 1;
}

.search-alert-panel-title {
  margin: 0 0 4px;
  font-weight: 800;
  color: #143348;
}

.search-alert-panel-text {
  margin: 0;
  color: #5d7484;
  font-size: 14px;
  line-height: 1.4;
}

.search-alert-panel-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.search-alert-btn {
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  background: #006ca8;
  color: white;
  font-weight: 800;
  cursor: pointer;
}

.search-alert-btn:disabled {
  opacity: .55;
  cursor: default;
}

.search-alert-link {
  color: #005f95;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
}

.search-alert-status {
  width: 100%;
  margin: 0;
  min-height: 18px;
  font-size: 13px;
  color: #33566f;
}

.search-alert-status.error {
  color: #a33a32;
}

.search-alert-status.success {
  color: #277447;
}

@media (max-width: 640px) {
  .search-alert-panel {
    align-items: stretch;
  }

  .search-alert-panel-actions {
    width: 100%;
  }

  .search-alert-btn {
    flex: 1;
  }
}