﻿h4 a,
h4 a:hover
{
    color: #FFF;
    text-decoration: none;
}
.header {
    padding-bottom: 1rem;
    border-bottom: .05rem solid #e5e5e5;
    background: #2b96cc;
    padding-top: 20px;
    color: #FFF;
    margin-bottom: 25px;
}

.column-center {
    float: none;
    margin: 0 auto;
}

.login {
    padding: 30px!important;
    background: #ececec;
}

.login table {
    width: 100%!important;
}

.w49p {
    width: 49%;
}

.margin-10
{
    margin-top: 10px;
    margin-bottom: 10px;
}
.margin-top-10
{
    margin-top: 10px;
}
.margin-bottom-20 {
    margin-bottom: 20px;
}
.margin-left-n-20
{
    margin-left: -20px;
}
.display-block
{
    display: block;
}
.nav-link
{
    color: #FFF;
}
.nav-link.active
{
    color: #2c96cc!important;
    background-color: #FFF!important;
}
    .nav-link.active:hover
    {
        color: #2c96cc!important;
    }
.nav-link:hover
{
    color: #FFF!important;
}

.logout,
.logout:hover
{
    color: #FFF;
    text-decoration: none;
}

.table th
{
    background: #EEE!important;
}

.filter-cb input[type='checkbox']
{
    margin-right: 6px;
}
.filter-cb label
{
    vertical-align: middle;
}

.modal-popup
{
    background: #FFF;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}
    .modal-popup .modal-title
    {
        background: #2b96cc;
        padding: 12px;
        font-size: 17px;
        color: #FFF;
    }
    .modal-popup .modal-wrapper-content
    {
        padding: 12px;
    }


.loaderWrap
{
    border: 8px solid transparent;
    border-radius: 50%;
    border-top: 8px solid #2b96cc;
    border-bottom: 8px solid #2b96cc;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 35%;
    left: 50%;
    z-index: 99999;
    display: none;
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}