.alert-wrapper {
  position: fixed;
  right: 20px;
  top: 10%;
  z-index: 5;
}

.alert-wrapper .alert {
  position: relative;
  right: -420px;
  top: 0;
  opacity: 0;
  padding: 20px;
  margin-bottom: 10px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  height: auto;
  width: 420px;
  -webkit-box-shadow: -1px 2px 6px 1px rgba(0, 0, 0, 0.1);
          box-shadow: -1px 2px 6px 1px rgba(0, 0, 0, 0.1);
}

.alert-wrapper .alert h2 {
  color: #60ba9a;
}

.alert-wrapper .alert p {
  margin-top: 16px;
  font-size: 14px;
  color: #4a4a4a;
}

.alert-wrapper .alert.error-red h2 {
  color: #f34f59;
}

.alert-wrapper .alert.no-data-green h2 {
  color: #60ba9a;
}

.alert-wrapper .alert.success-blue h2 {
  color: #338bf8;
}