.container {
  position: fixed;
  background: var(--secondary-color);
  right: -100%;
  top: 20px;
  z-index: 15;
  padding: 10px 80px 10px 10px;
  display: flex;
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-shadow: rgb(0 0 0 / 16%) 0px 8px 16px 0px;
}

.container.display {
  animation: display-message 0.35s ease-out forwards;
}
.container.hide {
  animation: hide-message 0.35s ease-in forwards;
}

@keyframes display-message {
  0% {
    right: -100%;
  }
  100% {
    right: 2%;
  }
}

@keyframes hide-message {
  0% {
    right: 2%;
  }
  100% {
    right: -100%;
  }
}

.status_container {
  background: #2a4634;
  height: 38px;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.close_container {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background: none;
  width: 20px;
  height: 20px;
  padding: 0px;
  outline: none;
  border: none;
}

.message {
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
}
