@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes grow {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-fade {
  animation: fade 0.6s ease-in-out;
}

.animate-grow {
  animation: grow 0.8s ease-out;
}

.animate-blink {
  animation: blink 2s infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}




button.Md\:hidden.text-gray-700 {
	display:none;
}

@media screen and (max-width: 768px) {
button.Md\:hidden.text-gray-700 {
	display:block;
}
.md\:flex.md\:items-center.md\:space-x-6 {
    background: #ffffffed;
    padding: 20px;
    position: absolute;
    right: 10px;
    top: 50px;
    gap: 10px;
    display: grid;
    flex-direction: column;
    color: #fff;
}
.md\:flex.md\:items-center.md\:space-x-6.hidden {
	display:none;
}
}