﻿.image-loading-icon {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.image-loading-icon svg {
    width: 30px;
    height: 30px;
    -webkit-animation: imageloading-icon 1.2s linear infinite;
    animation: imageloading-icon 1.2 linear infinite;
}

@keyframes imageloading-icon {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}