/*------------------------------button loading css-----------------*/


div.sr_loading_box {
    width: 70px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.3);
    left: 50%;
}

/*Animations*/
.sr-animeLoading {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sr-animeLoading .srl-dots-container {
    width: auto;
    height: 30px;
    display: block;
    padding: 3px;
    animation: dots 600ms;
    animation-iteration-count: infinite;
    opacity: 0;
}

.srl-dots-container .srl-dots-circle {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 99px;
}

@keyframes dots {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}