

@define-mixin buildSpinner $colorVar     {


    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;

    &::before {
        content: "";
        box-sizing: border-box;
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 8px solid var(--monster-bg-color-$colorVar);
        border-top-color: var(--monster-color-$colorVar);
        animation: monsterAnimationSpinnerKeyFrames 4s ease-in-out infinite;
    }
    
    
}