/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  --shade1:#33208C;
  --shade2:#33208C;
  --shade3:#ffffff;
  --shade4:blue;
}

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;
  /* min-height: 90vh; */
/*  padding: 20px 30px;*/
padding: 5px 0px;
  transition: all 0.3s;
  position:relative;
}

@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;
  }
}


/* 

.d-drops {
  display: none; 
  background-color: #9292922b;
  margin: 0 5px!important;
}
 */
 
.d-drops {
  display: none; 
  background-color: #9292922b;
  /* margin: 0 5px!important; */
  margin: -2px 5px   0px !important;
  
  
}


/* 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;
}

.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:var(--shade3);
}

@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 {
    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;
  }
}

.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: var(--shade1);
  transition: .3s all;
  padding: 10px 15px;
  /* border-radius: 4px 29px; */
}
.nav-link.active, .nav-link.enable ,  .nav-link.active *{
  background-color: var(--shade1)!important;
  color: var(--shade3)!important;
}
.nav-link.active{
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.454);
}
.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: var(--shade1);
}

.sidebar-nav .nav-link.collapsed {
  color: var(--shade1);
  background:var(--shade3);
}

.sidebar-nav .nav-link.collapsed i {
  color: #899bbd;
}

.sidebar-nav .nav-link:hover {
  color: var(--shade3)!important;
  background: var(--shade1);
}

.sidebar-nav .nav-link:hover i {
  color: var(--shade3);
}

.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 .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px !important;
  color: #012970;
}
.footer { 
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
  width: calc(100% - 300px);
  position: fixed;
  bottom: 0;
  background: #f6f9ff;
  margin-left: 300px;
  z-index: 99; 
}

.toggle-sidebar .footer {  
  width: calc(100% - 0px) !important;
  background: #f6f9ff; 
}


.footer .copyright {
  text-align: center;
  color: #012970;
  font-size: 13px !important;
}

.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{
    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 {
    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;
}


.boxflex {
      display: flex;
    align-items: center;
}

.cspd{
      padding: 4px 16px;
    font-size: 14px;
}

th, td {
    white-space: nowrap;
    font-size: 14px;
} 

.badge {
    font-size: 12px;
} 

#map { 
  height: 35vh;
  z-index: 0;
}  

.full-view #map{
    overflow: hidden;
    height: 100vh;
    z-index: 999 !important;
    position: fixed;
    top: 0rem;
    right: 0rem;
    left: 0rem;
    bottom: 0rem; 
}
.full-view .right-container {
    position: fixed;
    top: 1rem;
    right: 1.7rem;
    z-index: 999;
}
.full-view .box-width {
    position: fixed;
    bottom: 1rem;
    left: 0.7rem;
    width: 16%;
    z-index: 9999; 
}
.full-view #map_footer1 {
    position: fixed;
    bottom: 1rem;
    right: 10px;
    color: #0000008f;
    font-size: 10px;
    font-weight: bold;
    padding: 2px;
    background: #cfe2ff;
    border-radius: 4px;
    z-index: 9999; 
}

.ol-zoom.ol-unselectable.ol-control, .ol-rotate.ol-unselectable.ol-control.ol-hidden, .ol-attribution.ol-unselectable.ol-control.ol-uncollapsible {
    display: none;
}

span.badge {
    white-space: initial;
}

.bggreen {
    background: #d1e7dd;
  }

  .card-body h5 span {
    padding: 10px 0 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #012970;
    font-family: "Poppins", sans-serif;
} 

.badgeinfo {
  font-size: 14px !important;
  padding: 3px 8px !important;
}

#show-patta-info {
            display: none;
        }
        .lbl-font {
    color: #012970;
}
label.form-label {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    /* color: #012970; */
}

.bg-rural {
  background-color: #008ffb !important;
} 
.bg-urban {
  background-color: #00e396 !important;
}
.bg-natham {
  background-color: #feb019 !important;
} 

.txtlbl {
  color: #012970;
  font-size: 14px !important;
  background: transparent;
  font-weight: 600;
}  

.default-height {
      height: 35vh;
}


.container.update{
  background-color: rgba(50, 53, 255, 0.13);
  border-radius: 20px;
}




.title{
  color: var(--shade1)!important;
  font-weight: 600;
}


#fees{
  margin-top: 20px;
}
.input-box-container{
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.input-box-container .fee-label{
  position: absolute;
  top: -10px;
  background-color: var(--shade3);
  padding: 0px;
  border-radius: 20px;
  left: 10px;
  font-weight: 600;
  font-size: 14px;
}
.form-check-label{
  position: relative!important;
  bottom: 0;
}

.input-box-container .close-button{
  position: absolute;
  top: 0;
  right: 10px;
  background-color: var(--shade1);
  border: none;
  border-radius: 20px;
  font-size: 14px;
  margin: 0;
  padding: 0 5px 2px 5px;
}

.smt-btn {
  background-color: var(--shade1)!important;
  border-radius: 10px!important;
  color: var(--shade3)!important;
  display: block!important;
  margin: auto!important;
  margin-top: 30px!important;
  border: 1px solid rgba(255, 0, 0, 0);
  box-shadow: 0px 0px 0px transparent; /* Ensure initial state for box-shadow */
  letter-spacing: 0px; /* Ensure initial state for letter-spacing */
  transition: all 0.2s ease-in-out; /* Transition only necessary properties */
}

.smt-btn:hover {
  background-color: rgb(0, 126, 31)!important;
  /* color: var(--shade1)!important; */
  border: 1px solid var(--shade1);
}
thead{
  background-color: var(--shade1)!important;
  background: var(--shade1)!important;
}
.add-btn-area{
  position: relative;
  /* height: 40px; */
  margin: 10px 0px;
  display: flex;
  flex-direction: row;
  justify-content:space-between;
}
.add-btn {
  background-color: var(--shade1)!important;
  margin: 0px 2px;
  border-radius: 10px!important;
  color: var(--shade3)!important;
  letter-spacing: 0px; /* Ensure initial state for letter-spacing */
  transition: all 0.2s ease-in-out; /* Transition only necessary properties */
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.454);
}
.approve-btn{
  background-color: rgb(212, 164, 7)!important;
  margin: 0px 20px;
  border-radius: 10px!important;
  color: var(--shade3)!important;
  letter-spacing: 0px; /* Ensure initial state for letter-spacing */
  transition: all 0.2s ease-in-out; /* Transition only necessary properties */
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.454);
}

.add-btn:hover {
  /* color: var(--shade1)!important; */
  background-color: #775ee4!important;
}

#update-btn{
  padding: 5px 10px;
  border-radius: 10px!important;
  color: var(--shade1);
  font-size: 18px;
  border: none;
}
#update-btn:hover{
  background-color: rgb(64, 230, 64)!important;
}
#delete-btn{
  padding: 5px 10px;    
  border-radius: 10px!important;
  padding: 5px 10px;
  border-radius: 10px!important;
  color: var(--shade1);
  font-size: 18px;
  border: none;
  cursor: pointer;
}
#delete-btn:hover{
  background-color: rgb(196, 53, 89)!important;
}
.breadcrumb-item.active{
  color: var(--shade1)!important;
  font-weight: 600;
}
.breadcrumb-item a{
  color: var(--shade2)!important;
  text-decoration: none;
  
}
.breadcrumb-item a:hover{
  border-bottom: 2px solid var(--shade2);
  transition: 0.1s all ease-in-out;
}

.fee-container{
  background-color: rgba(100, 142, 219, 0.315);
  border-radius: 10px;
  /* padding: 5px 10px; */
}

.back-to-top{
  background-color: var(--shade1)!important;
  border-radius: 100px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.454);
}
.breadcrumb-item.active{
  font-weight: 800!important;
}
.modal-bg{
  background-color: #134f9c77;
}
.modal-box{
  background-color: var(--shade2);
}
.modal-box *{
color: var(--shade3);
}
.filter-drops{
  border-radius: 5px !important;
  padding: 2px 10px;
  position: relative; 
  cursor: pointer;
  width: 100%;
  border: solid var(--shade1) 1px;
  /* background-color: var(--shade1); */
  color: var(--shade1);
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}
#Grand-total{
  font-size: 24px;
  font-weight: 700;
}
#fees_input_table{
  display: none;
}.page-link{
  background-color: var(--shade1);
  text-decoration: none;
  color: var(--shade3);
  align-items: center;
}
.pagination{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.active>.page-link, .page-link.active {
  background-color: var(--shade3);
  color: var(--shade1);
}
.delete_td{
  text-align: center;
}
.subtotal_style,#subtotal1,#subtotal2,#subtotal3,#nonrefundablesubtotal,#maintenancesubtotal,#refundablesubtotal{
  font-weight: 700;
}
.d-none{
  display: none!important;
}

.input-fee-text{
  width: min-content;
  background-color: rgb(172, 172, 172);
  padding: 2px 10px 0px 10px;
  border-radius: 5px;
}

.input-container {
  position: relative;
  display: inline-block;
}
.input-container input {
  padding-left: 20px;
}
.input-container::before {
  content: '₹';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.action-col{
  width: max-content;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.action-col-inside{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.action-col-inside a{
  margin: 0px 3px!important;
}

/* .action-col-outside{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
} */

.subtotal {
  position: relative;
  display: inline-block;
  width: 100%;
}
.subtotal .value {
  padding-left: 20px;
}
.subtotal::before {
  content: '₹';
  /* position: absolute; */
  /* left: 5px; */
  /* top: 50%; */
  /* transform: translateY(-50%); */
}
.index-link, .addfees-link{
  cursor: pointer;
}
.even-row-table th:not(.action-col){
  width: 33.3%;
}
#nonRefundableFeesTable td,#nonRefundableFeesTable th{
  padding: 5px 8px 5px 8px!important;
}
.sub-bg{
  /* background-color: rgb(200, 209, 218); */
  color: var(--shade1);
}

input.form-control, select.form-select,select.form-control{
      padding: .2rem .75rem!important;
      font-size: small;
}
.table-inside td{
  padding: 3px auto;
  font-weight: 600;
}
.table-inside th{
  padding: 4px auto;
}
tbody.whole-row{
  border-top: 3px solid var(--shade1);
}
.sticky-head{
  position: sticky;
}
/* Ensure the container has a fixed height and overflow for scrolling */
.table-responsive {
  overflow-y: hidden;
}
.add-fees-btn{
  font-size: 12px;
}
.disabled-link {
  pointer-events: none;
  color: gray; /* Change color to indicate it is disabled */
  cursor: not-allowed;
}

.report-filters{
  background-color: #ffffff;
  padding:0.5rem 1rem;
  border-radius: 5px;
  margin: 10px 5px;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.26);
}

.report-filters .filter-drops{
  width: 100%;
  padding: 1px 20px;
  border-radius: 8px!important;
}


#list_fee_details td{
  /* line-height: 0px !important; */
  vertical-align: middle;
  /* padding: 0.4rem 0.6rem; */
}
#list_fee_details td p{
  margin-top: 10px !important;
  vertical-align: middle;
}

.status.sts-approved{
  color: #00a200;
  font-weight: 700;
}

.status.sts-not-approved{
  color: #a20028;
  font-weight: 700;
}
#feesDataTable_filter{
  margin-bottom: 10px!important;
}
/* .dt-buttons {
  display: none;
} */
.lblBold {
  font-weight: 600;
  color: #012970;
}

#feesDataTable th, #feesDataTable td {
    white-space: nowrap;
    border: 1px solid #d4d4d4!important;
}
.data-tab {
  width: 100%;
  /* overflow: scroll; */
}
.disabled-option{
  color: #a6a6a6; /* Gray out the text */
}
.disabled-option:hover{
  color: #fff;
  background-color: #a6a6a6;
  cursor: not-allowed;
}

.btn.add-btn.addfees-link.add-fees-btn.viewer{
  background-color: rgb(63 113 122) !important;
  /* color: #012970!important; */
  font-weight: 600;
}
.btn.add-btn.addfees-link.add-fees-btn.viewer:hover{
  background-color: rgb(110, 173, 185) !important;
}
.btn.add-btn.addfees-link.add-fees-btn.approver{
  background-color: rgb(24, 131, 60) !important;
  /* color: #012970!important; */
  font-weight: 600;
}

.btn.add-btn.addfees-link.add-fees-btn.rejector{
  background-color: rgb(134, 0, 0) !important;
  font-weight: 600;
}
.btn.add-btn.addfees-link.add-fees-btn.div_close{
  background-color: rgb(63 113 122) !important;
  /* color: #012970!important; */
  font-weight: 600;
  display: none;
}
.btn.add-btn.addfees-link.add-fees-btn.div_close:hover{
  background-color: rgb(110, 173, 185) !important;
}

.fee-box-highlight{
  background-color: rgba(100, 142, 219, 0.315);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  margin: 20px 0px;
}

.copyfromrow{
  border: 1px solid rgba(100, 142, 219, 0.315);
  padding: 20px;
  border-radius: 10px;
}
.form-label-title{
  font-weight: 600;
  /* background-color: #c8d8f4; */
  background-color: var(--shade1);
  color: white;
  padding: 5px;
  /* border-radius: 10px; */
}

.form-label-title.copy-to{
  background-color: #c8d8f4;
  color: var(--shade1);
}
.fee-split{
  display: flex;
  flex-direction: row;
  margin: 5px 0px;
}
section{
  margin-bottom: 20px
}
.container10{
  /* background-color: #000a4d16; */
  padding: 10px;
  border-radius: 5px;
  margin: 5px;
}

/*gptcode do not modify*/
.multi-select-box {
  position: relative;
  width: 200px;
  margin: 20px;
}

.combo-input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
}

.options-container {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1;
}

.options-container label {
  display: block;
  padding: 10px;
}

.options-container label:hover {
  background-color: #f0f0f0;
}

#feesConfirmTableModal .btn-close{
  width: 2rem;
  height: 2rem;
}

#feesConfirmTableModal .modal-footer{
  justify-content:center;
}
.header-text{
  width: 100%;
  text-align: center;
}

.ag-format-container {
  width: 1142px;
  margin: 0 auto;
}


/* body {
  background-color: #000;
} */
.ag-umis_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}
.ag-umis_item {
  -ms-flex-preferred-size: calc(25% - 30px);
  flex-basis: calc(25% - 30px);
  margin: 15px;
  overflow: hidden; 
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.454);
  border-radius: 10px;
}
.ag-umis-item_link {
  display: block;
  padding: 15px 15px;
  background-color: rgb(51 32 140);
  overflow: hidden;
  position: relative;
}
.ag-umis-item_link:hover,
.ag-umis-item_link:hover .ag-umis-item_date {
  text-decoration: none;
  color: #FFF;
}
.ag-umis-item_link:hover .ag-umis-item_bg {
  -webkit-transform: scale(10);
  -ms-transform: scale(10);
  transform: scale(10);
}
.ag-umis-item_title {
  /* min-height: 87px; */
  margin: 0 0 25px;
  overflow: hidden;
  font-weight: bold;
  font-size: 30px;
  color: #FFF;

  z-index: 2;
  position: relative;
}
.ag-umis-item_date-box {
  font-size: 18px;
  color: #FFF;

  z-index: 2;
  position: relative;
}
.ag-umis-item_date {
  font-weight: bold;
  color: #f9b234;

  -webkit-transition: color .5s ease;
  -o-transition: color .5s ease;
  transition: color .5s ease
}
.ag-umis-item_bg {
  height: 128px;
  width: 128px;
  background-color: #cd3e94;
  z-index: 1;
  position: absolute;
  top: -75px;
  right: -75px;
  border-radius: 50%;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
.ag-umis_item:nth-child(2n) .ag-umis-item_bg {
  background-color: #6425a3;
}
.ag-umis_item:nth-child(3n) .ag-umis-item_bg {
  background-color: #1ea30c;
}
.ag-umis_item:nth-child(4n) .ag-umis-item_bg {
  background-color: #cca31c;
}
.ag-umis_item:nth-child(5n) .ag-umis-item_bg {
  background-color: #880101;
}
.ag-umis_item:nth-child(6n) .ag-umis-item_bg {
  background-color: #4c49ea;
}



@media only screen and (max-width: 979px) {
  .ag-umis_item {
    -ms-flex-preferred-size: calc(50% - 30px);
    flex-basis: calc(50% - 30px);
  }
  .ag-umis-item_title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .ag-format-container {
    width: 96%;
  }

}
@media only screen and (max-width: 639px) {
  .ag-umis_item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .ag-umis-item_title {
    min-height: 72px;
    line-height: 1;

    font-size: 24px;
  }
  .ag-umis-item_link {
    padding: 22px 40px;
  }
  .ag-umis-item_date-box {
    font-size: 16px;
  }
}
.coming-soon-text{
  font-size: xx-large;
  font-weight: bolder;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 90px;
}
.student_filters{
  display: none;
}
#application_list_count_table,#scheme_details{
  width: 100% !important;
}
#application_list_count_table_filter label{
  display: flex;
  flex-direction: row;
  /* width: 300px; */
}
#application_list_count_table_length label{
  display: flex;
  flex-direction: row;
  width: 140px;
}
#scheme_details_filter,#application_list_count_table_filter,#scheme_details_filter,#scheme_list_filter{
  float: right;
  margin: 5px 5px 5px 0px;
}
#scheme_details_filter label{
  display: flex;
  flex-direction: row;
  /* width: 300px; */
}
#scheme_list_filter label{
  display: flex;
  flex-direction: row;
  /* width: 300px; */
}
#scheme_details_length label{
  display: flex;
  flex-direction: row;
  width: 140px;
}
#remarksModal .btn-close {
  width: 2rem;
  height: 2rem;
}
#approve_btn{
  color: #fff !important;
  float: right;
}
.action_btns{
  display: flex;
  flex-direction: row;
  padding: 0px;
  justify-content: right;
}
.approver{
  background-color: rgb(24, 131, 60) !important;
}

.rejector{
  background-color: rgb(134, 0, 0) !important;
}

.approver:hover{
  background-color: #12b86b !important;
  border:1px solid white;
}
.rejector:hover{
  background-color: rgb(233 9 9) !important;
  border:1px solid white;
}
.action_btns_display{
  display: none;
  padding: 0px;
}
#approveremarksModal .modal-header{
  flex-direction: column;
  }


.status_btn{
  background-color: var(--shade1) !important;
  margin: 0px 2px;
  border-radius: 10px !important;
  color: var(--shade3) !important;
  letter-spacing: 0px;
  transition: all 0.2s ease-in-out;
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.454);
}
.status_btn.active {
  background-color: #4CAF50 !important;
  color: white !important;
}
.application_div,.scheme_div{
  display: none;
}
.student_info,.scheme_eligibility_div{
  display: none;
}
.customer-details h5{
  font-weight: bolder;
  color: #33208c;
  font-size: 15px;
}
.student_info .card-body {
  padding: 20px !important;
}
.scheme_details.dataTables_wrapper div.dataTables_paginate ul.pagination{
  justify-content: center !important;
}
div.dataTables_wrapper div.dataTables_paginate ul.pagination{
  justify-content: center !important;

}
.gray_out{
  background-color: gray;
}
.table .action-buttons{
  text-align: left;
}
#applied_scheme_status{
  display: none;
}

.status_btn.active {
  background-color: #4CAF50 !important;
  color: white !important;
} 
.view-scheme{
  font-size: 13px;
}
#scheme_details_filter label{
  display: flex;
    flex-direction: row;
}
#applied_info .form-label{
  color: var(--shade1) !important;
  font-weight: 800;
  text-wrap: nowrap;
}
.applyScreen .sectionSeparate h6{
  padding: .5rem;
  text-align: left;
  color: whitesmoke;
  font-weight: bolder;
  background: var(--shade1);
}
.goto-btn{
  font-size: 12px;
}

span#dateTimeLink {
  font-size: 12px !important;
  font-weight: bold;
}

div#application_list_count_table_info {
  width: 50%;
  /* float: left; */
  /* text-align: right; */
  margin-top: -15px;
}
div#application_list_count_table_length {
  width: 50%;
  float: right;
  display: flex;
  justify-content: end;

}



.buttons-html5.btn.btn-success {
  background-color: #198754 !important;
  border: 1px solid white;
  color: #fff;
  border-radius: 4px !important;
  border: 0 !important;
}
.buttons-html5.btn.btn-danger {
  background-color: #DC3545 !important;
  color: #fff;
  border-radius: 4px;
  border: 0 !important;
}
button.dt-button.buttons-print {
  background: #6c757d !important;
  color: #fff !important;
  border-radius: 4px !important;
  border: 0 !important; 
}
/* .dt-buttons {
  width: 50%;
  float: left;
}  */

/* div#scheme_details_filter {
  float: right;
}
table#scheme_details {
  float: right;
}  */

.dt-buttons {
  float: right;
} 

.dt-button-collection {
  height: 150px;
  overflow-y: scroll !important;
} 


a#scheme_list_previous, .paginate_button previous {
  background: #fff;
  color: #333;
  padding: 2px 6px;
  border: 1px solid #fcfcfc;
  border-radius: 4px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  margin-right: 5px;
}
div.dataTables_wrapper div.dataTables_paginate {
  margin: 0;
  white-space: nowrap;
  text-align: right;
  margin-bottom: 15px !important;
}
.dataTables_paginate span {
  background: #fff;
  color: #333;
  padding: 2px 6px;
  border: 1px solid #fcfcfc;
  border-radius: 4px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

a#scheme_list_next{
  background: #fff;
  color: #333;
  padding: 2px 6px;
  border: 1px solid #fcfcfc;
  border-radius: 4px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  margin-right: 5px;
  margin-left: 10px;
} 



a#scheme_details_previous, .paginate_button previous {
  background: #fff;
  color: #333;
  padding: 2px 6px;
  border: 1px solid #fcfcfc;
  border-radius: 4px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  margin-right: 5px;
}
div.dataTables_wrapper div.dataTables_paginate {
  margin: 0;
  white-space: nowrap;
  text-align: right;
  margin-bottom: 15px !important;
}
.dataTables_paginate span {
  background: #fff;
  color: #333;
  padding: 2px 6px;
  border: 1px solid #fcfcfc;
  border-radius: 4px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

a#scheme_details_next {
  background: #fff;
  color: #333;
  padding: 2px 6px;
  border: 1px solid #fcfcfc;
  border-radius: 4px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  margin-right: 5px;
  margin-left: 10px;
} 
/* Style the column visibility list items */
.dt-button-collection .dt-button {
  padding: 10px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

/* Style the checkbox with a custom checkmark */
.dt-button-collection .dt-button.active {
  background-color: #fff;  /* Change background when active */
}

.dt-button-collection .dt-button.active::before {
  content: '\2714';  /* Checkmark character */
  font-size: 14px;
  margin-right: 8px;
  color: #05d405;
  font-weight: bold;
}

/* Add hover effect */
.dt-button-collection .dt-button:hover {
  background-color: #e9ecef;
}
div.dt-button-collection .dt-button:hover:not(.disabled){
  background: rgb(51 32 140) !important;
  color: #fff;
}

.flex-inherit {
  flex-direction: initial !important;
  }
  
  .modal-title {
    color: #012970;
    font-size: 18px;
  }
  .close_icon {
    font-size: 26px;
    color: #012970;
  }
  .buttons-colvis{
    background: #33208c !important;
    color: #fff !important;
  }
  #student-list-filter-submit-div{
    display: none;
  }
  #scheme_list_paginate,#scheme_details_paginate{
    display: flex;
      justify-content: center;
      width: 100%;
  }
  p,
    a,
    li,
    div,
    span,
    label,
    section,
    th,
    td,
    button,
    input {
      /* font-size: 14px !important; */
}

.wrap-bottom { 
  margin-bottom: 30px;
}

div.dt-button-background {
  background: transparent !important; 
}

#scheme_details_div .table>thead {
  vertical-align: bottom;
  position: relative;
  z-index: -1;
}
.dt-button-collection, .dt-button-collection > div {
  position: relative;
  z-index: 9999999999 !important;
}
.gigw {
  background: #33208c;
  justify-content: end;
  position: absolute;
  width: max-content;
  right: 20px;
  color: white;
  top: 60px;
  border-radius: 0px 0px 20px 20px;
  padding: 1px 10px;
}
.gigw *{
  color: white;
}
.bg-blue {
  background: linear-gradient(180deg, #566ec4, #566ec4d1);
  border: none;
  box-shadow: 2px 2px 5px #0003;
  color: #fff;
}
.svg-wrap {
  height: 100%;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
}
 .card-body-total {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.card-body-total .flexible {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: start;
  padding: 0 20px;
} 
 .flexible {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 20px;
} 

.card-title-top {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.pay-box, .stud-box {
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, .392);
  padding: 10px;
}
.stud-box {
  background-color: #6279c817;
}
.pay-box {
  background-color: #7a63a626;
}

.bg-coral {
  background: linear-gradient(135deg, #624e88, #a085d6);
  color: #fff;
}
.bg-purple {
  background: linear-gradient(135deg, #41b3a2, #74d3ae);
  color: #fff;
}
.flexible p:first-child {
  font-weight: bold !important;
}
.text-start {
  text-align: left !important;
  font-weight: bold;
}


.sub-table {
  display: none;
  width: 100%;
  background-color: #f0f8ff;
}

.sub-table td {
  padding: 10px;
  border-top: 1px solid #f0f8ff;
  font-size: 14px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  margin: 0 5px; /* Add space between page numbers */
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background-color: #007bff; /* Change this to your desired color */
  color: white; /* Text color for the current page */
  border-radius: 4px; /* Optional: add rounded corners */
  padding: 3px;
}
div.dt-buttons > .dt-button{
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  margin-left: 0.167em;
  margin-right: 0.167em;
  margin-bottom: 0.333em;
  padding: 3px !important;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 2px;
 font-size: medium;
}
.dataTables_filter{

    margin-top: 3px !important;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove the arrows in Firefox */
input[type="number"] {
    -moz-appearance: 'textfield';
}
.btn:disabled {
  background-color: grey !important;
  color: white !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
  border: 0;
}

ul#report-submenu {
  margin-left: 25px;
}
.select2{
  width: auto !important;
}

.custom_select__filter_wrap  #accordionExample {
  position: relative;
}

.custom_select__filter_wrap .select2-container {
float: right;
  position: absolute;
  z-index: 8 !important;
  right: 3.5rem;
  padding-top: 10px;
  width: auto !important;
}
.select2-container .select2-selection--single {
  margin-top: -5px !important;
}
/* 
.custom_select__filter_wrap #resetButton {
  float: right;
  position: absolute;
  z-index: 8 !important;
  right: 3.5rem;
  width: auto !important;
  margin-top: 5px;
  font-size: 12px;

  } */
  /* .select2-container .select2-selection--single {
    margin-top: -5px !important;
  }
   */

   .select2-selection__clear {
    color: #ff0000; /* Change clear button color */
    font-size: 16px; /* Adjust the font size */
    font-weight: bold; /* Make it bold */
    cursor: pointer; /* Add pointer cursor */
    margin-left: 5px;
}

.select2-selection__clear:hover {
    color: #ff4500; /* Change color on hover */
    text-decoration: underline; /* Add underline on hover */
}
.marquee-container {  
    overflow: hidden;
    white-space: nowrap;
    padding: 0;

}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 30s linear infinite;
  font-size: 14px;
  color: #b30000;
}

.marquee-container:hover .marquee-text {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}