.spinnerContainer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /*background-color: rgba(0, 0, 0, 0.8);*/
}

.loading {
    display: flex;
    justify-content: center;
}

.loading::after {
    display: flex; /* establish flex container */
    flex-direction: row; /* make main axis horizontal (default value) */
    justify-content: center; /* center items horizontally, in this case */
    align-items: center; /* center items vertically, in this case */
    height: 100%; /* for demo purposes */
    content: "";
    width: 80px;
    height: 80px;
    border: 10px solid #036E36;
    border-top-color: #fff;
    border-radius: 50%;
    animation: loading 1s ease infinite;
}


.centerInParent{
    display: flex; /* establish flex container */
    flex-direction: row; /* make main axis horizontal (default value) */
    justify-content: center; /* center items horizontally, in this case */
    align-items: center; /* center items vertically, in this case */
    height: 100%; /* for demo purposes */
}

@keyframes loading {
    to {
        transform: rotate(1turn);
    }
}