.alert {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  margin: 0 0 10px;
}

.alert .link {
  font-weight: bold;
  text-decoration: none;
}

.dismissible {
  display: none;
}

.primary {
  background: #cce5fd;
  color: #024085;
  border: 1px solid #024085;
}

.success {
  background: #d4edd9;
  color: #295724;
  border: 1px solid #295724;
}

.danger {
  background: #f8d7d9;
  color: #721b24;
  border: 1px solid #721b24;
}

.warning {
  background: #fef3cd;
  color: #856417;
  border: 1px solid #856417;
}