.el-loading-mask {
    position: fixed;
    z-index: 2000;
    background-color: rgba(255, 255, 255, .9);
    margin: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

.el-loading-mask.is-fullscreen {
    background-color: rgba(255, 255, 255, 0.7);
}

.loading-spinner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 20px;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.loading-spinner-dot {
    display: block;
    width: 14px;
    height: 14px;
    margin: 3px;
    border-radius: 100%;
    background-color: #522a82;
    -webkit-animation: loading-spinner-delay 1.6s infinite ease-in-out both;
            animation: loading-spinner-delay 1.6s infinite ease-in-out both;
}

.loading-spinner-dot:nth-child(1) {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s;
}

.loading-spinner-dot:nth-child(2) {
    -webkit-animation-delay: -0.2s;
            animation-delay: -0.2s;
}

@-webkit-keyframes loading-spinner-delay {
    0%,
    80%,
    100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    }
    40% {
    -webkit-transform: scale(1);
            transform: scale(1);
    }
}

@keyframes loading-spinner-delay {
    0%,
    80%,
    100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    }
    40% {
    -webkit-transform: scale(1);
            transform: scale(1);
    }
}