.notification {
  transition: all 0.3s ease-in-out;
  position: fixed;
  z-index: 999999999;
  display: flex;
  flex-direction: row;
  gap: 0;
  opacity: 0;
  top: -30px;
  left: calc(50% - 250px);
  height: auto;
  width: 500px;
  padding: 15px 20px;
  border-radius: 8px;
  background: #fff;
  color: #212529;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 575px) {
  .notification {
    left: calc(50% - 150px);
    width: 300px;
  }
}
.notification.active {
  opacity: 1;
  top: 10px;
}
.notification__text {
  flex: 1;
  line-height: 1.4;
  word-break: break-word;
}
.notification__close {
  transition: all 0.3s ease-in-out;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  cursor: pointer;
  font-size: 18px;
  text-align: right;
  opacity: 0.7;
  line-height: 1;
}
.notification__close:hover {
  opacity: 1;
}
.notification__close i {
  position: relative;
  top: 2px;
}

/*# sourceMappingURL=notification.css.map */
