﻿#spinnerDefault-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    z-index: 8000;
    display: flex; 
    justify-content: center;
    align-items: center;
}

.spinnerDefault-frame {
    display: inline-block;
    vertical-align: middle;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 6.5px solid transparent;
    border-top-color: #89be3e;
    animation: spinny 1s linear infinite;
}

.spinnerDefault-cover {
    background: transparent;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    z-index: 8002;
}

@keyframes spinny {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
