/* Notification Section starts */
.notification {
  position: fixed;
  top: 3em;
  left: 50%;
  translate: -50% 0%;
  transition: all 0.2s ease-in-out;
  z-index: -1;
  border-radius: 10px;
  font-family: Poppins;
  width: max-content;
  font-size: 1.1em;
  transform: translateY(calc(-50% * 1.2));
  opacity: 0;
  scale: 0.8;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.8em;
  line-height: 1;
  padding: 1em 1.5em;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.2);
  color: rgba(41, 93, 49, 1);
  background-color: rgba(237, 247, 237, 1);
}

.notification.show {
  opacity: 1;
  scale: 1;
  z-index: 25;
}

.notification.error {
  color: rgba(202, 60, 60, 1);
  background-color: rgba(250, 236, 236, 1);
}

.notification>div {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
}

.notification .error-icon,
.notification.error .done-icon {
  display: none;
}

.notification.error .error-icon {
  display: flex;
}

/* Notification Section ends */

@media (max-width : 768px) {
  .notification {
    font-size: 0.9em;
  }
}