.spinner-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,25);
}

.spinner-container .spinner-group{
    text-align: center;
    height: auto;
    width: auto;
}

.spinner-container .spinner {
    width: 65px;
    height: 65px;
    margin: 0px auto;
    background-image: url('spinner.svg');
    background-repeat: no-repeat;
    background-size: contain;
    animation-name: spin;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}