﻿
.contain-to-grid .top-bar
{
    margin-bottom: 3em;
}

.contain-to-grid, .top-bar, .top-bar-section li:not(.has-form) a:not(.button)
{
    background: #2B4F81;
}

.spacer
{
    margin: 25px 0;
    clear: both;
}



/* navbar */
.navbar
{
    background-color: #2B4F81;
    border-color: #E7E7E7;
    color: #fff;
    margin-bottom: 3em;
}

.navbar-brand
{
    text-transform: uppercase;
}

.navbar-inverse .navbar-brand, .navbar-inverse .navbar-nav > li > a
{
    color: #fff;
}

    .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus
    {
        color: #8d5b7c;
        background-color: transparent;
        -webkit-transition: color .4s ease-out;
        -webkit-transition-property: color;
        -webkit-transition-duration: 0.4s;
        -webkit-transition-timing-function: ease-out;
        -webkit-transition-delay: initial;
        -moz-transition: color .4s ease-out;
        -ms-transition: color .4s ease-out;
        -o-transition: color .4s ease-out;
        transition: color .4s ease-out;
        transition-property: color;
        transition-duration: 0.4s;
        transition-timing-function: ease-out;
        transition-delay: initial;
    }

    .navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:hover, .navbar-inverse .navbar-nav>.open>a:focus {
        background-color: #2B4F81;
        color: #fff;
    }   

    .dropdown-menu>li>a:hover {
        color: #8d5b7c;
        background-color: transparent;
        -webkit-transition: color .4s ease-out;
        -webkit-transition-property: color;
        -webkit-transition-duration: 0.4s;
        -webkit-transition-timing-function: ease-out;
        -webkit-transition-delay: initial;
        -moz-transition: color .4s ease-out;
        -ms-transition: color .4s ease-out;
        -o-transition: color .4s ease-out;
        transition: color .4s ease-out;
        transition-property: color;
        transition-duration: 0.4s;
        transition-timing-function: ease-out;
        transition-delay: initial;

        font-weight:600;
    }

.admin-panel
{
    font-size: 0.8em;
    color: #666666;
    display: inline;
}

.admin-row
{
    margin-bottom: 2em;
}

.user-name
{
    color: #000000;
    font-weight: 900;
}

button, .button
{
    background: #2B4F81;
}

.badge
{
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 10px;
    color: #200B0B;
    background-color: #fff;
}

.col-centered
{
    float: none;
    margin: 0 auto;
}

.nav-tabs
{
    margin-bottom: 3em;
}
/* forms */

fieldset
{
    border-radius: 5px;
}

legend
{
    margin-bottom: 10px;
    width: 30%;
}

.form
{
    padding: 10px;
}

.radioButtonList {
    list-style: none;
    margin: 10;
    padding: 10;
}

    .radioButtonList.horizontal li {
        display: inline;
    }

    .radioButtonList label {
        display: inline;
    }

.btn-primary
{
    color: #fff;
    background-color: #2B4F81;
    border-color: #285e8e;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary
    {
        background-color: #8d5b7c;
    }

/* table */
.table
{
    font-size: 1.1rem;
    word-wrap: break-word;
}


.table-header
{
    background-color: #4976b4;
    border: solid 2px #4976b4;
}

.table-striped > tbody > tr > td
{
    background-color: #dadfea;
}

.red
{
    color: #843534;
}

.green
{
    color: #2b542c;
}

.yellow
{
    color: #8a6d3b;
}

/* footer */

hr
{
    border: solid #dddddd;
    border-width: 1px 0 0;
    clear: both;
    margin: 3.25rem 0 2.1875rem;
    height: 0;
}

.copyright
{
    font-size: 0.85em;
}

/* CSS Loading animation */

.bubblingG
{
    position: fixed;
    z-index: 99999;
    top: 50%;
    left: 50%;

    text-align: center;
    width: 80px;
    height: 50px;
}

    .bubblingG span
    {
        display: inline-block;
        vertical-align: middle;
        width: 10px;
        height: 10px;
        margin: 25px auto;
        background: #2B4F81;
        -moz-border-radius: 50px;
        -moz-animation: bubblingG 1.2s infinite alternate;
        -webkit-border-radius: 50px;
        -webkit-animation: bubblingG 1.2s infinite alternate;
        -ms-border-radius: 50px;
        -ms-animation: bubblingG 1.2s infinite alternate;
        -o-border-radius: 50px;
        -o-animation: bubblingG 1.2s infinite alternate;
        border-radius: 50px;
        animation: bubblingG 1.2s infinite alternate;
    }

#bubblingG_1
{
    -moz-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    -ms-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
}

#bubblingG_2
{
    -moz-animation-delay: 0.36s;
    -webkit-animation-delay: 0.36s;
    -ms-animation-delay: 0.36s;
    -o-animation-delay: 0.36s;
    animation-delay: 0.36s;
}

#bubblingG_3
{
    -moz-animation-delay: 0.72s;
    -webkit-animation-delay: 0.72s;
    -ms-animation-delay: 0.72s;
    -o-animation-delay: 0.72s;
    animation-delay: 0.72s;
}

@-moz-keyframes bubblingG
{
    0%
    {
        width: 10px;
        height: 10px;
        background-color: #2B4F81;
        -moz-transform: translateY(0);
    }

    100%
    {
        width: 24px;
        height: 24px;
        background-color: #FFFFFF;
        -moz-transform: translateY(-21px);
    }
}

@-webkit-keyframes bubblingG
{
    0%
    {
        width: 10px;
        height: 10px;
        background-color: #2B4F81;
        -webkit-transform: translateY(0);
    }

    100%
    {
        width: 24px;
        height: 24px;
        background-color: #FFFFFF;
        -webkit-transform: translateY(-21px);
    }
}

@-ms-keyframes bubblingG
{
    0%
    {
        width: 10px;
        height: 10px;
        background-color: #2B4F81;
        -ms-transform: translateY(0);
    }

    100%
    {
        width: 24px;
        height: 24px;
        background-color: #FFFFFF;
        -ms-transform: translateY(-21px);
    }
}

@-o-keyframes bubblingG
{
    0%
    {
        width: 10px;
        height: 10px;
        background-color: #2B4F81;
        -o-transform: translateY(0);
    }

    100%
    {
        width: 24px;
        height: 24px;
        background-color: #FFFFFF;
        -o-transform: translateY(-21px);
    }
}

@keyframes bubblingG
{
    0%
    {
        width: 10px;
        height: 10px;
        background-color: #2B4F81;
        transform: translateY(0);
    }

    100%
    {
        width: 24px;
        height: 24px;
        background-color: #FFFFFF;
        transform: translateY(-21px);
    }
}
