span.awla-rb-title {
    font-size: 35px;
    text-align: left;
    color: #fff;
    font-family: proxima-nova,sans-serif;
    font-weight: 900;
    font-style: normal;
}

.awla-rb-progress-container {
    background: #fff;
    display: block;
    overflow: hidden;
    position: relative;
    color: #fff;
    width: 100%;
    height: 60px;
}

.awla-rb-progress-container .awla-rb-amount {
    background-color: #5bb5d9;
    position: relative;
    width: 0;
    opacity: 0;
    height: 100%;
    line-height: 60px;
    max-width: 100%;
}
.awla-rb-amount-number {
    font-weight: 700;
    font-size: 25px;
    display: inline-block;
    padding: 0 10px;
    color: #ffffff!important;
    font-family: open sans, sans-serif;
    text-align: right;
    width: 100%;
    max-width: 100%;
}

@keyframes slideWidth{
    0%{width:0}
}

@-moz-keyframes slideWidth{
    0%{width:0}
}

@-o-keyframes slideWidth{
    0%{width:0}
}

.awla-rb-wrapper {
    -webkit-animation-duration: .2s;
    -moz-animation-duration: .2s;
    -o-animation-duration: .2s;
    animation-duration: .2s;

    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;

}

.awla-rb-wrapper.awla-animate .awla-rb-amount{
    opacity: 1;
    -webkit-animation: slideWidth 1s 1 cubic-bezier(.77,0,.175,1);
    -moz-animation: slideWidth 1s 1 cubic-bezier(.77,0,.175,1);
    -o-animation: slideWidth 1s 1 cubic-bezier(.77,0,.175,1);
    animation: slideWidth 1s 1 cubic-bezier(.77,0,.175,1);
  
}