@import url("https://fonts.googleapis.com/css2?family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap");

html,
body {
  font-family: "Winky Sans", sans-serif;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}


.alarme-piscando {
  animation: piscar 1s infinite;
}

.container {
  flex: 1;
  padding-top: 70px;
}

.container.mx-auto.flex.flex-col.items-center.space-y-2.text-center {
  padding: 0px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f97316;
}

.sucesso-img-bounce {
  width: 9rem;
  height: 9rem;
  margin: 0 auto;
  display: block;
  animation: bounceSuave 2s infinite ease-in-out;
}

#spinner.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}


#btn-active {
  display: inline-block;
  padding: 12px 22px;
  background-color: #3490dc;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 14px;
  pointer-events: none;
}

#erroPedidoVazio {
  opacity: 0;
  transition: opacity 0.5s ease;
}


@keyframes bounceSuave {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes piscar {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  footer .grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer .grid>div {
    border-right: none;
    padding-right: 0;
    width: 100%;
    max-width: 500px;
  }

  footer .grid>div .flex {
    justify-content: center;
  }
}