.loading{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #050516;
    z-index: 999999;
    text-align: center;
}

.loadingAnimation {
    margin-left: calc(50vw - 30px);
    margin-top: calc(50vh - 30px);
    border: 6px solid rgba(131, 52, 235, .3);
    border-top: 6px solid rgb(131, 52, 235); 

    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.disable{
    opacity: 0;
    transition: 1s all;
}

.loading2{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(131, 52, 235, .1);
    z-index: 999999;
    text-align: center;
}

.loadingAnimation2 {
    position: absolute;
    right: 20px;
    bottom: 20px;
    border: 6px solid rgba(131, 52, 235, .3);
    border-top: 6px solid rgb(131, 52, 235); 

    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}