/*--- CSWeb -----------------------------------------------------------------*/

.navbar-cspro {
    position: relative;
    background-color: #072141;
}

.title-text-cspro {
    position: absolute;
    top: 38px;
    width: 218px;
    text-align: right;
    font-size: 225%;
    color: white;
    text-shadow: black 0.3em 0.3em 0.3em;
}

.version-text-cspro {
    position: absolute;
    top: 70px;
    width: 218px;
    text-align: right;
    font-size: 100%;
    color: white;
    text-shadow: black 0.3em 0.3em 0.3em;
}

.nav-text-cspro {
    color: white;
}

.cspro > li > a:hover,
.cspro > li > a:focus {
    text-decoration: none;
    background-color: #213B5B;
    color: white;
}

/* Maintains same properties as Bootstrap's nav > li > a */
.nav-li-a-placeholder-cspro {
    position: relative;
    display: block;
    padding: 10px 15px;
}

.alert-margin-cspro {
    margin: 10px 0px 10px;
}

/* Maintains same vertical fill as Bootstrap's alert with 1 line of text.*/
.alert-placeholder-cspro {
    padding: 26px;
}

/* Override SBAmin 2 */
@media(min-width:768px) {
    .sidebar {
        margin-top: 127px;
    }
}

/* Override Bootstrap */
.navbar-brand {
  height: 126px;
}

/*--- Sync Report -----------------------------------------------------------*/

#dictionary-list {
    list-style-type: square;
}

#dictionary-list > .selected {
    background-color: #eee;
}

#dictionary-list > li {
    cursor: pointer;
}

#dictionary-list > li:hover,
#dictionary-list > li:focus {
    background-color: #eee;
}

#dictionary-list > li > a:hover,
#dictionary-list > li > a:focus {
    text-decoration: none;
}

#dictionary-id-dropdown-container {
    display: inline-block;
}

/*--- Spinner ---------------------------------------------------------------*/

    /* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   speak for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.spinner {
    display:    none;
    position:   fixed;
    z-index:    10000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 )
                url('../img/ajax-loader.gif')
                50% 50%
                no-repeat;
}

/* When the body has the loading class, we turn the scrollbar off with overflow:hidden */
body.loading {
    overflow: hidden;
}

/* Anytime the body has the loading class, our spinner element will be visible */
body.loading .spinner {
    display: block;
}

