﻿.input-group-addon
{
}
.form-control:focus
{
    background-color: rgb(50, 118, 177);
    border-color: rgb(40, 94, 142);
    color: rgb(255, 255, 255);
}
.row-centered 
{
    text-align:center;
}
.col-centered 
{
    display:inline-block;
    float:none;
    text-align:left;
    margin-right: -4px;
}
.logo 
{
    margin-bottom:10px;
}
.nopadding {
   padding: 0 !important;
   margin: 0 !important;
}
.nopadding-bottom {
    padding-bottom: 0 !important;
}
.field-validation-error > span {
    color:red;
    font-size:12px;
}
.glyphicon-refresh-animate {
    -animation: spin .7s infinite linear;
    -webkit-animation: spin2 .7s infinite linear;
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}