/*------------------------------------------------------------------------------
Title:          CSS for mobile home page
Date Created:   29 December 2013
Date Modified:  10 May 2015
------------------------------------------------------------------------------*/

.section_cell{
    padding:0px;
}

.flash{
    -webkit-animation: flash 1s ease-out;
    -webkit-animation-iteration-count: 1;
}

@-webkit-keyframes flash{
    0%, 100% {
        background-color:white;
        border-color:#D6F4FF;
        color:black;
    }
    
    70% {
        background-color:rgba(0,0,255,1);
        border-color:rgba(0,0,255,1);
        color:white;
    }
}

.loading_flash{
    -webkit-animation: flash 5s ease-out;
    -webkit-animation-delay: 2s;
    -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes loading_flash{
    0%,100%{
        background-color:white;
        border-color:#D6F4FF;
        color:black;
    }
    
    70% {
        background-color:rgba(0,0,255,1);
        border-color:rgba(0,0,255,1);
        color:white;
    }
}