﻿.spinnerWrapper {
    overflow: hidden;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    margin: auto;
    position: absolute;
    display: none;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #f25a41;
    border-radius: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    animation: spin 1s infinite linear;
    z-index: 5;
}

.spinnerBackground {
    opacity: 0.5;
    background-color: lightgray;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(540deg);
    }
}
