.loading-icon{
    animation: loading 1s  infinite cubic-bezier(0, 0, 1, 1);
    width: 20px;
    height: 20px;
    font-style: inherit;
    outline: none;
    stroke: currentColor;
}

@keyframes loading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}