Reinsurance
CSSA central drafting circle coordinates risk distribution across three peripheral syndicate nodes.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Loaders and spinners
- Use cases
- Loading and waiting, Workflow and approvals
- Industries
- Insurance, Cross-industry
- Style
- Technical · light stroke
- Set
- underwrite
- Tags
- ringcirclescaleloop
Companion assets
The same artwork, not animated. Derived from the entry’s own resting state, so it matches exactly.
Code
animation.svg
<svg xmlns="http://www.w3.org/2000/svg" fill="none" aria-hidden="true" class="pulsar pulsar-underwrite-reinsurance" data-pulsar="underwrite-reinsurance" viewBox="0 0 160 96"><line x1="80" x2="80" y1="48" y2="20" stroke="currentColor" stroke-dasharray="2 3" opacity=".3"></line><line x1="80" x2="114" y1="48" y2="68" stroke="currentColor" stroke-dasharray="2 3" opacity=".3"></line><line x1="80" x2="46" y1="48" y2="68" stroke="currentColor" stroke-dasharray="2 3" opacity=".3"></line><g class="core"><circle cx="80" cy="48" r="14" fill="currentColor" fill-opacity=".08" stroke="currentColor" stroke-width="1.5"></circle><circle cx="80" cy="48" r="18" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="4 4" stroke-width="1.5" class="core-ring"></circle></g><circle cx="80" cy="20" r="4" fill="var(--pulsar-accent, currentColor)" class="dock d1"></circle><circle cx="114" cy="68" r="4" fill="var(--pulsar-accent, currentColor)" class="dock d2"></circle><circle cx="46" cy="68" r="4" fill="var(--pulsar-accent, currentColor)" class="dock d3"></circle></svg>
animation.css
.pulsar-underwrite-reinsurance {
display: block;
width: 100%;
height: 100%;
}
.pulsar-underwrite-reinsurance .core-ring {
transform-origin: 80px 48px;
animation: underwrite-reinsurance-pulse 4s ease-in-out infinite;
}
.pulsar-underwrite-reinsurance .dock {
animation: underwrite-reinsurance-dock 4s ease-in-out infinite;
}
.pulsar-underwrite-reinsurance .d1 {
animation-delay: 0s;
}
.pulsar-underwrite-reinsurance .d2 {
animation-delay: 0.4s;
}
.pulsar-underwrite-reinsurance .d3 {
animation-delay: 0.8s;
}
@keyframes underwrite-reinsurance-pulse {
0%,
100% {
transform: rotate(0deg) scale(0.9);
}
50% {
transform: rotate(180deg) scale(1.15);
}
}
@keyframes underwrite-reinsurance-dock {
0%,
100% {
opacity: 0.3;
transform: scale(0.8);
}
50% {
opacity: 1;
transform: scale(1.2);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-underwrite-reinsurance .core-ring,
.pulsar-underwrite-reinsurance .dock {
animation: none;
transform: none;
opacity: 1;
}
}