/*
Theme Name: Terminal Blog Pro Child
Template: terminal-blog-pro-premium
Version: 1.0
*/

/* No @import here */

.author-social-contacts i {
    font-size: 1.5em;
}

.wishlist-button {
	background-color: rgba(71, 248, 255, 0.05);
	border: 2px solid #47F8FF;
	border-radius: 0.3em;
	display: inline-block;
	text-align: center;
	width: auto;
	max-width: 300px;
	animation: glowPulse 1s ease-in-out infinite; /* Only border glow here */
}

.wishlist-button .wishlist-text {
	animation: wishlistPulse 1s ease-in-out infinite; /* Only text scale/glow here */
	display: inline-block;
}


@keyframes wishlistPulse {
  0% {
    transform: scale(1);
	text-shadow: 0 0 6px white, 0 0 12px white, 0 0 18px white;
  }
  50% {
    transform: scale(1.02);
	text-shadow: 0 0 2px white, 0 0 4px white, 0 0 6px white;
  }
  100% {
    transform: scale(1);
	text-shadow: 0 0 6px white, 0 0 12px white, 0 0 18px white;
  }
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 4px rgba(71, 248, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 12px rgba(71, 248, 255, 1);
  }
  100% {
    box-shadow: 0 0 4px rgba(71, 248, 255, 0.4);
  } 
}
