/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #f6f9ff;
  color: #444444;
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 60px;
/*  padding: 20px 30px;*/
padding: 5px 0px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  #main {
    /*padding: 20px;*/
    padding: 0px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #012970;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  -webkit-animation-name: dropdown-animate;
  animation-name: dropdown-animate;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@-webkit-keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
/*  margin-bottom: 30px;*/
  border: none;
  border-radius: 5px;
/*  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);*/
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; 
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 10px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #012970;
  font-family: "Poppins", sans-serif;
}

/*.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}*/

.alert .card-title {
    padding: 10px 0 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #012970;
    font-family: "Poppins", sans-serif;
}

.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #4154f1;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: #899bbd;
  font-weight: 600;
}

.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #4154f1;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #4154f1;
  border-bottom: 2px solid #4154f1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

/*@media (min-width: 1200px) {
  .logo {
    width: 280px;
  }
}*/

.logo img {
  max-height: 52px;
  margin-right: 6px;
}

.logo span {
  font-size: 22px;
  font-weight: 700;
  color: #012970;
  font-family: "Nunito", sans-serif;
}

/* .header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  padding-left: 20px;
} */
.header {
  transition: all 0.5s;
  z-index: 9;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  padding-left: 20px;
}

.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  color: #012970;
}

.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}

.header .search-form {
  width: 100%;
}

.header .search-form input {
  border: 0;
  font-size: 14px;
  color: #012970;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.header .search-form button i {
  color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #012970;
  margin-right: 25px;
  position: relative;
}

.header-nav .nav-profile {
  color: #012970;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  /*background-color: #fff;*/
  /*background: linear-gradient(to right, rgb(66 113 215), rgb(109 163 237));*/
  /*      background: linear-gradient(to right, rgb(113 66 215), rgb(109 133 237));*/
/*  background: linear-gradient(to right, rgb(68 66 215), rgb(101 122 222));*/
      background: linear-gradient(to right, rgb(44 43 88), rgb(34 25 111));
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width: 1200px) {

  #main,
  #footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px !important;
  }
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: .3s all;
  background: #0000004f;
  padding: 10px 15px;
  border-radius: 4px 29px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #ffffff;
}

.sidebar-nav .nav-link.collapsed {
  color: #012970;
  background: #fff;
}

.sidebar-nav .nav-link.collapsed i {
  color: #899bbd;
}

.sidebar-nav .nav-link:hover {
  color: #ffffff;
  background: #00000073;
}

.sidebar-nav .nav-link:hover i {
  color: #ffffff;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #4154f1;
}

.sidebar-nav .nav-content a.active i {
  background-color: #4154f1;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #4154f1;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.dashboard .info-card h6 {
  font-size: 24px !important;
  /*font-size: 18px;*/
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
  /*text-align: center;*/
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: #4154f1 !important;
  background: #f6f6fe !important;
  /*  border-left: 0.25rem solid #0d6efd !important;*/
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .district-card .card-icon {
  color: #0d6efd;
  background: #E9EFF9;
}

.blue-border {
  border-left: 0.25rem solid #0d6efd !important;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

.dashboard .progress-card .card-icon {
  color: #1d56ff;
  background: #dff0ff;
}

.dashboard .total-card .card-icon {
  color: #bc70b5;
  background: #ffdcfc;
}

.total-card {
  border-left: 0.25rem solid #e791e0;
}

.revenue-card {
  border-left: 0.25rem solid #2eca6a;
}

.district-card {
  border-left: 0.25rem solid #0d6efd;
}

.progress-card {
  border-left: 0.25rem solid #1d56ff;
}

.customers-card {
  border-left: 0.25rem solid #dc3545;
/*  height: 120px;*/
}
.customers-card-green {
    border-left: 0.25rem solid #008000;
/*    height: 120px;*/
}
.customers-card-blue {
    border-left: 0.25rem solid #5f14d3;
/*    height: 120px;*/
}
.customers-card-orange {
    border-left: 0.25rem solid #fe8402;
/*    height: 120px;*/
}
.customers-card-megenta {
    border-left: 0.25rem solid #f10bfe;
/*    height: 120px;*/
}
.customers-card-red {
    border-left: 0.25rem solid #FA2315;
/*    height: 120px;*/
}
.customers-card-yellow {
    border-left: 0.25rem solid #e1be09;
/*    height: 120px;*/
}
.card-green-text
{
  
/*  background-color: #008000;*/
    background-color: #6eba6e;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.card-green-blue
{
  
/*  background-color: #5f14d3;*/
    background-color: #8e63d0;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}.card-green-orange
{
  
  background-color: #fe8402;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}.card-green-megenta
{
  
  background-color: #f10bfe;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.card-green-red
{
  
  background-color: #FA2315;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.card-green-yellow
{
  
  background-color: #e1be09;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.cpointer {
  cursor: pointer;
}

.txt-total {
  color: #bc70b5;
}

.modal-title {
  color: #012970;
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
  text-align: center;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}


/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* .footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
} */

.footer {
  /* padding: 20px 0; */
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}
.footer .credits {
  /* padding-top: 5px; */
  text-align: center;
  font-size: 12px;
  color: #012970;
}
.footer .copyright {
  text-align: center;
  color: #012970;
  font-size: 12px;
}

.blink {
  animation: blink 1s linear infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

.addProject,
.updateProject,
.farmerInfo {
  --bs-offcanvas-width: 750px;
}



.committee .card-body {
  text-align: center;
  padding: 15px;
}

.committee .card-icon {
  margin: 0px auto;
}

.committee .card-icon {
  font-size: 22px !important;
}

.committee .card-icon {
  width: 46px !important;
  height: 46px !important;
}


.pulse {
  display: block;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  transform: scale(1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}



/* Style the counter cards */
.committee .card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 5px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.committee .card .profile {
  border-radius: 10px;
  transition: 10s;
}

.committee .card:hover .profile {
  transform: scale(1.4);
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
}

.committee .card .content {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.committee .card .content .back {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f1f1f1e6;
  transition: 1s;

  z-index: 1;
  padding: 10px;
}

.committee .from-left {
  top: 0;
  left: -100%;
}

.committee .card:hover .content .from-left {
  left: 0%;
}

.committee .from-bottom {
  top: 100%;
  left: 0;
}

.committee .card:hover .content .from-bottom {
  top: 0%;
}

.committee .from-right {
  top: 0%;
  right: -100%;
}

.committee .card:hover .content .from-right {
  right: 0;
}

.committee .card .content .back h3 {
  font-size: 15px;
  letter-spacing: 2px;
}

.committee .card .content .back .tem-img {
  border-radius: 100%;
}

.committee .card .content .back .des {
  font-size: 13px;
  padding: 20px 0px;
}

.committee .card .content .back .social-icon {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.committee .card .content .back .social-icon li {
  display: inline-block;
}

.committee .card .content .back .social-icon li a {
  display: block;
  background: #333;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 100%;
}

.show-project .card-body {
  padding: 20px !important;
}

/*.table-stats .card:nth-child(even) {
    background: #dff0ff;
} */



.break-space {
  white-space: break-spaces;
  text-align: inherit;
}

#myTab .nav-link {
  font-size: 14px;
  padding: 4px 7px;
}



.font-14 {
  font-size: 14px !important;
}

.progress {
  --bs-progress-height: 0.45rem !important;
}

.font-10 {
  font-size: 10px !important;
}

.box-wrap {
  height: 459px;
  overflow-y: auto;
}

.f-600 {
  font-weight: 600;
}

/* #map {
    height: 73vh;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    border-radius: 4px;
    margin-top: 0;
    background: #fff;
    z-index: 0;
    width: 100%;
} */
#map {
  height: 73vh;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  border-radius: 4px;
  margin-top: 0;
  background: #fff;
  z-index: 0;
  width: 100%;
}

.show-name-wrap {
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  width: 16%;
  z-index: 999;
}

.show-name-wrap p {
  /*    width: 62%;*/
  background: linear-gradient(to right, #000000ad, #00000094);
  padding: 11px 15px;
  border-radius: 5px 25px 25px 25px;
  position: relative;
  margin: 0 15px;
  border-bottom: 3px solid #da606f;
  color: #fff;
}

.right-container {
  position: absolute;
  top: 1.3rem;
  right: 1.7rem;
  z-index: 999;
}

.right-container .icon-box {
  display: block;
  margin-bottom: 5px;
  padding: 8px;
  line-height: 0.7;
  /* background-image: linear-gradient(147deg, #4c5a76c2 0%, #2688cab0 74%); */
  background: linear-gradient(to right, #000000ad, #00000094);
  border: 0;
}

.icon-box i {
  font-size: 14px;
  color: #fff;
}

.show-latlon {
  position: absolute;
  bottom: 1.2rem;
  right: 35rem;
  width: 23%;
  z-index: 999;
}

.show-latlon p {
  background: linear-gradient(to right, #000000ad, #00000094);
  padding: 6px 17px;
  border-radius: 5px 25px 25px 25px;
  position: relative;
  margin: 0 15px;
  border-bottom: 3px solid #da606f;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.left-container1 {
  position: absolute;
  bottom: 1.5rem;
  left: 1.8rem;
  width: 21%;
  border-radius: 7px;
  z-index: 999;
}

.accordion-item,
.accordion-button:not(.collapsed) {
  background-color: transparent;
  border: 1px solid transparent;
  color: #2c2828 !important;
}

.accordion-item {
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  border-radius: 4px;
  border-color: transparent !important;
  color: #2c2828 !important;
  background: #e9ecef !important;
}



@media(max-width:768px) {
  .mt-top {
    margin-top: 5rem !important;
  }
  span.badge {
    white-space: initial;
  }
  .no-view {
    display: none !important;
  }
  .form-width {
    max-width: 100% !important;
  }  
  .left-container1 {
    position: absolute;
    bottom: 3.5rem;
    left: 1.8rem;
    width: 78%;
    border-radius: 7px;
    z-index: 999;
  }

  .show-name-wrap {
    display: none;
  }
  div#tbl_shop_details_length {
      width: auto !important;
      float: left !important;
  }
  .header-nav li.nav-item:nth-child(1) {
      display: none;
  }
  .show_column
  {
    flex-direction: column
  }
}

.counter-box {
  display: block;
  background: #f6f6f6;
  padding: 40px 20px 37px;
  text-align: center
}

.counter-box p {
  margin: 5px 0 0;
  padding: 0;
  color: #909090;
  font-size: 18px;
  font-weight: 500
}

.counter-box i {
  font-size: 60px;
  margin: 0 0 15px;
  color: #d2d2d2
}

.counter {
  display: block;
  /*font-size: 32px;*/
  font-weight: 700;
  color: #666;
  /*line-height: 28px*/
}

.counter-box.colored {
  background: #3acf87;
}

.bgcolored1 {
  background: #7E6FFC;
}

.bgcolored2 {
  background: #007bff;
}

.counter-box p,
.counter-box i,
.counter-box .counter {
  color: #fff
}

.border-comman {
  border-radius: 15px;
}

.whitespace {
  white-space: initial;
}

.pend {
  position: absolute;
  bottom: 10px;
  right: 2rem;
}

.chart_far_landarea {
  position: relative;
  right: 30px;
  top: 50px;
  line-height: 1.7rem;
}

.list-group-item:nth-child(odd) {
  background: #ecf1fd !important;
}



#preloader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  overflow: hidden;
  background: #12121261;
  /*width: 57%;*/
  border-radius: 13px 35px;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(53% - 30px);
  border: 6px solid #f92020b8;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
  z-index: 9999;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}


/*page 2 css*/
.showcountvalues .card {
  border-radius: 5px 23px;
  border-bottom: 1.45px solid #012970;
  background: #cfe2ff;
}

.map_toggle_div1 a {
  padding: 4px;
  background: linear-gradient(to right, #2441a9, #2441a9);
  border: 0;
  color: #fff;
  border-radius: 4px;
}

.map_toggle_div {
  position: absolute;
  z-index: 99999;
  padding: 4px;
  color: #fff;
  top: 6px;
  left: 15px;
}

.map_div {
  position: relative;
}

.map_div.toggle_map,
.toggle_map {
  width: 100%;
}

.map_toggle_div a {
  padding: 4px;
  background: linear-gradient(to right, #2441a9, #2441a9);
  border: 0;
  color: #fff;
  border-radius: 4px;
}

.box-width {
  position: absolute;
  bottom: 0rem;
  left: 0.7rem;
  width: 16%;
}

button.accordion-button {
  background: linear-gradient(to right, #2441a9, #2441a9);
  padding: 7px;
  font-size: 14px;
}

.bg-blues {
  /* background: #4e4ebe!important; */
  background: linear-gradient(to right, #2441a9, #2441a9);
}

/* #map_footer1 {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #0000008f;
  font-size: 12px;
  font-weight: bold;
  padding: 4px;
} */

#map_footer1 {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #0000008f;
  font-size: 10px;
  font-weight: bold;
  padding: 2px;
  background: #cfe2ff;
  border-radius: 4px;
}

img.map_logo {
  width: 30px;
}

.accordion-button:not(.collapsed)::after,
.accordion-button::after {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.cropimageresize img.card-img {
  height: 120px !important;
  width: 100%;
}

#stats_table th {
  font-size: 14px;
  padding: 3px 6px;
}
#stats_table td {
  font-size: 12px;
  padding: 3px 6px;
}
#stats_table tr.odd {
  background: #e6f0ffb5 !important;
}
.ol-zoom {
  top: 2.7rem !important;
  left: 0.5em;
}

#stats_table_paginate a.page-link {
  font-size: 12px;
}

div#stats_table_info {
  font-size: 14px;
  padding: 0;
}

/* scrollbar */
::-webkit-scrollbar {
width: 5px;
height: 5px;
}

::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
-webkit-border-radius: 10px;
border-radius: 10px;
}

::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: rgba(255, 255, 255, 0.3);
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
background: rgba(255, 255, 255, 0.3);
} 

.card_layout.box-padding {
  height: 73vh;
  overflow-y: auto;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/*report css added on 28052023*/
tr.odd {
    background: #e6f0ffb5 !important;
    font-size: 13px;
}
tr.even {
    font-size: 13px;
}
a.btn.btn-primary {
    font-size: 14px;
    padding: 4px 13px;
}
h5.card-title {
    padding-bottom: 5px !important;
}
label.form-label {
    width: 100%;
    font-size: 14px;
}
/*select {
    font-size: 14px !important;
    padding: 4px !important;
}*/
#btnShow {
    font-size: 14px;
    padding: 4px 11px;
}
button.btn.dropdown-toggle.btn-light {
    padding: 4px !important;
    font-size: 14px;
}
.dropdown.bootstrap-select.show-tick.form-select.dropup {
    font-size: 14px;
    padding: 2px !important;
}
div#tbl_cropreport_length {
    margin-bottom: 5px;
}
a.page-link {
    font-size: 14px;
}
#tbl_cropreport_info {
    display: inline;
}
/*#tbl_cropreport_paginate ul.pagination {
    top: -1rem;
    position: relative;
}*/
#tbl_cropreport_paginate
{
  float: right;
}
#tbl_extractwellreport_paginate
{
  float: right;
}
#tbl_cropreport_filter {
    display: initial;
    float: right;
}
/*.dt-buttons {
    display: inline-block;
}
.buttons-html5, .buttons-print {
    font-size: 14px;
    padding: 2px 11px;
    border-radius: 4px !important;
}*/
#tbl_cropreport th {
    color: #ffffff;
    background-color: #0d6efd;
    padding: 2px;
    margin: 0px;
    white-space: nowrap;
    font-size: 12px;
    padding-right: 10px;
    padding-left: 10px;
}
div#tbl_cropreport_length {
    margin-bottom: 5px;
}
a.page-link {
    font-size: 14px;
}
#tbl_cropreport_info {
    display: inline;
}
/*#tbl_cropreport_paginate ul.pagination {
    top: -1rem;
    position: relative;
}*/
#tbl_cropreport_filter {
    display: initial;
    float: right;
}
/*.dt-buttons {
    display: inline-block;
}
.buttons-html5, .buttons-print {
    font-size: 14px;
    padding: 2px 11px;
    border-radius: 4px !important;
}*/

/*flipkart based filter css start*/

/*#accordionExample button.accordion-button {
    color: #fff !important;
}*/

/*
*/


#accordionExample .accordion-button:not(.collapsed)::after, .accordion-button::after {
    filter: inherit !important;
} 
#accordionExample button.accordion-button {
    background: #fff !important;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3px; 
}
#accordionExample .accordion-body {
        background: #fff;
    vertical-align: middle;
    font-size: 14px;
    padding-left: 15px;
    color: #212121;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    cursor: pointer;

}
#accordionExample .accordion-button:not(.collapsed)::after, .accordion-button::after {
    filter: none !important;
}
#accordionExample .accordion-item {
    background: #fff !important;
    box-shadow: 0 1px 8px 0 rgba(0,0,0,.06) !important;
    padding: 8px;
    margin-bottom: 0px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
#accordionExample .form-check-input {
    margin-top: 0rem !important;
}

.accordion-scroll {
  height: 150px;
    overflow-y: auto ! important;
}
#accordionExample .accordion-header {
    margin-bottom: 0;
} 
.filter_box {
      background: #fff !important;
    box-shadow: 0 1px 8px 0 rgba(0,0,0,.06) !important;
    padding: 8px;
    margin-bottom: 0px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}


.box-radius {
      border-radius: 4px 11px;
}

.bg-color1 {
        /*background-image: linear-gradient(315deg, #5f5fd5 0%, #00a0ff 74%);*/
           background-image: linear-gradient(to right, #2d98f7 0%, #1bd2db 100%);
    color: #fff;
}
.bg-color2 {
            /*background-image: linear-gradient(315deg, #397a4a 0%, #2f8960 74%);*/
   background-image: linear-gradient(to right, #17c351 0%, #1eb99d 100%);
    color: #fff;
}
.bg-color3 {
            /*background-image: linear-gradient(315deg, #d55f5f 0%, #d91b1b 74%); */
                background-image: linear-gradient(to right, #f78ca0 0%, #f9748f 19%, #fd868c 60%, #fe9a8b 100%);
    color: #fff;
}
.bg-color4 {
            /*background-image: linear-gradient(315deg, #d55f5f 0%, #d91b1b 74%); */
            background-image: linear-gradient(to right, #b8cbb8 0%, #b8cbb8 0%, #b465da 0%, #cf6cc9 33%, #ee609c 66%, #ee609c 100%);
    color: #fff;
}
.dot {
  height: 50px;
  width: 50px;
  background-color: #000;
  border-radius: 50%;
  display: inline-block;
}


.page-tab-view .nav-link.active {
    background: #0d6efd !important;
    color: #fff !important;
    border-radius: 4px 11px;
    font-size: 14px;
}

.page-tab-view ul#myTab {
    border-bottom: 0;
} 

.page-tab-view .nav-link {
    border: 1px solid #0d6efd !important;
    border-radius: 4px 11px !important;
}

input#flexSwitchCheckDefault {
    font-size: 18px;
    margin-top: 0.85em;
}
label.form-check-label {
    font-size: 16px;
}

 .form-switch {
    padding-left: 5rem ! important;
}
#tbl_extractwellreport th {
    color: #ffffff;
    background-color: #0d6efd;
    padding: 2px;
    margin: 0px;
    white-space: nowrap;
    font-size: 12px;
    padding-right: 10px;
    padding-left: 10px;
}
a.nav-link.active {
    background-color: #e96d08;
}

.j-end {
      justify-content: end;
}
#tbl_extractwellreport_filter {
    display: initial;
    float: right;
}
.filters_div_scroll
{
      height: 78vh;
    overflow-y: auto;
}
#divtable_list .card-body {
    padding: 4px;
}
.click_popover
{
    position: absolute;
    z-index: 9;
    display: flex;
    left: 50rem;
    font-size: 14px;
    padding: 4px 12px !important;
    top: 10px;
}
.imgBoxShadow
{
    margin: 0px auto;
    text-align: center;
}
img#image_view {
    width: 350px !important;
    border-radius: 4px 11px;
}
div#showCropsDataInfo {
    width: 50%;
}

.offcanvas-header button.btn-close {
    background-color: red !important;
    opacity: 1 !important;
    color: #fff !important;
}

.f-column {
    flex-direction: column;
  }

  div#apexchartsarea-datetime {
    width: 100% !important;
}
.font-size-card
{
    font-size: 16px !important;
    padding-bottom: 0;
    margin-bottom: 0;
}
div#tbl_shop_details_length {
    width: 50%;
    float: left;
}

.show_column h3 {
    font-size: 24px;
}

div#tbl_shop_details_length label{
    display: inline-flex;
}

div#tbl_shop_details_length  select.custom-select {
      margin: 0px 10px;
}

.dt-buttons.btn-group.flex-wrap {
    float: right;
    margin-top: 4px;
}

div#tbl_shop_details_filter {
    clear: both;
    text-align: end;
}

thead {
/*    background: linear-gradient(to right, rgb(68 66 215), rgb(101 122 222));*/
      background: linear-gradient(to right, rgb(44 43 88), rgb(34 25 111)); 
    color: #fff;
} 

.font-bold {
    color: #012970;
    font-weight: 600;
}

.bgblue {
    background: linear-gradient(to right, rgb(69 67 149), rgb(71 66 117));
    color: #fff;
}

.br-color {
  border-left: 0.25rem solid #d55454 !important;
}

ul#myTab1, #myTab2, #myTab3, #myTab10, #myTab83, #myTab99 {
    border: 0 !important;
} 

#myTab1 .nav-link.active, #myTab2 .nav-link.active, #myTab3 .nav-link.active, #myTab10 .nav-link.active,
#myTab83 .nav-link.active, #myTab99 .nav-link.active, #myTab203 .nav-link.active{
    border: 0;
    background: #241d6a;
    color: #fff;
    border-radius: 7px 11px;
    padding: 4px 17px;
    font-size: 14px;
}

#myTab1 .nav-link, #myTab2 .nav-link, #myTab3 .nav-link, #myTab10 .nav-link, #myTab83 .nav-link,
#myTab99 .nav-link, #myTab203 .nav-link {
    border: 0;
    border: 1px solid #241d6a;
    color: #241d6a;
    border-radius: 7px 11px;
    padding: 4px 17px;
    font-size: 14px;
} 

.cboth{
  clear: both;
}

.newform label {
      color: #012970;
    font-weight: 500;
}

.form-width {
  max-width: 65%;
}

.form-width h6 {
    font-size: 18px;
    font-weight: 500;
    color: #012970;
    font-family: "Poppins", sans-serif;
} 

.lblBold {
  font-weight: 600;
  color: #012970;
}

.longGrid th, td {
    white-space: nowrap;
}

.font-label {
      color: #22196e;
    font-weight: 600;
} 

.box-align {
  display: flex;
  align-items: center;
}

.round-img {
  border-radius: 100% !important;
  width: 100px !important;
  box-shadow: rgb(0 0 0 / 3%) 0px 3px 8px;
} 

#reconfirm_check {
  position: fixed;
  top: 0;
  z-index: 999999999999999999999999999999999 !important;
  width: 100%;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #0000009e;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

.switch-lang {
    background: #198754;
    color: #fff;
    padding-left: 3rem !important;
    border-radius: 4px;
}

div#admin_appeal_table_wrapper {
    height: 436px;
    overflow-y: auto;
}
#admin_appeal_table thead {
  position: sticky;
  top: 0;
}


.search_appeal_id{
  justify-content: end;
}

#vao_rejection {
  position: fixed;
  top: 0;
  z-index: 999999999999999999999999999999999 !important;
  width: 100%;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #0000009e;
}

.vao_field_modal{
  height: 780px;
  max-width: 1000px !important;
}

#icons {
  position: fixed;
  top: 0;
  z-index: 999999999999999999999999999999999 !important;
  width: 100%;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #0000009e;
}

#reeval_confirm {
  position: fixed;
  top: 0;
  z-index: 999999999999999 !important;
  width: 50% !important;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #0000009e;
  left: 21rem;
  padding: 3rem;
}


#content_div {
  width: 500px;
  height: 100px;
}

.user_loading{
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none !important;
  pointer-events: none; /* Standard syntax */
}