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

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

.animate-whatsapp {
  animation: bounce 1s ease-in-out infinite;
}

.scroll::-webkit-scrollbar {
  display: none;
}

.custom-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 4px;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  margin-right: 8px;
  z-index: 1;
}

.custom-checkbox:checked {
  background-color: #ff302c;
  border-color: #ff302c;
}

.custom-checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}