#notifications {
  position: fixed;
  bottom: 0px;
  right: 0;
  z-index: 1;
}

.notifications__close-button {
  display: block;
  background: transparent;
  border: 0;
  padding: 8px 16px;
  margin: 16px;
  margin-left: auto;
  color: #0076D0;
  font-family: 'Muli', sans-serif;
  font-size: 16px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

.notification {
  box-shadow: 4px 0px 10px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  padding: 16px;
  border: 1px solid #D7D7D7;
  border-radius: 4px;
  font-family: 'Muli', sans-serif;
  margin-bottom: 16px;
  color: #454545;
  font-weight: 600;
  border-left: 4px solid #0076D0;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.notification--success {
  border-left-color: #44D47E;
}

.notification--error {
  border-left-color: #D44478;
}

.notification a {
  color: #0076D0;
}

.notification__icon {
  width: 24px;
  flex: 0 0 24px;
  margin-right: 16px;
}

@media (max-width: 767px) {
  #notifications {
    left: 0;
  }

  .notifications {
    background: #ffffff;
    padding-top: 16px;
    box-shadow: 4px 0px 10px rgba(0, 0, 0, 0.15);
  }

  .notification {
    box-shadow: none;
  }

  .notification__icon {
    display: none;
  }
}