
.ids-bundle-icon {
    max-width: 120px;
    align-self: center;
}

.animation-image-ids {
    width: 30%;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}