.goal-bar {
  background-color: #181A28;
  margin-top: 8px;
  width: 100%;
  height: 18px;
  border-radius: 99px;
  position: relative;
  overflow: hidden; }
  .goal-bar span {
    position: absolute;
    z-index: 1;
    right: 0;
    font-size: 14px;
    font-weight: 600;
    padding-right: 5px;
    top: 50%;
    transform: translateY(-50%); }
  .goal-bar::after {
    content: "";
    position: absolute;
    width: var(--goal_percent);
    height: 18px;
    background-color: #45c2f0;
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent); }

@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: #2196f3;
  box-shadow: 0 0 0px #2195f300, 0 0 5px #2195f300, 0 0 10px #2195f300, 0 0 15px #2195f300; }

@keyframes glow {
  0% {
    box-shadow: 0 0 0px #2195f300, 0 0 5px #2196f3aa, 0 0 10px #2196f3cc, 0 0 15px #2196f3dd; }
  50% {
    box-shadow: 0 0 5px #2196f3cc, 0 0 10px #2196f3dd, 0 0 15px #2196f3ee, 0 0 30px #2196f3ff; }
  100% {
    box-shadow: 0 0 0px #2195f300, 0 0 5px #2196f3aa, 0 0 10px #2196f3cc, 0 0 15px #2196f3dd; } }

.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: #2196f3;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  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; }
