/**/

@-webkit-keyframes text-t {
    0% {
        color: #000;
    }
    50% {
        color: #fff;
    }
    100% {
        color: #000;
    }
}

@-moz-keyframes text-t {
    0% {
        color: #000;
    }
    50% {
        color: #fff;
    }
    100% {
        color: #000;
    }
}

@-o-keyframes text-t {
    0% {
        color: #000;
    }
    50% {
        color: #fff;
    }
    100% {
        color: #000;
    }
}

@keyframes text-t {
    0% {
        color: #000;
    }
    50% {
        color: #fff;
    }
    100% {
        color: #000;
    }
}

.text-t {
    cursor: pointer;
    -webkit-animation: text-t 1000ms infinite;
    -moz-animation: text-t 1000ms infinite;
    -o-animation: text-t 1000ms infinite;
    animation: text-t 1000ms infinite;
}

@keyframes bounce-t {
    0% {
        margin-top: 0;
    }
    50% {
        margin-top: -5px;
    }
    100% {
        margin-top: 0;
    }
}




@keyframes btn-l { 
    0%  {
        transform: rotate(-3deg);
    } 
    50% { 
        transform: rotate(0deg);
    }
    100% { 
        transform: rotate(-3deg);
    }
}
@keyframes circleb { 
    0%  {
        transform: scale(.99);
    } 
    50% { 
        transform: scale(1.01);
    }
    100% { 
        transform: scale(.99);
    }
}