* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins';
    background-color: #E5E5E5;
    font-size: .925rem;
}

#wrapper {
    margin-left: 277px;
    transition: all .3s ease-in-out;
    height: 100vh;
    padding: 0;
}

.display-none {
    display: none;
}

#wrapper.fullwidth {
    margin-left: 0;
}

.span {
    color: rgb(58, 58, 58);
}

select {
    padding: 10px 10px;
    font-size: 13px;
    line-height: 18px;
    color: rgb(58,58, 58);
}
/** -------------------------------- -- Sidebar -------------------------------- */
.sidebar {
    background-color: #006531;
    width: 277px;
    transition: all .3s ease-in-out;
    transform: translateX(0);
    z-index: 9999999;
    height: 100vh;
    position: fixed;
    overflow-y: auto;
}

    .sidebar::-webkit-scrollbar {
        width: 5px;
    }

    .sidebar::-webkit-scrollbar-thumb {
        background-color: rgba(42, 235, 177, 0.3);
        outline: 1px solid rgba(42, 235, 177, 0.3);
    }

    .sidebar .close-aside {
        position: absolute;
        top: 7px;
        right: 7px;
        cursor: pointer;
        color: #EEE;
    }

    .sidebar .sidebar-header {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
    }

        .sidebar .sidebar-header .brand {
            width: 147px;
            margin: 40px 0 20px;
            outline: none;
        }

            .sidebar .sidebar-header .brand img {
                width: 100%;
                background: white;
            }

            .sidebar .sidebar-header .brand a {
                text-decoration: none;
                outline: none;
            }

.categories {
    width: 100%;
    padding: 190px 0 0 0;
}

.sidebar > ul > li {
    padding: 30px 15px;
    border-bottom: 1px solid #ffffffb0;
    text-align: left;
    list-style: none;
}

    .sidebar > ul > li:last-child {
        border-bottom: none;
    }

.sidebar ul > li > a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    /* padding: 0 20px;*/
}

    .sidebar ul > li > a:hover {
        color: #008340;
    }

    .sidebar ul > li > a.current {
        color: #008340;
    }

    .sidebar ul > li > a:not(:only-child):after, .sidebar ul > li > a:visited:not(:only-child):after {
        padding-left: 4px;
        content: ' \025BE';
    }
    /* Start numbers */
    .sidebar ul > li > a > .num {
        line-height: 0;
        border-radius: 3px;
        font-size: 14px;
        padding: 0px 5px
    }

.sidebar ul > li > i {
    font-size: 18px;
    margin-right: .7rem;
}

.sidebar ul > li.has-dropdown > a:after {
    content: '\eb3a';
    font-family: unicons-line;
    font-size: 1rem;
    line-height: 1.8;
    float: right;
    transition: all .3s ease-in-out;
}

.sidebar ul .opened > a:after {
    transform: rotate(-90deg);
}
/* Start dropdown menu */
.sidebar ul .sidebar-dropdown {
    padding-top: 10px;
    padding-left: 2px;
    display: none;
}

    .sidebar ul .sidebar-dropdown.active {
        display: block;
    }

    .sidebar ul .sidebar-dropdown > li {
        list-style: none;
    }

        .sidebar ul .sidebar-dropdown > li > a {
            font-size: 14px;
            padding: 8px 4px;
            display: block;
            list-style: none;
        }
/* End dropdown menu */
.show-sidebar {
    transform: translateX(-270px);
}
/**/
@media (max-width: 767px) {
    .sidebar ul > li {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .sidebar .search {
        padding: 10px 0 10px 30px
    }
}

.navbar {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

    .navbar .dropdown-menu {
        right: auto !important;
        left: 0 !important;
    }

    .navbar .navbar-nav > li > a {
        color: #EEE !important;
        line-height: 55px !important;
        padding: 0 10px !important;
    }

.show-sidebar {
    transform: translateX(-290px);
}

.navbar .navbar-header {
    width: 70px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    display: none;
}

.header-width .navbar-header {
    width: 70px;
}

.header-width .navbar-header {
    display: block;
}

.humber {
    width: 60px;
    height: 30px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.navbar-sidetoggle {
    background: none;
    outline: none;
    width: 30px;
    box-shadow: none;
    border: none;
    font-size: 30px;
    color: #000;
    cursor: pointer;
}

/*.navbar-sidetoggle i {
    font-size: 30px;
    color: #000;
    cursor: pointer;
}*/

.navbar-brand {
    width: 100%;
    transition: all .3s ease-in-out;
}

    .navbar-brand a {
        padding: 0;
        margin: 0;
    }

    .navbar-brand img {
        width: 100%;
        background: #fff;
    }

.navbar .search-header {
    width: 50%;
    padding: 0 5% 0 0;
}

.navbar .navbar-nav > .open > a, .navbar .navbar-nav > .open > a:focus, .navbar .navbar-nav > .open > a:hover {
    background-color: transparent !important;
    color: #FFF !important
}

.header-wrapp {
    padding: 15px 15px;
    background: #E5E5E5;
    height: 100px;
    background: #E5E5E5;
    position: fixed;
    width: 85%;
    z-index: 80;
    top: 0;
}

#wrapper.fullwidth .header-wrapp {
    width: 100%;
}
/*============================*/
/**************************** Login Css start here *********************/
.login-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    width: 100%;
    height: 100vh;
}

    .login-wrap > .login-home {
        position: absolute;
        top: 3%;
        left: 15%;
    }

        .login-wrap > .login-home a {
            color: #01823f;
            text-decoration: none;
            font-size: 14px;
        }

            .login-wrap > .login-home a i {
                margin-right: 5px;
                font-size: 20px;
            }

.login-box {
    width: 700px;
    border: solid 1px #ccc;
    padding: 30px 35px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    position: relative;
}

    .login-box::before {
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: -10;
        background-color: rgba(1, 109,53, .1);
    }

    .login-box form {
        width: 100%;
    }

    .login-box .am-row, .login-box .amc-row {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

        .login-box .am-row .login-left {
            width: 100%;
        }

    .login-box .amc-row {
        justify-content: center;
    }

.forgot-left {
    width: 80%;
    padding: 15px 15px 0;
    float: left;
}

.login-box .am-row .login-left {
    width: 48%;
    padding: 0;
}

.login {
    width: 150px;
    margin: auto
}

    .login img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

.form-group {
    width: 100%;
}

.login-name {
    font-weight: 600;
    font-size: 30px;
    color: #555;
    margin: 10px 0;
}

.line-height-am {
    line-height: 18px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    padding: 16px 24px;
    color: #212529;
    font-size: 14px;
    width: 89%;
    margin-bottom: 20px;
}

.login-left {
    width: 45%;
    padding: 0 15px;
    float: left;
}

.line-height-am:focus {
    color: #212529;
    background-color: rgb(238, 253, 240);
    border-color: #018440b5;
    outline: 0;
    border: 1px solid #00823f38;
}

.login-btn-am, .cancel-btn-am {
    font-size: 16px;
    background-color: #01823f;
    color: #fff;
    line-height: 25px;
    padding: 10px 35px;
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    outline: none;
    border: none;
    margin: 0 5px;
    cursor: pointer;
}

.login-btn-am {
    width: 150px;
}

.cancel-btn-am {
    background-color: #b92804;
    padding: 10px 50px;
}

.login-btn-am i {
    font-size: 16px;
    font-weight: normal;
    padding-left: 4px;
}

.p-3 {
    padding: 1rem;
}

.mt-3 {
    margin-top: 1rem;
}

.rounded-pill {
    border-radius: 100rem;
}

.login_btn_am:hover {
    background-color: #035603;
    color: #fff;
}

.forget-password-am {
    color: #4c4c4c;
    font-size: 16px;
    text-decoration: none;
    line-height: 30px;
}

    .forget-password-am:hover {
        color: #01823f;
    }

.text-center {
    text-align: center;
}

.capchar {
    width: 120px;
    margin-top: 20px;
}

.capchar-btn {
    text-decoration: none;
    padding-top: 17px;
    color: #008341;
    padding-left: 5px;
}

.d-flex {
    display: flex;
}

.login-button-center {
    justify-content: center;
    display: flex;
    width: 100%;
    flex-direction: row;
}

.login-body {
    background: url(/wwwroot/theme1/img/dashboardbg.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.captcha-div {
    margin-bottom: 20px;
    margin-top: 33px;
}

#mainCaptcha {
    padding: 10px 7px;
    font-size: 20px;
    border-radius: 3px;
}

#refresh {
    position: relative;
    left: 230px;
    width: 30px;
    height: 30px;
    bottom: 45px;
    background-image: url(rpt.jpg);
}

#txtInput, #Button1 {
    position: relative;
    left: 40px;
    bottom: 40px;
}

.capchar-btn {
    cursor: pointer;
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.error {
    color: #ff0000;
    font-size: 12px;
    bottom: 0;
    font-weight: 300;
}
/**************************** Login Css end here *********************/
/**************************** Header Css start here *********************/
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.header_destop {
    display: block;
}

.d-flex-headtop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.search-header {
    width: 45%;
}

    .search-header input {
        width: 100%;
        -webkit-border-radius: 23px;
        -moz-border-radius: 23px;
        border-radius: 23px;
        background: #F9F9F9;
        padding: 15px 18px;
        outline: none;
        border: none;
    }

        .search-header input::-webkit-input-placeholder {
            color: rgb(218, 218, 218);
        }

        .search-header input ::-moz-placeholder {
            color: rgb(218, 218, 218);
        }

        .search-header input :-ms-input-placeholder {
            color: rgb(218, 218, 218);
        }

        .search-header input:-moz-placeholder {
            color: rgb(218, 218, 218);
        }

.header-right {
    width: 45%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-right: 15px;
    ;
}

.header2 {
    display: none;
}

#header {
    background-color: #d8f3dc;
    padding-bottom: 6px;
    border-radius: 0 0 30px 30px;
}

.header_top {
    width: 100%;
    padding: 9px 0px 7px;
}

.logo {
    width: 90px;
}

    .logo img {
        width: 100%;
    }

.search_with {
    width: 100%;
}

.search_row {
    padding: 5px 15px;
    line-height: 29px;
}

.search_tp, .search-tp {
    top: 7px;
    padding: 1px 8px;
    cursor: pointer;
}

    .search_tp i {
        color: #D3D3D3;
        font-size: 19px;
    }

.search_btn {
    color: #006530;
    border: none;
    box-shadow: 0 0 7px #f6f6f6b5;
    font-weight: 600;
    font-size: 15px;
    padding: 0 36px;
    margin-left: 17px;
    background-color: #d0efd5bf;
    line-height: 17px;
}

.input-group {
    position: relative;
    width: 100%;
}

    .input-group > .form-control, .input-group > .form-select {
        position: relative;
        width: 100%;
        outline: none;
    }

.input-group-append {
    position: absolute;
    right: 7px;
    top: 4px;
    background-color: transparent;
}

.input-group .btn {
    position: relative;
    z-index: 2;
    background-color: transparent;
    border: 0px;
}

.right-flex {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
    flex-wrap: wrap;
    border-left: solid 2px #f7f7f7b8;
    align-items: center;
}

.border_right_am {
    border-left: solid 2px #f7f7f7b8;
    margin-left: 16%;
    height: 67px;
    display: flex;
    align-items: center;
    float: left;
    padding-right: 12px;
}

.welcome-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 6px 18px;
    -webkit-border-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -moz-border-radius: 6px;
    -moz-border-radius-topright: 6px;
    border-radius: 6px;
    border-top-right-radius: 6px;
    width: 75%;
    position: relative;
    box-shadow: -3.08176px -3.08176px 7.7044px 1.54088px rgba(255, 255, 255, 0.31), 2.31132px 4.62264px 5.39308px 0.77044px rgba(215, 215, 215, 0.57);
}

    .welcome-box h2 {
        width: 85%;
        line-height: 25px;
        word-break: break-word;
        font-size: 18px;
        font-weight: 600;
        color: #006531;
        text-align: left;
    }

    .welcome-box a {
        display: flex;
        flex-direction: column;
        padding: 3px;
        outline: none;
        cursor: pointer;
    }

        .welcome-box a img {
            width: 50px;
            border-radius: 100%;
            border: 1px solid #7dbb57;
            padding: 3px;
            background: #d8f3dc;
        }

    .welcome-box::before {
        content: '';
        position: absolute;
        right: 3px;
        top: 33px;
        width: 0;
        height: 0;
        border-top: solid 7px rgba(0, 0, 0, 0.5);
        border-left: solid 7px transparent;
        border-right: solid 7px transparent;
    }

.welcome-drop-down, .notification-drop-down {
    position: absolute;
    width: 210px;
    display: none;
    flex-direction: column;
    top: 67px;
    right: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #E5E5E5;
    z-index: 99;
    padding: 0;
    margin: 0;
}

    .welcome-drop-down:after, .notification-drop-down:after {
        content: '';
        position: absolute;
        right: 30px;
        top: -10px;
        width: 0;
        height: 0;
        border-left: 18px solid transparent;
        border-right: 18px solid transparent;
        border-bottom: 18px solid #e5e5e5;
        z-index: -99;
    }

    .welcome-drop-down li, .notification-drop-down li {
        list-style: none;
        width: 100%;
    }

        .welcome-drop-down li a, .welcome-drop-down li a:hover, .notification-drop-down li a, .notification-drop-down li a:hover {
            padding: 15px 12px;
            display: block;
            width: 100%;
            color: #000;
            text-align: left;
            word-break: break-word;
            border-bottom: 1px solid #eee;
            font-size: 13px;
        }

            .welcome-drop-down li a:hover, .notification-drop-down li a:hover {
                color: #fff !important;
            }

.notification-drop-down {
    width: 300px;
    top: 66px;
}

    .notification-drop-down:after {
        right: 2px;
        top: -18px;
        border-bottom: 18px solid #fffafa;
    }

    .notification-drop-down li a {
        background-color: transparent;
        height: auto;
        padding: 8px 12px;
    }

        .notification-drop-down li a:hover {
            height: auto;
            border-radius: 0;
            padding: 8px 12px;
        }

        .notification-drop-down li a, .notification-drop-down li a:hover {
            display: flex;
            flex-flow: row wrap;
            justify-content: space-between;
            align-items: center;
        }

    .notification-drop-down .icon {
        width: 20%;
        width: 20%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

        .notification-drop-down .icon img {
            width: 100%;
            border: 1px solid #006530;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            border-radius: 100%;
        }

    .notification-drop-down .content-n {
        width: 76%;
        flex-flow: column;
        font-size: 13px;
        line-height: 18px;
        word-break: break-all;
    }

    .welcome-drop-down li:last-child, .notification-drop-down li:last-child {
        border-bottom: none;
    }

.logout, .logout:focus, .logout:visited, .logout:hover, .viewall-noti, .viewall-noti:focus, .viewall-noti:visited, .viewall-noti:hover {
    width: 100%;
    padding: 15px 12px;
    border: none;
    outline: none;
    background: #006531;
    color: #fff !important;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center !important;
}

    .logout:focus, .logout:visited, .logout:hover, .viewall-noti:focus, .viewall-noti:visited, .viewall-noti:hover {
        background: #038b45;
        border: none;
        outline: none;
    }

.searchicon, .nav-mobile {
    display: none;
}

.notification {
    width: 60px;
    position: relative;
}

    .notification a, .notification a:hover {
        display: inline-block;
        text-decoration: none;
        background-color: #006530;
        position: relative;
        padding: 4px;
        -webkit-border-radius: 7px;
        -moz-border-radius: 7px;
        border-radius: 7px;
        width: 33px;
        height: 32px;
    }

        .notification a:hover {
            background-color: #058d45;
        }

.setting i:hover {
    color: #058d45;
}

.notification a i {
    font-size: 15px;
    color: #fff;
}

.notification a .no_card {
    position: absolute;
    top: -21px;
    background-color: #ff0000;
    padding: 6px;
    font-size: 13px;
    color: #fff;
    right: -15px;
    font-weight: normal;
    height: 30px;
    width: 30px;
}

.setting {
    width: 40px;
}

    .setting a {
        text-decoration: none;
        display: inline-block;
    }

        .setting a i {
            font-size: 30px;
            color: #006530;
        }

.navigation {
    background-color: #006531;
    border-radius: 0 0 30px 30px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1;
}

    .overlay.active {
        display: block !important;
    }

.navigation.active {
    display: block !important;
    left: 0;
}
/**************************** Header Css End here *********************/
/***********NAVGATION CSS************/
.nav-container {
    max-width: 1000px;
    margin: 0 auto;
}

nav {
    text-align: center;
}

    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-between;
    }

        nav ul li {
            float: left;
            position: relative;
        }

            nav ul li a, nav ul li a:visited {
                display: block;
                padding: 22px 30px;
                line-height: 18px;
                background: #006531;
                text-decoration: none;
                font-size: 14px;
                font-weight: normal;
            }

            nav ul li a {
                background: transparent;
            }

                nav ul li a:hover, nav ul li a:visited:hover {
                    background: #008340;
                    color: #ffffff;
                }

.navbar-dropdown li a {
    background: #006531;
}

nav ul li a:not(:only-child):after, nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    content: ' \025BE';
}

nav ul li ul li {
    min-width: 190px;
}

    nav ul li ul li a {
        padding: 15px;
        line-height: 20px;
    }

.navbar-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    background: #fff;
    box-shadow: 0 0 35px 0 rgba(0,0,0,0.25);
}

    .navbar-dropdown li a {
        border-bottom: 1px solid #ffffff3b;
        text-align: left;
    }
/*HUMBER CSS*/
#navbar-toggle span, #navbar-toggle span:before, #navbar-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 3px;
    width: 30px;
    background: #006530;
    position: absolute;
    display: block;
    content: '';
    transition: all 300ms ease-in-out;
}

    #navbar-toggle span:before {
        top: -10px;
    }

    #navbar-toggle span:after {
        bottom: -10px;
    }

#navbar-toggle.active span {
    background-color: transparent;
}

    #navbar-toggle.active span:before, #navbar-toggle.active span:after {
        top: 0;
    }

    #navbar-toggle.active span:before {
        transform: rotate(45deg);
        background: #fff;
    }

    #navbar-toggle.active span:after {
        transform: rotate(-45deg);
        background: #fff;
    }

.d-colume {
    flex-direction: column;
}
/**************************** main Css start here *********************/
.main {
    width: 100%;
    padding: 100px 15px 40px;
    min-height: calc(100vh - 40px);
    overflow: hidden;
}

.participatory {
    width: 100%;
    margin-bottom: 20px;
}

.nurserie {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

    .nurserie img {
        width: 100%;
    }

.form-control:focus {
    outline: none;
    border: 1px solid #00823f38;
    background-color: rgb(238, 253, 240);
}

.form-control, .form-control2 {
    display: block;
    width: 100%;
    padding: 10px 10px;
    font-size: 13px;
    line-height: 18px;
    color: rgb(58,58, 58);
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #e9e7e7;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    outline: none;
    height: 40px;
    /*  -webkit-appearance: none;
    -moz-appearance: none;*/
}

    .form-control:focus, .form-control2:focus, .headAdd input[type=date]:focus, .headAdd input[type=search]:focus {
        padding: 10px 10px;
        font-size: 13px;
        line-height: 18px;
        outline: none;
        border: 1px solid #00823f38;
        background-color: rgb(238, 253, 240);
        color: rgb(0, 0, 0);
        height: 40px;
    }

.login-label {
    padding-bottom: 10px;
    color: rgb(58,58,58);
    float: left;
    font-size: 14px;
}

.search-header input::-webkit-input-placeholder, .form-control2::-webkit-input-placeholder {
    color: #bdbdbd;
}

.search-header input ::-moz-placeholder, .form-control2 ::-moz-placeholder {
    color: #bdbdbd;
}

.search-header input :-ms-input-placeholder, .form-control2:-ms-input-placeholder {
    color: #bdbdbd;
}

.search-header input:-moz-placeholder, .form-control2:-moz-placeholder {
    color: #bdbdbd;
}

.search-header input:focus, .form-group select:focus {
    color: rgb(0, 0, 0);
    border: 1px solid #00823f38;
}
/**************************** main Css end here *********************/
/**************************** footer Css start here *********************/
.min-footer {
    width: 100%;
    /* position: fixed;
     */
    bottom: 0;
    background: #fff;
    margin: auto;
}

.footer-top-section {
    width: 100%;
    border-top: dashed 2px #0184409c;
    padding: 10px 0 10px;
    background: #E5E5E5;
}

.footer-list {
    width: 82%;
    margin: 0 auto;
    text-align: center;
}

    .footer-list ul {
        list-style: none;
        margin: 0 auto;
        padding: 0px;
        text-align: center;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

        .footer-list ul li {
            line-height: 20px;
            padding: 10px;
            justify-content: space-between;
        }

            .footer-list ul li a {
                text-decoration: none;
                font-size: 16px;
                color: #006531;
                font-weight: 400;
                line-height: 31px;
                padding: 5px 10px;
                border-bottom: 2px solid #006531;
            }

                .footer-list ul li a:hover {
                    text-decoration: none;
                    font-size: 16px;
                    color: #07ac56;
                    font-weight: 400;
                    line-height: 31px;
                    padding: 5px 10px;
                    border-bottom: 2px solid #07ac56;
                }

.footer-bg {
    background-color: #006531;
    padding: 10px 0;
    width: 100%;
}

.footer {
    text-align: center;
}

    .footer p {
        font-size: 14px;
        color: #fff;
    }

.footer-list p {
    font-size: 15px;
    color: #006531;
    font-weight: 400;
    padding-top: 10px;
}
/**************************** footer Css end here *********************/
/*************CIRCLE CSS**************/
.boxshadow {
    box-shadow: 2px 1px 2px #4646461f;
}

.radius-20 {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.radius-8 {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.white-bg {
    background-color: #fff;
}

.flex-just-center {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.circle_section, .circle-section {
    width: 100%;
    margin: auto;
}

.content-showdata {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    position: relative;
}

    .content-showdata .form-set {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

.width {
    width: 50%;
}

.width-35 {
    width: 35%;
}

.min-height {
    min-height: 280px;
}

.content-showdata .form-set .form-row, .headAdd {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: flex-start;
    /*padding: 10px;*/
    /*flex-wrap: wrap;
    */
}

.mb-30 {
    margin-bottom: 30px;
}

.content-showdata .form-set .form-row-new {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    padding: 10px;
    /*flex-wrap: wrap;
    */
}

.headAdd {
    padding: 10px 0 15px;
    justify-content: space-between;
}

    .headAdd h2 {
        font-size: 20px;
        line-height: 18px;
        color: #006531;
        font-weight: 700;
    }

    .headAdd .addnew, .table-content .addnew-new, .headAdd .backbutton, .table-content .addnew, .headAdd .backbutton {
        background: #16a159;
        color: #fff;
        font-size: 14px;
        cursor: pointer;
        padding: 10px 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        outline: none;
        border: none;
        box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 20%);
        -webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0, 20%);
        -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0,0, 20%);
    }

        .headAdd .addnew:focus, .table-content .addnew:hover, .headAdd .backbutton:focus, .headAdd .backbutton:hover, .table-content .addnew:focus, .table-content .addnew:hover, .headAdd .backbutton:focus, .headAdd .backbutton:hover {
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
            outline: none;
            background: #058d45;
        }

    .headAdd .backbutton {
        background: #006530;
    }

        .headAdd .backbutton i {
            margin-right: 6px;
            font-size: 12px;
        }

.savecancel-wrapp i {
    margin: 0 12px;
    font-size: 12px;
}

.content-showdata .form-set .form-row input[type="text"], .content-showdata .form-set .form-row input[type="number"], .content-showdata .form-set .form-row input[type="password"], .content-showdata .form-set .form-row select, .content-showdata .form-set .form-row textarea {
    padding: 10px 10px;
    font-size: 13px;
    line-height: 18px;
    color: rgb(0, 0, 0);
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #ced4da;
    width: 100%;
    box-sizing: border-box;
    height: 40px;
}

    .content-showdata .form-set .form-row input:focus, .content-showdata .form-set .form-row input:focus, .content-showdata .form-set .form-row select:focus, .content-showdata .form-set .form-row textarea:focus {
        outline: none;
        border: 1px solid #00823f38;
        background-color: rgb(238, 253, 240);
        color: rgb(0, 0, 0);
        width: 100%;
        box-sizing: border-box;
    }

    .content-showdata .form-set .form-row input::-webkit-input-placeholder, .content-showdata .form-set .form-row select, .content-showdata .form-set .form-row textarea::-webkit-input-placeholder {
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
    }

    .content-showdata .form-set .form-row input ::-moz-placeholder, .content-showdata .form-set .form-row select, .content-showdata .form-set .form-row textarea::-moz-placeholder {
        /* Firefox 19+ */
        color: #bdbdbd;
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
    }

    .content-showdata .form-set .form-row input :-ms-input-placeholder, .content-showdata .form-set .form-row select, .content-showdata .form-set .form-row textarea:-ms-input-placeholder {
        /* IE 10+ */
        color: #bdbdbd;
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
    }

.content-showdata .form-set .form-row input:-moz-placeholder, .content-showdata .form-set .form-row select {
    /* Firefox 18- */
    color: #e5e5e5;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.content-showdata .form-set .form-row option:not(:first-of-type) {
    color: black;
}

.content-showdata .form-set .form-row label {
    width: 100%;
    padding: 30px 0 0;
}

.content-showdata .form-set .form-row .col-75 {
    width: 75%;
}

.content-showdata .form-set .form-row .col-80 {
    width: 80%;
}

.content-showdata .form-set .form-row .col-72 {
    width: 72%;
}

.content-showdata .form-set .form-row .col-65 {
    width: 65%;
}

.content-showdata .form-set .form-row .col-49 {
    width: 49%;
}

.content-showdata .form-set .form-row .col-48 {
    width: 48%;
}

.content-showdata .form-set .form-row .col-45 {
    width: 45%;
}

.content-showdata .form-set .form-row .col-46 {
    width: 46%;
}

.content-showdata .form-set .form-row .col-40 {
    width: 40%;
}

.content-showdata .form-set .form-row .col-35 {
    width: 35%;
}

.content-showdata .form-set .form-row .col-32 {
    width: 32%;
}

.content-showdata .form-set .form-row .col-27 {
    width: 27%;
}

.content-showdata .form-set .form-row .col-25 {
    width: 25%;
}

.content-showdata .form-set .form-row .col-24 {
    width: 24%;
}

.content-showdata .form-set .form-row .col-22 {
    width: 22%;
}

.content-showdata .form-set .form-row .col-19 {
    width: 19%;
}

.content-showdata .form-set .form-row .col-18 {
    width: 18%;
}

.content-showdata .form-set .form-row .col-17 {
    width: 17%;
}

.content-showdata .form-set .form-row .col-16 {
    width: 16%;
}

.content-showdata .form-set .form-row .col-15 {
    width: 15%;
}

.content-showdata .form-set .form-row .col-14 {
    width: 14%;
}

.content-showdata .table-content {
    width: 100%;
}

    .content-showdata .table-content .switch {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 25px;
    }

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.savecancel-wrapp {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 20px 0 5px;
}

    .savecancel-wrapp .savebutton, .savecancel-wrapp .cancebutton, .body-content .ft-modal .yesbutton, .body-content .ft-modal .nobutton {
        background: #59aa24;
        color: #fff;
        font-size: 14px;
        cursor: pointer;
        padding: 12px 35px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        outline: none;
        border: none;
        box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 20%);
        -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 20%);
        -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 20%);
        outline: none;
    }

        .savecancel-wrapp .savebutton:focus, .savecancel-wrapp .savebutton:hover, .savecancel-wrapp .cancebutton:focus, .savecancel-wrapp .cancebutton:hover, .body-content .ft-modal .yesbutton:focus, .body-content .ft-modal .yesbutton:hover, .body-content .ft-modal .nobutton:focus, .body-content .ft-modal .nobutton:hover {
            box-shadow: 0px 15px 20px rgba(89, 170, 36, 0.4);
            outline: none;
        }

    .savecancel-wrapp .cancebutton, .body-content .ft-modal .nobutton {
        background: #d72e2e;
        margin: 0 20px;
    }

        .savecancel-wrapp .cancebutton:focus, .savecancel-wrapp .cancebutton:hover, .body-content .ft-modal .nobutton:focus, .body-content .ft-modal .nobutton:hover {
            box-shadow: 0px 15px 20px rgba(215, 46, 46, 0.4);
            outline: none;
        }

.width-98 {
    width: 98%;
}

.width-94 {
    width: 94%;
}

.width-95 {
    width: 95%;
}
/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.d-flex-button {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    /*flex-wrap: wrap;*/
}

    .d-flex-button .prview, .d-flex-button .edit, .d-flex-button .delete, .clsEdit, .btnAddNew {
        background: #fabb00;
        border: none;
        outline: none;
        border-radius: 3px;
        padding: 3px 7px;
        color: #000;
        font-family: 'Poppins', sans-serif;
        text-transform: capitalize;
        font-weight: 400;
        font-size: 13px;
        cursor: pointer;
        margin-left: 5px;
        white-space: nowrap;
    }

    .d-flex-button .edit, .clsEdit, .btnAddNew {
        background: #006531;
        color: #fff;
    }

        .d-flex-button .edit:focus, .edit:focus, .edit:hover, .d-flex-button .edit:hover, clsEdit:focus, clsEdit:hover, .btnAddNew:hover {
            background: #16a159;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
            outline: none;
        }

    .d-flex-button .delete {
        background: #d72b3c;
        color: #fff;
        outline: none;
    }

    .d-flex-button .prview:focus, .d-flex-button .prview:hover {
        background: #fbc00f;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
        outline: none;
    }

    .d-flex-button .delete:focus, .d-flex-button .delete:hover {
        background: #b91f2e;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
        outline: none;
    }
/*=====TABLE CSS=======*/
table {
    border: 1px solid #d8f3dc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    /*table-layout: fixed;
    */
    text-align: left;
    vertical-align: middle;
    box-shadow: 1px 1px 4px rgba(0, 0, 0,14%);
    -webkit-box-shadow: 1px 1px 4px rgba(0,0,0, 14%);
    -moz-box-shadow: 1px 1px 4px rgba(0,0, 0, 14%);
}

    table caption {
        font-size: 1.5em;
        margin: .5em 0 .75em;
    }

    table thead {
        width: 100%;
    }

        table thead tr {
            background-color: #006531;
        }

            table thead tr th {
                color: #fff;
                font-family: 'Poppins', sans-serif;
                text-transform: capitalize;
                font-weight: 400;
                font-size: 15px;
                padding: 15px 0;
            }
/*
    table tbody tr td {
        padding: 8px;
        font-family: 'Poppins', sans-serif;
        text-transform: capitalize;
        font-weight: 300;
        font-size: 14px;
        border: 1px solid #d8f3dc;
       
    }*/

.table-no-row {
    width: 100px;
}

.table-status {
    width: 150px;
}

.table-th1 {
    width: 250px;
}
/* CHECK BOX CSS */
.check-box {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .check-box input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
/* Create a custom checkbox */
.check-box {
    position: relative;
    min-height: 85px;
    clear: both;
    display: flow-root !important;
    overflow: hidden;
}

    .check-box .span {
        margin-left: 30px;
        width: 80%;
        margin-top: 42px;
    }

.checkmark {
    position: absolute;
    top: 56px;
    left: 0;
    height: 22px;
    width: 22px;
    border: 1px solid #ccc;
    background-color: #eee;
    border-radius: 2px;
}

.check-box:hover input ~ .checkmark {
    background-color: #ccc;
}

.container input:checked ~ .checkmark {
    background-color: #01823F;
    border-radius: 2px;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check-box input:checked ~ .checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
.check-box .checkmark:after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    /* border: solid white;*/
    border: #008340 solid 1px;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*MODAL POPUP CSS*/
.pop-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50%;
    max-width: 530px;
    min-width: 300px;
    height: auto;
    z-index: 2000;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.pop-show {
    visibility: visible;
}

.pop-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    background: rgba(40,43,49,.8);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.pop-show ~ .pop-overlay {
    opacity: 1;
    visibility: visible;
}
/* Content styles */
.body-content {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #fff;
}

    .body-content .head {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        padding: 2px 0px;
    }

        .body-content .head h3 {
            font-size: 23px;
            font-weight: 700;
            width: 80%;
        }
/* Effect 1: Fade in and scale up */
.pop-effect .body-content {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.body-content .head .close {
    background: #d31b1b;
    border: none;
    outline: none;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    margin: -10px;
}

    .body-content .head .close i {
        font-size: 14px;
        color: #fff;
        cursor: pointer;
        font-weight: 300;
    }

.body-content .content {
    padding: 9px 25px 20px;
}

    .body-content .content .exclamation {
        display: flex;
        justify-content: center;
        padding: 2px;
    }

        .body-content .content .exclamation i {
            font-size: 50px;
            color: #fabb00;
        }

    .body-content .content h4 {
        font-size: 20px;
        line-height: 28px;
        font-weight: 700;
        text-align: center;
        padding: 10px 0;
        color: #006531;
    }

    .body-content .content p {
        font-size: 14px;
        line-height: 22px;
        font-weight: 400;
        color: #000;
        text-align: center;
    }

.body-content .ft-modal {
    padding: 15px;
    display: flex;
    justify-content: center;
    border-top: 2px solid #ebebeb;
}

.pop-show.pop-effect .body-content {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
/***************** 14/01/2022 ***********/
.table-content .add-button-set, .addnew {
    position: absolute;
    right: 2%;
    top: 20px;
}

.table_no_row, .table-no-row {
    width: 70px;
}

.p-lt-tr {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0;
}

.border_top {
    border-top: 1px solid #d8f3dc;
}

.fontweight500 {
    font-weight: 500;
}

.border-right {
    border-right: 1px solid #d8f3dc;
    height: 57px;
}

.border-right2 {
    border-right: 1px solid #d8f3dc;
    height: 135px;
}

.mortality_box {
    width: 36%;
    margin: 35px auto 20px;
}

.input-fild, .input-fild:focus {
    padding: 9px 3px;
    font-size: 13px;
    line-height: 18px;
    color: rgb(0, 0, 0);
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #ced4da;
    width: 100%;
}

    .input-fild:focus {
        outline: none;
        border: 1px solid #00823f38;
        background-color: rgb(238, 253, 240);
        color: rgb(0, 0, 0);
        box-sizing: border-box;
    }

table thead tr th {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-transform: inherit;
    font-weight: 400;
    font-size: 14px;
    padding: 10px 5px;
    line-height: 18px;
    border: 1px solid #d8f3dc;
}

table tbody tr td {
    padding: 8px;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    font-weight: 400;
    line-height: 18px;
    font-size: 13px;
    border: 1px solid #d8f3dc;
}

table.no-transform tbody tr td {
    text-transform: none !important;
}

.rad-label {
    display: flex;
    align-items: center;
    border-radius: 100px;
    padding: 0px 16px;
    cursor: pointer;
    transition: .3s;
    position: relative;
}

    .rad-label:hover, .rad-label:focus-within {
        background: hsla(0, 0%, 80%, .14);
    }

.rad-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
}

.rad-design {
    width: 18px;
    height: 18px;
    border-radius: 100px;
    background: linear-gradient(to right bottom, hsl(128.9, 52.9%, 90%), hsl(154.5, 42.6%, 18.4%));
    position: relative;
}

    .rad-design::before {
        content: '';
        display: inline-block;
        width: inherit;
        height: inherit;
        border-radius: inherit;
        background: hsl(0, 0%, 90%);
        transform: scale(1.1);
        transition: .3s;
    }

.rad-input:checked + .rad-design::before {
    transform: scale(0);
}

.rad-text {
    color: #000;
    margin-left: 10px;
    font-size: 12px;
    font-weight: normal;
    transition: .3s;
}

.box-shadow-none {
    box-shadow: none;
}
/*=====DASHBOARD=======*/
.dashboard-wraap {
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.head-title {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 0 0 20px;
}

    .head-title h2 {
        font-size: 26px;
        color: #000;
    }

.row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
}

.piechart-row {
    width: 65%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.nublist, .seed-adv, .noti-list {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.nublist, .seed-adv {
    width: 49%;
}

.nublist {
    width: 100%;
}

    .nublist ul {
        width: 100%;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
    }

        .nublist ul li {
            list-style: none;
            margin-bottom: 20px;
            width: 48.5%;
        }

            .nublist ul li:last-child {
                margin-bottom: 0;
            }

.set-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.green-bg {
    background: #006531;
}

.white-bg {
    background: #fff;
}

.left-radius-27 {
    -webkit-border-top-left-radius: 27px;
    -webkit-border-top-right-radius: 27px;
    -moz-border-radius-topleft: 27px;
    -moz-border-radius-topright: 27px;
    border-top-left-radius: 27px;
    border-top-right-radius: 27px;
}

.right-radius-27 {
    -webkit-border-bottom-right-radius: 27px;
    -webkit-border-bottom-left-radius: 27px;
    -moz-border-radius-bottomright: 27px;
    -moz-border-radius-bottomleft: 27px;
    border-bottom-right-radius: 27px;
    border-bottom-left-radius: 27px;
}

.radius-27 {
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    border-radius: 27px;
}

.w-45, .w-55 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    align-items: center;
    word-break: break-all;
}

.w-45 {
    width: 45%;
    padding: 15px;
}

.w-55 {
    width: 55%;
    padding: 15px;
}

.num-fsize-70 {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    color: #006531;
}

.c-fsize-22 {
    font-size: 22px;
    color: #fff;
    text-align: center;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: auto;
}

.plant-title {
    width: 100%;
    padding: 10px 25px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

    .box h5, .plant-title h5 {
        font-size: 24px;
        color: #006531;
        line-height: 36px;
        text-align: center;
        font-weight: 600;
    }

    .plant-title h5 {
        text-align: left;
        width: 75%;
    }

    .plant-title .form-control {
        width: 30%;
    }

.color-list {
    width: 100%;
    padding: 10px;
}

    .color-list ul {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .color-list ul li {
            padding: 0 7px;
            list-style: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

.color-code, .content-name {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    padding: 5px 0;
    font-size: 13px;
    line-height: 18px;
}

.value-1, .value-2, .value-3, .value-4 {
    width: 15px;
    height: 15px;
    background-color: #006531;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.value-2 {
    background-color: #5aaa25;
}

.value-3 {
    background-color: #01cd16;
}

.value-4 {
    background-color: #42d287;
}

.clearfix {
    width: 100%;
    clear: both;
    height: 5px;
}
/*==NOTIFICATION SECTION START===*/
.noti-list {
    padding: 17px;
    justify-content: flex-start;
}

    .noti-list h4 {
        font-size: 24px;
        color: #006530;
        margin-bottom: 15px;
    }

    .noti-list ul {
        width: 100%;
        overflow-y: auto;
        max-height: 422px;
    }

        .noti-list ul::-webkit-scrollbar {
            background-color: #fff;
            width: 16px
        }

        /* background of the scrollbar except button or resizer */
        .noti-list ul::-webkit-scrollbar-track {
            background-color: #fff
        }

            .noti-list ul::-webkit-scrollbar-track:hover {
                background-color: #fff;
            }

        /* scrollbar itself */
        .noti-list ul::-webkit-scrollbar-thumb {
            background-color: #2fa96a69;
            border-radius: 16px;
            border: 5px solid #fff
        }

            .noti-list ul::-webkit-scrollbar-thumb:hover {
                background-color: #2fa96a69;
                border: 4px solid #f4f4f4
            }


        .noti-list ul li {
            background: #D8F3DC;
            padding: 11px;
            font-size: 12px;
            text-transform: capitalize;
            line-height: 15px;
            list-style: none;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
            color: #292929;
            margin-bottom: 15px;
        }

            .noti-list ul li:last-child {
                margin-bottom: 0;
            }
/*==PIECHART==*/
.piechartWrapper {
    padding: 10px;
    text-align: center;
    width: 100%;
}

.piechart {
    position: relative;
    display: inline-block;
    margin: 20px 10px;
    color: #BBB;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    text-align: center;
}

    .piechart canvas {
        position: absolute;
        top: 0;
        left: 0;
    }

.piechart {
    color: #263238;
    font-size: 56px;
    font-weight: 700;
}
/*==SEED, PLANT, NORMAL AND TALL==*/
.plan-chart-width {
    /* width: 200px; */
    /* height: 300px; */
    position: relative;
    margin: auto;
}

.pieChart-wh {
    width: 300px;
    height: 300px;
    position: relative;
}

.chart {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pieTip {
    position: absolute;
    float: left;
    min-width: 30px;
    max-width: 300px;
    padding: 5px 18px 6px;
    border-radius: 2px;
    background: rgba(255,255,255,.97);
    color: #444;
    font-size: 19px;
    text-shadow: 0 1px 0 #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    letter-spacing: .06em;
    box-shadow: 0 0 3px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.5);
    -webkit-transform: all .3s;
    -moz-transform: all .3s;
    -ms-transform: all .3s;
    -o-transform: all .3s;
    transform: all .3s;
    pointer-events: none;
}

    .pieTip:after {
        position: absolute;
        left: 50%;
        bottom: -6px;
        content: "";
        height: 0;
        margin: 0 0 0 -6px;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        border-top: 6px solid rgba(255,255,255,.95);
        line-height: 0;
    }

.chart path {
    cursor: pointer;
}

.plan-chart-width .roate-lebal {
    font-size: 20px;
    color: #3D3D3D;
    transform: rotate(-90deg);
    position: absolute;
    right: -31%;
    top: 50%;
    font-weight: 600;
}
/*==SEED, PLANT, NORMAL AND TALL==*/
.species-wise {
    width: 100%;
    padding-left: 10px;
    padding-top: 10px;
    padding-right: 10px;
    position: relative;
    border-left: 2px solid rgba(0, 101, 49, 0.09);
}

    .species-wise .species-lebal {
        font-size: 17px;
        color: #3D3D3D;
        font-weight: 600;
        text-align: left;
        position: relative;
        bottom: 0;
    }

#nursChart, #myChart {
    width: 100% !important;
}

#bar-chart {
    width: 100%;
    height: 300px;
    position: relative;
}

    #bar-chart::before {
        content: "";
        position: absolute;
        display: block;
        width: 240px;
        height: 30px;
        left: 155px;
        top: 254px;
        background: #FAFAFA;
    }

#pie-chart {
    width: 500px;
    height: 250px;
    position: relative;
}
/*==Nursery Expenditure===*/
.nursery-exp {
    width: 100%;
    padding: 10px;
}

#chartdiv {
    width: 100%;
    height: 400px;
}

.total-value {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 10px;
    font-size: 21px;
    color: #006531;
    line-height: 36px;
    text-align: center;
    font-weight: 600;
}

    .total-value .number {
        padding: 0 10px 0 0;
    }
/*--PAGELOADER CSS--*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999999;
}

    #preloader > #status {
        width: 100px;
        height: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-image: url(/wwwroot/Theme1/img/loader.gif);
        background-repeat: no-repeat;
        background-position: center;
        /* margin: -100px 0 0 -100px; */
        transform: translate(-50%, -50%);
    }

.j-c-s-betwen {
    justify-content: space-between;
}

.j-c-s-start {
    justify-content: flex-start;
}

.j-c-s-center {
    justify-content: center;
}

.j-c-s-start div {
    margin-right: 1.5%;
}

.content-showdata .form-set .form-row label sup {
    color: #e80e0e;
    font-size: 16px;
    line-height: 0;
}

.content-showdata .form-set .form-row.select-postion {
    position: absolute;
    width: 30%;
    top: 4px;
}

.pading-lft-riht {
    padding: 15px 0 0;
    clear: both;
    width: 100%;
}

.content-showdata .form-set.fliter-set {
    width: 100%;
    justify-content: flex-start;
}

    .content-showdata .form-set.fliter-set > .j-c-s-start {
        justify-content: flex-start;
    }

.form-set.fliter-set .col-100 {
    width: 100%;
}

.padd-top {
    padding: 25px 0 0;
}

    .padd-top.headAdd h2 {
        font-size: 18px;
        color: #21704f;
        font-weight: 600;
    }

.select-postion .col-100 {
    width: 100%;
}

.padd-top {
    padding: 25px 0 0;
}

    .padd-top.headAdd h2 {
        font-size: 18px;
        color: #21704f;
        font-weight: 600;
    }

.w-100 {
    width: 100%;
}

.w-90 {
    width: 90%;
}

.w-80 {
    width: 80%;
}

.w-70 {
    width: 70%;
}

.w-60 {
    width: 60%;
}

.w-50 {
    width: 50%;
}

.w-33 {
    width: 33.3%;
}

.border-top {
    border-top: none;
}

.border-bottom {
    border-bottom: none;
}

.border-rights {
    border-right: none
}

.border-left {
    border-left: none
}

.border-all {
    border: none;
}

.p-top {
    padding-top: 0;
}

.p-all {
    padding: 0;
}

.caption-h {
    margin: 0;
    padding: 0;
    height: 35px;
    font-size: 15px;
    font-weight: 600;
}

.border-height {
    height: 67.5px;
}

.color-white {
    color: #fff;
}

.col-100 {
    width: 100%;
}

.content-showdata .form-set .form-row.dsp-bg-darkgreen {
    background: #006531;
    padding: 0 10px 10px;
    margin: 15px 0 0;
}

.nursery-dis {
    width: 100%;
    overflow-x: scroll;
    padding: 2px 0 25px;
    margin: 15px 0;
}

.scroller {
    scrollbar-color: #d8f3dc;
    scrollbar-width: thin;
}

    .scroller::-webkit-scrollbar {
        height: 5px;
    }

    .scroller::-webkit-scrollbar-track {
        background: #fff;
    }

    .scroller::-webkit-scrollbar-thumb {
        background: #80ad62;
        border-right: 1px solid #fff;
    }

.nursery-dis table {
    table-layout: fixed;
}

    .nursery-dis table thead th, .nursery-dis table tbody td {
        width: 150px;
        padding: 12px;
    }

.nursery-dis .padd-top.headAdd h2 {
    font-size: 18px;
    line-height: 18px;
}
/*pagination css*/
#pagination-demo {
    display: inline-block;
    margin: 1.75em 0;
}

    #pagination-demo li {
        display: inline-block;
    }

        #pagination-demo li a {
            text-decoration: none;
        }

.page-content {
    width: 100%;
}

.pagination-sm .page-link {
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
}

.page-link {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-left: -1px;
    line-height: 1.25;
    color: rgb(0, 101, 49);
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination-sm .page-item:first-child .page-link {
    border-bottom-left-radius: 0.2rem;
    border-top-left-radius: 0.2rem;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-bottom-left-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
}

.pagination-sm .page-item:first-child .page-link {
    border-bottom-left-radius: 0.2rem;
    border-top-left-radius: 0.2rem;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-bottom-left-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: rgb(0, 101, 49);
    background-color: #fff;
    border: 1px solid #ddd;
}

.page-item.active .page-link {
    z-index: 2;
    color: #fff;
    background-color: rgb(0, 101,49);
    border-color: rgb(0,101,49);
}

.page-link:focus, .page-link:hover {
    color: rgb(16, 105, 59);
    text-decoration: none;
    background-color: #eceeef;
    border-color: #ddd;
}

.just-center {
    justify-content: center;
}

.left-m-10 {
    margin-left: 10px;
}

.table-content .add-button-set button {
    margin-right: 5px;
}

    .table-content .add-button-set button:last-child {
        margin-right: 0;
    }

#btnAddExisting {
    background: #d72b3c;
}
/*10-02-2022*/
.content-showdata .form-set .form-row.flex-column {
    flex-direction: column;
}

.list-form ul {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 10px 0;
    padding: 0;
    justify-content: space-between;
}

    .list-form ul li {
        list-style: none;
        padding: 0 10px;
        width: 23%;
    }

        .list-form ul li:nth-child(1) {
            width: 2%;
            font-weight: 600;
        }

        .list-form ul li:nth-child(2) {
            width: 2%;
            order: 4;
        }

.col-19 {
    width: 19%;
}

.col-18 {
    width: 18%;
}

.col-16 {
    width: 16%;
}

.col-15 {
    width: 15%;
}

.col-30 {
    width: 30%;
}

.col-32 {
    width: 32%;
}

.col-49 {
    width: 49%;
}

.justify-space-between {
    justify-content: space-between;
}

.col-8 {
    width: 8%;
}

.col-22 {
    width: 23%;
}

.add-button {
    cursor: pointer;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 75px;
    margin-left: 5px;
    margin-bottom: 20px;
    padding: 10px;
}

    .add-button span {
        margin-left: 5px;
    }

    .add-button:focus, .add-button:hover {
        box-shadow: 0px 7px 10px rgba(89,170,36, 40%);
        outline: none;
    }

.add-button, .delete-button, .tree-meter, .locked-row, .unlocked-row, .edit-row {
    background: #16a159;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    border: none;
    box-shadow: 0px 3px 6px 0px rgba(0, 0,0, 20%);
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0,0, 20%);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0,0, 20%);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin-right: 5px;
}

.delete-button, .tree-meter, .locked-row, .unlocked-row, .edit-row {
    width: 35px;
    height: 35px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

    .add-button i, .delete-button i, .tree-meter i, .locked-row i, .unlocked-row i, .edit-row i {
        font-size: 15px;
    }

.delete-button {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    height: 30px;
    width: 30px;
    background-color: #d71010;
    padding: 0;
}

.edit-row {
    background: #59aa24;
}

.locked-row {
    background: red;
}

.unlocked-row {
    background: #e7c819;
}

.tree-meter {
    background: #018342;
}

.delete-button:focus, .delete-button:hover {
    outline: none;
    background-color: #c50f0f;
}

#showdrop-down h2 span {
    color: gray;
    font-weight: 500;
    font-size: 0.8vw;
}

.content-showdata .form-set .form-row {
    flex-wrap: wrap;
    width: 100%;
}

#tech-table thead th tbody {
    height: 5em;
}

.content-showdata .form-set.fliter-set.w-50 {
    width: 50%;
}

.content-showdata .form-set.fliter-set.w-60 {
    width: 60%;
}

.content-showdata .form-set.fliter-set.w-70 {
    width: 70%;
}

.content-showdata .form-set.fliter-set.w-80 {
    width: 80%;
}

    .content-showdata .form-set.fliter-set.w-50 .form-control, .content-showdata .form-set.fliter-set.w-60 .form-control, .content-showdata .form-set.fliter-set.w-70 .form-control, .content-showdata .form-set.fliter-set.w-80 .form-control, .content-showdata .form-set.order-set.w-60 .form-control {
        border: 1px solid #d5d4d4;
    }

/*tooltip show button*/

.tooltip {
    display: inline;
    position: relative;
    font-size: 15px;
}

    .tooltip:hover {
        font-size: 15px;
    }

        .tooltip:hover:after {
            background: #111;
            background: rgba(0,0,0,.8);
            border-radius: 0.3em;
            bottom: 45px;
            color: #fff;
            content: attr(title);
            display: block;
            left: 50%;
            padding: 5px 15px;
            position: absolute;
            text-shadow: 0 1px 0 #000;
            white-space: nowrap;
            z-index: 98;
            transform: translate(-50%, -6%);
            font-size: 12px;
        }

        .tooltip:hover:before {
            border: solid;
            border-color: #111 transparent;
            border-color: rgba(0,0,0,.8) transparent;
            border-width: 0.8em 0.8em 0 0.8em;
            bottom: 35px;
            content: "";
            display: block;
            left: 50%;
            position: absolute;
            z-index: 99;
            transform: translate(-50%, 0%);
        }

.overflow-hidden {
    overflow: hidden;
}

.select-paging {
    height: 1.7rem;
    padding: 5px;
}

.forset-content .title-head {
    width: auto;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #006531;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 5px 10px;
    text-align: center;
    line-height: 37px;
    word-spacing: 1px;
}

.title-details {
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    color: #006531;
    text-align: center;
    word-spacing: 3px;
}

.border-none {
    border: none;
}
/*22-02-2022*/
.nublist ul li > .set-row {
    flex-direction: column;
}

    .nublist ul li > .set-row .w-45, .nublist ul li > .set-row .w-55 {
        width: 100%;
        padding: 32px 10px;
    }

.forset-content .title-head > .mb-title, .forset-content .title-details > .mb-contnet {
    display: none;
}

.headAdd input[type=date], .headAdd input[type=search] {
    display: block;
    width: 100%;
    padding: 10px 10px;
    font-size: 13px;
    line-height: 18px;
    color: rgb(58,58,58);
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #e9e7e7;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    outline: none;
}

.j-c-s-end {
    justify-content: flex-end;
}

    .j-c-s-end div:last-child {
        margin-right: 0;
    }
/*pop-modal-2*/
.pop-modal-2 {
    max-width: 730px;
    min-width: 730px;
}

.species-row {
    width: 171px;
}

.Diameter2 {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    width: 100%;
    float: left;
}

.cost-norms {
    padding: 0 10px 5px;
    line-height: 47px;
    margin: 0;
    height: 49px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.heading-ft {
    font-weight: 600;
    font-size: 14px;
}

#spanDisposalHeader {
    padding: 0 5px;
}
/**/
.note {
    background: #edededee;
    padding: 10px 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.gray-l {
    background: #edededee;
}

.note h2 {
    font-size: 18px;
    color: #21704f;
    font-weight: 600;
    margin-bottom: 5px;
}

.note h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0d8d57;
    padding-bottom: 5px;
}

.note p {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
}


.long-mr {
    margin: 0 !important;
    justify-content: space-between;
}

.w-48 {
    width: 48% !important;
}

.m-top-bottom {
    margin: 15px 0;
}

.pop-modal-2 {
    max-width: 730px;
    min-width: 730px;
}

.species-row {
    width: 171px;
}

.Diameter2 {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    width: 100%;
    float: left;
}

.mtl-h {
    width: 100%;
    color: rgb(0,101,49);
    float: left;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}

.grayl-bg {
    background: #eeeeee;
    padding: 0 15px;
    border: 1px solid #d8f3dc;
    margin-bottom: 20px;
}

.padd-inh {
    padding: 0 !important;
}

.five-m {
    margin-right: 1.5%;
}

.pop-modal-2 {
    max-width: 730px;
    min-width: 730px;
}

.species-row {
    width: 171px;
}

.Diameter2 {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    width: 100%;
    float: left;
}

#divNewAddHide {
    width: 100%;
    padding-bottom: 20px;
}

.td-height {
    height: 50px;
}

.td-60 {
    height: 60px;
}

.td-70 {
    height: 70px;
}

.button-alg {
    display: flex;
    justify-content: center;
    align-items: center;
}

.expend-table {
    table-layout: fixed;
    border: none !important;
}

.dflex-center {
    justify-content: center;
}

.content-showdata .form-set.order-set {
    position: absolute;
    width: 30%;
    top: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
}

    .content-showdata .form-set.order-set.w-60 {
        width: 60%;
    }

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.no-w-space {
    white-space: nowrap
}

.td-50 {
    width: 50%;
}

.td-8-33 {
    width: 8.33%
}

.td-7-33 {
    width: 8.33%
}

.td-100 {
    width: 100%;
}

.CostStatement-table3, .border-all {
    border: none !important;
}

.td-50-px {
    width: 60px;
    word-wrap: break-word; /* All browsers since IE 5.5+ */
    overflow-wrap: break-word;
}

.th-50-px {
    width: 64px;
}

.th-400-px {
    width: 400px;
}

.expend-flex-row {
    justify-content: center;
}

.fliter-set input[type=date] {
    border: 1px solid #d5d4d4;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

#ddlIsNew {
    margin-left: 35px;
    width: 20%;
}

.check-box .span {
    position: absolute;
    top: 15px;
}

.imgPhoto {
    margin: 0 0 0 20px;
}

#ddlDistrictFilter {
    width: 100%;
}

.mg-right {
    margin-right: 10px;
}

.inline-flex {
    display: inline-flex;
}

.postion-realtive {
    position: relative;
}

.error-ab .error {
    position: absolute !important;
    top: 105px;
}

.f-align-items, .content-showdata .form-set .form-row.f-align-items {
    align-items: flex-start;
}

.j-c-s-start-gray {
    justify-content: flex-start;
}

.margin-div-right {
    margin-right: 1.3%;
}

.nsre-report-table {
    width: 2500px !important;
}

div.table-responsive::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
}

div.table-responsive::-webkit-scrollbar {
    width: 8px;
}

.table-responsive thead, .table-responsive thead {
    top: -2px !important;
}

.expensedtable {
    overflow-x: auto;
    width: fit-content !important;
}

    .expensedtable > #tblMain {
        width: 2500px;
    }

.content-showdata .expend-scroll {
    width: 100%;
    overflow-x: scroll;
}

thead th, thead > td {
}
/*#divExport > table tbody tr td {
    word-break: break-all;
}*/
.nurserystockreturn-tabl {
    overflow-x: auto;
}

    .nurserystockreturn-tabl > .tables {
        width: 2500px;
    }

.table-layout {
    table-layout: fixed;
}

#tbody td {
    word-break: break-all;
}

.captcha-div input:read-only {
    background-color: lightcoral !important;
    border: none !important;
    width: 127px;
    font-weight: 600;
    text-align: center;
    word-spacing: -4px;
    font-size: 20px !important;
}

.captcha-div input:focus {
    border: none;
    outline: none;
}

.dptusr-wrapp select.disabled {
    background-color: #f0d7d7 !important;
}

.fncl-width {
    width: 100px;
}

.search-with input.hide-clear[type="search"]::-webkit-search-decoration,
.search-with input.hide-clear[type="search"]::-webkit-search-cancel-button,
.search-with input.hide-clear[type="search"]::-webkit-search-results-button,
.search-with input.hide-clear[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.pagination ul {
    justify-content: center;
    flex-direction: row;
    width: 100%;
    padding: 10px 0;
}

.list-message-b {
    display: flex;
    flex-direction: column;
    padding: 5px 15px;
}

    .list-message-b li {
        font-weight: 400;
        font-size: 14px;
        line-height: 26px;
    }

.content-showdata .form-set.fliter-set.export-filter {
    position: static;
    left: inherit;
    top: inherit;
    transform: inherit;
    width: 100%;
}

    .content-showdata .form-set.fliter-set.export-filter > .j-c-s-start {
        justify-content: flex-start;
    }

.pdx-wrapp {
    position: absolute;
    right: 2%;
    top: 20px;
    width: 310px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

    .pdx-wrapp button {
        background: #16a159;
        color: #fff;
        font-size: 18px;
        cursor: pointer;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        outline: none;
        height: 38px;
        width: 38px;
        border: none;
        box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 20%);
        -webkit-box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 20%);
        -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0,0, 20%);
        margin-left: 5px;
    }

    .pdx-wrapp > .pdf {
        background: #cb0634;
    }

    .pdx-wrapp > .print {
        background: #fbb008;
    }

.mg-bottom {
    margin-bottom: 10px;
}

.content-showdata .form-set.fliter-set .form-row-new {
    padding: 10px 0 20px;
    /* margin: 0 -16px; */
    border-bottom: 3px solid #80ad62;
    margin-bottom: 15px;
}

    .content-showdata .form-set.fliter-set .form-row-new div {
        padding: 0 10px;
    }

/*.content-showdata .form-set.fliter-set .form-row-new div:first-child {
    padding-left: 0;
}
*/
.pdx-wrapp button {
    display: inline;
}

    .pdx-wrapp button:hover:after {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        background: #444;
        border-radius: 4px;
        color: #fff;
        content: attr(title);
        margin: -10px auto 0;
        font-size: 14px;
        padding: 13px;
        width: 70px;
    }

    .pdx-wrapp button:hover:before {
        border: solid;
        border-color: #444 transparent;
        border-width: 10px 6px 0 6px;
        content: "";
        left: 45%;
        bottom: 40px;
        position: absolute;
        z-index: 999;
    }

.pdx-wrapp.tooltip:hover {
    font-size: inherit;
}

.pdx-wrapp button i {
    font-size: 15px;
}

.dashboard-wraap > .row {
    padding: 0;
}

.piechart-row > .row {
    padding: 0;
}

.childToggle {
    cursor: pointer;
}

.export-w-sel {
    width: 12%;
}

.nurery-disposal-dattable th, .nursery-table-expenditure th {
    padding: 10px 6px;
}

.radio-set {
    position: relative;
    width: 100%;
}

    .radio-set ul {
        display: flex;
        flex-flow: row wrap;
    }

        .radio-set ul li {
            position: relative;
            display: flex;
            flex-direction: row;
            align-items: center;
            padding: 0 50px 0 0;
        }

            .radio-set ul li + label {
                font-size: 14px !important;
            }

            .radio-set ul li [type="radio"]:checked,
            .radio-set ul li [type="radio"]:not(:checked) {
                position: absolute;
                left: -9999px;
            }

                .radio-set ul li [type="radio"]:checked + label,
                .radio-set ul li [type="radio"]:not(:checked) + label {
                    position: relative;
                    padding: 12px 0 0 30px;
                    cursor: pointer;
                    line-height: 20px;
                    display: inline-block;
                    color: #666;
                }

                    .radio-set ul li [type="radio"]:checked + label:before,
                    .radio-set ul li [type="radio"]:not(:checked) + label:before {
                        content: '';
                        position: absolute;
                        left: 0;
                        top: 10px;
                        width: 22px;
                        height: 22px;
                        border: 1px solid #0D8D57;
                        border-radius: 100%;
                        background: #fff;
                    }

                    .radio-set ul li [type="radio"]:checked + label:after,
                    .radio-set ul li [type="radio"]:not(:checked) + label:after {
                        content: '';
                        width: 14px;
                        height: 14px;
                        background: #0D8D57;
                        position: absolute;
                        top: 15px;
                        left: 5px;
                        border-radius: 100%;
                        -webkit-transition: all 0.2s ease;
                        transition: all 0.2s ease;
                    }

                    .radio-set ul li [type="radio"]:not(:checked) + label:after {
                        opacity: 0;
                        -webkit-transform: scale(0);
                        transform: scale(0);
                    }

                    .radio-set ul li [type="radio"]:checked + label:after {
                        opacity: 1;
                        -webkit-transform: scale(1);
                        transform: scale(1);
                    }

.view-file-a {
    padding: 4px 7px;
    color: #fff;
    text-decoration: none;
    background: #006531;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 13px;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 3px;
}

#flAttachment {
    background-color: #e8e8e8 !important;
    border: 1px solid #b1a6a6 !important;
    padding: 10px;
    border-radius: 5px;
    opacity: 0;
}

.file-custom {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5;
    padding: 0.5rem 1rem;
    line-height: 1.5;
    color: #555;
    background-color: #fff;
    border: 0.075rem solid #ddd;
    border-radius: 0.25rem;
    box-shadow: inset 0 0.2rem 0.4rem rgb(0 0 0 / 5%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.file {
    position: relative;
    display: inline-block;
    cursor: pointer;
    height: 30px;
    margin: 24px 0;
}

.file-custom:after {
    content: "Upload Attachment...";
    font-size: 12px;
}

.file-custom:before {
    position: absolute;
    top: -0.075rem;
    right: -0.075rem;
    bottom: -0.075rem;
    z-index: 6;
    display: block;
    content: "Browse";
    font-size: 14px;
    padding: 0.5rem 1rem;
    line-height: 1.5;
    color: #555;
    background-color: #eee;
    border: 0.075rem solid #ddd;
    border-radius: 0 0.25rem 0.25rem 0;
}

.pdx-top {
    top: 86px;
}

#divFilelink a {
    border: 1px solid #e5e5e5;
    background: #e5e5e5;
    padding: 9px;
    border-radius: 5px;
    text-decoration: none;
    color: #006531;
    display: block;
    width: 100%;
}

#txtOrderId {
    margin-top: 11px;
}

.width-100 {
    width: 100px;
}

.width-150 {
    width: 150px;
}

.width-200 {
    width: 200px;
}

.tfoot-td {
    background: #eeeeeeb5;
    text-align: right;
}

.title {
    font-weight: 700;
    font-size: 16px;
}

.tfoot-td > td {
    text-align: right;
}

.float-right {
    float: right;
}
/*****************/
.pn-ProductNav_Wrapper, .tab-wrapp {
    position: relative;
    padding: 0 11px;
    box-sizing: border-box;
}

.pn-ProductNav {
    overflow-x: auto;
    /* We don't want vertical scrolling */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    position: relative;
    font-size: 0;
}

.js .pn-ProductNav {
    /* Make an auto-hiding scroller for the 3 people using a IE */
    -ms-overflow-style: -ms-autohiding-scrollbar;
    /* Remove the default scrollbar for WebKit implementations */
}

    .js .pn-ProductNav::-webkit-scrollbar {
        display: none;
    }

.pn-ProductNav_Contents {
    float: left;
    transition: transform 0.2s ease-in-out;
    position: relative;
}

.pn-ProductNav_Contents-no-transition {
    transition: none;
}

.pn-ProductNav_Link {
    text-decoration: none;
    color: #808080;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    border: 1px solid transparent;
    padding: 0 11px;
    font-family: 'Poppins';
    cursor: pointer;
}

    .pn-ProductNav_Link + .pn-ProductNav_Link {
        border-left-color: #eee;
    }

    .pn-ProductNav_Link[aria-selected=true] {
        font-size: 14px;
        color: #0d8d57;
        font-weight: 600;
        font-family: 'Poppins';
    }

.pn-Advancer {
    /* Reset the button */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    padding: 0;
    border: 0;
    /* Now style it as needed */
    position: absolute;
    top: 0;
    bottom: 0;
    /* Set the buttons invisible by default */
    opacity: 0;
    transition: opacity 0.3s;
}

    .pn-Advancer:focus {
        outline: 0;
    }

    .pn-Advancer:hover {
        cursor: pointer;
    }

.pn-Advancer_Left {
    left: 0;
}

[data-overflowing=both] ~ .pn-Advancer_Left, [data-overflowing=left] ~ .pn-Advancer_Left {
    opacity: 1;
}

.pn-Advancer_Right {
    right: 0;
}

[data-overflowing=both] ~ .pn-Advancer_Right, [data-overflowing=right] ~ .pn-Advancer_Right {
    opacity: 1;
}

.pn-Advancer_Icon {
    width: 16px;
    height: 35px;
    fill: #80ad62;
}

.pn-ProductNav_Indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100px;
    background-color: transparent;
    transform-origin: 0 0;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.section {
    display: none;
    padding: 15px 11px;
}

.active {
    display: block !important;
}

.pn-ProductNav_Contents ul li a:hover, .pn-ProductNav_Contents ul li a:visited:hover {
    background: transparent;
    color: #0d8d57;
}
