﻿.AnimatedButton4 
{
    border: 1px solid #AAAAAA;
    background: #EEEEEE;
    text-align: center;
    position: relative;
    font-size: 0;
    width: 200px;
    margin: 5px;
}

    .AnimatedButton4-ButtonColumn 
    {
        display: inline-block;
        width: 20%;
        font-size: 12px;
    }


    .AnimatedButton4-TextColumn {
        display: inline-block;
        width: 80%;
        font-size: 12px;
    }



.AnimatedButton4.Validating {
    /*border: 1px solid #000000;*/
    /*background: red;*/
    animation: pulse .60s infinite; /* Animate for 1.5 seconds on hover */
}

    @keyframes pulse {
        0% {
            background: #000000;
        }

        70% {
            background: #AAAAAA;
        }

        100% {
            background: #EEEEEE;
        }
    }


.AnimatedButton4.Transitioning 
{
    border: 1px solid #AAAAAA;
    background: green;
}


.AnimatedButton4.Asserting
{
    border: 1px solid #AAAAAA;
    background: blue;
}
