2025-09-15 09:58:16 +02:00
|
|
|
.overlay {
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pulse {
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 90px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pulse::before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: -12px;
|
|
|
|
|
border-radius: 9999px;
|
|
|
|
|
border: 12px solid rgba(255, 255, 255, 0.6);
|
2025-09-15 15:41:15 +01:00
|
|
|
animation: pulse var(--call-ring-duration-s) ease-out infinite;
|
|
|
|
|
animation-delay: 1s;
|
|
|
|
|
opacity: 0;
|
2025-09-15 09:58:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
color: var(--cpd-color-text-on-solid-primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes pulse {
|
|
|
|
|
0% {
|
|
|
|
|
transform: scale(0.95);
|
|
|
|
|
opacity: 0.7;
|
2025-09-15 15:41:15 +01:00
|
|
|
transform: scale(0);
|
|
|
|
|
opacity: 1;
|
2025-09-15 09:58:16 +02:00
|
|
|
}
|
2025-09-15 15:41:15 +01:00
|
|
|
35% {
|
2025-09-15 09:58:16 +02:00
|
|
|
transform: scale(1.15);
|
|
|
|
|
opacity: 0.15;
|
|
|
|
|
}
|
2025-09-15 15:41:15 +01:00
|
|
|
50% {
|
2025-09-15 09:58:16 +02:00
|
|
|
transform: scale(1.2);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
2025-09-15 15:41:15 +01:00
|
|
|
50.01% {
|
|
|
|
|
transform: scale(0);
|
|
|
|
|
}
|
|
|
|
|
85% {
|
|
|
|
|
transform: scale(0);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
transform: scale(0);
|
|
|
|
|
}
|
2025-09-15 09:58:16 +02:00
|
|
|
}
|