
@import"../theme_fonts/theme.css";
.pop-up-alert-view {
  display: flex;
  justify-content: center;
  font-family:inter, Roboto, Arial, sans-serif;
}
.pop-up-alert {
  position: fixed;
  height: 50px;
  width: 200px;
  bottom: 0;
  margin-bottom: -100px;
  border-radius: 10px;
  background-color: var(--btn-pink);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s ease;
  padding: 10px;

}
.pop-up-alert > p {
  padding: 10px;
}
.pop {
  animation-name: example;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
}

@keyframes example {
  0% {
    margin-bottom: -100px;
  }
  25% {
    margin-bottom: 100px;
  }
  75% {
    margin-bottom: 100px;
  }
  100% {
    margin-bottom: -100px;
  }
}
