@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@600;700&display=swap");
.wp-sanal-tur-instance {
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.wp-sanal-tur-instance .hotspot-pulse {
animation: wpPulse 2s infinite ease-in-out;
}
@keyframes wpPulse {
0% {
transform: scale(1);
opacity: 0.8;
box-shadow: 0 0 0 0 rgba(242, 202, 80, 0.4);
}
70% {
transform: scale(1.15);
opacity: 1;
box-shadow: 0 0 0 12px rgba(242, 202, 80, 0);
}
100% {
transform: scale(1);
opacity: 0.8;
box-shadow: 0 0 0 0 rgba(242, 202, 80, 0);
}
}