#notification-1 {
  bottom: 5.3%;
  left: 1.3%;
  border-radius: 0;
  box-shadow: 0 1px 15px 1px rgba(2, 2, 2, 0.18);
  position: fixed;
  display: none;
  z-index: 9999;
}

#notification-1 .notification-close {
  font-size: 24px;
  color: #000000;
  cursor: pointer;
}

#notification-1 .notification-block {
  display: flex;
  align-items: center;
}

#notification-1 .notification-img {
  width: 60px;
  background: #046a04;
  display: flex;
  align-items: center;
  justify-content: center;
}

#notification-1 .notification-img span {
  font-size: 40px;
  color: #ffffff;
}

#notification-1 .notification-text-block {
  background: #ffffff;
  width: 250px;
  padding: 10px;
  box-sizing: border-box;
}

#notification-1 .notification-title {
  font-size: 16px;
  font-weight: bold;
  color: #0a0a0a;
  margin-bottom: 5px;
}

#notification-1 .notification-text {
  font-size: 14px;
  color: #000000;
}

.fadeInLeft {
  animation: fadeInLeft 0.6s ease-in forwards;
}

.fadeOutLeft {
  animation: fadeOutLeft 0.6s ease-out forwards;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-20px); }
}
