/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 30/03/2020, 18:49:06
    Author     : aberi
*/
.bubblingG {
    text-align: center;
    width:70px;
    height:44px;
    margin: auto;
}

.bubblingG span {
    display: inline-block;
    vertical-align: middle;
    width: 9px;
    height: 9px;
    margin: 22px auto;
    background: rgb(145,5,31);
    border-radius: 44px;
    -o-border-radius: 44px;
    -ms-border-radius: 44px;
    -webkit-border-radius: 44px;
    -moz-border-radius: 44px;
    animation: bubblingG 0.775s infinite alternate;
    -o-animation: bubblingG 0.775s infinite alternate;
    -ms-animation: bubblingG 0.775s infinite alternate;
    -webkit-animation: bubblingG 0.775s infinite alternate;
    -moz-animation: bubblingG 0.775s infinite alternate;
}

#bubblingG_1 {
    animation-delay: 0s;
    -o-animation-delay: 0s;
    -ms-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
}

#bubblingG_2 {
    animation-delay: 0.2295s;
    -o-animation-delay: 0.2295s;
    -ms-animation-delay: 0.2295s;
    -webkit-animation-delay: 0.2295s;
    -moz-animation-delay: 0.2295s;
}

#bubblingG_3 {
    animation-delay: 0.469s;
    -o-animation-delay: 0.469s;
    -ms-animation-delay: 0.469s;
    -webkit-animation-delay: 0.469s;
    -moz-animation-delay: 0.469s;
}



@keyframes bubblingG {
    0% {
        width: 9px;
        height: 9px;
        background-color:rgb(171,99,126);
        transform: translateY(0);
    }

    100% {
        width: 21px;
        height: 21px;
        background-color:rgb(145,5,31);
        transform: translateY(-18px);
    }
}

@-o-keyframes bubblingG {
    0% {
        width: 9px;
        height: 9px;
        background-color:rgb(171,99,126);
        -o-transform: translateY(0);
    }

    100% {
        width: 21px;
        height: 21px;
        background-color:rgb(145,5,31);
        -o-transform: translateY(-18px);
    }
}

@-ms-keyframes bubblingG {
    0% {
        width: 9px;
        height: 9px;
        background-color:rgb(171,99,126);
        -ms-transform: translateY(0);
    }

    100% {
        width: 21px;
        height: 21px;
        background-color:rgb(145,5,31);
        -ms-transform: translateY(-18px);
    }
}

@-webkit-keyframes bubblingG {
    0% {
        width: 9px;
        height: 9px;
        background-color:rgb(171,99,126);
        -webkit-transform: translateY(0);
    }

    100% {
        width: 21px;
        height: 21px;
        background-color:rgb(145,5,31);
        -webkit-transform: translateY(-18px);
    }
}

@-moz-keyframes bubblingG {
    0% {
        width: 9px;
        height: 9px;
        background-color:rgb(171,99,126);
        -moz-transform: translateY(0);
    }

    100% {
        width: 21px;
        height: 21px;
        background-color:rgb(145,5,31);
        -moz-transform: translateY(-18px);
    }
}