.notification {
  position: fixed;
  /* top: 0; */
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  z-index: 9999;
  width: 80%;
  font-size: 14px;
}

.notification_inner {
  background-color: #f5f4ed;
  color: rgb(121, 84, 72);
  border: 2px solid #795448;
  padding: 10px 20px 10px 50px;
  border-radius: 10px;
  position: relative;
}

.notification img {
  height: 20px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.notification.active {
  transform: translateX(-50%) translateY(220px);
}

.notification_content {
  font-size: 14px;
}
