
.loading {
            position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: #F9F9FF;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .loading .circle {
            margin: auto;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgb(9, 9, 50) !important;
            animation: load 0.9s infinite linear;
        }
        @keyframes load {
            0% {
                transform: scale(0.5);
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(0);
            }
        }
