body {
  margin: 0;
  padding: 0;
}
.notification-area {
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 10000;
}
.notification {
  width: 330px;
  position: relative;
  border-radius: 5px;
  margin-top: 20px;
  padding: 18px;
  -webkit-box-shadow: var(--shadow);
  -moz-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(calc(-100% - 10px), 0);
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.notification-success {
  background: rgba(82, 196, 26, 0.9);
}
.notification-warning {
  background: rgba(250, 173, 20, 0.9);
}
.notification-error {
  background: rgba(245, 34, 45, 0.9);
}
.notification-visible {
  transform: translate(0, 0);
  opacity: 1;
}
.notification-info {
  background: rgba(24, 144, 255, 0.9);
}
.notification__icon {
  float: left;
  height: 40px;
  width: 50px;
  position: relative;
  top: 30px;
  left: 15px;
  font-size: 30px;
  color: #64963b;
}
.notification__exit-icon {
  height: 16px;
  top: 18px;
  right: 18px;
  position: absolute;
  color: var(--bg);
  cursor: pointer;
}
.notification__exit-icon:hover {
  color: var(--muted-hover);
}
.notification__content {
  width: calc(100% - 16px);
  position: relative;
}
.notification-title {
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  color: var(--text);
}
.notification-message {
  font-weight: 400;
  margin: 0;
  font-size: 14px;
  color: var(--text);
}
@media (max-width: 600px) {
  .notification {
    top: 0px;
    left: 0px;
    width: 100%;
  }
  .notification-area {
    top: -10px;
    left: 10px;
    margin: 0;
    width:calc(100% - 55px);
    max-height: 100px;
    position: fixed;
    z-index: 10000;
  }
}
