#loading {
    border-radius: 50%;
    z-index: 9999999999999;
    pointer-events: none !important;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #00000057;
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
}

#loading i {
    position: relative;
    z-index: 999999;
    font-size: 80px;
    color: #fff;
}

#loading i {
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}