@keyframes lds-ripple {
    0% {
        top: 94px;
        left: 94px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 37px;
        left: 37px;
        width: 114px;
        height: 114px;
        opacity: 0.4;
    }
}

@-webkit-keyframes lds-ripple {
    0% {
        top: 94px;
        left: 94px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 37px;
        left: 37px;
        width: 114px;
        height: 114px;
        opacity: 0.4;
    }
}

.lds-ripple {
    position: relative;
    display: inline-block;
}

.lds-ripple div {
    box-sizing: content-box;
    position: absolute;
    border-width: 6px;
    border-style: solid;
    opacity: 1;
    border-radius: 50%;
    -webkit-animation: lds-ripple 1.2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: lds-ripple 1.2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(1) {
    border-color: #001f6d;
}

.lds-ripple div:nth-child(2) {
    border-color: #f2a900;
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.lds-ripple {
    width: 200px !important;
    height: 200px !important;
    -webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
    transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
}