﻿.app-loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.app-loader {
    width: 150px;
    height: 150px;
    border: 7px solid #7142e9;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation .7s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
