@keyframes logoAnim {
  0% {
    transform: translateY(0px); }
  50% {
    transform: translateY(5px); }
  100% {
    transform: translateY(0px); } }

.logo-anim {
  animation: logoAnim 3s infinite ease-in-out;
  transition: all .1s; }
  .logo-anim:hover {
    filter: brightness(90%); }

.border-brand-neon {
  border-color: #f57805;
  box-shadow: 0 0 5px #f5790575, 0 0 10px #f5790575, 0 0 20px #f5790575, 0 0 25px #f5790575; }

@keyframes glow {
  0% {
    box-shadow: 0 0 5px #f5790575, 0 0 10px #f5790575, 0 0 20px #f5790575, 0 0 25px #f5790575; }
  50% {
    box-shadow: 0 0 5px #f57805bb, 0 0 15px #f57805cc, 0 0 25px #f57805ee, 0 0 30px #f57805ff; }
  100% {
    box-shadow: 0 0 5px #f5790575, 0 0 10px #f5790575, 0 0 20px #f5790575, 0 0 25px #f5790575; } }

.animate-glow {
  animation: glow 3s ease-in-out infinite; }

@keyframes popupSlideUp {
  0% {
    transform: translateY(20px);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

@keyframes popupSlideDown {
  0% {
    transform: translateY(0);
    opacity: 1; }
  100% {
    transform: translateY(20px);
    opacity: 0; } }

.popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #333;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease;
  max-width: 90vw;
  word-break: break-word;
  text-align: left; }

.popup.show {
  animation: popupSlideUp 0.4s forwards;
  pointer-events: auto; }

.popup.hide {
  animation: popupSlideDown 0.4s forwards; }

@keyframes star-in {
  0% {
    opacity: 0;
    transform: translateY(4px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.star-in {
  opacity: 0;
  transform: translateY(4px);
  animation: star-in 0.4s ease forwards; }

.star-delay-1 {
  animation-delay: 0.1s; }

.star-delay-2 {
  animation-delay: 0.3s; }

.star-delay-3 {
  animation-delay: 0.5s; }

.star-delay-4 {
  animation-delay: 0.7s; }

.star-delay-5 {
  animation-delay: 0.9s; }

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes slideUp {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(-10%); } }

.modal_show_slide {
  animation: slideDown cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation-duration: 0.5s; }

.modal_hide_slide {
  animation: slideUp cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation-duration: 0.5s; }

.swal2-popup {
  border-radius: 8px; }

/* Drawer */
@keyframes fadeIn {
  from {
    background-color: rgba(0, 0, 0, 0); }
  to {
    background-color: rgba(0, 0, 0, 0.4); } }

@keyframes fadeOut {
  from {
    background-color: rgba(0, 0, 0, 0.4); }
  to {
    background-color: rgba(0, 0, 0, 0); } }

#checkout-drawer {
  animation: fadeIn 0.4s forwards; }

#checkout-drawer.fade-out {
  animation: fadeOut 0.4s forwards; }

@keyframes slideIn {
  from {
    transform: translateX(500px); }
  to {
    transform: translateX(0px); } }

@keyframes slideOut {
  from {
    transform: translateX(0px); }
  to {
    transform: translateX(500px); } }

.slide-in {
  animation: slideIn 0.4s forwards; }

.slide-out {
  animation: slideOut 0.4s forwards; }
