﻿body {
    overflow: hidden;
}


.page {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: width 0.3s linear;
    transition: width 0.01s linear;
    width: calc(100% - 190px);
    background-color: #F4F7FA;
    min-height: 100vh;
    padding-bottom: 50px;
    /* left: 190px; */
}

    .page.active {
        width: calc(100% - 45px);
    }

.page-area {
    padding: 0px;
    background: transparent;
    margin: 0px;
}

.page-contents {
    margin: 5px;
    padding: 10px;
    margin-bottom: 0px;
    background-color: white;
    height: calc(100vh - 90px);
    /*overflow: auto;*/
    overflow: hidden;
}

.page-placeholder {
    width: 100%;
    height: calc(100vh - 145px);
    overflow: auto;
}

.page-title {
    color: rgb(78, 78, 78);
    font-size: 14.4px;
    line-height: 1.5;
    margin-bottom: auto;
    margin-top: auto;
    text-shadow: rgba(0, 0, 0, 0.1) 0.5px 0.5px 1px;
    /* overflow-wrap: break-word; */
    /* text-align: left; */
    /* font-weight: 700; */
    /* box-sizing: border-box; */
    /*width: -moz-max-content;*/
}



header {
    display: block;
    height: 33px;
}

.container-fluid {
    padding: 0px;
}

/*Preloader*/
.preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff;
}

    .preloader .cssload-speeding-wheel {
        position: absolute;
        top: calc(50% - 3.5px);
        left: calc(50% - 3.5px);
    }

.card {
    margin-bottom: 5px;
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    border-left: 1px solid whitesmoke;
    border-top: 1px solid whitesmoke;
}

.card-header {
    padding: 7px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    margin-bottom: 7px;
}

    /*.card-header h1, .card-header h2, .card-header h3, .card-header h4, .card-header h5, .card-header h6 {
        margin-bottom: 0;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }*/

    .card-header h1, .card-header h2, .card-header h3, .card-header h4, .card-header h5, .card-header h6 {
        margin-bottom: 0;
        text-shadow: .5px .5px 1px rgba(0, 0, 0, 0.1);
        color: #4e4e4e;
    }


/*******************
Preloader
********************/
/*.preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
    position: absolute;
    top: calc(50% - 3.5px);
    left: calc(50% - 3.5px);
}

    .lds-ripple .lds-pos {
        position: absolute;
        border: 2px solid #2962FF;
        opacity: 1;
        border-radius: 50%;
        -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.1, 0.5, 1) infinite;
        animation: lds-ripple 1s cubic-bezier(0, 0.1, 0.5, 1) infinite;
    }

        .lds-ripple .lds-pos:nth-child(2) {
            -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
        }

@-webkit-keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}*/

/*#region SearchBar */

.search-container {
    width: 20%;
    margin: 0px 3px;
}

.search-title {
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    color: #ff8b88;
}

.search-input {
    width: 100%;
    padding: 4px 10px;
    background-color: transparent;
    transition: transform 250ms ease-in-out;
    font-size: 12px;
    line-height: 14px;
    color: #575756;
    background-color: transparent;
    background-image: url("/distribution/img/ic_search_black_24px.svg");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: 98% center;
    border-radius: 9px;
    border: 1px solid #f3f3f3;
    transition: all 250ms ease-in-out;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

    .search-input::placeholder {
        color: rgba(87, 87, 86, 0.8);
        /*text-transform: uppercase;
                letter-spacing: 1.5px;*/
    }

    .search-input:hover, .search-input:focus {
        padding: 4px 0;
        outline: 0;
        border: 1px solid transparent;
        border-bottom: 1px solid #575756;
        border-radius: 0;
        background-position: 100% center;
        box-shadow: none;
    }

/*#endregion */

/***************************************/

nav.navbar {
    background: #141313;
    padding: 0px;
    height: 33px;
}

    nav.navbar a {
        font-size: 12px;
        color: #fff;
        position: relative;
        line-height: 17px;
        margin-top: 0px;
        text-align: center;
        vertical-align: middle;
    }

        nav.navbar a.navbar-brand {
            margin-left: 10px;
            color: white;
            margin-top: auto;
            margin-bottom: auto;
            line-height: 20px;
            padding: 0px;
            vertical-align: middle;
            padding-top: 3px;
        }
            /*nav.navbar a.navbar-brand {
            margin-left: 10px;
            color: white;
        }*/

            nav.navbar a.navbar-brand:hover {
                color: white;
            }

    nav.navbar .dropdown-menu {
        right: 0;
        left: auto;
        float: left;
        margin-top: 0px;
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0;
        font-size: 12px;
        padding: 1px;
    }

        nav.navbar .dropdown-menu .dropdown-item {
            color: #666;
            padding: 7px 15px;
        }

    nav.navbar .notification-content {
        font-size: 11px;
        margin: 0px;
        text-align: center;
        width: 100%;
        vertical-align: middle;
    }

    nav.navbar a.menu-btn {
        width: 30px;
        height: 30px;
        line-height: 33px;
        background: #292929;
        color: #fff;
        text-align: center;
        padding: 0 !important;
    }

        nav.navbar a.menu-btn i[class*="icon-"] {
            -webkit-transform: translateY(4px);
            transform: translateY(4px);
            color: white;
            /* line-height: 33px; */
            text-align: center;
            vertical-align: middle;
            font-size: 10px;
            padding: 0px;
            margin: 0px;
            transform: none;
        }

.side-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    width: 190px;
    text-align: left;
    background: #232222;
    color: #fff;
    z-index: 999;
    overflow-y: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

    .side-navbar .sidenav-header {
        background: #141313;
        padding: 3px;
        margin-bottom: 0px;
        height: 33px;
    }

        .side-navbar .sidenav-header img {
            width: auto;
            height: 28px;
        }

    .side-navbar li a {
        position: relative;
        font-size: 12px;
        font-weight: 300;
        color: #fff;
        text-decoration: none;
        width: 100%;
        padding: 5px 5px 4px 7px;
    }

    .side-navbar li ul a {
        padding-left: 20px;
        font-size: 11px;
    }

    .side-navbar.shrink {
        width: 45px;
        text-align: center;
        font-size: 11px;
    }

        .side-navbar.shrink ul li a {
            font-size: 9px;
            padding-left: 1px;
            padding-right: 1px;
        }

            .side-navbar.shrink ul li a[data-toggle="collapse"]::before {
                content: '\f107';
                -webkit-transform: translateX(50%);
                transform: translateX(50%);
                position: absolute;
                top: auto;
                right: 50%;
                bottom: -4px;
                left: auto;
            }

        .side-navbar.shrink ul li ul a {
            padding-left: 0px;
            font-size: 10px;
            padding: 3px 0px;
        }



.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0px;
    padding-left: 5px;
    margin-bottom: 0px;
    list-style: none;
    background-color: transparent;
    border-radius: 0px;
    font-size: 12px;
}

.breadcrumb-holder {
    background: #ededed;
    background: transparent;
}

    .breadcrumb-holder .breadcrumb {
        padding: 0px;
        font-size: 12px;
        font-weight: 300;
        color: #999;
        margin-bottom: 0;
        background-color: transparent;
    }

.breadcrumb-item + .breadcrumb-item, .breadcrumb-item a {
    padding-left: 5px;
    color: #ededed !important;
    line-height: 20px !important;
    font-size: 12px;
}

.breadcrumb-item.active {
    color: #ededed;
    line-height: 20px;
}

.breadcrumb-item + .breadcrumb-item::before {
    padding: 0px;
    display: inline-block;
    font-size: 11px;
    font-weight: 100;
    content: '\f142';
    font-family: Material Design Icons;
    color: #ededed;
    /*content: ">";*/
}

.separator-vertical {
    border-left-color: rgba(255, 255, 255, 0.39);
    border-left-style: solid;
    border-left-width: 1px;
    display: inline-block;
    height: 31px;
    padding: 0px;
    margin: 0px;
    vertical-align: top;
    line-height: 30px;
}

footer.main-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    background: #222;
    padding: 0px 6px;
    font-size: 12px;
    text-align: center;
    position: fixed;
}

    footer.main-footer p {
        font-size: 10px;
        color: #fff;
        margin: 0;
        padding: 2px 0px;
    }


.action-panel {
    height: 28px;
}

    .action-panel .action-items {
        background-color: rgba(0, 0, 0, 0);
        box-sizing: border-box;
        color: rgb(255, 255, 255);
        display: inline-block;
        font-size: 12px;
        line-height: 26px;
        padding-left: 3px;
        padding-right: 5px;
        position: relative;
        text-align: left;
        white-space: nowrap;
        cursor: pointer;
    }

        .action-panel .action-items:hover {
        }

        .action-panel .action-items > a {
            color: white;
            text-decoration: none;
        }


            .action-panel .action-items > a.aspNetDisabled {
                opacity: 0.4;
                cursor: not-allowed;
            }

            .action-panel .action-items > a > i {
                font-size: 18px;
                padding-right: 0px;
                font-weight: 100;
                text-align: center;
                vertical-align: bottom;
            }

.action-panel-grid {
    height: 28px;
    background-color: #fff0;
    /* color: #2b90d9;
    margin-left: 4px; */
}

    .action-panel-grid .action-items-grid {
        background-color: rgba(0, 0, 0, 0);
        box-sizing: border-box;
        display: inline-block;
        font-size: 12px;
        line-height: 26px;
        padding-left: 1px;
        padding-right: 5px;
        position: relative;
        text-align: left;
        white-space: nowrap;
        cursor: pointer;
        /* color: rgb(110, 110, 110); */
        /* margin-left: 2px; */
    }

        .action-panel-grid .action-items-grid:hover {
            background-color: #e6e6e6;
        }


        .action-panel-grid .action-items-grid > a {
            color: #323232;
            text-decoration: none;
        }


            .action-panel-grid .action-items-grid > a.aspNetDisabled {
                opacity: 0.4;
                cursor: not-allowed;
            }

            .action-panel-grid .action-items-grid > a > i {
                font-size: 18px;
                padding: 0px;
                font-weight: 100;
                text-align: center;
                vertical-align: bottom;
                margin: 0px;
            }




.notification-panel {
    min-height: 28px;
    line-height: 28px;
    width: 100%;
    background-color: #fcfcfc;
    border-bottom: 1px solid #ddd;
    font-size: 12px;
    vertical-align: middle;
    display: inline-block;
    /* height: 100px; */
}

    .notification-panel .notification-container {
        /* display: inline-block; */
        width: calc(100% - 22px);
    }

        .notification-panel .notification-container p {
            color: white;
            font-size: 11px;
            color: black;
            vertical-align: middle;
            margin: auto;
        }

            .notification-panel .notification-container p::before {
                float: left;
                padding: 0px 5px;
            }

            .notification-panel .notification-container p:after {
            }

    .notification-panel.success {
        background-color: #f7fff7;
    }

        .notification-panel.success .notification-container p::before {
            font-weight: 100;
            content: '\f5e0';
            font-family: Material Design Icons;
            font-size: 22px;
            color: #5eec4f;
        }

    .notification-panel.error {
        background-color: #fbe5e5;
    }

        .notification-panel.error .notification-container p::before {
            font-weight: 100;
            content: '\f026';
            font-family: Material Design Icons;
            font-size: 22px;
            color: #ec4f4f;
        }

    .notification-panel.warning {
        background-color: #fafbe5;
    }

        .notification-panel.warning .notification-container p::before {
            font-weight: 100;
            content: '\f026';
            font-family: Material Design Icons;
            font-size: 22px;
            color: #ecb34f;
        }




    .notification-panel .action-items {
        background-color: rgba(0, 0, 0, 0);
        box-sizing: border-box;
        color: rgb(44, 44, 44);
        display: inline-block;
        font-size: 12px;
        line-height: 26px;
        padding-left: 3px;
        padding-right: 5px;
        position: relative;
        text-align: left;
        white-space: nowrap;
        cursor: pointer;
    }

.align-right {
    float: right;
}

.align-left {
    float: left;
}

.nav-link {
    padding: 0.5rem 1rem;
    padding-right: 7px;
    /* padding: 0px; */
}
/*----------------------------Main Menu-----------------------------------------------*/

.main-menu .nav-icon {
    position: relative;
    display: table-cell;
    width: 60px;
    height: 36px;
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
}

.main-menu .nav-text {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    width: 190px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 11px;
}

.no-touch .scrollable.hover {
    overflow-y: hidden;
}

    .no-touch .scrollable.hover:hover {
        overflow-y: auto;
        overflow: visible;
    }

a:hover, a:focus {
    text-decoration: none;
}

nav {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

    nav ul, nav li {
        outline: 0;
        margin: 0;
        padding: 0;
    }




/*------------------------------------------------*/

/*.area {
    float: left;
    background: #e2e2e2;
    width: 100%;
    height: 100%;
}*/

.main-menu {
    background: #222;
    /* border-right: 1px solid #e5e5e5; */
    position: absolute;
    top: 33px;
    bottom: 0;
    /* height: 100%; */
    left: 0;
    width: 45px;
    overflow: hidden;
    -webkit-transition: width .05s linear;
    transition: width .05s linear;
    -webkit-transform: translateZ(0) scale(1,1);
    z-index: 1000;
    /* color: white; */
}

    .main-menu:hover, nav.main-menu.expanded {
        width: 235px;
        overflow: visible;
    }

    .main-menu li {
        position: relative;
        display: block;
        width: 235px;
        overflow: hidden;
    }

        .main-menu li:hover > a,
        nav.main-menu li.active > a,
        .dropdown-menu > li > a:hover,
        .dropdown-menu > li > a:focus,
        .dropdown-menu > .active > a,
        .dropdown-menu > .active > a:hover,
        .dropdown-menu > .active > a:focus,
        .no-touch .dashboard-page nav.dashboard-menu ul li:hover a,
        .dashboard-page nav.dashboard-menu ul li.active a {
        }

        .main-menu li > a {
            position: relative;
            display: table;
            border-collapse: collapse;
            border-spacing: 0;
            color: #fff;
            /* font-family: arial; */
            font-size: 12px;
            text-decoration: none;
            -webkit-transform: translateZ(0) scale(1,1);
            -webkit-transition: all .1s linear;
            transition: all .1s linear;
        }

            .main-menu li > a > i {
                position: relative;
                display: table-cell;
                width: 45px;
                text-align: center;
                vertical-align: middle;
                font-size: 14px;
                padding: 3px 0px;
            }
    /*.fa {
    position: relative;
    display: table-cell;
    width: 45px;
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    padding: 7px 0px;
}*/
    .main-menu > ul {
        /* margin: 7px 0; */
    }

    .main-menu ul li a[data-toggle="collapse"]::before {
        content: '\f106';
        display: inline-block;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        font-family: 'FontAwesome';
        position: absolute;
        top: 50%;
        right: 20px;
    }

    .main-menu ul li a[aria-expanded="true"]::before {
        content: '\f107';
        color: #fff;
    }

    .main-menu > ul > li > a:focus,
    .main-menu > ul > li > a:hover,
    .main-menu > ul > li > a[aria-expanded="true"] {
        color: #fff;
        text-decoration: none;
    }

    .main-menu li ul.collapse a {
    }

    .main-menu > ul.logout {
        position: absolute;
        left: 0;
        bottom: 0;
        margin: 0px;
        padding: 0px;
        font-size: 11px;
        background-color: #222;
    }

        .main-menu > ul.logout > li > a > i {
            font-size: 12px;
            font-weight: lighter;
            text-decoration: none;
            padding: 3.5px 0px;
        }

    .main-menu > ul > li > ul {
        padding-left: 0px;
        /* border-left: 3px solid blue; */
    }

        .main-menu > ul > li > ul > li > ul {
        }

        .main-menu > ul > li > ul > li > a:focus,
        .main-menu > ul > li > ul > li > a:hover,
        .main-menu > ul > li > ul > li > a[aria-expanded="true"] {
        }
/*-------------------------------------------------------*/

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 13px;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 11px;
    word-wrap: break-word;
    opacity: 0;
}

/*-------------------------------Table------------------------------------------------------------*/

table td input, table th input,
table td select, table th select {
    vertical-align: middle;
    display: inline-block;
    font-size: 10px;
    /* line-height: 11px; */
    height: 20px;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
}

    .table th,
    .table td {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #eceeef;
    }


    .table thead th {
        vertical-align: bottom;
        border-bottom: 2px solid #eceeef;
    }

    .table tbody + tbody {
        border-top: 2px solid #eceeef;
    }

    .table .table {
        background-color: #fff;
    }

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-bordered {
    border: 1px solid #eceeef;
}

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #eceeef;
    }

    .table-bordered thead th,
    .table-bordered thead td {
        border-bottom-width: 2px;
    }

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-active,
.table-active > th,
.table-active > td {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

    .table-hover .table-active:hover > td,
    .table-hover .table-active:hover > th {
        background-color: rgba(0, 0, 0, 0.075);
    }

.table-success,
.table-success > th,
.table-success > td {
    background-color: #dff0d8;
}

.table-hover .table-success:hover {
    background-color: #d0e9c6;
}

    .table-hover .table-success:hover > td,
    .table-hover .table-success:hover > th {
        background-color: #d0e9c6;
    }

.table-info,
.table-info > th,
.table-info > td {
    background-color: #d9edf7;
}

.table-hover .table-info:hover {
    background-color: #c4e3f3;
}

    .table-hover .table-info:hover > td,
    .table-hover .table-info:hover > th {
        background-color: #c4e3f3;
    }

.table-warning,
.table-warning > th,
.table-warning > td {
    background-color: #fcf8e3;
}

.table-hover .table-warning:hover {
    background-color: #faf2cc;
}

    .table-hover .table-warning:hover > td,
    .table-hover .table-warning:hover > th {
        background-color: #faf2cc;
    }

.table-danger,
.table-danger > th,
.table-danger > td {
    background-color: #f2dede;
}

.table-hover .table-danger:hover {
    background-color: #ebcccc;
}

    .table-hover .table-danger:hover > td,
    .table-hover .table-danger:hover > th {
        background-color: #ebcccc;
    }

.thead-inverse th {
    color: #fff;
    background-color: #292b2c;
}

.thead-default th {
    color: #464a4c;
    background-color: #eceeef;
}

.table-inverse {
    color: #fff;
    background-color: #292b2c;
}

    .table-inverse th,
    .table-inverse td,
    .table-inverse thead th {
        border-color: #fff;
    }

    .table-inverse.table-bordered {
        border: 0;
    }

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

    .table-responsive.table-bordered {
        border: 0;
    }

.grid-img-btn {
    background-repeat: no-repeat;
    color: transparent !important;
    background-color: transparent;
    border-color: transparent;
    overflow: visible;
    height: 15px;
    background-size: 15px;
    /*background-size: contain;*/
    display: table-cell;
    padding: 0px 3px;
}

    .grid-img-btn:hover {
        background-color: transparent;
        color: transparent;
    }

    .grid-img-btn.btn-edit {
        background-image: url('/distribution/img/Edit05.png');
    }

    .grid-img-btn.btn-update {
        background-image: url('/distribution/img/Update.png');
    }
    .grid-img-btn.btn-submit {
        background-image: url('/distribution/img/submit-for-approval-20.png');
    }

    .grid-img-btn.btn-cancel {
        background-image: url('/distribution/img/cancel.png');
    }

    .grid-img-btn.btn-attachment {
        background-image: url('/distribution/img/attachment_Icon.png');
    }

    .grid-img-btn.btn-details {
        background-image: url('/distribution/img/details001.png');
    }

    .grid-img-btn.btn-changepassword {
        background-image: url('/distribution/img/safe_password.png');
    }


.btn-favourite {
    background-size: 20px, contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 25px;
    width: 35px;
    float: right;
    position: absolute;
    margin-right: 1%;
    color: transparent;
    right: 0;
    margin: auto;
    /* top: 4px; */
    /* line-height: 66px; */
}

    .btn-favourite:hover {
        color: transparent;
    }

    .btn-favourite.add {
        /*background-image: url('/distribution/img/fav-add.png');*/
        background-image: url('/distribution/img/favorite_add.png');
    }

    .btn-favourite.remove {
        /*background-image: url('/distribution/img/fav-remove.png');*/
        background-image: url('/distribution/img/favorite_delete.png');
    }



.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

.pagination > li > a,
.pagination > li > span {
    color: #263238;
}

    .pagination > li > a:hover,
    .pagination > li > span:hover,
    .pagination > li > a:focus,
    .pagination > li > span:focus {
        background-color: #f2f4f8;
    }

.pagination-split li {
    margin-left: 5px;
    display: inline-block;
    float: left;
}

    .pagination-split li:first-child {
        margin-left: 0;
    }

    .pagination-split li a {
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
    }

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background-color: #009efb;
    border-color: #009efb;
}

.pager li > a,
.pager li > span {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #263238;
}

/*******************
Table Cell
*******************/
.table-box {
    display: table;
    width: 100%;
}

.table.no-border tbody td {
    border: 0px;
}

.cell {
    display: table-cell;
    vertical-align: middle;
}

.table td, .table th {
    border-color: #f3f1f1;
}

.table thead th, .table th {
    font-weight: 500;
}

.table-hover tbody tr:hover {
    background: #f2f4f8;
}

.v-middle td, .v-middle th {
    vertical-align: middle;
}







table {
    font-size: 11px;
    color: #252525;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2px;
    border: none;
}


    .table th, .table td {
        padding: 5px;
        vertical-align: top;
        border: none;
        border-bottom: 1px solid #eceeef;
    }

.table-hover tbody tr:hover {
    background: #f2f4f8;
}

/*.table tbody tr:nth-of-type(1) {
    color: blue;
}*/

/*.table-striped tbody tr:nth-of-type(1) th {
    color: blue;
}*/

.textbox:hover:active {
    background-color: white !important;
    border: 1px solid #abadb3;
    border-image: none;
}

.textbox {
    border: 1px solid #abadb3;
    cursor: pointer;
    padding: 2px;
    padding-right: 14px;
    font-size: 12px;
    background: url(/distribution/img/menu-down.png) no-repeat;
    background-size: 12px;
    background-position: 100% 50%;
}

.show {
    visibility: visible !important;
    display: block !important;
}

/*.dropdown-panel {
    overflow: auto;
    background-color: #fff;
    max-width: 400px;
    max-height: 400px;
    display: none;
    visibility: hidden;
    border: 1px solid #e6e6e6;
    z-index: 1;
    display: block;
    overflow: visible;
}*/
.dropdown-panel {
    overflow: auto;
    background-color: #fff;
    max-width: 400px;
    max-height: 400px;
    display: none;
    visibility: hidden;
    border: 1px solid #e6e6e6;
    z-index: 1;
    display: block;
    position: absolute;
}


.dashboard-container-a {
    cursor: pointer;
    font-size: 12px;
    height: 16px;
    margin-bottom: 3.5px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    padding-bottom: 4px;
    padding-left: 4px;
    padding-right: 7px;
    padding-top: 4px;
    text-decoration-color: rgb(51, 51, 51);
    text-decoration-line: none;
    text-decoration-style: solid;
    /* visibility: visible; */
    width: 196px;
    display: block;
}

.dashboard-link {
    color: #0b5d98;
    box-sizing: border-box;
    cursor: pointer;
    margin-right: 5px;
    padding-bottom: 3.5px;
    position: relative;
    /*width: 180px;*/
    display: flex;
    flex-direction: column;
    text-align: left;
    vertical-align: middle;
    line-height: 14px;
    word-wrap: break-word;
}

    .dashboard-link:hover {
        font-size: 105%;
        text-decoration: underline;
    }

.dashboard-link-a {
    color: rgb(13, 98, 170);
    cursor: pointer;
    display: block;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    height: 15px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    text-decoration-color: rgb(13, 98, 170);
    text-decoration-line: none;
    text-decoration-style: solid;
}

.dashboard-link-fav {
    border-bottom-color: rgb(13, 98, 170);
    border-bottom-style: none;
    border-bottom-width: 0px;
    border-image-outset: 0px;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
    border-left-color: rgb(13, 98, 170);
    border-left-style: none;
    border-left-width: 0px;
    border-right-color: rgb(13, 98, 170);
    border-right-style: none;
    border-right-width: 0px;
    border-top-color: rgb(13, 98, 170);
    border-top-style: none;
    border-top-width: 0px;
    color: rgb(13, 98, 170);
    cursor: pointer;
    display: block;
    font-family: "Segoe UI", tahoma, sans-serif;
    font-size: 11px;
    font-style: normal;
    font-variant-caps: normal;
    font-variant-east-asian: normal;
    font-variant-ligatures: normal;
    font-variant-numeric: normal;
    font-weight: 400;
    height: 15px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    position: absolute;
    right: 3.5px;
    text-decoration-color: rgb(13, 98, 170);
    text-decoration-line: none;
    text-decoration-style: solid;
    top: 3.5px;
    visibility: hidden;
    width: 11px;
}

.dashboard-container {
    /* align-content: flex-start; */
    /* border-bottom-color: rgb(51, 51, 51); */
    /* border-bottom-style: none; */
    /* border-bottom-width: 0px; */
    /* border-image-outset: 0px; */
    /* border-image-repeat: stretch; */
    /* border-image-slice: 100%; */
    /* border-image-source: none; */
    /* border-image-width: 1; */
    /* border-left-color: rgb(51, 51, 51); */
    /* border-left-style: none; */
    /* border-left-width: 0px; */
    /* border-right-color: rgb(51, 51, 51); */
    /* border-right-style: none; */
    /* border-right-width: 0px; */
    /* border-top-color: rgb(51, 51, 51); */
    /* border-top-style: none; */
    /* border-top-width: 0px; */
    /* color: rgb(51, 51, 51); */
    /* display: flex; */
    /* flex-basis: 0px; */
    /* flex-direction: column; */
    flex-grow: 1;
    flex-shrink: 1;
    flex-wrap: wrap;
    font-family: "Segoe UI", tahoma, sans-serif;
    font-size: 11px;
    font-style: normal;
    font-variant-caps: normal;
    font-variant-east-asian: normal;
    font-variant-ligatures: normal;
    font-variant-numeric: normal;
    font-weight: 400;
    height: 50vh;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    padding-bottom: 0px;
    padding-left: 7px;
    padding-right: 7px;
    padding-top: 13px;
    /* visibility: visible; */
}


.user-img {
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top-right-radius: 50%;
    height: 55px;
    vertical-align: middle;
    width: 55px;
}

.user-container {
    border-bottom-color: rgb(243, 243, 243);
    border-bottom-style: solid;
    border-bottom-width: 1px;
    box-sizing: border-box;
    padding-bottom: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    line-height: 19px;
    overflow-wrap: break-word;
    /* color: rgb(33, 37, 41); */
    /* font-family: "Roboto", sans-serif; */
    /* font-size: 16px; */
    /* font-weight: 400; */
    /* list-style-image: none; */
    /* list-style-position: outside; */
    /* list-style-type: none; */
    /* text-align: left; */
}

.feed-profile {
    margin-right: 10px;
}

.user-lastlogin {
    color: gray;
}

.dash-title {
    box-sizing: border-box;
    color: rgb(33, 37, 41);
    font-family: "Roboto", sans-serif;
    font-size: 14.4px;
    font-weight: 400;
    line-height: 15.8333px;
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    margin-bottom: 3px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    overflow-wrap: break-word;
    text-align: left;
    padding-bottom: 2px;
    border-bottom: 1px solid #ededed;
}

.user-section {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 10px;
    /*padding-left: 15px;*/
}

.dash-menu-contents {
    display: flex;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    min-height: 1px;
    /*padding-right: 10px;
    padding-left: 15px;*/
}

.dash-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 10px;
    /*padding-left: 15px;*/
}

.dash-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    min-height: 1px;
}


.user-address {
    text-align: right;
    color: #454545;
}

.charts-center-alignment {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.separator-horizontal {
    min-height: 1px;
    padding-top: 2px;
    padding-bottom: 2px;
    border-bottom: 1px solid #ededed;
}

.chart-title {
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 400;
    line-height: 15.8333px;
    margin-top: 0px;
    margin-bottom: 0px;
    overflow-wrap: break-word;
}

/* Create two columns/boxes that floats next to each other */
.menu-section {
    float: left;
    width: 80%;
    /*width: 66.66%;*/
}

.dash {
    float: left;
    width: 20%;
}
/* Clear floats after the columns */
.section:after {
    content: "";
    display: table;
    clear: both;
}


.navbar-top {
    padding: 7.5px;
    margin: auto;
}

    .navbar-top:hover {
        background-color: #565252;
    }

    .navbar-top > ul > li > a {
        color: red !important;
    }

    .navbar-top a > ul > li > a {
        color: red !important;
    }

    .navbar-top ul li a {
        color: red !important;
    }



input[type="checkbox"]:checked {
    /* display: block; */
    background: white;
    background-image: url(../img/checkbox2.png);
    transition: .02s all ease-in-out;
    background-repeat: no-repeat;
    background-position: center;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    box-sizing: border-box;
    width: 12px !important;
    height: 12px !important;
    cursor: pointer;
    background: white;
    border: 1px solid #a0a0a0;
    margin: 0px !important;
    padding: 0px !important;
}

input:hover, optgroup:hover, select:hover, textarea:hover {
    -webkit-box-shadow: 0px 0px 4px 0px rgba(27, 208, 230, 0.72);
    -moz-box-shadow: 0px 0px 4px 0px rgba(27, 208, 230, 0.72);
    box-shadow: 0px 0px 4px 0px rgba(27, 208, 230, 0.72);
}

table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort) {
    cursor: pointer;
    /*overflow-wrap: break-word;
    text-align: center;*/
    vertical-align: top;
}

table.sortable td:not(:first-child):not(:last-child) {
    /*min-width: 150px;*/
}

table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after {
    font-weight: 100;
    content: '\f4ba';
    font-family: Material Design Icons;
    float: right;
    padding-right: 2px;
    opacity: 0.3;
}

table.sortable th::after,
th.sorttable_sorted::after,
th.sorttable_sorted_reverse::after {
    /*content: " ";
    display: inline-block;
    width: 24px;
    height: 24px;*/
}


table.sortable th:not(.sorttable_nosort),
th.sorttable_sorted:not(.sorttable_nosort),
th.sorttable_sorted_reverse:not(.sorttable_nosort) {
    cursor: pointer;
}

th.sorttable_sorted::after {
    /*background: url(my-sorted-icon.png);
    background-size: contain;*/
    font-weight: 100;
    content: '\f4bc';
    font-family: Material Design Icons;
    float: right;
    padding-right: 2px;
}

th.sorttable_sorted_reverse::after {
    /*background: url(my-sorted-reversed-icon.png);
    background-size: cover;*/
    font-weight: 100;
    content: '\f4bd';
    font-family: Material Design Icons;
    float: right;
    padding-right: 2px;
}

/*
    table.sortable tbody {
    counter-reset: sortabletablescope;
}

table.sortable thead tr::before {
    content: "";
    display: table-cell;
}

table.sortable tbody tr::before {
    content: counter(sortabletablescope);
    counter-increment: sortabletablescope;
    display: table-cell;
    padding: 5px 0px;
}*/

.pagination-container {
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    text-align: center;
    line-height: 17px;
    vertical-align: middle;
}

.pagination-option {
    display: inline-block;
    font-size: 11px;
    padding: 2px;
    /*width: 120px;*/
    float: left;
    line-height: 23px;
}

    .pagination-option select {
        padding: 2px;
        margin: 3px;
        cursor: pointer;
    }

.pagination-Numbers {
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
    text-align: center;
    /* float: right; */
    font-size: 11px;
    cursor: auto;
    /* margin: auto; */
    margin-left: auto;
    margin-right: auto;
    /* width: 70%; */
    /* left: -35px; */
    /* padding-left: -31px; */
    margin-left: -120px;
}

    .pagination-Numbers span.active {
        background-color: #ddd;
        cursor: default;
        /* color: #202020; */
        /*border: 1px solid #C8C8C8;*/
    }

.pageNumber {
    color: black;
    float: left;
    padding: 4px 12px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
    margin: 0 4px;
}

    .pageNumber:hover:not(.active) {
        background-color: #ddd;
        cursor: pointer;
    }

#ui-datepicker-div {
    font-size: 11px;
}







#modal_dialog {
    height: calc(99vh) !important;
    overflow: hidden;
}

.blur-filter {
    /*-webkit-filter: blur(1px);
        -moz-filter: blur(1px);
        -o-filter: blur(1px);
        -ms-filter: blur(1px);
        filter: blur(1px);*/
    opacity: 0.6;
}

.ui-dialog .ui-dialog-content {
    position: relative;
    border: 0;
    padding: 5px;
    background: none;
    overflow: auto;
}

/*

.mCSB_container_wrapper {
    position: absolute;
    height: auto;
    width: auto;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-right: 6px;
    margin-bottom: 12px;
}

    .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
        position: relative;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }


*/

.form-table {
    width: 100%;
}

    .form-table tr {
        padding: 5px 0px;
    }

    .form-table td {
        padding: 4px 10px;
    }

        .form-table td:first-child {
            /*width: 45%;*/
        }

    .form-table input:not([type="submit"]),
    .form-table select {
        width: 145px;
        font-size: 11px;
        padding: 0px 2px;
        height: 22px;
        text-align: left;
        vertical-align: middle;
    }

    .form-table textarea {
        width: 145px;
        height: 120px;
    }



.action-footer {
    position: fixed;
    right: 0;
    bottom: 2px;
    left: 0;
    padding-right: 40px;
    text-align: right;
    font-size: 12px;
}

    .action-footer input[type="submit"],
    .action-footer a {
        background-color: rgba(75, 75, 75, 0.9);
        color: rgb(255, 255, 255);
        cursor: pointer;
        display: inline-block;
        position: relative;
        text-align: center;
        /* transition-delay: 0s; */
        /* transition-duration: 0.3s; */
        /* transition-property: all; */
        /* transition-timing-function: ease-out; */
        vertical-align: middle;
        padding: 3px 16px;
        font-size: 11px;
        margin-left: 6px;
    }

        .action-footer input[type="submit"]:hover,
        .action-footer a:hover {
            background-color: rgb(23, 142, 167);
            color: rgb(255, 255, 255);
            -webkit-box-shadow: 0px 0px 4px 0px rgba(27, 208, 230, 0.72);
            -moz-box-shadow: 0px 0px 4px 0px rgba(27, 208, 230, 0.72);
            box-shadow: 0px 0px 4px 0px rgba(27, 208, 230, 0.72);
        }


.divTable {
    display: table;
    width: 100%;
}

.divTableRow {
    display: table-row;
}

.divTableHeading {
    background-color: #EEE;
    display: table-header-group;
}

.divTableCell, .divTableHead {
    display: table-cell;
    padding: 3px 10px;
}

.divTableHeading {
    display: table-header-group;
    font-weight: bold;
}

.divTableFoot {
    display: table-footer-group;
    font-weight: bold;
}

.divTableBody {
    display: table-row-group;
}


.mCSB_container_wrapper {
    margin-right: 7px;
    margin-bottom: 13px;
    margin-left: 0px;
    margin-top: 0px;
}
/*#region Updates News Events */

.news.list-unstyled {
    margin-bottom: 0px;
}

.updates li {
    padding: 4px 7px;
}

.updates .left-col {
    padding-right: 10px;
}

.updates .icon {
    margin-right: 5px;
}

.updates strong {
    font-size: 13px;
    font-weight: 400;
}

.updates p {
    font-size: 11px;
    color: #999;
    margin-bottom: 1px;
}

.updates .update-date {
    font-size: 17px;
    font-weight: 700;
    color: #bbb;
    display: block;
}

.activities .date-holder .date span {
    font-size: 11px;
    margin: 5px;
    line-height: 11px;
    /* word-break: keep-all; */
}

.activities .date-holder {
    padding-right: 0;
    max-width: 30%;
    padding-left: 12px;
    /* margin-left: 11px; */
}

.activities.list-unstyled {
    margin-bottom: 0px;
}

.updates span {
    font-size: 0.7em;
    font-weight: 300;
    color: #6b6b6b;
    line-height: 0.5em;
    display: block;
}

.updates .update-date {
    font-size: 17px;
    font-weight: 700;
    color: #7b7a7a;
    display: block;
}

/*#endregion */

.user-login {
    padding: 5px 10px !important;
    text-align: left !important;
}

    .user-login:hover, .user-login:hover span {
        color: white !important;
    }


.ui-datepicker {
    width: 234px;
    font-size: 10px;
}

    .ui-datepicker table {
        width: 100%;
        font-size: 10px;
        border-collapse: collapse;
        margin: 0 0 2px;
    }


.ui_tpicker_second_label.ui_tpicker_unit_hide {
    display: none;
}

.ui_tpicker_second.ui_tpicker_unit_hide {
    display: none;
}

.ui_tpicker_millisec_label.ui_tpicker_unit_hide {
    display: none;
}

.ui_tpicker_millisec.ui_tpicker_unit_hide {
    display: none;
}

.ui_tpicker_microsec_label.ui_tpicker_unit_hide {
    display: none;
}

.ui_tpicker_microsec.ui_tpicker_unit_hide {
    display: none;
}

.ui_tpicker_timezone_label.ui_tpicker_unit_hide {
    display: none;
}

.ui_tpicker_timezone.ui_tpicker_unit_hide {
    display: none;
}
