
/* Notifications */
.notification {
  padding: 1em 4em;
  text-align: center;
  position: relative;
  border-bottom: thin solid black;
  font-family: Montserrat,sans-serif;
  font-size: 14px;
}

.notification-warning {
  background-color: #f4f5e9;
}

.notification-informational {
  background-color: #efefef;
}

.notification-icon {
  position: absolute;
  top: .5em;
  left: 1em;
}

.notification-text {
  display: inline-block;
  max-width: 51em;  
  text-align: left;
}

.notification-closer {
  position: absolute;
  top: .6em;
  right: 1em;
}
.notification-closer, .notification-closer:link, .notification-closer:active, .notification-closer:visited, .notification-closer.a, .notification-closer.a:link, .notification-closer.a:active, .notification-closer.a:visited, .notification-closer a, .notification-closer a:link, .notification-closer a:active, .notification-closer a:visited {
  color: black;
  cursor: pointer;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
}
.notification-closer:hover, .notification-closer.a:hover, .notification-closer a:hover {
  background-color: white;
  background-color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.notification-button {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  top: -.5em;
  font-family: Montserrat,sans-serif;
  font-weight: 500;
  padding: 1rem 1rem;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  background: #002e5d;
}