.ratstv-pum-lazy {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ratstv-pum-lazy.is-loaded,
.ratstv-pum-lazy.has-error {
    min-height: 0;
    display: block;
}

.ratstv-pum-lazy__spinner {
    width: 34px;
    height: 34px;
    border: 3px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    opacity: .55;
    animation: ratstv-pum-spin .75s linear infinite;
}

.ratstv-pum-lazy__error {
    padding: 1rem;
    text-align: center;
}

@keyframes ratstv-pum-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .ratstv-pum-lazy__spinner { animation-duration: 1.5s; }
}
