﻿
@keyframes moa-loading-ripple {
    0% {
        top: 95.6px;
        left: 95.6px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -2.2px;
        left: -2.2px;
        width: 195.6px;
        height: 195.6px;
        opacity: 0;
    }
}

@-webkit-keyframes moa-loading-ripple {
    0% {
        top: 95.6px;
        left: 95.6px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -2.2px;
        left: -2.2px;
        width: 195.6px;
        height: 195.6px;
        opacity: 0;
    }
}

.moa-loading-ripple-body {
    position: relative;
    margin: 0 auto;
    padding-top: 10px;
    width: 100px !important;
    height: 100px !important;
    -webkit-transform: translate(-50px, -50px) scale(0.5) translate(50px, 50px);
    transform: translate(-50px, -50px) scale(0.5) translate(50px, 50px);
}

.moa-loading-ripple-body div {
    box-sizing: content-box;
    position: absolute;
    border-width: 4.4px;
    border-style: solid;
    opacity: 1;
    border-radius: 50%;
    -webkit-animation: moa-loading-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: moa-loading-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.moa-loading-ripple-body div:nth-child(1) {
    border-color: #432585;
}

.moa-loading-ripple-body div:nth-child(2) {
    border-color: #432585;
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

#moa-loadingd-text {
    width: 100%;
    text-align: center;
    padding: 5px 10px;
    font-weight: bold;
}
