.toast {
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  display: flex;
  justify-content: center;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  z-index: 99;
}

.toast .msg {
  background: #a4d2eb;
  color: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  padding: 8px 60px;
  font-size: 16px;
  font-weight:500;
  text-align: center;
}

@keyframes sympleBeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.075);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.925);
  }
  100% {
    transform: scale(1);
  }
}