﻿span-checkbox-active::-moz-selection {
    color: #fff !important;
    background: #01a1d3 !important;
}

::selection {
    color: #fff !important;
    background: #01a1d3 !important;
}

:focus {
    outline: none !important;
}

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700&display=swap');

body {
    background: #fff;
    /*font-family: 'Open Sans', sans-serif;*/
    overflow-x: hidden;
}
/*--scrollbar--*/

.ps {
    overflow: hidden !important;
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto;
}

.ps__rail-x {
    display: none;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    height: 15px;
    bottom: 0px;
    position: absolute;
}

.ps__rail-y {
    display: none;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    width: 15px;
    right: 0;
    position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
    display: block;
    background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
    opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
    background-color: #eee;
    opacity: 0.9;
}

.ps__thumb-x {
    background-color: #aaa;
    border-radius: 6px;
    transition: background-color .2s linear, height .2s ease-in-out;
    -webkit-transition: background-color .2s linear, height .2s ease-in-out;
    height: 6px;
    bottom: 2px;
    position: absolute;
}

.ps__thumb-y {
    background-color: #aaa;
    border-radius: 6px;
    transition: background-color .2s linear, width .2s ease-in-out;
    -webkit-transition: background-color .2s linear, width .2s ease-in-out;
    width: 6px;
    right: 2px;
    position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
    background-color: #999;
    height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
    background-color: #999;
    width: 11px;
}

@supports (-ms-overflow-style: none) {
    .ps {
        overflow: auto !important;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .ps {
        overflow: auto !important;
    }
}
/*--scrollbar--*/
p:last-of-type {
    margin-bottom: 0;
}

.home-background {
    background: url(../images/login-background.jpg) fixed no-repeat center / cover;
    display: flex;
    height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

    .home-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.home-login {
    width: 100%;
    max-width: 430px;
    border-radius: 5px; /*background: rgba(38, 97, 125, 0.9);*/
    position: relative;
    z-index: 9;
    padding: 47px 15px 15px 15px;
    -webkit-box-shadow: 0px 0px 10px 3px rgba(161,161,161,1);
    -moz-box-shadow: 0px 0px 10px 3px rgba(161,161,161,1);
    box-shadow: 0px 0px 10px 3px rgba(161,161,161,1);
}

    .home-login:before {
        border-radius: 5px;
        content: '';
        background:;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.8;
        /*background: linear-gradient(0deg, rgb(255, 119, 0) 0%, rgb(255, 229, 124) 46%, rgb(14, 157, 224) 100%);*/
        background: linear-gradient(0deg, #00c1ff 0%, rgb(124 248 255) 46%, rgb(0 56 99) 100%);
    }

.home-login-logo {
    position: absolute;
    left: 15px;
    right: 15px;
    top: -33px;
}

    .home-login-logo img {
        background: #fff;
        padding: 10px;
        border-radius: 5px;
        height: auto;
        width: 180px;
    }

.home-login-logo, .home-login-form .form-login {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.home-login-form .form-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0 !important;
    margin-top: 8px !important;
}

.home-login-form .form-login .btn {
    background: #fff;
    border-radius: 100px;
    min-width: 100px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s ease-in-out;
    border: 2px solid transparent;
    line-height: normal;
    padding: 7px 10px;
}

    .home-login-form .form-login .btn:hover,
    .home-login-form .form-login .btn:active,
    .home-login-form .form-login .btn:focus {
        background: transparent;
        color: #fff;
        border-color: #fff;
    }

.form-group.form-check .form-check-label {
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group.form-check a {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.home-login-form .form-group {
    position: relative;
}

    .home-login-form .form-group span.home-login-icon {
        position: absolute;
        top: 7px;
        left: 10px;
    }

    /*.validation-summary-errors {
    position: relative;
}*/
    /*.validation-summary-errors ul { 
    list-style:none; padding:0;
}*/
    .home-login-form .form-group input {
        padding: 10px 10px 10px 32px;
    }

header {
    background-color: #f5f7fa;
    border-bottom: 2px solid #e9edf2;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

    header .header-row {
        justify-content: space-between;
        align-items: center;
        margin: 0 -15px;
        flex-wrap: revert;
    }

.logo-header-search {
    display: flex;
    align-items: center;
    width: 100%;
    padding-right: 10px;
}

.header-search {
    margin-left: 10px;
    width: 100%;
    max-width: 760px;
}

    .header-search .form-group {
        position: relative;
        margin-bottom: 0;
    }

        .header-search .form-group input {
            min-width: 380px;
            padding-right: 41px;
            border-radius: 5px;
            background: #edf0f2;
            border-color: #e3e3e3;
            color: #949595;
        }

            .header-search .form-group input.form-control::placeholder {
                color: #949595;
            }

        .header-search .form-group .btn {
            border-radius: 50%;
            position: absolute;
            top: 1px;
            right: 1px; /*background: rgba(255,255,255,0.3);*/
            bottom: 1px;
            width: 36px;
            padding: 0;
            height: 36px;
            color: #949595;
        }

    .header-search .form-group-select {
        width: 100%;
    }

    .header-search .form-group.form-group-select input {
        min-width: 1px;
        max-height: 32px;
        box-shadow: 0px 0px 2.5px 0px transparent;
    }

    .header-search .form-group.form-group-select .k-multiselect-wrap.k-floatwrap {
        max-height: 35px;
        padding: 0 calc(.75rem + -9px) 0 0;
    }

.inner-form-group {
    width: 100%;
}

    .inner-form-group .form-group {
        margin: 0 !important;
        position: absolute;
        left: 0;
    }

.logo-burger {
    display: flex;
}

    .logo-burger .logo { /*background: rgba(255, 255, 255, 0.1);*/
        padding: 0 10px;
        height: 50px;
        display: flex;
        align-items: center;
        width: auto;
        justify-content: center;
    }

.header-link ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

    .header-link ul li {
        margin-right: 15px;
    }

.login-profile {
    position: absolute;
    right: 0;
    top: 51px;
    border: 1px solid #e8e8e8;
    width: 100%;
    max-width: 250px;
    display: none;
    z-index: 99;
}

.sub-menu-body .login-profile {
    position: static;
}

.login-profile-active {
    display: block;
}

.login-profile span {
    display: block;
}

.login-profile-img {
    text-align: center;
}

    .login-profile-img img {
        height: 80px !important;
    }

.login-profile-details {
    background-color: #01a1d3;
    padding: 10px 15px;
}

    .login-profile-details p {
        color: #fff;
        text-align: center;
        font-size: 18px;
        font-weight: 600;
        line-height: normal;
        margin-bottom: 0;
    }

        .login-profile-details p span {
            font-size: 12px;
            font-weight: normal;
        }

.signin-profile {
    background: #f9f9f9;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

    .signin-profile .btn {
        font-size: 15px;
        padding: 4px 15px;
    }

.header-link ul li a {
    color: rgba(47, 55, 64, 0.4);
    font-size: 18px;
    display: block;
}

    .header-link ul li a:hover {
        color: #8a9199;
    }

    .header-link ul li a.btn {
        color: #fff;
    }

.header-link img {
    height: 42px;
    border-radius: 50%;
}

.logo-burger .logo img {
    height: 43px;
}

.logo-burger .burger-icon {
    font-size: 28px;
    color: rgba(39,44,51,.5);
    display: flex;
    align-items: center;
    padding: 0 0 0 0;
}

.logo-burger .burger-icon {
    display: none;
}

    .logo-burger .burger-icon:hover,
    .logo-burger .burger-icon:active,
    .logo-burger .burger-icon:focus {
        text-decoration: none;
    }

/*=========================9-july- css new start ========================*/
.left-section {
    height: auto;
    overflow: visible;
    position: absolute;
    top: 50px; /*top: 62px; */
    left: 0;
    transition: all 0.8s ease;
    z-index: 9;
    right: 0;
}

    .left-section > ul {
        position: relative;
        width: 100%;
        height: auto;
        border-top: 1px solid #e9edf2;
        z-index: 2;
        /*background: #fff;*/

        margin-bottom: 0;
        display: flex;
        overflow: auto;
        scrollbar-width: thin;
        /*add css 9-10-2024*/
        /*padding: 0px 0px 0px 6px;*/
    }
        /*.left-section ul li { margin-bottom: 10px; }*/
        .left-section > ul > li {
            margin-bottom: 0;
            border-bottom: 1px solid #e9edf2;
            white-space: nowrap;
            border-right: 1px solid #e9edf2;
            border-radius: 6px;
            /*padding: 4px 4px;*/
            margin-right: 2px;
            background: linear-gradient(0deg, #00c1ff 0%, rgb(124 248 255) 46%, rgb(0 56 99) 100%);
        }

            .left-section > ul > li:last-of-type {
                margin-bottom: 0;
            }

            .left-section > ul > li.menu-profile-img {
                border-bottom: none;
                display: none;
                text-align: center;
                padding: 2px 0;
            }

                .left-section > ul > li.menu-profile-img img {
                    width: 55px;
                    border-radius: 50%;
                }

    .left-section ul li a {
        text-align: center;
        position: relative;
        /*color: rgba(47, 55, 64, 0.4); */
        color: #000;
        display: block;
        padding: 5px 10px 5px 10px;
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
        font-size: 13px;
        border-radius: 0;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .left-section ul ul li a {
        text-align: left;
        border: none;
    }

    .left-section ul li > a span {
        display: block;
        text-align: center;
        transition: all 0.8s ease; /*font-size: 30px;*/
        font-size: 19px;
        margin-bottom: 0;
    }
    /*.left-section ul li .ul-icon { position: absolute; left: 10px; }*/
    .left-section ul li .ul-chevron-down {
        float: right;
        display: none;
    }

    .left-section ul li.li-active .ul-chevron-down {
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .left-section ul ul li {
        margin-bottom: 3px;
    }

        .left-section ul ul li:last-child {
            margin-bottom: 0;
        }

        .left-section > ul > li.active > a,
        .left-section ul ul li.active a {
            /*color: #01a1d3;*/
            text-decoration: none;
        }

    .left-section ul li.li-li-active a, .left-section ul li.li-active > a, .left-section ul li a:hover {
        color: #fff;
        background: #01a1d3;
        text-decoration: none;
        /*padding: 4px 4px;*/
    }

    .left-section ul ul {
        padding: 0 0 0 10px;
        margin: 5px 0 5px 10px;
        border-left: 3px solid rgba(255, 255, 255, 0.5);
    }

        .left-section ul ul li a {
            padding: 6px 15px;
            font-size: 15px;
        }

            .left-section ul ul li a small {
                display: none;
            }

.right-section {
    margin-left: 0;
    transition: all 0.8s ease;
    background: #fbfafa;
}
/*.left-section-hide { left: -100%; }*/
.left-section.left-section-hide ul li > a span {
    font-size: 17px;
}

.left-section.left-section-hide > ul > li.menu-profile-img img {
    width: 40px;
}

.left-section.left-section-hide > ul {
    width: 48px;
}

.left-section.left-section-hide ul li a font {
    display: none;
}
/*--sub-menu-div--*/
.left-section .sub-menu-div {
    position: absolute; /*top: 77px; */
    /*top: 88px;*/
    left: -240px;
    /*background: #fff;*/
    width: auto;
    bottom: auto;
    overflow: auto;
    border-right: 1px solid #e9edf2;
    transition: all 0.5s ease-in-out;
    /*addd new*/
    top: 76px;
    width: 20%;
    /*height: 350px;*/
    min-height: 30px;
    max-height: 388px;
    overflow: auto;
    scrollbar-width: thin;
}

    .left-section .sub-menu-div.tog-sidebar-main {
        left: 0;
        right: 0;
    }

.left-section.left-section-hide .sub-menu-div.tog-sidebar-main {
    left: 48px;
}

.left-section ul li.li-li-active a, .left-section ul li.li-active > a, .left-section ul li a:hover {
    color: #fff;
    /*background: #01a1d3;*/
    background: #000000;
    text-decoration: none;
}

    .left-section ul li.li-li-active a img, .left-section ul li.li-active > a img, .left-section ul li a:hover img {
        filter: brightness(0) invert(1);
    }
/*=========================9-july- css new end ========================*/
/*=========================9-july- css start ========================*/

/*.left-section {
    height: 100vh;
    overflow: visible;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.8s ease;
}

    .left-section > ul {
        position: relative;
        width: 135px;
        height: 100vh;
        border-right: 1px solid #e9edf2;
        z-index: 2;
        background: #fff;
        margin-bottom: 0;
        overflow: auto;
        scrollbar-width: thin;
    }

        .left-section > ul::-webkit-scrollbar {
            width: 8px;
        }

        .left-section > ul::-webkit-scrollbar-track {
            background: #f7f7f7;
        }

        .left-section > ul::-webkit-scrollbar-thumb {
            background: #ccc;
        }

        .left-section > ul::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
*/

/*=====================================================*/
/*.left-section ul li { margin-bottom: 10px; }*/
/*=====================================================*/


/*.left-section > ul > li {
            margin-bottom: 0;
            border-bottom: 1px solid #e9edf2;
        }

            .left-section > ul > li:last-of-type {
                margin-bottom: 0;
            }

            .left-section > ul > li.menu-profile-img {
                border-bottom: none;
                display: block;
                text-align: center;
                padding: 0;
            }

        .left-section > ul > li.menu-profile-img img {
            width: 55px;
            border-radius: 50%;
        }

    .left-section ul li a {
        text-align: center;
        position: relative;
        color: rgba(47, 55, 64, 0.7);
        display: block;
        padding: 5px 10px 5px 10px;
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
        font-size: 14px;
        border-radius: 0;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .left-section ul ul li a {
        text-align: left;
        border: none;
    }

    .left-section ul li > a span {
        display: block;
        text-align: center;
        transition: all 0.8s ease;
        font-size: 25px;
        margin-bottom: 0;
    }*/

/*=====================================================================*/
/*.left-section ul li .ul-icon { position: absolute; left: 10px; }*/
/*=====================================================================*/

/*.left-section ul li .ul-chevron-down {
        float: right;
        display: none;
    }

    .left-section ul li.li-active .ul-chevron-down {
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .left-section ul ul li {
        margin-bottom: 3px;
    }

        .left-section ul ul li:last-child {
            margin-bottom: 0;
        }

        .left-section > ul > li.active > a,
        .left-section ul ul li.active a {
            color: #01a1d3;
            text-decoration: none;
        }

            .left-section > ul > li.active > a font {
                font-size: 16px;
                font-weight: normal;
            }

    .left-section ul li.li-li-active a, .left-section ul li.li-active > a, .left-section ul li a:hover {
        color: #fff;
        background: #01a1d3;
        text-decoration: none;
    }

        .left-section ul li.li-li-active a img, .left-section ul li.li-active > a img, .left-section ul li a:hover img {
            filter: brightness(0) invert(1);
        }

    .left-section ul ul {
        padding: 0 0 0 10px;
        margin: 5px 0 5px 10px;
        border-left: 3px solid rgba(255, 255, 255, 0.5);
    }

        .left-section ul ul li a {
            padding: 6px 15px;
            font-size: 15px;
        }

    .left-section > ul > li.menu-profile-img a {
        padding-left: 0;
        padding-right: 0;
    }

    .left-section ul ul li a small {
        display: none;
    }
*/
/*==============*/

/*.right-section {
    margin-left: 135px;
    transition: all 0.8s ease;
    background: #fbfafa;
}*/

/*=============*/


/*===============================================*/
/*.left-section-hide { left: -100%; }*/
/*===============================================*/



/*.left-section.left-section-hide ul li > a span {
    font-size: 17px;
}

.left-section.left-section-hide > ul > li.menu-profile-img img {
    width: 40px;
}

.left-section.left-section-hide > ul {
    width: 48px;
}

.left-section.left-section-hide ul li a font {
    display: none;
}
*/

/*============================*/
/*--sub-menu-div--*/
/*============================*/

/*.left-section .sub-menu-div {
    position: absolute;
    top: 52px;
    left: -240px;
    background: #fff;
    width: 240px;
    bottom: 0;
    overflow: auto;
    border-right: 1px solid #e9edf2;
    transition: all 0.5s ease-in-out;
    -webkit-box-shadow: 10px 0px 11px -7px rgba(0,0,0,0.2);
    -moz-box-shadow: 10px 0px 11px -7px rgba(0,0,0,0.2);
    box-shadow: 10px 0px 11px -7px rgba(0,0,0,0.2);
}

    .left-section .sub-menu-div.tog-sidebar-main {
        left: 135px;
    }

.left-section.left-section-hide .sub-menu-div.tog-sidebar-main {
    left: 48px;
}
*/
/*=========================9-july- css end ========================*/
/*.sub-menu-body {
    display: none;
}

    .sub-menu-body.tog-sidebar {
        display: block;
    }

.sub-menu-heading h3 {
    padding: 10px 10px;
    border-bottom: 1px solid #e9edf2;
    font-size: 17px;
    color: #fff;
    margin: 0;
    background: #01a1d3;
    display: flex;
    align-items: center;
}

    .sub-menu-heading h3 img {
        height: 16px;
        filter: brightness(0) invert(1);
    }

.sub-menu-content ul li a {
    text-align: left;
    border-bottom: 1px solid #e9edf2;
}*/



/*--sub-menu-div--*/


/*--sub-menu-div new start--*/
.sub-menu-body {
    display: none;
}

    .sub-menu-body.tog-sidebar {
        display: block;
    }

.sub-menu-heading {
    display: none;
}

    .sub-menu-heading h3 {
        padding: 10px 10px;
        border-bottom: 1px solid #e9edf2;
        font-size: 17px;
        color: #01a1d3;
        margin: 0;
    }

.sub-menu-content ul {
    margin-bottom: 0;
    /*display: flex;*/
    flex-wrap: wrap;
    background: #01a1d3;
    /* background: #01a1d3; */
}

    .sub-menu-content ul li {
        /*width: 20%;*/
        border-right: 1px solid #e9edf2;
    }

        .sub-menu-content ul li a {
            text-align: left;
            border-bottom: 1px solid #e9edf2;
            /*color: #fff;*/
            /*add css 9-10-2024*/
            color: #000000;
            /*background: linear-gradient(0deg, #00c1ff 0%, rgb(124 248 255) 46%, rgb(0 56 99) 100%);*/
            background: linear-gradient(0deg, #00c1ff 0%, rgb(124 248 255) 100%, rgb(0 56 99) 100%);
        }


            .sub-menu-content ul li.li-li-active a,
            .sub-menu-content ul li a:hover,
            .sub-menu-content ul li a:active,
            /*.sub-menu-content ul li a:focus { color: rgba(47, 55, 64, 0.4); background: #fff; }*/
            .sub-menu-content ul li a:focus {
                /*color: #fff;*/
                /*background: #fff;*/
                /*add css 9-10-2024*/
                color: #000;
                background: #017ca3;
            }
/*--sub-menu-div new end--*/





.right-section-margin {
    margin-left: 48px;
}

.row-flex {
    display: flex;
    margin: 0 -5px;
}

.row {
    margin: 0 -5px;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 5px;
    padding-left: 5px;
}

.main-col-flex {
    width: 100%;
    padding: 0 5px;
}

.bg-aqua, .bg-green, .bg-yellow, .bg-red, .bg-light-green {
    color: #fff !important;
}

.bg-aqua {
    background-color: #00c0ef !important;
}

.bg-green {
    background-color: #00a65a !important;
}

.bg-yellow {
    background-color: #f39c12 !important;
}

.bg-red {
    background-color: #dd4b39 !important;
}

.bg-light-green {
    background-color: #77dcdc !important;
}

.info-box {
    display: block;
    min-height: 90px;
    background: #fff;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    border-radius: 2px;
    margin-bottom: 15px;
}

.info-box-icon {
    border-top-left-radius: 2px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 2px;
    display: block;
    float: left;
    height: 90px;
    width: 90px;
    text-align: center;
    font-size: 45px;
    line-height: 90px;
    background: rgba(0,0,0,0.2);
    background-color: rgba(0, 0, 0, 0.2);
}

.info-box-content {
    padding: 5px 10px;
    margin-left: 90px;
}

.info-box-text {
    display: block;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .info-box-text small {
        font-size: 13px;
        display: block;
    }

.info-box-number {
    display: block;
    font-weight: bold;
    font-size: 18px;
}

.wrapper {
    /*min-height: calc( 100vh - 116px );
    overflow: visible;
    padding: 15px;
    background: url(../images/box-pattern-1.png) repeat;*/
    /*    height: calc(100vh - 116px);*/
    /* height: calc(100vh - 227px);*/
    height: calc(100vh - 205px);
    overflow: auto;
    padding: 15px 15px 0px;
    background: url(../images/box-pattern-1.png) repeat;
}

.box-section {
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 15px;
    height: calc( 100% - 15px );
    box-shadow: 0 0.46875rem 2.1875rem rgba(0, 0, 0, 0.03), 0 0.9375rem 1.40625rem rgba(0, 0, 0, 0.03), 0 0.25rem 0.53125rem rgba(0, 0, 0, 0.05), 0 0.125rem 0.1875rem rgba(0, 0, 0, 0.03);
}

.box-section-indi {
    height: auto;
    margin-bottom: 0;
}

.box-section-body {
    padding: 15px;
    overflow: auto;
    max-height: 325px;
    min-height: 295px;
}

.box-section-body-table {
    max-height: 100%;
    min-height: auto;
}
/*.table-box-section-body { padding: 0; }
.table-box-section-body .table { margin-bottom: 0 !important; }*/
.intramnsit {
    background: #8b4513;
    text-align: center;
    color: #fff !important;
}

.delivered {
    background: #228b22;
    text-align: center;
    color: #fff !important;
}

.box-section-body-table table.table {
    margin-bottom: 0;
}

.box-section-header {
    margin-right: 1px;
    margin-left: 1px;
}

    .box-section-header h2 {
        margin-bottom: 0;
        padding: 8px 15px;
        font-size: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.125);
        background: #fff;
        color: #333;
        text-transform: uppercase;
        font-weight: 600;
    }

.table {
    background: #fff;
}

    .table tr th,
    .table tr td {
        vertical-align: middle;
    }
/*.table tr th { font-weight: bold; }
.table-responsive .table tr th,
.table-responsive .table tr th { background: #fff; color: #333; }
.table-striped tbody tr,
.tab-content-single .table tr { background-color: rgba(255,255,255,1); }
.table-striped tbody tr:nth-of-type(2n+1),
.tab-content-single .table tr:nth-of-type(2n+1),
.tech-table-responsive .table-striped tbody tr:nth-of-type(2n) { background-color: #f9f9f9; }
.tech-table-responsive .table-striped tbody tr:nth-of-type(2n+1) { background-color: #fff; }
.tech-table-responsive .table-striped tbody tr td:first-child,
.tech-table-responsive .table-striped tbody tr td:last-child { text-align: center; vertical-align: middle; }
.tech-table-responsive .table-striped tbody tr td:last-child .btn { font-size: 14px; padding: 5px 15px; }
.tab-content-single .table { margin-bottom: 0; }*/
.cross-table {
    width: 45px;
    font-size: 15px !important;
    text-align: center;
    color: #f00 !important;
}

    .cross-table a {
        color: #f00;
    }

.form-add {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
/*--WebOE-start--*/
.wrapper .nav-tabs .nav-link {
    color: #495057;
    border-bottom: none;
    font-weight: 600;
    text-transform: capitalize;
    padding: 6px 15px;
}

.wrapper .nav.nav-tabs .nav-item {
    margin-left: 5px;
    background: #fff;
    margin-bottom: 0;
    border-radius: 5px 5px 0 0;
}

.wrapper .nav-tabs .nav-link.active {
    background: #01a1d3;
    color: #fff;
}

.wrapper .nav.nav-tabs .nav-item:first-child {
    margin-left: 0;
}

.wrapper .tab-content {
    background: #e6eaf0;
    border: 1px solid #dee2e6;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    padding: 10px;
    margin-bottom: 15px;
}

.wrapper .tab-content-single {
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

.wrapper .tab-pane h3 {
    margin: 7px -10px 5px -10px;
    background: #01a1d3;
    color: #fff;
    font-size: 18px;
    padding: 5px 10px;
}

    .wrapper .tab-pane h3:first-of-type {
        margin-top: -10px;
    }

.tab-pane .form-group {
    margin-bottom: 10px;
}

    .tab-pane .form-group > label {
        display: block;
        font-weight: 600;
    }

        .tab-pane .form-group > label small {
            font-size: 11px;
        }

.tab-pane label, .form-group-box label {
    font-weight: 600;
    margin-bottom: 3px;
}

    .tab-pane label span {
        color: #f00;
    }

.tab-pane .form-group input[type="radio"],
.date-filter-wrap .form-group input[type="radio"] {
    display: none;
}

.radio-row input[type="radio"] {
    display: inline !important;
}

.tab-pane .form-group .form-radio, .date-filter-wrap .form-group .form-radio {
    display: inline-flex;
    border: 1px solid #ced4da;
    height: auto;
    border-radius: .25rem;
    overflow: hidden;
    background: #fff;
}

    .tab-pane .form-group .form-radio label, .date-filter-wrap .form-group .form-radio label {
        margin-bottom: 0;
        display: flex;
        cursor: pointer;
    }

        .tab-pane .form-group .form-radio label span, .date-filter-wrap .form-group .form-radio label span {
            height: 100%;
            padding: 4px 12px;
            color: #333;
            font-size: 14px;
        }

.tab-pane .form-group input[type="radio"]:checked + span,
.date-filter-wrap .form-group input[type="radio"]:checked + span {
    color: #fff;
}

.tab-pane .form-group input[type="radio"].yes:checked + span {
    background: #28a745;
}

.tab-pane .form-group input[type="radio"].no:checked + span {
    background: #dc3545;
}

.date-filter-wrap .form-group input[type="radio"].yes:checked + span,
.date-filter-wrap .form-group input[type="radio"].no:checked + span {
    background: #4589c8;
}

input[type="date"] {
    background: #fff url(../images/calendar-week-solid.svg) no-repeat right 10px center / 15px;
}

input[type="search"] {
    background: #fff url(../images/search-solid.svg) no-repeat right 10px center / 15px;
}

.submit-row {
    display: flex;
    margin: 0 -10px -10px -10px;
    padding: 10px;
    justify-content: space-between;
    border-top: 1px solid #ccc;
}
/*--WebOE-end--*/
.btn-row {
    display: flex;
    margin-bottom: 10px;
    justify-content: flex-end;
}

    .btn-row .btn:first-child {
        margin-left: 0;
    }

    .btn-row .btn {
        margin-left: 5px;
    }

.btn-aqua {
    background: #00c0ef;
    color: #fff;
}

.btn-green {
    background: #00a65a;
    color: #fff;
}

.btn-yellow {
    background: #f39c12;
    color: #fff;
}

.btn-red {
    background: #dd4b39;
    color: #fff;
}

.btn-row .btn:hover {
    color: #fff;
}

.invoice-section {
    padding: 0 0 7px 0;
}

.tech-area {
    padding: 10px;
}

    .tech-area .tech-span {
        width: 50px;
        background: #6c757d;
        display: block;
        text-align: center;
        color: #fff;
        border-radius: 5px;
    }

        .tech-area .tech-span.tech-span-active {
            background: #337ab7;
        }

.tech-area-table {
    padding: 0;
}

    .tech-area-table table {
        margin-bottom: 0;
    }

.btn.btn-quote {
    background: #6c757d;
    color: #fff;
    margin-bottom: 5px;
}

.gps-icon {
    color: #337ab7;
}

.main-footer {
    background: #f5f7fa;
    padding: 5px 15px;
    color: #444;
    border-top: 2px solid #e9edf2;
}

    .main-footer p {
        margin-bottom: 0;
        text-align: center;
        font-size: 14px;
    }

        .main-footer p a {
            font-weight: 600;
        }

.invoice-section p {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 4px;
    margin-bottom: 4px;
}

    .invoice-section p:last-child {
        border: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

.box-section-form-control {
    display: flex;
}

    .box-section-form-control input,
    .box-section-form-control .btn {
        margin-left: 10px;
    }

.customer-details {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

    .customer-details p {
        width: 33.33%;
        padding: 0 5px;
        margin-bottom: 5px;
    }

        .customer-details p:last-child {
            width: 100%;
        }

.balance-div {
    display: flex;
    justify-content: space-between;
}

    .balance-div p {
        margin-bottom: 0;
    }

.pie-chart svg {
    color: #00c0ef;
}

.line-chart svg {
    color: #00a65a;
}

.icon-table svg {
    color: #dd4b39;
}

.bar-chart svg {
    color: #f39c12;
}

/*--grid--*/
.grid-section-body {
    height: auto;
    max-height: 100%;
    min-height: auto;
    padding: 0;
}

    .grid-section-body .table-bordered.table {
        margin-bottom: 10px;
    }

    .grid-section-body .table-bordered tr th {
        background-color: #f6f6f6;
        font-weight: normal;
    }

    .grid-section-body tr th a {
        float: right;
        color: #656565;
    }

    .grid-section-body .table-bordered thead td,
    .grid-section-body .table-bordered thead th {
        border-bottom-width: 1px;
    }

    .grid-section-body .table-bordered tr th, .grid-section-body .table-bordered tr td {
        padding: 8px;
        color: #656565;
    }

        .grid-section-body .table-bordered tr th:first-child,
        .grid-section-body .table-bordered tr td:first-child {
            text-align: center;
        }

        .grid-section-body .table-bordered tr td .table {
            margin: 0;
            border: none;
        }

            .grid-section-body .table-bordered tr td .table td {
                text-align: left;
            }

            .grid-section-body .table-bordered tr td .table tr:first-child td {
                border-top: none;
            }

            .grid-section-body .table-bordered tr td .table tr td:first-child {
                border-left: none;
            }

            .grid-section-body .table-bordered tr td .table tr td:last-child {
                border-right: none;
            }

            .grid-section-body .table-bordered tr td .table tr:last-child td {
                border-bottom: none;
            }

.grid-header {
    display: flex;
    justify-content: space-between;
}

.grid-header-btn {
    display: flex;
}

    .grid-header-btn .btn {
        border-color: rgba(0,0,0,0.08);
        margin-left: 5px;
        color: #212529 !important;
    }

        .grid-header-btn .btn:first-child {
            margin-left: 0;
        }

.user-type-icon {
    display: block;
    text-align: center;
}

.edit-icon {
    color: #007bff;
}

.trash-icon {
    color: #dc3545;
    padding: 0;
    border: none;
    background: transparent;
    display: inline-block;
    text-align: center;
}

    .trash-icon:hover,
    .trash-icon:active,
    .trash-icon:focus {
        color: #c82333;
    }

.grid-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid-pagination ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

    .grid-pagination ul li {
        margin-left: 5px;
    }

        .grid-pagination ul li:first-child {
            margin-left: 0;
        }

        .grid-pagination ul li.grid-pagination-arrow a {
            color: #656565;
        }

        .grid-pagination ul li a {
            display: flex;
            width: 30px;
            height: 30px;
            justify-content: center;
            align-items: center;
            color: #01a1d3;
        }

            .grid-pagination ul li a.active {
                background-color: #01a1d3;
                color: #fff;
            }

            .grid-pagination ul li a:hover {
                text-decoration: none;
                background: rgba(0,0,0,0.1);
                color: #01a1d3;
            }
/*--grid--*/

/*--form--*/
.form-control {
    border-color: rgba(0,0,0,0.15);
    color: #656565;
    border-radius: 3px;
}

.tab-pane label, .form-group-box label {
    margin-bottom: 3px;
    color: #656565;
    font-size: 17px;
}
/*--form--*/

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
}

.breadcrumb-item label {
    margin: 0;
}

.breadcrumb {
    /*    margin: 0 !important;*/
    border-radius: 0 !important;
    background: #fff !important;
    justify-content: flex-start;
    padding: 7px 15px !important;
    /*margin: 90px 0 0 0;*/
    /*margin: 124px 0 0 0;*/
    /*add-css-9-10-2024*/
    margin: 72px 0 0 0;
}

    .breadcrumb li {
        font-size: 14px;
    }

    .breadcrumb .breadcrumb-item a {
        color: #01a1d3;
    }

/*@media(min-width: 767px){ 
.logo-burger .burger-icon { display: none; }
}
*/
@media(max-width: 991px) {
    .row-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-col-flex {
        width: 50%;
    }
}

@media(max-width: 767px) {
    .left-section:before {
        display: none;
    }

    .header-search .form-group input {
        min-width: auto;
        width: 114px;
    }
}

@media(max-width: 600px) {
    .header-search {
        display: none;
    }
}

@media(max-width: 480px) {
    .main-col-flex {
        width: 100%;
    }

    .header-search .form-group input {
        min-width: auto;
        width: 167px;
        margin-left: 10px;
    }

    .logo-burger .logo img {
        height: 35px;
    }

    .logo-burger .burger-icon {
        padding: 0 0;
    }
}

.grid-header-input {
    position: relative;
}

    .grid-header-input .btn {
        position: absolute;
        top: 0;
        right: 0;
    }

    .grid-header-input .form-control {
        padding-right: 47px;
    }

.wrapper .tab-pane h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .wrapper .tab-pane h3 span {
        font-size: 14px;
    }

/*--25-02-2020--*/
.phone-flex-form {
    display: flex;
}

    .phone-flex-form .phone-ext {
        width: 54px;
        margin-right: 5px;
    }

.col-con-num {
    max-width: 100%;
}

.form-navs-mid, .form-navs {
    display: flex;
    justify-content: center;
    height: auto;
}

    .form-navs .tab-content {
        max-width: 90%;
        min-width: 90%;
    }

    .form-navs-mid .tab-content {
        max-width: 655px;
        min-width: 1px;
        width: 100%;
    }

.form-group-row {
    display: flex;
}

    .form-group-row .form-group {
        width: 25%;
        padding-left: 10px;
    }

        .form-group-row .form-group:first-child {
            padding-left: 0;
        }

.check-row {
    display: block;
    width: 100%;
}

    .check-row .col-check {
        display: inline-block;
        width: 24%;
        padding: 0 5px;
    }

        .check-row .col-check label {
            display: inline;
        }

.tab-content input[readonly] {
    background: #e4e4e4;
}

/*--25-02-2020--*/
.roles-form-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .roles-form-group label {
        margin: 0 10px 0 0;
    }

    .roles-form-group select {
        width: auto;
    }



.check-box-remember-me input {
    top: 2px;
    position: relative;
}

.forgot-password-confirmation {
    position: relative;
    text-align: center;
}

.forgot-password-confirmation-img img {
    width: 40px;
    margin-bottom: 6px;
}

.forgot-password-confirmation h1 {
    font-size: 25px;
    font-weight: 600;
}

.forgot-password-confirmation p {
    font-size: 17px;
}

.forgot-password-pa p a {
    color: #0056b3;
}

.form-btn-mid {
    display: flex;
    margin-top: 10px;
    justify-content: center;
}

.table thead {
    background-color: #f6f6f6 !important;
}

    .table thead th {
        border-bottom: 1px solid #dddddd;
        color: #656565;
        padding: 7px 10px;
        border-left: 1px solid #ddd;
        font-size: 16px;
        font-weight: 500;
    }

.table tbody td {
    border-bottom: 1px solid transparent;
    color: #656565;
    padding: 7px 10px;
    border-left: 1px solid #ddd;
    font-size: 15px;
}

.table tbody {
    border-top: none !important;
}

.text-danger-invalid {
    position: relative;
}

    .text-danger-invalid ul {
        list-style: none;
        padding: 0;
    }

.home-login-form .form-login .btn.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.home-login-form .form-login .btn.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

    .home-login-form .form-login .btn.btn-danger:hover,
    .home-login-form .form-login .btn.btn-danger:active,
    .home-login-form .form-login .btn.btn-danger:focus {
        background-color: #c82333;
        border-color: #c82333;
    }

.tab-pane .form-group > label {
    display: inline-block;
}

.tab-pane .h3-form-group {
    margin: 0;
}

.h3-form-group label {
    margin: 0;
    color: #fff !important;
}

/*--11-april-2020--*/
.form-row .col {
    min-width: 1px;
}

.form-row .code-creiteria {
    max-width: 180px;
    min-width: 180px;
}

.form-row .numbers-section {
    max-width: 80px;
}

.form-row .color-code-sel label {
    display: block;
}

.form-inline-flex + .text-danger {
    display: block;
    text-align: right;
}

.tab-pane .form-group > label, .tab-pane .form-inline-flex > label {
    font-weight: 400;
    font-size: 14px;
    color: #333;
}

.form-row .col-name {
    max-width: 33.33%;
}

.col-label-block label {
    display: block !important;
}

.form-row .col-date-sec, .form-row .col-time-sec, .form-row .col-weight-sec, .form-row .col-pieces-sec {
    max-width: 160px;
    min-width: 160px;
}

.form-row .col-number-sec {
    max-width: 215px;
    min-width: 215px;
}

.grid-section-body tr th {
    font-weight: 600 !important;
}

.grid-section-body-nowrap tr th {
    white-space: nowrap;
}

.grid-section-body-nowrap .table-bordered tr th {
    background-color: #f8f9fa;
}

.table tbody td {
    border-bottom: 1px solid #dddddd !important;
}

.helf-section-right {
    border-right: 1px solid #ccc;
    margin-right: 10px;
    flex: 0 0 calc( 50% - 10px );
    width: calc( 50% - 10px );
}

.helf-section-left {
    border-left: 1px solid #ccc;
    margin-left: 10px;
    flex: 0 0 calc( 50% - 10px );
    width: calc( 50% - 10px );
}

.wrapper .tab-pane .helf-section-right h3 {
    margin-right: -6px;
}

.edit-delete-btn .btn {
    margin-left: 5px;
}

    .edit-delete-btn .btn:first-child {
        margin-left: 0;
    }

.label-block .form-group label {
    display: block !important;
}

.label-block .form-group {
    text-align: center;
}

    .label-block .form-group input {
        min-width: 120px;
    }

.btn-group-form {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

    .btn-group-form .btn {
        margin-left: 10px;
        border-color: #ccc;
    }

        .btn-group-form .btn:first-child {
            margin-left: 0;
        }

        .btn-group-form .btn img {
            height: 32px;
        }

.submit-mid-row, .submit-row-center {
    justify-content: center;
}

    .submit-mid-row div .btn, .submit-row-center div .btn {
        margin-left: 10px;
    }

    .submit-mid-row div:first-child .btn {
        margin-left: 0;
    }

.form-last-sec {
    border-top: 1px solid #ccc;
    justify-content: center;
    margin-top: 10px;
}

    .form-last-sec label input {
        margin-left: 0;
        position: relative;
    }

@media(max-width:767px) {
    .col-con-num {
        max-width: 100%;
    }

    .form-navs-mid {
        height: auto;
    }

    .check-row .col-check {
        width: 100%;
    }

    .helf-section-right {
        margin-right: 0;
        flex: 0 0 100%;
        width: 100%;
        border: none;
    }

    .helf-section-left {
        margin-left: 0;
        flex: 0 0 100%;
        width: 100%;
        border: none;
    }

    .wrapper .tab-pane .helf-section-right h3, .wrapper .tab-pane .helf-section-left h3 {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }

    .wrapper .tab-pane .helf-section-left h3 {
        margin-top: 0 !important;
    }
}

@media(max-width:767px) {
    .form-row .col {
        min-width: 50% !important;
        max-width: 50% !important;
    }

    .form-row .form-group.col {
        min-width: 33.33% !important;
        max-width: 33.33% !important;
    }
}

@media(max-width:575px) {
    .form-row .col, .form-row .form-group.col {
        min-width: 100% !important;
        max-width: 100% !important;
    }
}
/*--11-april-2020--*/

.left-section {
    /*z-index: 9999;*/
    z-index: 999;
}

.form-group-check {
    position: relative;
}

    .form-group-check input[type="radio"] {
        display: block !important;
    }

    .form-group-check input[type="checkbox"],
    .form-group-check input[type="radio"] {
        margin-top: 0;
        position: absolute;
        top: 6.5px;
        left: 0;
        z-index: 999;
    }


    .form-group-check br + label + input[type="checkbox"],
    .form-group-check br + label + input[type="radio"],
    .form-group-check br + input[type="checkbox"],
    .form-group-check br + input[type="radio"] {
        top: 30.5px;
    }

    .form-group-check label {
        padding-left: 17px;
    }
/*--23-04-2020--*/
.k-button-icontext svg {
    margin: 0 .375rem 0 -.375rem;
}

.k-grid-top {
    justify-content: flex-end;
    display: flex;
}

.k-edit-cell > .text-box, .k-grid-edit-row > td > .text-box {
    margin-left: 0px !important;
    width: 100%;
}

.k-edit-container {
    padding: 0 !important;
}

.k-pager-numbers .k-state-selected {
    font-weight: bold;
}

.k-pager-numbers .k-link {
    font-weight: bold;
}

.k-grid-content {
    max-height: 296px;
}

.k-dropdown .k-dropdown-wrap, .k-dropdowntree .k-dropdown-wrap {
    background-color: #fff;
}
/*--23-04-2020--*/

/*--24-04-2020--*/
.collapse-header .fa-plus {
    display: none;
}

.collapse-header .fa-minus {
    display: block;
}

.collapse-header.collapsed .fa-minus {
    display: none;
}

.collapse-header.collapsed .fa-plus {
    display: block;
}
/*--24-04-2020--*/

/*--25-04-2020--*/
.box-section-table {
    height: auto;
    overflow: visible;
    /*-webkit-box-shadow: 0px 0px 5px 0px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(255,255,255,1);
    box-shadow: 0px 0px 5px 0px rgba(255,255,255,1);*/
}

    .box-section-table .box-section-header h2 {
        border-bottom: none;
    }

    .box-section-table .k-header .k-button {
        padding: 4px 15px;
    }

    .box-section-table .k-grouping-header {
        line-height: normal;
        padding: 10px;
    }

    .box-section-table .k-grid-header tr th {
        text-align: left;
        vertical-align: top;
        padding: 8px 10px;
    }

        .box-section-table .k-grid-header tr th .k-link {
            display: block !important;
            margin: 0 !important;
            padding: 0 !important;
            width: 100%;
            color: #656565;
        }

        .box-section-table .k-grid-header tr th span.k-link {
            text-align: center;
        }

    .box-section-table .k-grid-header tr th,
    .box-section-table .k-grid-content tr td {
        font-size: 15px;
    }

    .box-section-table .k-grid-content tr td {
        border-bottom: 1px solid #dde2e7;
        padding: 6px 10px;
    }

    .box-section-table .k-grid-content tr:last-child td {
        border-bottom: none;
    }

    .box-section-table .k-grid-content tr td .k-button {
        padding: 0;
        display: block;
        width: 100%;
        background: transparent;
        border: none;
        color: #007bff;
    }

    .box-section-table .k-grid-content tr td .k-grid-delete {
        color: #dc3545;
    }

.k-header.k-grid-toolbar.k-grid-top {
    display: flex;
    justify-content: center;
}

@media(min-width: 767px) {
    .box-section-table-position {
        position: relative;
        margin-bottom: 0;
    }

        .box-section-table-position h2.icon-table {
            position: absolute;
            top: 5.5px;
            z-index: 99;
            background: transparent;
            left: 0;
            text-transform: capitalize;
        }

        .box-section-table-position .k-grid-content {
            max-height: calc( 100vh - 335px );
            min-height: 77px;
        }

    .k-header.k-grid-toolbar.k-grid-top {
        justify-content: flex-end;
        display: flex;
    }
}

.tab-pane-active .text-box.single-line {
    width: 64px;
    text-align: center;
}

.grid-section-white .k-grid-content tr td:nth-child(4) {
    white-space: nowrap;
    text-align: center;
}

    .grid-section-white .k-grid-content tr td:nth-child(4) input,
    .grid-section-white .k-grid-content tr td:nth-child(4) button,
    .grid-section-white .k-grid-content tr td:nth-child(4) a {
        display: inline-block;
        width: auto;
        margin: 0 5px;
    }

    .grid-section-white .k-grid-content tr td:nth-child(4) span.k-icon {
        margin-left: 0;
    }

/*--25-04-2020--*/

/*--02-05-2020--*/
.validation-text {
    color: #f00 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    display: block !important;
}

.agent-details-box-main {
    display: flex;
    justify-content: center;
}

.agent-details-box {
    width: 100%;
    max-width: 480px;
    padding: 10px;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    display: block;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

    .agent-details-box p {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px dashed #ccc;
        margin-bottom: 5px;
        padding-bottom: 5px;
    }

        .agent-details-box p:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border: none;
        }
/*--02-05-2020--*/

/*--06-05-2020--*/
.box-section-table-dis .k-grid-header tr th span.k-link {
    text-align: left;
}

.box-section-table-dis tbody tr td,
.box-section-table.box-section-table-position tbody tr td {
    padding: 6px 10px !important;
}

.k-grid-header .k-header {
    position: relative;
}

    .k-grid-header .k-header .k-grid-filter {
        padding: 0 !important;
        height: auto !important;
        width: auto !important;
        position: absolute;
        right: 4px;
        top: 0;
        bottom: 0;
    }

.mini-section-table-position .k-grid-content {
    max-height: 77px;
}

.box-section-table.box-section-table-position tbody tr td.k-edit-container {
    padding: 0 !important;
}

.select-td-span {
    display: inline-block;
    padding: 2px 10px;
}

.select-rate-btn {
    background: #007bff;
}

.box-section-table.box-section-table-position tbody tr:hover .select-rate-btn {
    background-color: #004c9c;
    border-color: #004c9c;
}

.mini-section-table-position tr th .k-link {
    text-align: left !important;
}

.k-grid-header .k-header .k-grid-filter.k-state-active {
    background: transparent;
    color: #007bff;
}
/*--06-05-2020--*/

.tab-pane {
    display: none;
}

    .tab-pane.active {
        display: block;
    }

.header-link .login-profile-name p a,
.header-link .login-profile-name p a:hover,
.header-link .login-profile-name p a:active {
    color: #fff;
    font-size: 12px;
}

.login-profile-name {
    margin-top: 5px;
}

.login-profile-details p span {
    margin-bottom: 2px;
}

/*--08-05-2020---*/
.wrapper {
    /*padding: 3px;
    overflow-x: visible;*/
    /*height: calc(100vh - 227px);
    overflow: auto;
    padding: 15px;
    background: #f5f7fa;*/
}

.box-section-table .k-header .k-button {
    padding: 3px 15px;
}

.k-pager-wrap .k-link, .k-pager-wrap .k-state-selected {
    min-width: 1px;
    height: auto;
}

.k-pager-numbers .k-state-selected, .k-pager-numbers.k-reset li a {
    height: auto;
    padding: 2px 10px;
}

.box-section-table .k-grouping-header {
    padding: 7px 10px;
}

.box-section-table .k-grid-header tr th {
    padding: 6px 10px;
}

.box-section-table-dis tbody tr td, .box-section-table.box-section-table-position tbody tr td {
    padding: 4px 10px !important;
}

.box-section-table .k-header .k-button {
    padding: 2px 13px !important;
    font-size: 15px;
}

span.k-textbox.k-grid-search.k-display-flex {
    height: auto;
    padding: 2px 13px;
}

.k-input-icon {
    width: auto;
}

.tab-pane .form-group {
    margin-bottom: 3px;
}

.submit-row {
    margin: 7px -10px -10px -10px;
}

.submit-row {
    padding: 6px 10px;
}

.btn {
    padding: 3px 12px;
}

.form-control, .k-combobox .k-dropdown-wrap .k-input {
    font-size: 14px;
    padding: 3px 10px;
}

.wrapper .tab-content {
    margin-bottom: 0;
}

.k-colorpicker .k-selected-color {
    padding: 0;
    height: 33px;
}

.icon-table-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.n-btn-bottom {
    border-radius: 0 0 3px 3px;
    background: #f8f9fa;
    z-index: 99999;
    padding: 5px 10px;
    border: 1px solid #dde2e7;
    border-top: none;
}

.with-some-thing-at-top {
    margin-top: 3px;
}

.col.col-con-num.col-number-sec {
    font-size: 14px;
}

.with-some-thing-at-top .k-grid-content.k-auto-scrollable, .no-overflow {
    max-height: 100%;
    overflow-x: visible;
}

@media (min-width: 768px) {
    .box-section-table-position h2.icon-table {
        top: auto;
        height: 41px;
        align-items: center;
        display: flex;
    }

    .box-section-table-position .k-grid-content {
        max-height: 100%;
        min-height: 1px;
        height: auto !important;
    }

    .icon-table-flex span.k-widget.k-combobox.k-dropdowngrid.k-combobox-clearable {
        max-width: 217px;
        margin-left: 10px;
        position: relative;
        top: -7px;
    }

    .icon-table-flex {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .box-section-table-with-bottom-btn.box-section-table-position .k-grid-content {
        max-height: calc( 100vh - 290px );
    }

    #filterHide {
        margin-left: 5px;
        position: relative;
        top: -5px;
    }
}
/*--08-05-2020---*/
.tab-pane {
    display: none;
}

    .tab-pane.active {
        display: block;
    }



/*--09-05-2020--*/

@media(max-width:991px) {
    .wrapper {
        height: auto;
        overflow: visible;
    }
}

@media(max-width:767px) {
    .form-navs .tab-content {
        max-width: 100%;
        min-width: 100%;
    }
}

.field-validation-error span {
    font-size: 13px;
    font-weight: 600;
}

.input-validation-error {
    border-color: #dc3545;
}

.field-validation-error {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #dc3545 !important;
}

    .field-validation-error span.k-icon {
        display: none;
    }

.tab-content .k-invalid {
    border-color: #dc3545;
}

tr th {
    padding: 6px 21px 6px 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #656565 !important;
}

.k-list-scroller .k-cell {
    padding: 6px 10px !important;
    font-size: 15px !important;
    color: #656565 !important;
}

.k-list-scroller ul li {
    border-bottom: 1px solid #dde2e7 !important;
}

    .k-list-scroller ul li:last-child {
        border-bottom: none !important;
    }

.k-button {
    padding: 0 12px 0 12px !important;
    height: auto;
    font-size: 14px;
}

.k-colorpicker, .k-colorpicker .k-selected-color {
    width: 100%;
}
/*--09-05-2020--*/

.validation-summary-errors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .validation-summary-errors ul li, .text-success {
        font-size: 14px;
        font-weight: 600;
    }

.manageformtextdiv .manageformlabel {
    display: flex;
    margin-bottom: 5px;
}

    .manageformtextdiv .manageformlabel:last-child {
        margin-bottom: 0;
    }

    .manageformtextdiv .manageformlabel dd {
        margin-bottom: 0;
        margin-left: 5px;
    }

        .manageformtextdiv .manageformlabel dd input {
            padding: 0;
            margin-top: -5px;
        }

    .manageformtextdiv .manageformlabel dt {
        font-weight: 600;
    }

    .manageformtextdiv .manageformlabel dt, .manageformtextdiv .manageformlabel dd {
        font-size: 14px;
        color: #333;
    }

/*--11-may-2020--*/
.box-section-table .k-grid-content tr td.agent-view-icon a {
    display: inline-block;
    width: auto;
}

.k-dropdowngrid {
    background: #e6eaf0 !important;
}
/*--11-may-2020--*/

/*--12-may-2020--*/
.k-widget.k-timepicker {
    width: 100%;
}
/*--12-may-2020--*/


/*--13-05-2020--*/
.icon-table-flex span.k-widget.k-combobox.k-dropdowngrid.k-combobox-clearable {
    background: #f8f9fa !important;
}

@media(max-width:767px) {
    h2.icon-table.icon-table-flex {
        display: flex;
        flex-wrap: wrap;
    }

    .heading-label-span {
        display: block;
        margin-bottom: 5px;
    }

    #filterHide {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        margin-top: 5px;
    }

    .k-header.k-grid-toolbar.k-grid-top {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

        .k-header.k-grid-toolbar.k-grid-top .k-button {
            margin-top: 2px;
            margin-bottom: 2px;
        }
}

@media(max-width:575px) {
    .form-row .col.pieces-col {
        min-width: calc(100% - 120px) !important;
        max-width: calc(100% - 120px) !important;
    }

    .form-row .col.add-item-col {
        min-width: 120px !important;
        max-width: 120px !important;
    }
}
/*--13-05-2020--*/

.box-form-tabs {
    display: inline-flex;
    border: 1px solid #ccc;
    padding: 6px 10px;
    background: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
    align-items: center;
}

.box-section-table-border-none .k-grid-content tr td {
    border-bottom: none;
}

.k-dropdown .k-dropdown-wrap .k-input, .k-dropdowntree .k-dropdown-wrap .k-input {
    height: 33px;
}

.table-top-mid-section {
    text-align: center;
    background: #f8f9fa;
    padding: 6px 10px;
    border: 1px solid #dde2e7;
    border-bottom: none;
}
/*.k-edit-cell .text-box {
    height: 23px;
    text-align: left !important;
}
.box-section-table-dis tbody tr td, .box-section-table.box-section-table-position tbody tr td { min-height: 32px; }*/

.upload-file-form-group {
    display: flex;
}

    .upload-file-form-group .btn.btn-link {
        white-space: nowrap;
    }



/*--19-05-2020--*/
img.sign-img {
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}

.header-div {
    display: flex;
    align-items: center;
}

    .header-div input {
        padding: 2px 10px;
        margin-left: 10px;
    }
/*--19-05-2020--*/

/*-20-05-2020--*/
@media(min-width: 768px) {
    .half-drop {
        display: flex;
        flex-wrap: wrap;
    }

    .half-drop-section {
        width: 50%;
    }

    .full-drop-section {
        width: 100%;
    }

    .half-drop .half-drop-section:first-child h3 {
        margin-right: 0 !important;
        margin-top: 7px !important;
    }

    .half-drop .half-drop-section:last-child h3 {
        margin-top: 7px !important;
        border-left: 1px solid #fff;
    }

    body .half-drop-top .half-drop-section:first-child h3, body .half-drop-top .half-drop-section:last-child h3 {
        margin-top: -10px !important;
    }

    .half-drop .half-drop-section:first-child > div, .half-drop .half-drop-section:last-child > div {
        margin: -7px -10px -7px -10px;
        padding: 7px 10px;
    }

    .half-drop .half-drop-section:last-child > div {
        border-left: 1px solid #ccc;
    }
}

body .half-drop-top .half-drop-section:first-child h3, body .half-drop-top .half-drop-section:last-child h3 {
    margin-top: 7px !important;
}
/*-20-05-2020--*/

/*-21-05-2020--*/
.big-box-full {
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

    .big-box-full:last-child {
        margin-bottom: 0;
    }
/*-21-05-2020--*/

/*--22-05-2020--*/
.wrapper .tab-pane .h3-div-strat h3 {
    margin-top: 7px;
}

.center-align-row .col-md-4.col-sm-12 {
    display: flex;
    align-items: center;
}
/*--22-05-2020--*/
/*-26-05-2020-*/
.big-box-full h2 {
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #ccc;
}
/*-26-05-2020-*/

/*--29-05-2020--*/
.servicetype-error {
    font-size: 15px;
    font-weight: 600;
    padding: 2px 14px;
}
/*--29-05-2020--*/


.header-div .btn {
    padding: 0 7px;
}

.big-box-full-row {
    display: flex;
}

.big-box-full {
    /*margin-left: 10px;*/
    min-height: 122px;
}

    .big-box-full:first-child {
        margin-left: 0;
    }

.showRateData table {
    margin-bottom: 0;
    margin-top: 10px;
}

.showRateData tr td {
    padding: 5px 10px !important;
    font-size: 14px;
}

.showRateData .table-responsive {
    background: #fff;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-top: 0;
}

.access-denied-page {
    display: flex;
    height: calc(100vh - 126px);
    justify-content: center;
    align-items: center;
}

.access-denied-content {
    background: #fff;
    padding: 10px 20px 20px;
    width: 100%;
    max-width: 520px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 11px 2px rgba(219,219,219,1);
    -moz-box-shadow: 0px 0px 11px 2px rgba(219,219,219,1);
    box-shadow: 0px 0px 11px 2px rgba(219,219,219,1);
}

    .access-denied-content > div {
        text-align: center;
    }

.access-denied-icon {
    font-size: 118px;
    color: #dc3545;
}

.access-denied-text h3 {
    font-size: 35px;
    margin-bottom: 15px;
}

.access-denied-text p {
    font-size: 15px;
    margin-bottom: 15px;
}

@media(max-width: 767px) {
    .access-denied-page {
        height: auto;
        align-items: flex-start;
    }
}

@media(min-width: 767px) {
    .k-grid-content.k-auto-scrollable {
        max-height: calc( 100vh - 286px );
        height: auto !important;
    }

    .max-three .k-grid-content.k-auto-scrollable {
        max-height: 125px;
    }

    .grid-section-without-drop-body .k-grid-content.k-auto-scrollable {
        max-height: calc( 100vh - 246px );
    }

    .with-some-thing-at-top .k-grid-content.k-auto-scrollable {
        max-height: calc( 100vh - 326px );
    }

    .with-some-thing-at-top-second .k-grid-content.k-auto-scrollable {
        max-height: calc( 100vh - 333px );
    }

    .email-template-iframe .k-editable-area iframe.k-content {
        height: calc( 100vh - 395px );
    }

    .posi-sticky {
        overflow: visible;
    }

        .posi-sticky tr th {
            position: sticky;
            top: -5px;
        }

    .with-filter-at-top .k-grid-content.k-auto-scrollable {
        max-height: calc( 100vh - 335px );
    }
}


.icon-table-flex span.k-widget.k-combobox.k-dropdowngrid.k-combobox-clearable {
    margin-top: 15px;
}

.dts-loader, .loading-data {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0,0,0,0.3);
    display: none;
    justify-content: center;
    align-items: center;
}

    .dts-loader.active, .loading-data.active {
        display: flex;
    }

    .dts-loader .lds-ring, .loading-data .lds-ring {
        display: inline-block;
        position: relative;
        width: 80px;
        height: 80px;
    }

        .dts-loader .lds-ring div, .loading-data .lds-ring div {
            box-sizing: border-box;
            display: block;
            position: absolute;
            width: 64px;
            height: 64px;
            margin: 8px;
            border: 8px solid #01a1d3;
            border-radius: 50%;
            animation: dts-loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
            border-color: #01a1d3 transparent transparent transparent;
        }

            .dts-loader .lds-ring div:nth-child(1), .loading-data .lds-ring div:nth-child(1) {
                animation-delay: -0.45s;
            }

            .dts-loader .lds-ring div:nth-child(2), .loading-data .lds-ring div:nth-child(2) {
                animation-delay: -0.3s;
            }

            .dts-loader .lds-ring div:nth-child(3), .loading-data .lds-ring div:nth-child(3) {
                animation-delay: -0.15s;
            }

@keyframes dts-loader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.k-multiselect-wrap input.k-input {
    padding: 0 0 0 10px !important;
    height: 33px !important;
    font-size: 14px !important;
}

/*.k-multiselect-wrap { height: 35px !important; }*/
.k-dropdowntree .k-multiselect-wrap::before, .k-multiselect .k-multiselect-wrap::before {
    height: 33px;
}

.k-multiselect-wrap ul li {
    margin: 2px !important;
    padding: 2px !important;
}

    .k-multiselect-wrap ul li span {
        font-size: 13px !important;
    }

.k-multiselect .k-multiselect-wrap .k-button .k-select {
    margin-left: 2px;
}

.k-list-container {
    padding: 0 0 !important;
}

    .k-list-container ul li {
        padding: 5px 10px !important;
        font-size: 14px !important;
    }

.min-height-table .k-grid-content.k-auto-scrollable {
    min-height: 38px;
    max-height: 272px;
}

.order-note-pop .modal-header {
    padding: 10px;
    background: #01a1d3;
    color: #fff;
}

    .order-note-pop .modal-header h4 {
        font-size: 18px;
    }

    .order-note-pop .modal-header .close {
        color: #fff;
        opacity: 1;
        background: #dc3545;
        padding: 0;
        right: 0;
        margin: 0;
        position: absolute;
        top: 0;
        height: 47px;
        width: 47px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

.order-note-pop .modal-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.order-note-pop .form-group label {
    font-size: 13px;
}

tr th span, tr th, tr td span, tr td {
    font-size: 14px !important;
}

.box-section-table {
    box-shadow: none;
}

.btn-border {
    border: 2px solid #007bff !important;
    padding: 3px 12px !important;
}

.btn-success-green {
    color: #28a745;
    border-color: #28a745;
    border: 2px solid #28a745 !important;
}

    .btn-success-green:hover {
        color: #28a745;
    }

.btn-border-detail {
    padding: 3px 12px !important;
}

label.span-checkbox input {
    display: none !important;
}

label.span-checkbox span {
    display: block;
    width: 13px;
    height: 13px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/checkbox/uncheck.jpg);
    border-radius: 3px;
}

label.span-checkbox-active span {
    background-image: url(../images/checkbox/inactive.png);
}

label.span-checkbox input:checked + span {
    background-image: url(../images/checkbox/check.jpg);
}

.border-bottom-div {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

    .border-bottom-div .form-group {
        margin-bottom: 0;
    }

.test-success-dts {
    font-size: 14px;
    color: #28a745;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.text-error-dts {
    color: #dc3545;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-group-label label {
    display: block !important;
}

.table-top-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .table-top-form label {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .table-top-form input {
        width: auto;
    }

/*--02-07-2020--*/
.k-dropdown-wrap.k-state-default {
    font-size: 14px;
    font-weight: normal;
}

.g-recaptcha > div {
    width: auto !important;
    height: auto !important;
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

/*--02-07-2020--*/


.home-login-form label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.home-login-form .form-group-qr-code {
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

    .home-login-form .form-group-qr-code label {
        display: block;
        text-align: center;
        font-size: 16px;
    }

    .home-login-form .form-group-qr-code img {
        max-width: 115px;
        display: inline-block;
    }


.btn-cancel-td {
    display: block;
    text-align: center;
    color: #dc3545 !important;
}

.form-group-span-section span.k-widget {
    width: 100%;
}

    .form-group-span-section span.k-widget input {
        height: 33px !important;
        padding: 4px 6px !important;
    }

.k-filtercell input {
    padding: 0 5px !important;
    height: 27px !important;
}

.k-filtercell span.k-select {
    padding: 0 !important;
    height: auto !important;
}


/*--16-7-2020--*/
.breadcrumb {
    padding: 0 15px !important;
}

    .breadcrumb .breadcrumb-item a:before,
    .breadcrumb .breadcrumb-item label:before {
        content: '';
        background: url(../images/breadcrumbs/arrow-tail-active.png) no-repeat center / auto 29px;
        width: 18px;
        height: 29px;
        display: inline-block;
        position: absolute;
        left: -18px;
        top: 0;
    }

    .breadcrumb .breadcrumb-item label:before {
        background: url(../images/breadcrumbs/arrow-tail.png) no-repeat center / auto 29px;
    }

    .breadcrumb .breadcrumb-item a:after,
    .breadcrumb .breadcrumb-item label:after {
        content: '';
        background: url(../images/breadcrumbs/arrow-active.png) no-repeat center / auto 29px;
        width: 18px;
        height: 29px;
        display: inline-block;
        position: absolute;
        right: -18px;
        top: 0;
    }

    .breadcrumb .breadcrumb-item label:after {
        background: url(../images/breadcrumbs/arrow.png) no-repeat center / auto 29px;
    }

    .breadcrumb .breadcrumb-item a, .breadcrumb .breadcrumb-item label {
        color: #fff;
        background: #01a1d3;
        position: relative;
        padding: 4px 8px;
        display: inline-block;
        margin-left: 20px;
        text-decoration: none;
    }

    .breadcrumb .breadcrumb-item label {
        background: #efefeb;
        color: #212529;
    }


        .breadcrumb .breadcrumb-item a:first-child,
        .breadcrumb .breadcrumb-item label:first-child {
            margin-left: 15px;
        }
/*--16-7-2020--*/


/*--17-07-2020--*/
.home-login-form .qrcode-form-group {
    display: flex;
    justify-content: center;
}

.home-login-form .form-group input.qrcode-form-control {
    text-align: center;
    padding: 10px;
    min-width: 100px;
    max-width: 100px;
}

.home-login-form .form-group-qr-code img {
    max-width: 300px;
}
/*--17-07-2020--*/

a.edit-btn-a {
    display: block;
    text-align: center;
    color: #007bff;
}

.k-picker-wrap.k-state-default input {
    font-size: 14px !important;
    color: #656565 !important;
}

.k-state-disabled, .k-widget[disabled] {
    opacity: 1;
}


@media(min-width:767px) {
    .modal-body-flex .form-group {
        margin-bottom: 0;
    }
}


.logo-burger {
    align-items: center;
}

.header-link ul li .quote-btn {
    padding: 5px 10px !important;
    font-size: 14px;
    background: #e4e7eb;
    color: #212529;
    border-radius: 4px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

    .header-link ul li .quote-btn:hover {
        background: #d6d9dc;
        text-decoration: none;
        color: #212529;
    }

    .header-link ul li .quote-btn svg {
        margin-right: 7px;
        font-size: 20px;
    }

.pointer-events-none {
    pointer-events: none;
    opacity: 0.5;
}

.k-grid-UnDelivered {
    position: relative;
    background: url(../images/not.png) 46% center no-repeat !important;
    background-size: 20px 20px !important;
}

.k-grid-Finalised {
    background: url(../images/clipboard-times.png) center no-repeat !important;
    height: 21px;
    background-size: 16px !important;
}

.k-grid-UnCancel {
    background: url(../images/icons8-cancel-64.png) center no-repeat !important;
    height: 21px;
    background-size: 17px !important;
}



/*--04-08-2020--*/
.demo-section.k-content.flex-demo-section {
    width: 100% !important;
    display: flex;
    padding: 10px 5px;
}

    .demo-section.k-content.flex-demo-section .flex-div {
        width: 50%;
        padding: 0 5px;
    }

        .demo-section.k-content.flex-demo-section .flex-div input[type="search"] {
            margin-bottom: 8px;
        }

    .demo-section.k-content.flex-demo-section .k-listbox:first-of-type {
        margin-right: 0 !important;
        width: auto !important;
        display: flex;
    }

.hub-service {
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

    .hub-service h3 {
        margin: 0 !important;
    }

.hub-service-button {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.hub-service-search {
    padding: 10px 10px 0 10px;
    background: #fff;
}
/*--04-08-2020--*/



@media(min-width: 768px) {
    .form-navs-80 .tab-content {
        max-width: 80%;
        min-width: 80%;
    }

    .form-navs-80 .agent-details-box {
        display: flex;
        max-width: 100%;
        padding: 6px 10px;
    }

        .form-navs-80 .agent-details-box p {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
            border-left: 1px solid #ccc;
            padding: 0 0 0 10px;
            margin: 0 0 0 10px;
        }

            .form-navs-80 .agent-details-box p:first-child {
                border-left: none;
                padding: 0 0 0 0;
                margin: 0 0 0 0;
            }

            .form-navs-80 .agent-details-box p strong {
                margin-right: 6px;
            }

        .form-navs-80 .agent-details-box.agent-details-box-50 {
            flex-wrap: wrap;
        }

            .form-navs-80 .agent-details-box.agent-details-box-50 p {
                width: calc(50% - 5px)
            }

                .form-navs-80 .agent-details-box.agent-details-box-50 p:nth-child(2n+1) {
                    border-left: none;
                    padding: 0 0 0 0;
                    margin: 0 0 0 0;
                }
}

.form-navs-80 .k-list li {
    font-size: 14px;
}


.table-icon-div {
    display: flex;
    justify-content: space-between;
}

    .table-icon-div a {
        margin-left: 10px;
    }

        .table-icon-div a:first-child {
            margin-left: 0;
        }

.k-pager-numbers-wrap select.k-dropdown {
    display: none;
}

.k-pager-numbers-wrap ul.k-pager-numbers {
    padding: 0;
    margin: 0;
}

    .k-pager-numbers-wrap ul.k-pager-numbers li span, .k-pager-numbers-wrap ul.k-pager-numbers li a {
        height: 30px;
        min-width: 31px;
    }


.k-input {
    color: #656565 !important;
    font-size: 14px !important;
}

.k-window-titlebar, .k-window-content {
    padding: 8px 15px;
}

.k-window-title {
    font-size: 17px;
    font-weight: 600;
}

.k-dialog-buttongroup.k-dialog-button-layout-stretched {
    padding: 8px 15px;
    border-top: 1px solid rgba(33,37,41,.125);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end !important;
}

    .k-dialog-buttongroup.k-dialog-button-layout-stretched button.k-button {
        width: auto;
        flex: 0 0 auto;
        padding: 6px 15px !important;
        border-radius: 5px;
        margin-left: 6px;
        font-weight: 600;
    }



.limit-max-33 .col {
    max-width: 33.33%;
}


.limit-max-33 .col {
    max-width: 33.33%;
}

.limit-max-33 .col {
    max-width: 33.33%;
}

/*----*/
.agent-details-box p {
    display: block;
    width: 33.33%;
}

    .agent-details-box p label {
        display: inline;
    }

@media(max-width: 767px) {
    .agent-details-box p {
        width: 100%;
    }
}
/*----*/

.k-grid-list > .k-item > .k-cell {
    white-space: normal;
}


@media (min-width: 767px) {
    .box-sec-table-v3 h2.icon-table {
        position: static;
        top: 0;
        background: #f8f9fa;
        left: 0;
        text-transform: capitalize;
        border-top: 1px solid #dde2e7;
    }

    .box-sec-table-v3 .k-header.k-grid-toolbar.k-grid-top {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }

    .box-sec-table-v3 .k-header .k-button {
        margin: 2px;
    }

    .box-sec-table-v3 .k-grid-content.k-auto-scrollable {
        max-height: calc( 100vh - 371px );
    }

    .box-sec-table-v4 .k-grid-content.k-auto-scrollable {
        max-height: calc( 100vh - 407px );
    }
}




.k-pager-numbers-wrap ul.k-pager-numbers li span, .k-pager-numbers-wrap ul.k-pager-numbers li a {
    font-weight: normal;
    font-size: 14px;
    color: #333;
}

.k-pager-numbers-wrap ul.k-pager-numbers li span {
    color: #fff;
}

.header-link ul li .quote-btn {
    padding: 0 15px 0 0 !important;
    /*background: #28a745;*/
    background: #01a1d3;
    color: #fff;
    height: 35px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 2.5px 0px rgba(69, 137, 200, 0.6);
    -moz-box-shadow 0px 0px 2.5px 0px rgba(69, 137, 200, 0.6);
    box-shadow: 0px 0px 2.5px 0px rgba(69, 137, 200, 0.6);
}

    .header-link ul li .quote-btn:hover {
        /*background: #1a9235;*/
        /*background: #83e1ff;*/
        background: #3dcbf7;
        color: #fff;
    }

    .header-link ul li .quote-btn svg {
        margin: 0;
    }

    .header-link ul li .quote-btn .quote-svg {
        background: rgba(0,0,0,0.2);
        padding: 0;
        height: 35px;
        width: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-link ul li .quote-btn .quote-content {
        margin-left: 10px;
        white-space: nowrap;
    }



.agent-details-box-main {
    width: 100%;
}

.agent-details-div {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

    .agent-details-div p {
        border: 1px solid #ccc;
        border-radius: 5px;
        overflow: hidden;
        margin-bottom: 0;
        background: #fff;
        width: calc(33.33% - 5px);
        margin-bottom: 10px;
    }

        .agent-details-div p strong {
            display: block;
            border-bottom: 1px solid #ccc;
            padding: 5px 10px;
        }

        .agent-details-div p label {
            padding: 5px 10px;
        }

.box-chart-body {
    max-height: 100%;
}

.header-search .form-group input {
    background: #fff;
    color: #333;
    padding-right: 51px;
    border-color: #d4d4d4;
    -webkit-box-shadow: 0px 0px 2.5px 0px rgba(69, 137, 200, 0.6);
    -moz-box-shadow 0px 0px 2.5px 0px rgba(69, 137, 200, 0.6);
    box-shadow: 0px 0px 2.5px 0px rgba(69, 137, 200, 0.6);
}

.header-search .form-group .btn {
    background: #4589c8;
    width: 45px;
    height: 33px;
    color: #fff;
    border-radius: 0 5px 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.k-animation-container > div {
    min-width: 420px;
}

    .k-animation-container > div.k-calendar-container,
    .k-animation-container > div.k-list-scroller {
        min-width: 1px;
    }

.k-animation-container .k-popup.k-popup-flush {
    width: 100% !important;
}

@media(max-width: 767px) {
    .agent-details-div p {
        width: 100%;
    }
}

ul.agent-ul {
    margin-bottom: 6px;
}

    ul.agent-ul li {
        display: flex;
        padding-bottom: 5px;
        border-bottom: none;
        font-size: 14px;
        font-weight: 600;
        color: #000;
    }

        ul.agent-ul li span {
            font-weight: 600;
            margin-right: 7px;
        }

.p-details-div {
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 7px;
}

    .p-details-div tr td {
        padding: 5px 10px !important;
    }

        .p-details-div tr td label {
            font-size: 14px;
            line-height: normal;
            margin-bottom: 0 !important;
            font-weight: normal;
            color: #000;
        }

        .p-details-div tr td:last-child {
            text-align: right;
        }


.filter-flex {
    display: flex;
    justify-content: flex-start;
    padding: 10px 15px;
    align-items: center;
    background: #01a1d3;
    border-radius: 7px 7px 0 0;
}

    .filter-flex h2 {
        color: #fff;
        margin-bottom: 0;
        font-size: 22px;
    }

    .filter-flex form {
        display: flex;
    }

    .filter-flex .form-group {
        margin-left: 15px;
        margin-bottom: 0;
        display: flex;
        align-items: center;
    }

        .filter-flex .form-group:first-child {
            margin-left: 0;
        }

        .filter-flex .form-group label {
            margin-bottom: 0;
            font-size: 15px;
            color: #fff;
            margin-right: 8px;
            font-weight: 600;
            white-space: nowrap;
        }

.section-to-filter {
    background: #f2f2f2;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 0 0 7px 7px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-top: none;
}

    .section-to-filter.section-to-filter-padding {
        padding: 0;
        border: none;
        background: #fff;
    }

        .section-to-filter.section-to-filter-padding .box-section-with-border {
            border-radius: 0 0 4px 4px;
            border-top: none;
            margin-bottom: 0;
        }

    .section-to-filter .row-flex {
        justify-content: center;
    }

.info-box-icon {
    width: 75px;
    font-size: 34px;
    height: 83px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-to-filter .main-col-flex {
    width: 100%;
    padding: 0 5px;
    max-width: 25%;
}

.info-box-content {
    padding: 5px 10px;
    margin-left: 75px;
}

.info-box {
    min-height: 83px;
}

.icon-table-flex {
    white-space: nowrap;
}

.k-animation-container .k-list-container ul li span {
    font-size: 14px !important;
    padding: 3px 10px !important;
}

.btnclear {
    width: 100%;
    padding-top: 5px;
    max-width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
}

    .btnclear .form-group {
        display: flex;
        justify-content: flex-end;
    }

        .btnclear .form-group .btn.btn-primary {
            margin-right: 5px;
        }

.form-group.form-group-l-flex {
    display: flex;
    width: 100%;
}

    .form-group.form-group-l-flex label {
        margin: 0;
        margin-right: 5px;
        display: flex;
        align-items: center;
        white-space: nowrap;
    }

    .form-group.form-group-l-flex .demo-section.k-content {
        width: 100%;
    }

.form-group.form-group-check-flex {
    display: flex;
    align-items: center;
}

    .form-group.form-group-check-flex label {
        margin: 0 0 0 0;
    }

    .form-group.form-group-check-flex input[type="checkbox"] {
        margin: 0 3px 0 5px;
    }

.form-group-l-sec {
    margin-top: 5px;
    min-height: 35px;
}

#collapse .big-box-full {
    min-height: 1px;
    background: #f7f7f7;
    margin-bottom: 5px;
    margin-top: 5px;
}

@media (min-width: 767px) {
    .section-to-filter .k-grid-content.k-auto-scrollable {
        max-height: 100%;
    }
}

@media(max-width: 991px) {
    .filter-flex {
        flex-wrap: wrap;
    }

        .filter-flex h2 {
            margin-bottom: 10px;
            width: 100%;
            text-align: center;
        }

        .filter-flex form {
            display: flex;
            width: 100%;
            justify-content: center;
        }

        .filter-flex .form-group {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            max-width: 172px;
        }

    .section-to-filter .row-flex {
        flex-wrap: wrap;
    }
}

@media(max-width: 820px) {
    .section-to-filter .main-col-flex {
        max-width: 50%;
    }
}


@media(max-width: 720px) {
    .filter-flex form {
        flex-wrap: wrap;
    }

    .filter-flex .form-group:last-child {
        justify-content: center;
        margin-top: 10px;
        min-width: 100%;
    }

    .filter-flex .form-group label {
        width: 100%;
    }
}

@media(max-width: 720px) {
    .section-to-filter .main-col-flex {
        max-width: 100%;
    }
}






/*--profile-page--*/

.dts-profile-page {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.dts-profile-left {
    max-width: 280px;
    width: 100%;
    text-align: center;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    position: sticky;
    top: 0;
}

    .dts-profile-left img {
        width: 150px;
        border-radius: 50%;
        border: 10px solid #fff;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(204,204,204,1);
        -moz-box-shadow: 0px 0px 5px 0px rgba(204,204,204,1);
        box-shadow: 0px 0px 5px 0px rgba(204,204,204,1);
        margin-bottom: 15px;
    }

    .dts-profile-left h2 {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #333;
    }

    .dts-profile-left p {
        font-size: 14px;
        line-height: 23px;
        color: #333;
    }

        .dts-profile-left p.dts-profile-proffe {
            font-size: 14px;
            color: #01a1d3;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .dts-profile-left p:last-child {
            margin-bottom: 0;
        }

.dts-profile-right {
    width: calc(100% - 290px);
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
}

.dts-profile-ul {
    display: flex;
}

    .dts-profile-ul .dts-profile-section {
        margin-left: 30px;
        max-width: 250px;
        width: 100%;
    }

        .dts-profile-ul .dts-profile-section:first-child {
            margin-left: 0;
        }

.dts-profile-right h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.dts-profile-right ul {
    margin-bottom: 30px;
}

    .dts-profile-right ul li {
        font-size: 14px;
        margin-bottom: 4px;
        color: #333;
    }

        .dts-profile-right ul li:last-child {
            margin-bottom: 0;
        }

        .dts-profile-right ul li a, .dts-profile-right ul li span {
            margin-left: 8px;
            font-weight: 600;
        }

        .dts-profile-right ul li a {
            color: #4589c8;
        }

.dts-profile-right p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
}

    .dts-profile-right p:last-child {
        margin-bottom: 0;
    }

@media(max-width: 767px) {
    .dts-profile-right {
        width: 100%;
    }

    .dts-profile-left {
        position: static;
        margin: 0 auto 30px auto;
    }
}

@media(max-width: 480px) {
    .dts-profile-ul {
        flex-wrap: wrap;
    }

        .dts-profile-ul .dts-profile-section {
            margin: 0 !important;
            max-width: 100%;
        }

    .dts-profile-left, .dts-profile-right {
        padding: 15px;
    }
}

/*--profile-page--*/



@media(min-width: 767px) {
    .box-section-big-table .k-grid-content.k-auto-scrollable {
        max-height: calc( 100vh - 330px );
    }
}


.box-section-with-border {
    border: 1px solid rgba(0, 0, 0, 0.4);
}

    .box-section-with-border .box-section-header h2 {
        border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    }

.filter-flex {
    padding: 7px 15px;
}

    .filter-flex input, .filter-flex select {
        height: 30px;
        max-width: 153px;
    }

    .filter-flex .form-group label {
        font-weight: normal;
    }

.no-data-found {
    width: 100%;
    text-align: center;
}

    .no-data-found::before {
        padding: 15px;
        line-height: 3em;
        content: "No records found.";
    }

.form-search-flex {
    display: flex;
    align-items: center;
}

    .form-search-flex .form-group {
        display: flex;
        align-items: center;
        margin-left: 10px;
    }

        .form-search-flex .form-group:first-child {
            margin-left: 0;
        }

        .form-search-flex .form-group label {
            margin-bottom: 0;
        }

        .form-search-flex .form-group input[type="checkbox"] {
            min-width: 1px;
            margin-right: 5px;
            width: 15px;
        }

        .form-search-flex .form-group label.span-checkbox {
            white-space: nowrap;
            display: flex;
            align-items: center;
        }

            .form-search-flex .form-group label.span-checkbox span {
                margin-right: 6px;
            }

body .half-drop-top .half-drop-section h3 {
    margin-top: 0 !important;
}

@media (min-width: 767px) {
    .box-section-table-without-btn .k-grid-content.k-auto-scrollable {
        max-height: calc( 100vh - 237px );
    }
}




.modal-content-flex {
    border: none;
    overflow: visible;
}

.modal-body-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    border-radius: 6px;
}

    .modal-body-flex .close {
        order: 2;
        background: #721c24;
        position: absolute;
        top: -15px;
        right: -15px;
        opacity: 1;
        color: #fff;
        font-size: 20px;
        width: 30px;
        height: 30px;
        display: flex;
        padding: 0 0;
        line-height: normal;
        border-radius: 50%;
        justify-content: center;
    }




.form-group-pop {
    margin-bottom: 0;
}

    .form-group-pop span.k-widget.k-datepicker {
        width: 150px;
    }

/*--06-10-2020--*/
.big-box-row {
    display: flex;
    align-items: flex-start;
}

    .big-box-row .courier-details-big-box {
        max-width: 264px;
    }

    .big-box-row > div {
        width: 100%;
    }

@media(max-width: 767px) {
    .big-box-row {
        flex-wrap: wrap;
    }

        .big-box-row .courier-details-big-box {
            max-width: 100%;
        }
}
/*--06-10-2020--*/



.space-between {
    justify-content: space-between;
}




.grid-section-scroll-n .k-widget {
    overflow: auto;
}






.tab-pane .form-label-bold > label {
    font-weight: 600 !important;
}






.grid-section-input {
    max-height: 400px;
    overflow: auto;
}

.grid-section-max-5 {
    max-height: 310px;
    overflow: auto;
    width: 100%;
}

.grid-section-input input[type="text"] {
    text-align: center;
    max-width: 100px;
}

.big-box-full-flex-center {
    display: flex;
    justify-content: center;
}

.grid-section-input input[type="text"] {
    text-align: center;
    max-width: 100px;
}

.grid-section-input input[type="text"] {
    text-align: center;
    max-width: 100px;
}



.grid-section-5 {
    max-height: 260px;
}

.form-group-with-icon {
    position: relative;
}

.fg-icon {
    position: absolute;
    top: 27px;
    right: 1px;
    height: 33px;
    width: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e4e7eb;
}

.form-group-with-icon .form-control {
    padding-right: 41px;
}

.info-tooltip {
    position: absolute;
    min-width: 350px;
    background: #f9f9f9;
    font-size: 11px;
    top: -55px;
    right: 0;
    padding: 7px 10px;
    border-radius: 5px;
    display: none;
    z-index: 9999;
}

    .info-tooltip:before {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 5px 0 5px;
        border-color: #f9f9f9 transparent transparent transparent;
        position: absolute;
        right: 10px;
        bottom: -7px;
    }

.fg-icon:hover .info-tooltip {
    display: block;
}


.modal-form-header h2 {
    font-size: 16px;
    padding: 10px 15px 10px 15px;
    margin: 5px -15px 6px -15px;
    background: #f9f9f9;
}

.modal-form-header-first h2 {
    margin-top: -15px;
}

.modal-form-body {
    max-height: calc(100vh - 199px);
    overflow: auto;
}

    .modal-form-body .form-group label {
        font-size: 14px;
    }

.form-group-pop-second span.k-widget.k-datepicker {
    width: 100%;
    margin-bottom: 0;
}

.ltl-item-rate .ltl-rate-header td {
    border-top: 1px solid rgba(33,37,41,.125);
}

.ltl-item-rate .k-grid-content .table colgroup col:last-child,
.ltl-item-rate .k-grid-content .table colgroup col:nth-last-child(2) {
    display: none;
}


.modal-body-height {
    max-height: calc(100vh - 120px);
    overflow: auto;
}

.margin-form-group .form-group {
    margin-bottom: 6px;
}

    .margin-form-group .form-group label {
        margin-bottom: 6px;
    }

.modal-body-height {
    max-height: calc(100vh - 120px);
    overflow: auto;
}

.modal-body-height {
    max-height: calc(100vh - 120px);
    overflow: auto;
}



.justify-btns-center .k-header.k-grid-toolbar.k-grid-top {
    justify-content: center;
    flex-wrap: wrap;
}

    .justify-btns-center .k-header.k-grid-toolbar.k-grid-top .k-button {
        margin: 2px !important;
    }

.modal-body-group .form-group label {
    margin: 0;
}

.modal-body-group .form-group {
    margin: 5px 0 0 0 !important;
}

.DesText {
    margin: 0 0 10px 0;
    font-weight: 600;
    font-size: 14px;
}

    .DesText b {
        font-weight: 700;
    }


.box-section-pagi .k-pager-wrap.k-pager-lg .k-pager-nav + .k-pager-numbers-wrap, .box-section-pagi .k-pager-wrap.k-pager-md .k-pager-nav + .k-pager-numbers-wrap, .box-section-pagi .k-pager-wrap.k-pager-sm .k-pager-nav + .k-pager-numbers-wrap {
    width: auto;
    height: 30px;
    box-sizing: border-box;
    border-color: inherit;
    margin: 0;
}

.box-section-pagi .k-pager-wrap.k-pager-lg .k-pager-numbers, .box-section-pagi .k-pager-wrap.k-pager-md .k-pager-numbers, .box-section-pagi .k-pager-wrap.k-pager-sm .k-pager-numbers {
    border-radius: 0;
    border-left: none;
    position: static;
}

    .box-section-pagi .k-pager-wrap.k-pager-lg .k-pager-numbers li:not(.k-current-page), .box-section-pagi .k-pager-wrap.k-pager-md .k-pager-numbers li:not(.k-current-page), .box-section-pagi .k-pager-wrap.k-pager-sm .k-pager-numbers li:not(.k-current-page) {
        display: inline-block !important;
    }

    .box-section-pagi .k-pager-wrap.k-pager-lg .k-pager-numbers .k-link, .box-section-pagi .k-pager-wrap.k-pager-lg .k-pager-numbers .k-state-selected, .box-section-pagi .k-pager-wrap.k-pager-md .k-pager-numbers .k-link, .box-section-pagi .k-pager-wrap.k-pager-md .k-pager-numbers .k-state-selected, .box-section-pagi .k-pager-wrap.k-pager-sm .k-pager-numbers .k-link, .box-section-pagi .k-pager-wrap.k-pager-sm .k-pager-numbers .k-state-selected {
        width: 30px;
        height: 30px;
    }

.box-section-pagi .k-pager-numbers-wrap ul.k-pager-numbers li span {
    color: #333;
}

.form-submit-space-between {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.justi-space-bet {
    justify-content: space-between !important;
}

    .justi-space-bet:after {
        display: none;
    }

.justi-center {
    justify-content: center;
}

    .justi-center > div {
        display: inline-flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-left: 0;
    }
/*--16-02-2021--*/
.choose-file-flex {
    display: flex;
}

    .choose-file-flex a {
        margin-left: 8px;
    }
/*--16-02-2021--*/

/*--18-02-2021--*/
.form-navs-big-mid .tab-content {
    max-width: 800px;
    margin: 0 auto;
    min-width: 1px;
}

.choose-file-flex a {
    white-space: nowrap;
}
/*--18-02-2021--*/

/*--05-03-2021--*/
.td-th-center tr th, .td-th-center tr td {
    text-align: center;
    padding: 6px 10px !important;
    position: relative;
}
/*--05-03-2021--*/

/*--08-03-2021--*/
.box-section-body tr td {
    padding: 6px 10px;
}
/*--08-03-2021--*/

/*--12-03-2021--*/
.form-group-flex {
    display: flex;
    margin: 0 -10px;
}

    .form-group-flex > div {
        padding: 0 10px;
        position: relative;
    }

        .form-group-flex > div input {
            left: 10px !important;
        }

@media(min-width: 767px) {
    .form-row-inline {
        margin: 0 -15px;
    }

        .form-row-inline > div {
            padding: 0 15px !important;
        }

    .form-inline-flex {
        display: flex;
        align-items: center;
    }

        .form-inline-flex label {
            white-space: nowrap;
            margin: 0;
            padding: 0 10px 0 0;
        }
}

.model-body-height {
    max-height: calc(100vh - 113px);
    overflow: auto;
}

a.edit-btn-a img {
    max-width: 16px;
}
/*--12-03-2021--*/

/*--18-03-2021--*/
.header-div {
    min-height: 26px;
}
/*--18-03-2021--*/

/*--24-03-2021--*/
.tab-pane .form-group .form-radio-in-creation input[type="radio"]:checked + span {
    background: #4589c8 !important;
}

.table-top-mid-section .k-button.k-button-icontext {
    height: 35px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
}

.form-inline-flex.form-inline-flex2 {
    position: relative;
}

    .form-inline-flex.form-inline-flex2 .fg-icon {
        top: 1px;
    }

    .form-inline-flex.form-inline-flex2 .info-tooltip,
    .posi-relative .info-tooltip {
        min-width: 200px;
    }

    .form-inline-flex.form-inline-flex2 input {
        padding-right: 33px;
    }
/*--24-03-2021--*/

/*--25-03-2021--*/
.inv-list label {
    display: block;
    max-width: 521px;
    margin-right: 0;
    max-height: 102px;
    overflow: auto;
}
/*--25-03-2021--*/

/*--26-03-2021--*/
.tab-pane .form-group.form-inline-flex {
    margin: 5px 0;
}
/*--26-03-2021--*/

/*--31-03-2021--*/
.form-inline-flex3 {
    flex-wrap: wrap;
}

.form-inline-flex.form-inline-flex3 .fg-icon {
    top: auto;
    bottom: 1px;
}

/*--31-03-2021--*/


/*--02-04-2021--*/
.pop-invoice {
    max-width: 80%;
    margin: 50px auto 0 auto;
}

.pop-invoice-header {
    margin: -10px -10px 10px -10px;
    background: #01a1d3;
    padding: 5px 10px;
}

    .pop-invoice-header h2 {
        margin: 0;
        font-size: 16px;
        border: none;
        color: #fff;
        line-height: normal;
        padding: 0;
    }

.pop-invoice .modal-header {
    background: #fff;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .pop-invoice .modal-header h4 {
        font-size: 18px;
        margin-right: 15px;
    }

.pop-invoice-form {
    padding: 10px;
    background: #fff;
    border-bottom: 1px solid #dee2e6;
}

    .pop-invoice-form > .row {
        margin: 0;
    }

.pop-invoice .big-box-full {
    border-radius: 0 0 5px 5px;
    border: none;
    margin: 0;
}

.pop-invoice-form .form-group {
    margin-bottom: 0;
}

    .pop-invoice-form .form-group label {
        font-size: 14px;
        margin: 0 0 5px 0;
        font-weight: 600;
        color: #656565;
    }
/*--02-04-2021--*/

/*-06-04-2021-*/
@media (min-width: 767px) {
    .box-section-order-inv .k-grid-content.k-auto-scrollable {
        max-height: calc( 100vh - 330px );
        height: auto !important;
    }
}
/*-06-04-2021-*/

/*-10-04-2021-*/
.bootbox .modal-header .close {
    position: absolute;
    right: 15px;
}

.bootbox .modal-header h5 {
    margin-bottom: 0;
}
/*-10-04-2021-*/

/*-13-04-2021-*/
.pop-up-class {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: none;
    z-index: 9999;
}
/*-13-04-2021-*/

/*-21-04-2021-*/
.form-label-flex {
    display: flex;
    align-items: center;
    margin: 0;
}

    .form-label-flex label {
        margin: 0 5px 0 0;
    }

    .form-label-flex .btn {
        margin: 0 0 0 5px;
    }

.test-success-import {
    margin-top: 10px;
}

    .test-success-import label {
        font-size: 14px;
        font-weight: 400;
        display: block;
    }

        .test-success-import label span {
            display: block;
            color: #656565;
        }

        .test-success-import label span {
            display: block;
            color: #656565;
        }

    .test-success-import li a {
        font-size: 14px;
        font-weight: 400;
        display: inline-block;
    }
/*-21-04-2021-*/
/*-13-04-2021-*/
/*-13-04-2021-*/

/*20-04-2021*/
.pop-invoice-2 {
    max-width: 670px;
}
/*20-04-2021*/

/*--23-04-2021--*/
.model-inner {
    max-width: 900px;
    width: 100%;
    margin: 70px auto 0 auto;
}
/*--23-04-2021--*/

/*-30-04-2021-*/
.min-height-table .k-grid-content.k-auto-scrollable {
    max-height: 76px;
    min-height: 76px;
}

.min-height-table tr th {
    padding: 2px 21px 2px 10px !important;
}

.min-height-col .min-height-table .k-grid-content.k-auto-scrollable {
    max-height: 110px;
}
/*-30-04-2021-*/

/*--03-05-2021--*/
.model-inner-mid {
    max-width: 670px;
}
/*--03-05-2021--*/

@media (min-width: 767px) {
    .simple-section-table {
        margin-bottom: 0;
    }

        .simple-section-table .k-grid-content.k-auto-scrollable {
            max-height: calc( 100vh - 237px );
        }
}

/*--10-05-2021--*/
.order-status-modal-dialog {
    max-width: 650px;
}

.form-group-tran {
    position: relative;
}

    .form-group-tran:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0);
    }
/*--10-05-2021--*/
/*--14-05-2021--*/
.center-btn .k-header.k-grid-toolbar.k-grid-top {
    justify-content: center;
    flex-wrap: wrap;
}

    .center-btn .k-header.k-grid-toolbar.k-grid-top > a {
        margin-top: 2px;
        margin-bottom: 5px;
    }

@media(min-width: 767px) {
    .center-btn .k-grid-content.k-auto-scrollable {
        max-height: calc( 100vh - 348px );
    }
}
/*--14-05-2021--*/

/*--18-05-2021--*/
.grid-section-input .k-icon.k-i-expand:before {
    content: "\e11e";
}

.grid-section-input .k-icon.k-i-collapse:before {
    content: "\e121";
}
/*--18-05-2021--*/

/*-24-05-2021-*/
.mid-3-section > .row > div {
    border-left: 1px solid #ccc;
}

    .mid-3-section > .row > div:first-child {
        border-left: none;
    }

.box-section-table .k-grid-header tr th.th-center span {
    text-align: center !important;
}

.box-section-table .k-grid-header tr th.th-x-custom {
    padding: 3px 10px !important;
    border-right: none;
    border-left: none;
    position: relative;
}

.box-section-table .k-grid-header tr th.th-left-border {
    border-left: 1px solid #dde2e7;
}

.box-section-table .k-grid-header tr th.th-x-custom:before {
    content: 'x';
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
    font-size: 10px;
    display: flex;
    align-items: center;
}

.box-section-table .k-grid-header tr th.th-x-contant:before {
    display: none;
}

@media(max-width:767px) {
    .mid-3-section > .row > div {
        border-left: none;
    }

    .col-res-full {
        flex: 0 0 100%;
    }

    .mid-3-section > .row > div > h3 {
        margin-top: 0 !important;
    }

    #dockData i.fas {
        display: none;
    }
}

.dock-form-flex {
    display: flex;
    margin-bottom: 7px !important;
}

    .dock-form-flex label {
        white-space: nowrap;
        margin-bottom: 0;
        padding: 6px 5px 0 0;
        min-width: 130px;
        text-align: left;
    }

.dock-form-row {
    max-width: 410px;
    margin: 0 auto;
}

.check-form-flex {
    display: flex;
}

/*-24-05-2021-*/
/*-28-05-2021-*/
/*.grid-section-cus-drop class="k-hierarchy-col" {
}*/
/*-28-05-2021-*/
/*-24-05-2021-*/
/*-24-05-2021-*/
.align-flex-box {
    display: flex;
    align-items: center;
}

    .align-flex-box input {
        margin-top: 3px;
    }

    .align-flex-box .text-primary {
        padding: 0 0 0 8px;
    }

/*-24-05-2021-*/

.limited-access-type {
    width: calc(100% - 128px);
    display: inline-block;
}

@media(min-width:768px) {
    .grid-section-small-scroll .k-grid-content.k-auto-scrollable {
        max-height: 270px;
    }
}
/*-24-05-2021-*/
/*-24-05-2021-*/
/*-31-05-2021-*/
@media(min-width:768px) {
    .pad-model {
        padding-left: 135px;
    }
}

.model-inner-large {
    max-width: 95%;
}

.small-modal-header {
    padding: 10px 15px;
}

.grid-section-collapse .k-hierarchy-col {
    width: 100px;
}

.grid-section-collapse .k-hierarchy-cell .k-icon.k-i-expand, .grid-section-collapse .k-hierarchy-cell .k-icon.k-i-collapse {
    padding: 0;
    color: #0056b3;
    line-height: normal;
    display: block;
}

    .grid-section-collapse .k-hierarchy-cell .k-icon.k-i-expand:before, .grid-section-collapse .k-hierarchy-cell .k-icon.k-i-collapse:before {
        font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
        content: 'History';
        font-size: 14px;
    }
/*-31-05-2021-*/
/*-02-06-2021-*/
.for-rela {
    display: flex;
    align-items: center;
}

    .for-rela .fg-icon {
        position: relative;
        top: auto;
        right: auto;
        padding: 0;
        width: auto;
        height: auto;
        background: transparent;
        margin-left: 5px;
    }

    .for-rela .info-tooltip {
        top: -65px;
        left: 0;
        right: auto;
    }

        .for-rela .info-tooltip:before {
            left: 3px;
            bottom: -5px;
        }
/*-02-06-2021-*/
/*-04-06-2021-*/
.pop-adjust-payment {
    max-width: 548px;
    margin: 120px auto 0;
}

.selectedAdjustPopUp {
    background: rgba(0,0,0,0.5);
}

    .selectedPopUp.show, .selectedAdjustPopUp.show {
        display: flex !important;
    }
/*-04-06-2021-*/

.col-md-12 #destinationclass {
    display: block !important;
}

.mini-section-table-position tr .whi-n-wor {
    padding: 5px 10px !important;
}

    .mini-section-table-position tr .whi-n-wor span {
        text-align: center !important;
        white-space: normal;
    }

span.tool-span {
    font-size: 11px !important;
    position: relative;
}

span.tool-content {
    display: none;
}

span.tool-span:hover span.tool-content {
    display: block;
    position: absolute;
    background: #fff;
    top: 16px;
    z-index: 99;
    width: 220px;
    white-space: normal;
    font-size: 12px !important;
    left: -110px;
    padding: 3px 5px;
    border-radius: 5px;
}

span.tool-content:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    left: 50%;
    margin-left: -5px;
    top: -6px;
}

.mini-section-table-position tr .for-hover, .mini-section-table-position tr .for-hover span {
    overflow: visible !important;
}


.box-section-table .k-grid-header tr th.th-cen-header {
    padding: 6px 10px !important;
}

    .box-section-table .k-grid-header tr th.th-cen-header span.k-link {
        text-align: center !important;
    }

.field-validation-new {
    font-size: 13px;
    font-weight: 600;
}

.box-section-table .k-grid-header tr th.th-cen-header span.k-link {
    text-align: center !important;
}

.box-section-table .k-grid-header tr th.th-cen-header span.k-link {
    text-align: center !important;
}

.lblwgbtn {
    margin: 0;
    min-height: 32px;
    display: none;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    background: #f2f2f2;
    padding: 0 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

    .lblwgbtn.active {
        display: inline-flex;
    }



.mid-3-section > .row > div.col-lg-12, .mid-3-section > .row > div.col-lg-4 {
    border-left: none !important;
}

/*--01-07-2021--*/
@media(min-width: 991px) {
    .order-charge-n {
        padding-left: 133px;
    }
}

.order-charge-n .modal-lg {
    max-width: 90%;
}
/*--01-07-2021--*/




/*--16-07-2021--*/
.inv-list-wrap {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    max-height: 149px;
    overflow: auto;
    margin-left: -10px;
}

    .inv-list-wrap a {
        margin-left: 10px;
    }

@media(min-width: 767px) {
    .box-section-big-table .k-grid-content.k-auto-scrollable {
        padding-bottom: 30px;
    }
}
/*--16-07-2021--*/

/*--19-07-2021--*/
.pay-color-status .pay-color {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    border: 1px solid #dde2e7;
    border-bottom: none;
    padding: 5px 0;
    background: #f8f9fa;
}

    .pay-color-status .pay-color label {
        display: flex;
        align-items: center;
        padding: 0 10px;
    }

        .pay-color-status .pay-color label span {
            margin-right: 7px;
        }

.pay-color-btn {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

    .pay-color-btn a {
        margin: 0 2.5px;
    }

@media(min-width: 767px) {
    .box-section-color-section .k-grid-content.k-auto-scrollable {
        max-height: calc( 100vh - 389px );
    }
}
/*--19-07-2021--*/

/*--20-07-2021--*/
.no-grid-scroll .k-grid-content.k-auto-scrollable {
    max-height: none;
    overflow: scroll;
}

.big-box-40 {
    max-width: 40%;
}

.big-box-60 {
    max-width: 60%;
}
/*--20-07-2021--*/


/*--22-07-2021--*/
.form-group span.k-widget {
    width: 100%;
}
/*--22-07-2021--*/


.td-btn-full {
    width: 100%;
}



.full-scroll,
.full-scroll .grid-section-body,
.full-scroll .k-grid,
.full-scroll-n,
.full-scroll-n .grid-section-body,
.full-scroll-n .k-grid {
    overflow: visible !important;
}

    .full-scroll .k-grid-header,
    .full-scroll-n .k-grid-header {
        position: sticky;
        /*top: 50px;*/
        top: -15px;
        z-index: 99;
        padding: 0 !important;
    }

    .full-scroll .k-grid-content.k-auto-scrollable,
    .full-scroll-n .k-grid-content.k-auto-scrollable {
        max-height: none !important;
    }

    .full-scroll .k-grid-pager,
    .full-scroll-n .k-grid-pager {
        position: sticky;
        /*bottom: -3px;*/
        bottom: -15px;
        border-bottom: 1px solid #dde2e7;
        display: block;
    }

    .full-scroll .k-grid-content,
    .full-scroll-n .k-grid-content {
        margin-bottom: 0;
    }

    .full-scroll .fixed-scroll,
    .full-scroll-n .fixed-scroll-n {
        overflow: auto;
        position: sticky;
        bottom: 40px;
        margin: -5px -5px 5px -5px;
        scrollbar-width: thin;
    }

        .full-scroll .fixed-scroll::-webkit-scrollbar,
        .full-scroll-n .fixed-scroll-n::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }

        .full-scroll .fixed-scroll::-webkit-scrollbar-track,
        .full-scroll-n .fixed-scroll-n::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .full-scroll .fixed-scroll::-webkit-scrollbar-thumb,
        .full-scroll-n .fixed-scroll-n::-webkit-scrollbar-thumb {
            background: #ccc;
        }

            .full-scroll .fixed-scroll::-webkit-scrollbar-thumb:hover,
            .full-scroll-n .fixed-scroll-n::-webkit-scrollbar-thumb:hover {
                background: #bdbdbd;
            }

    .full-scroll .k-pager-wrap .k-pager-numbers-wrap,
    .full-scroll-n .k-pager-wrap .k-pager-numbers-wrap {
        top: -1px;
    }

    .full-scroll .k-grid-content.k-auto-scrollable,
    .full-scroll-n .k-grid-content.k-auto-scrollable {
        overflow: hidden;
    }

    .full-scroll .k-pager-info.k-label,
    .full-scroll-n .k-pager-info.k-label {
        float: right;
    }

    .full-scroll .k-widget,
    .full-scroll-n .k-widget {
        height: auto !important;
    }


.form-navs-full .tab-content {
    max-width: 100%;
    min-width: 100%;
}



/*-05-08-2021-*/
.col-md-6 #riginclass {
    display: none;
}
/*-05-08-2021-*/

.grid-section-plus-minus .k-hierarchy-col {
    width: 110px;
}

.grid-section-plus-minus .k-hierarchy-cell .k-icon.k-i-expand, .grid-section-plus-minus .k-hierarchy-cell .k-icon.k-i-collapse {
    padding: 0;
    color: #0056b3;
    line-height: normal;
    display: block;
}

.grid-section-plus-minus th.k-hierarchy-cell:before {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    content: 'Usage History';
}

.grid-section-plus-minus .k-hierarchy-cell .k-icon.k-i-expand:before,
.grid-section-plus-minus .k-hierarchy-cell .k-icon.k-i-collapse:before {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 20px;
}

.grid-section-plus-minus .k-hierarchy-cell .k-icon.k-i-expand:before {
    content: '+';
}

.grid-section-plus-minus .k-hierarchy-cell .k-icon.k-i-collapse:before {
    content: '-';
}

.pop-invoice-lg {
    max-width: 90%;
}

.pop-invoice-flex {
    display: flex;
    justify-content: space-between;
}

    .pop-invoice-flex label {
        margin-bottom: 0;
    }

.pop-invoice-lg {
    max-width: 90%;
}

.pop-invoice-lg {
    max-width: 90%;
}


.flex-feet-group {
    display: flex;
    align-items: center;
}

    .flex-feet-group label {
        padding-right: 15px;
    }

.flex-feet-control {
    display: flex;
    align-items: center;
}

    .flex-feet-control input {
        max-width: 60px;
        background: #fff !important;
        border-radius: 3px 0 0 3px;
        padding: 0 8px;
        height: 28px;
    }

    .flex-feet-control span {
        color: #656565;
        background: #fff;
        height: 28px;
        border: 1px solid rgba(0,0,0,0.15);
        border-left: none;
        display: flex;
        align-items: center;
        border-radius: 0 3px 3px 0;
        padding: 0 6px;
    }

    .flex-feet-control .text-danger {
        font-weight: 600;
        font-size: 13px;
        margin-left: 15px;
    }

.servicetype-error {
    padding: 0;
}

.box-section-table .k-header .k-button {
    font-size: 14px;
}

td.nowrap {
    white-space: nowrap;
}

.box-section-header-new h2.icon-table {
    background: transparent;
    border: none;
    left: auto;
    right: auto;
    width: auto;
}

.box-section-header-new {
    position: static;
    top: 0;
    background: #f8f9fa;
    left: 0;
    text-transform: capitalize;
    border-top: 1px solid #dde2e7;
    display: flex;
    justify-content: space-between;
    border-left: 1px solid #dde2e7;
    border-right: 1px solid #dde2e7;
    padding: 5px 15px 6px;
}

    .box-section-header-new .table-top-mid-section {
        border: none;
    }

    .box-section-header-new > * {
        padding: 0 !important;
        height: auto !important;
    }

@media(max-width: 767px) {
    .mid-3-section .row .col-md-6:first-child h3 svg {
        display: none !important;
    }
}

.simple-table table {
    border-collapse: collapse;
}

    .simple-table table .full-table-width {
        width: 100%;
    }

.form-radio-ledger {
    display: flex;
    align-items: center;
    margin: 0 -8px;
    justify-content: space-between;
}

    .form-radio-ledger label {
        display: flex;
        align-items: center;
        padding: 0 8px;
    }

        .form-radio-ledger label span {
            font-size: 13px;
            margin-left: 5px;
        }

.radio-group {
    display: flex;
}

.form-radio-ledger label span {
    font-size: 13px;
    margin-left: 5px;
}

.grid-section-header tr th a {
    float: none;
}

.flex-filter {
    display: flex;
    justify-content: center;
    padding: 5px;
    background: #f8f9fa;
    border: 1px solid rgba(33,37,41,.125);
    border-bottom: none;
}

    .flex-filter .btn-primary {
        margin-left: 6px;
    }

.form-radio-ledger label span {
    font-size: 13px;
    margin-left: 5px;
    color: #333;
    font-weight: normal;
}


.form-radio-row {
    display: flex;
    margin: 0 -5px;
    align-items: center
}

    .form-radio-row > div {
        margin: 0 5px;
    }

    .form-radio-row .form-group {
        max-width: 105px;
    }

    .form-radio-row label {
        display: block;
        width: 100%;
    }


.form-group-hide .ByBillGroup#AgentInvGrpId {
    display: none !important;
}

.form-radio-left {
    justify-content: flex-start;
}

.center-justify {
    justify-content: center;
}

.divAgentLoader {
    position: fixed;
    top: 0;
    left: 138px;
    z-index: 9999;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
}

.er-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .er-roller div {
        animation: er-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        transform-origin: 40px 40px;
    }

        .er-roller div:after {
            content: " ";
            display: block;
            position: absolute;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #1b6177;
            margin: -4px 0 0 -4px;
        }

.divAgentLoader .er-roller div:after {
    background: #fff;
}

.er-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

    .er-roller div:nth-child(1):after {
        top: 63px;
        left: 63px;
    }

.er-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

    .er-roller div:nth-child(2):after {
        top: 68px;
        left: 56px;
    }

.er-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

    .er-roller div:nth-child(3):after {
        top: 71px;
        left: 48px;
    }

.er-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

    .er-roller div:nth-child(4):after {
        top: 72px;
        left: 40px;
    }

.er-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

    .er-roller div:nth-child(5):after {
        top: 71px;
        left: 32px;
    }

.er-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

    .er-roller div:nth-child(6):after {
        top: 68px;
        left: 24px;
    }

.er-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

    .er-roller div:nth-child(7):after {
        top: 63px;
        left: 17px;
    }

.er-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

    .er-roller div:nth-child(8):after {
        top: 56px;
        left: 12px;
    }

@keyframes er-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.big-box-full-fir .big-box-full {
    width: 100%;
}

.grid-section-center tr th, .grid-section-center tr td {
    text-align: center;
    vertical-align: middle;
}

.mid-row {
    margin: 0 auto;
}

.mid-403 {
    max-width: 403px;
}


.form-disabled {
    position: relative;
}

    .form-disabled:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 35px;
        background: rgba(255,255,255,0.4);
        z-index: 9;
        border-radius: 4px;
    }

.yn-row .form-group {
    margin-bottom: 10px;
}

.full-scroll .fixed-scroll-second {
    bottom: 0;
    margin: 0;
}

.radio-group-between {
    justify-content: space-between;
    width: 100%;
}

.radio-group-block {
    display: block;
    width: 100%;
}

.flex-radio-check {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    min-height: 30px;
}

    .flex-radio-check:last-child {
        margin-bottom: 0;
    }

    .flex-radio-check .form-group {
        margin-bottom: 0;
        display: none;
    }

        .flex-radio-check .form-group.active {
            display: block;
        }

        .flex-radio-check .form-group input {
            max-height: 30px;
            padding: 0 10px;
        }

.tab-pane .flex-radio-check .form-group label input {
    display: inline-block;
}

.flex-radio-check-child {
    display: none;
}

    .flex-radio-check-child.active {
        display: block;
    }

        .flex-radio-check-child.active .form-group {
            display: flex;
        }

.flex-radio-child,
.flex-radio-nchild {
    display: none;
}

    .flex-radio-child.active,
    .flex-radio-nchild.active {
        display: block;
    }

.flex-radio-nchild {
}

.perGrossBody .flex-radio-nchild .form-group {
    margin-bottom: 10px;
}

.posi-relative {
    position: relative;
}

    .posi-relative .for-rela .info-tooltip {
        top: -30px;
    }

.form-group-flex-box {
    display: flex;
    align-items: center;
}

    .form-group-flex-box label {
        font-weight: 400;
        font-size: 14px;
        color: #333;
        padding-right: 10px;
        white-space: nowrap;
    }

        .form-group-flex-box label:last-child {
            padding-right: 0;
            padding-left: 10px;
        }

.grid-section-body {
    background: #fff;
}

    .grid-section-body > .k-grid-display-block {
        /*border-right-color: transparent;*/
    }

.white-space-td td {
    white-space: nowrap;
}

.flex-radio-check input.form-control {
    width: 85px;
}

#byRevenueDay {
    padding-left: 87px;
}

#byOrderCountDay {
    padding-left: 190px;
    margin-bottom: 10px;
    max-width: 630px;
}

    #byOrderCountDay .k-widget.k-grid.k-grid-display-block.k-editable {
        max-height: 170px;
    }

#OrderCount {
    margin-left: calc(100% - 535px);
    margin-bottom: 10px;
    max-width: 535px;
}

    #OrderCount .k-widget.k-grid.k-grid-display-block.k-editable {
        max-height: 170px;
    }

.white-space-td .k-link.link {
    color: #4589c8;
    cursor: pointer;
}

    .white-space-td .k-link.link:hover {
        text-decoration: underline;
    }

.hide-label {
    display: none !important;
}

    .hide-label.active {
        display: inline-block !important;
    }

.flex-radio-check .hide-label.active .form-group {
    display: block;
}

.perGrossClick select.form-control {
    padding: 0 10px;
    max-height: 30px;
}

#PerGrossProByScale.active {
    display: flex;
    align-items: center;
}

.flex-label label, .flex-label span {
    font-size: 13px;
    padding: 0;
    font-weight: normal;
    margin: 0 !important;
    display: block;
}

.hidden-op {
    opacity: 0;
    visibility: hidden;
}

@media(min-width: 767px) {
    .grid-section-inner-table > div {
        height: auto !important;
    }

    #OrderCount .grid-section-inner-table .k-grid-content.k-auto-scrollable {
        max-height: 98px;
        min-height: 80px;
    }

    .grid-section-inner-table .k-grid-content.k-auto-scrollable {
        max-height: 280px;
    }

    .small-section-inner-table .k-grid-content.k-auto-scrollable {
        max-height: 140px;
        min-height: 140px;
    }

    .small-section-inner-table > .k-grid-display-block {
        height: auto !important;
    }
}

/*-27-01-2022-*/
.form-row-inline2 {
    justify-content: space-between;
}

.form-inline-flex2 {
    justify-content: space-between;
}

    .form-inline-flex2 .form-control {
        max-width: 100px;
    }

    .form-inline-flex2 .field-validation-valid {
        position: absolute;
    }

.for-rela-left .info-tooltip {
    left: auto;
    right: 0;
    min-width: 200px;
    top: auto;
    bottom: 17px;
}

.for-rela-bottom .info-tooltip {
    bottom: 35px;
}

.for-rela-left .info-tooltip:before {
    right: 3px;
    left: auto;
}
/*-27-01-2022-*/

.table-top-mid-section .btn {
    margin-left: 5px;
}

.grid-section-calc {
    max-height: calc(100vh - 522px);
}

    .grid-section-calc .k-header {
        position: sticky;
        top: 0;
        background: #f8f9fa;
    }

@media (min-width: 767px) {
    .with-some-thing-at-top-2 .k-grid-content.k-auto-scrollable {
        max-height: calc( 100vh - 400px );
    }
}

.btn-flex {
    display: inline-flex;
    align-items: center;
}

.ltl-bulk-quote {
    max-width: 676px;
    margin: 0 auto;
}

.form-group-2-check label {
    margin-right: 10px;
    position: relative;
}

.form-group-condi {
    display: none !important;
}

    .form-group-condi.form-group-condiactive {
        display: block !important;
    }

.ltl-detail-quote thead th:first-child {
    font-size: 0px !important;
}

.grid-section-noscroll {
    max-height: none;
}

.grid-section-max {
    max-height: 200px;
}

.radio-group.row {
    width: 100%;
}

    .radio-group.row .col {
        display: block;
    }

.box-section2-header h2 {
    background: #f8f9fa;
    border: 1px solid rgba(33,37,41,.125);
    border-bottom: none;
}

.k-listbox {
    height: 324px;
}

/*-14-04-2022-*/
.date-filter-wrap {
    background: #f8f9fa;
    padding: 6px 15px;
    border: 1px solid #dde2e7;
    border-bottom: none;
}

    .date-filter-wrap .col > label {
        white-space: nowrap;
        margin-bottom: 0;
        margin-right: 8px;
    }

.invoice-ledger-tab {
    max-width: 350px;
    min-width: 350px;
}

.date-tab {
    min-width: 225px;
}

.date-filter-tab {
    max-width: 71px;
}

.date-filter-wrap .form-group,
.date-filter-wrap .form-group > label {
    margin-bottom: 0;
}

    .date-filter-wrap .form-group > label {
        white-space: nowrap;
    }

.date-filter-wrap .date-filter-radio {
    display: flex;
    align-items: center;
    max-width: 186px;
    min-width: 186px;
}

.date-hide {
    display: none !important;
}
/*-14-04-2022--*/
.incresase-filter-dropdown > .k-widget {
    min-width: 360px;
}

/*-26-04-2022--*/
/*-26-04-2022--*/


.max-height-table {
    max-height: calc(100vh - 100px)
}


.k-dialog {
    max-width: 600px;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
}

    .k-dialog .k-window-content {
        max-height: calc(100vh - 110px);
    }

.white-normal {
    white-space: normal !important;
}

.header-search .k-multiselect {
    max-height: 35px;
    overflow: auto;
    border-radius: 3px;
    border: 1px solid rgba(33,37,41,.15);
}

    .header-search .k-multiselect .k-multiselect-wrap {
        border: none !important;
    }

.sub-menu-content ul li span {
    /*    background: rgba(38, 97, 125, 0.75);*/
    background: rgb(25 37 42 / 75%);
    display: block;
    padding: 3px 15px 4px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.widget-width > .k-widget {
    min-width: 222px;
}

.yn-row .form-group > label {
    min-width: 90px;
}

.form-group-justify {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inner-wrapper {
    background: transparent;
    padding: 0;
}

    .inner-wrapper h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

.modal {
    z-index: 99999999999;
}

#ExcelPopup {
    z-index: 1050;
}

.k-alert {
    z-index: 9999999999999999 !important;
}

#ViewOrderRefrence {
    max-height: calc(100vh - 100px);
}

.demo-section {
    line-height: normal !important;
}

.modal-body-slim {
    padding: 0;
}

.modal-body-sub-heading h3 {
    color: #333;
    font-size: 15px;
    margin-bottom: 3px;
}

.modal-body-sub-heading {
    background: #e1e1e1;
    display: flex;
    align-items: center;
    height: 36px;
    padding: 0 10px;
}

.modal-body-inner {
    padding: 10px;
}

    .modal-body-inner + .modal-body-inner {
        padding-top: 0;
    }

.radioUserTab label {
    margin-bottom: 0;
}

.k-pager-numbers-wrap ul li > span {
    background-color: blue !important
}

.k-pager-numbers-wrap ul li {
    background-color: blue !important;
    /* display: inline-block !important;*/
}


    .k-pager-numbers-wrap ul li :hover {
        color: yellow !important;
        border-width: 1px;
    }

/*===========26-8-2022 css parvej khan Start ==========*/

.k-pager-wrap .k-pager-numbers-wrap {
    /*width: 31px !important;*/
    height: 31px !important;
    /*min-width: 31px !important;*/
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0px !important;
    border-radius: 0px !important;
}

.k-pager-wrap.k-pager-md .k-pager-numbers {
    background-color: blue !important;
    border-radius: 0px !important;
}

.k-pager-wrap .k-pager-numbers-wrap li:not(.k-current-page) {
    /*width: 31px !important;*/
    border-radius: 0px !important;
}

.k-pager-wrap.k-pager-md .k-pager-numbers li:not(.k-current-page) {
    display: inline-block;
    color: #fff !important;
    width: 31px !important;
}

.k-pager-wrap.k-pager-md .k-pager-numbers .k-link, .k-pager-wrap.k-pager-md .k-pager-numbers .k-state-selected {
    /*width: 31px !important;*/
    border-radius: 0px !important;
}

.k-pager-wrap.k-pager-md .k-pager-nav + .k-pager-numbers-wrap {
    /*width: 31px !important;*/
    border-radius: 0px !important;
}

.k-pager-wrap.k-pager-lg .k-pager-nav + .k-pager-numbers-wrap {
    max-width: 32px;
}
/*===========26-8-2022 css parvej khan End ==========*/


/*starting of 8 spt 2022 changes done by nitin*/
.dts-loader1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0,0,0,0.3);
    display: none;
    justify-content: center;
    align-items: center;
}

    .dts-loader1.active, .loading-data.active {
        display: flex;
    }

    .dts-loader1 .lds-ring, .loading-data .lds-ring {
        display: inline-block;
        position: relative;
        width: 80px;
        height: 80px;
    }

        .dts-loader1 .lds-ring div, .loading-data .lds-ring div {
            box-sizing: border-box;
            display: block;
            position: absolute;
            width: 64px;
            height: 64px;
            margin: 8px;
            border: 8px solid #01a1d3;
            border-radius: 50%;
            animation: dts-loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
            border-color: #01a1d3 transparent transparent transparent;
        }

            .dts-loader1 .lds-ring div:nth-child(1), .loading-data .lds-ring div:nth-child(1) {
                animation-delay: -0.45s;
            }

            .dts-loader1 .lds-ring div:nth-child(2), .loading-data .lds-ring div:nth-child(2) {
                animation-delay: -0.3s;
            }

            .dts-loader1 .lds-ring div:nth-child(3), .loading-data .lds-ring div:nth-child(3) {
                animation-delay: -0.15s;
            }

@keyframes dts-loader1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*end of 8 spt 2022 changes done by nitin*/



/*================new menu start =================*/
.new-menu {
    width: 100%;
    /*    display: none;*/
}


.navwrap {
    /*  max-width: 600px;*/

    width: 100%;
    /*    max-width: 1309px;*/

    margin: auto;
    overflow-y: auto;
    white-space: nowrap;
    /* -webkit-overflow-scrolling: touch; seems to confine overflow in error  */
    /*  padding-bottom: 14px;*/
    padding-bottom: 0px;
    scrollbar-width: thin;
    padding: 0px 20px;
}

    .navwrap .nav {
        /*display: table;*/ /*white-space fix*/
        display: flex;
        width: 100%;
        /*text-align: center;*/
        word-spacing: -9em; /*white-space fix*/
    }

        .navwrap .nav li {
            display: inline-block;
            text-align: left;
            word-spacing: normal; /*white-space fix*/

            margin-bottom: 0px;
            margin: 0px 4px 0px 0px;
        }

            .navwrap .nav li > a {
                position: relative;
            }

            .navwrap .nav li:hover,
            .nav > li > a:hover,
            .nav li:focus,
            .nav > li > a:focus {
                z-index: 105;
            }

            .navwrap .nav li li {
                display: block;
            }

        .navwrap .nav a {
            display: block;
            padding: 4px 10px;
            /*    padding: 7px 10px;*/
            /*background: #83e1ff;*/
            background: linear-gradient(0deg, #00c1ff 0%, rgb(124 248 255) 46%, rgb(0 56 99) 100%);
            border-radius: 10px;
            /*  background: #01a1d3;*/
            color: #000;
            /*  color: #fff;*/
            border: 1px solid #e9edf2;
            font-size: 13px;
            /*  border: 1px solid #000;*/
            text-decoration: none;
            white-space: nowrap;
            position: relative;
        }



        .navwrap .nav li:hover > a,
        .nav a:hover,
        .nav li:focus > a,
        .nav a:focus {
            background: linear-gradient(0deg, #00c1ff 0%, rgb(124 248 255) 46%, rgb(0 56 99) 100%);
            /*    background: #01a1d3;*/
            color: #000;
        }

        /*===============*/
        .navwrap .nav ul li.li-active > a {
            background: linear-gradient(0deg, #00c1ff 0%, rgb(124 248 255) 46%, rgb(0 56 99) 100%);
        }
        /*===============*/

        .navwrap .nav ul {
            position: absolute;
            z-index: 104;
            left: -999em;
            top: 0;
            opacity: 0;
            transition: opacity 0.5s, left 0s 0.5s, top 0.5s;
            /*=*/
            margin: 0px 0 5px 0px;
            border: 0px;
            padding: 0px;
            /*border: 1px solid #01a1d3;*/
            /*=*/
        }

            .navwrap .nav ul li {
                margin-bottom: 0px !important;
                width: 156px;
            }

                .navwrap .nav ul li a {
                    font-size: 13px;
                    white-space: break-spaces;
                }

        /*=========== dropdwon menu hover */

        .navwrap .nav li:hover > ul {
            left: auto;
            top: auto;
            opacity: 1;
            transition: opacity 0.5s linear, top 0.5s;
        }

        /*=========== dropdwon menu hover */

        .navwrap .nav li:focus-within > ul {
            left: auto;
            top: auto;
            opacity: 1;
            transition: opacity 0.5s linear, top 0.5s;
        }

        .navwrap .nav ul ul {
            /*transition: opacity 0.4s, left 0s 0.4s, margin 0s 0.4s;*/
            transition: opacity 0.4s, left 0s 0.4s, margin 5s 5.4s;
            z-index: 103;
        }



        .navwrap .nav li li:hover ul {
            top: auto;
            margin-left: 100%;
            /*transform: translateY(-2.2rem);*/
            transform: translateY(-1.8rem);
            opacity: 1;
            /*transition: opacity 0.5s linear, margin 0.5s;*/
            transition: opacity 0.5s linear, margin 2.5s;
        }




        .navwrap .nav li li:focus-within ul {
            top: auto;
            margin-left: 100%;
            transform: translateY(-2.2rem);
            opacity: 1;
            /*transition: opacity 0.5s linear, margin 0.5s;*/
            transition: opacity 0.5s linear, margin 2.5s;
        }

        /* arrows */
        .navwrap .nav li a:first-child:not(:last-child) {
            padding-right: 20px; /* make space for arrows*/
        }

            .navwrap .nav li a:first-child:not(:last-child):after {
                content: "";
                position: absolute;
                right: 3px;
                top: 50%;
                margin-top: -6px;
                width: 0;
                height: 0;
                border-top: 6px solid transparent;
                border-bottom: 6px solid transparent;
                border-left: 6px solid yellow;
            }

        .navwrap .nav > li > a:first-child:not(:last-child):after {
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid #000;
            border-bottom: none;
            /*  margin-top: -3px;*/
            /*margin-top: 22px;*/
            margin-top: 14px;
        }

        .navwrap .nav li:hover a:first-child:not(:last-child):after {
            border-left-color: #000;
        }

        .navwrap .nav li:focus-within a:first-child:not(:last-child):after {
            border-left-color: #fff;
        }

        .navwrap .nav > li:hover > a:first-child:not(:last-child):after {
            border-left-color: transparent;
            border-top-color: #fff;
        }

        .navwrap .nav > li:focus-within > a:first-child:not(:last-child):after {
            border-left-color: transparent;
            border-top-color: #fff;
        }

        /* allow touch to play but probably won't work with this scrolling version*/
        .navwrap .nav .touch-only {
            display: none;
            left: -10px;
        }

    .navwrap .touch-device .nav .touch-only {
        display: inline-block;
    }

        .navwrap .touch-device .nav .touch-only a {
            background: #000;
            color: #fff;
        }

    /*.wrap {
padding: 20px;
max-width: 980px;
margin: auto;
background: #eee;
}*/

    /* remove hover when scrolling  */
    .navwrap .isScrolling .nav ul.dropdown {
        left: -999em;
        opacity: 0;
    }

    /*==============first dropdwon start========*/

    .navwrap .nav ul.first {
        position: absolute;
        z-index: 104;
        /*left: -999em;*/
        top: 0;
        opacity: 0;
        transition: opacity 0.5s, left 0s 0.5s, top 0.5s;
        /*=*/
        margin: 0px 0 5px 0px;
        border: 0px;
        padding: 0px;
    }

    .navwrap .nav li li:hover ul.first {
        top: auto;
        /*margin-left: -138%;*/
        margin-left: -98%;
        transform: translateY(-1.8rem);
        /*margin-left: -188%;*/
        /*transform: translateY(-2.2rem);*/
        opacity: 1;
        /*transition: opacity 0.5s linear, margin 0.5s;*/
        transition: opacity 0.5s linear, margin 2.5s;
    }

    .navwrap .nav li li:focus-within ul.first {
        top: auto;
        /*margin-left: 100%;
    transform: translateY(-2.2rem);*/
        margin-left: -96%;
        transform: translateY(-1.8rem);
        opacity: 1;
        /*transition: opacity 0.5s linear, margin 0.5s;*/
        transition: opacity 0.5s linear, margin 2.5s;
    }
    /*==============first dropdwon end========*/

    /*==============tow dropdwon start========*/

    .navwrap .nav ul.tow {
        position: absolute;
        z-index: 104;
        /*left: -999em;*/
        top: 0;
        opacity: 0;
        transition: opacity 0.5s, left 0s 0.5s, top 0.5s;
        /*=*/
        margin: 0px 0 5px 0px;
        border: 0px;
        padding: 0px;
    }

    .navwrap .nav li li:hover ul.tow {
        top: auto;
        margin-left: -88%;
        transform: translateY(-1.8rem);
        opacity: 1;
        transition: opacity 0.5s linear, margin 2.5s;
    }

    .navwrap .nav li li:focus-within ul.tow {
        top: auto;
        margin-left: -85%;
        transform: translateY(-1.8rem);
        opacity: 1;
        /*transition: opacity 0.5s linear, margin 0.5s;*/
        transition: opacity 0.5s linear, margin 2.5s;
    }
    /*==============tow dropdwon end========*/

    /*==============three dropdwon start========*/

    .navwrap .nav ul.three {
        position: absolute;
        z-index: 104;
        /*left: -999em;*/
        top: 0;
        opacity: 0;
        transition: opacity 0.5s, left 0s 0.5s, top 0.5s;
        /*=*/
        margin: 0px 0 5px 0px;
        border: 0px;
        padding: 0px;
    }

    .navwrap .nav li li:hover ul.three {
        top: auto;
        margin-left: -112%;
        transform: translateY(-1.8rem);
        opacity: 1;
        transition: opacity 0.5s linear, margin 2.5s;
    }

/*.navwrap .nav li li:focus-within ul.three {
    top: auto;
    margin-left: -138%;
    transform: translateY(-1.8rem);
    opacity: 1;
    transition: opacity 0.5s linear, margin 2.5s;
}*/
/*==============tow dropdwon end========*/


/*================new menu end =================*/
