body {
    margin: auto;
    background-color: #FFF;
}

/*=== common css ==*/ 
.mvh-content{
    min-height:calc(100vh - 187px);
}
.space-top-0 {
    margin-top: 0px !important;
}
.space-top-5 {
    margin-top: 5px !important;
}

.space-top-10 {
    margin-top: 10px !important;
}

.space-top-20 {
    margin-top: 20px !important;
}

.space-top-50 {
    margin-top: 50px !important;
}

.space-top-100 {
    margin-top: 100px !important;
}

.space-bottom-5 {
    margin-bottom: 5px !important;
}

.space-bottom-10 {
    margin-bottom: 10px !important;
} 

.space-bottom-20 {
    margin-bottom: 20px !important;
}

.space-bottom-50 {
    margin-bottom: 50px !important;
}

.space-bottom-100 {
    margin-bottom: 100px !important;
} 

.space-unset{ margin: unset !important;}

.margin-left-5 {
    margin-left: 5px !important;
}

.margin-right-5 {
    margin-right: 5px !important;
} 
.padding-margin-0 {
    padding-top: unset !important;
    margin-top: unset !important;
}
.padding-15 {
    padding: 15px !important; 
}
.border-radius-12{
    border-radius: 12px !important;
    overflow: hidden;
}
.border-top{ border-top: 1px solid rgba(0, 0, 0, 0.2);}
.border-bottom{ border-bottom: 1px solid rgba(0, 0, 0, 0.2);}
.border-left{ border-left: 1px solid rgba(0, 0, 0, 0.2);}
.border-right{ border-right: 1px solid rgba(0, 0, 0, 0.2);}
.border-light-color{
    border-color: rgba(255, 255, 255, 0.2) !important;
}
.border-width-2{
    border-width:2px !important;
}
.box-shadow{ box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);}


.font-weight-bold {
    font-weight: bold !important;
}
.alert {
    padding: 6px 15px 5px;
    margin-bottom: 20px !important;
    border: 1px solid transparent;
    border-radius: 4px !important;
}

.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -5px;
}

.btn{
    padding-left: 20px !important;
    padding-right: 20px !important;
    border-radius: 25px !important;
}
 
.btn-dark-theme {
    background-color: #23376d;
    color: #FFF;
}

.btn-dark-theme:hover,
.btn-dark-theme:focus {
    background-color: #334f9d !important;
    color: #FFF !important;
}

.btn-orange-theme {
    background-color: #f15a29;
    color: #FFF !important;
}

.btn-orange-theme:hover,
.btn-orange-theme:focus {
    background-color: #e9450f !important;
    color: #FFF !important;
}
.text-dark-theme {
    color: #23376d !important;
}

.text-orange-theme {
    color: #f15a29 !important;
}
.text-white{ 
    color: #FFF !important;
}
.bg-gray-light {
    background-color: #f1f1f1 !important;
}
.bg-orange-theme {
    background-color: #f15a29 !important;
}
.bg-dark-theme {
    background-color: #23376d !important;
}

/*=== Datatable css ==*/
#dataTable_filter input, #dataTable_length select{ 
    border: 1px solid #CCC;
}

/* Pagination wrapper */
.dataTables_paginate {
    margin-top: 15px;
    text-align: right;
    font-size: 14px;
}

/* All pagination buttons */
.dataTables_paginate .paginate_button {
    display: inline-block;
    padding: 6px 12px;
    margin-left: 2px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #23376d;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
}

/* Hover */
.dataTables_paginate .paginate_button:hover {
    background-color: #f5f5f5;
    color: #23376d;
    border-color: #ddd;
}

/* Current (active) page */
.dataTables_paginate .paginate_button.current {
    background-color: #23376d;
    color: #fff !important;
    border-color: #23376d;
    cursor: default;
}

/* Disabled buttons */
.dataTables_paginate .paginate_button.disabled,
.dataTables_paginate .paginate_button.disabled:hover {
    color: #999;
    background-color: #f9f9f9;
    border-color: #ddd;
    cursor: not-allowed;
}

/* Previous / Next buttons */
.dataTables_paginate .paginate_button.previous,
.dataTables_paginate .paginate_button.next {
    font-weight: 500;
}

/* Remove focus outline */
.dataTables_paginate .paginate_button:focus {
    outline: none;
}

/*=== header css ==*/
.header {
    background-color: #FFF;
    padding: 5px 0 0px;
}

.header .row {
    display: flex;
    align-items: center;
}

.header .logo img {
    max-height: 90px;
}

.header .header-title h2 {
    font-weight: 700;
    font-size: 22px;
    color: #23376d;
    padding: 0 0 10px;
    margin: 0;
    text-transform: uppercase;
}

.header .header-title h4 {
    font-weight: 500;
    font-size: 16px;
    color: #000;
    padding: 0;
    margin: 0;
}

.header .navbar-dark-theme {
    margin-top: 10px;
    background-color: #23376d;
    border-radius: 0px;
    margin-bottom: 0px;
    height: auto;
    min-height: auto;
    padding: 0px;
}

.header .navbar-dark-theme .navbar-toggle .icon-bar {
    background-color: #FFF;
}

.header .navbar-dark-theme .navbar-brand {
    color: #FFF;
}

.header .navbar-dark-theme .navbar-toggle {
    color: #fff;
    border: 0;
    margin: 4px 0 0;
    padding: 15px 15px;
}

.header .navbar-dark-theme .navbar-nav>li {
    padding: 5px 0;
    margin-right: 2px;
}
.header .navbar-dark-theme .navbar-nav>li.active > a{
    background-color: #FFF;
    border-radius: 25px;
    color: #23376d !important;
    border-color: #23376d;
}
.header .navbar-nav>li>.dropdown-menu {
    margin-top: 1px;
    border: 1px solid #23376d;
    border-top: 0px;
    background: #ffffff;
}

.header .navbar-dark-theme .navbar-nav>li>a {
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 20px;
    color: #FFF;
}

.header .navbar-dark-theme .navbar-nav>li>a:hover {
    color: #23376d !important;
    border-radius: 25px;
}

.header .nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
    background-color: #FFF;
    border-radius: 25px;
    color: #23376d !important;
    border-color: #23376d;
}

.header .nav>li>a:hover,
.nav>li>a:active,
.nav>li>a:focus {
    color: #23376d !important;
    background: #ffffff !important;
}

.header .navbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .navbar-header .navbar-header-btns {
    width: calc(100% - 60px);
    padding: 0 15px;
}
#active-dashboard-button{background-color: #0a1228 !important; color: #FFF !important; border: 1px solid #425791;}
ul.dropdown-menu li.active a{ background-color: #f15a29 !important;}
/*=== footer css ==*/
.footer {
    background-color: #000;
    padding: 12px 0px;
    text-align: center;
    font-weight: 400;
    color: #cdcdcd;
}

.footer p {
    margin: 0;
}

/*==== Login Page ====*/
.login-title {
    width: 100%;
    text-align: center;
}

.login-box {
    background-color: #FFF;
    border: 1px solid #EEE;
    padding: 15px;
    border-radius: 12px;
    max-width: 460px;
    margin: 50px auto 0;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.login-box .login-box-title {
    font-size: 18px;
}

.captcha-img {
    padding-top: 20px;
}

/*=== page css ==*/
.inner-title-content {
    padding: 40px 0;
    overflow-y: auto;
    display: flex;
    align-items: center;  
}
.inner-title-content h3{
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}
.inner-title-content p{ 
    padding:10px 0 0;
}
.page-content {
    padding: 40px 0;
    /* overflow-y: auto;
    display: flex;
    align-items: center; */
}

.page-content .icmr-image img {
    border-radius: 50%;
    border: 2px solid #23376d;
}

.page-content .box-user {
    background-color: #23376d;
    padding: 15px;
    border-radius: 12px;
    color: #FFF;
}

.page-content .box-user p {
    font-size: 16px;
}

.page-content .data-left-content{
    border-right: 1px solid rgba(0, 0, 0, 0.3);
}
.page-content .grievance-form-box{ max-width: 600px; margin: 0 auto; }
#searchBox{
    max-width: 320px;
}
.data-list{ 
    position: relative;
}
.data-list .box-counter{ 
    position: absolute;  
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
}
.data-list .box-counter span{      
    font-size: 220px;
    color: #dfdfdf;
    line-height: 1;
}
/*== responsive css */
@media(min-width: 991px) {
    .header .header-nav-left {
        width: calc(100% - 270px);
    }

    .header .header-nav-right {
        width: 270px;
    }

    .header .navbar-header {
        display: none;
    }

    .navbar-collapse.collapse {
        flex: 1;
    }
}

@media(max-width: 991px) {
    .header .navbar-right {
        display: none;
    }
    .page-content .data-left-content{
        border-right: unset !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3); 
        padding-bottom: 20px;
    }
    .page-content .data-right-content{ 
        margin: 20px 0 0;
    }
}

@media (min-width: 480px) and (max-width: 991px) {
    .header .logo-home img {
        max-height: 60px;
    }

    .header .header-title h2 {
        font-weight: 700;
        font-size: 22px;
    }

    .header .header-title h4 {
        font-weight: 500;
        font-size: 14px;
    }

    .home .page-content {
        text-align: center;
    }

    .page-content h3 {
        font-size: 20px;
    }

    .page-content h5 {
        font-size: 16px;
    }

    .page-content .icmr-image {
        margin-top: 25px;
        margin-bottom: 25px;
    }
}

@media (min-width: 480px) and (max-width:520px) {
    .header .logo img {
        max-height: 60px;
    }

    .header .header-title h2 {
        font-weight: 700;
        font-size: 22px;
    }

    .header .header-title h4 {
        font-weight: 500;
        font-size: 14px;
    }

    .header .header-nav-left {
        width: calc(100% - 220px) !important;
    }

    .header .header-nav-right {
        width: 220px !important;
    }

    .home .page-content {
        text-align: center;
    }

    .page-content h3 {
        font-size: 20px;
    }

    .page-content h5 {
        font-size: 16px;
    }

    .page-content .icmr-image {
        margin-top: 25px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .header .row {
        display: block; 
    }
    .header-content{ text-align: center;}
    .header .header-nav-left {
        width: calc(100% - 270px);
    }

    .header .header-nav-right {
        width: 270px;
    }

    .header .header-nav .row {
        display: flex; 
    }

    .header .header-title h2 {
        font-weight: 700;
        font-size: 22px;
    }

    .header .header-title h4 {
        font-weight: 500;
        font-size: 14px;
    }

    .home .page-content {
        text-align: center;
    }
    .page-content .box-user p{
        text-align: center;
    }
    .page-content p{
        text-align: justify;
    }

    .page-content h3 {
        font-size: 20px;
    }

    .page-content h5 {
        font-size: 16px;
    }

    .page-content .icmr-image {
        margin-top: 25px;
        margin-bottom: 25px;
    }
}

 