.pagination .page-item .page-link {
  width: 65px !important;

  border-radius: 65px !important;
}

.customDatatableSearch {
  border: 1px solid #b53;

  border-radius: 5px;

  height: 34px;
  outline: none;
}

buttons-csv {
  background-color: blue;
}
.pagination li.paginate_button.page-item.active {
  color: white !important;
  border-radius: 6px;
  padding: 0px;
  border: none;
}

.page-item.active .page-link {
  border-color: #1d4a87f0;
  color: #fff;
  z-index: 3;
  background-color: #872e68 !important;
}

.table-actions a.btn.btn-success.text-white {
  border-radius: 0px;
  background: #28c76f !important;
  padding: 6px 16px;
  margin-bottom: 0px !important;

}
.table-actions a.btn.btn-danger.text-white {
  border-radius: 0px;
  background: red !important;
  padding: 6px 16px;
  margin-bottom: 0px !important;
}
.table>:not(:last-child)>:last-child>*{
      background:linear-gradient(86deg, #e5f6ff 0%, #e5f6ff 100%) !important;
}
td {
  font-size: 14px;
}

.table td,
.table th {
  white-space: normal;
}

.badge-dark {
  color: #000;
}

.total-aeps-report h6 {
  color: rgb(133, 133, 133);

  font-size: 12px;

  font-weight: 700;
}

.total-aeps-report p {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 15px;

  font-weight: 700;
}

.total-aeps-report-pie {
  justify-content: center;
}

.report-cards-success,
.report-cards-pending,
.report-cards-failed,
.report-cards-total {
  display: flex;

  justify-content: space-between;

  align-items: center;

  box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);

  border-radius: 0.25rem;

  background-color: #fff;

  padding: 0.5rem;
}

.report-cards-success {
  border-bottom: 5px solid green;
}

.pie-graph-success {
  --c: green;

  --b: 5px;
}

.report-cards-pending {
  border-bottom: 5px solid orange;
}

.pie-graph-pending {
  --c: orange;

  --b: 5px;
}

.report-cards-failed {
  border-bottom: 5px solid red;
}

.pie-graph-failed {
  --c: red;

  --b: 5px;
}

.report-cards-total {
  border-bottom: 5px solid #18a3ae;
}

.pie-graph-total {
  --p: 100;

  --c: #18a3ae;

  --b: 5px;
}

.number-payment h6 {
  position: relative;

  top: 6px;

  font-size: 9px;
}

@property --p {
  syntax: "<number>";

  inherits: true;

  initial-value: 0;
}

.pietooltip {
  width: 100px !important;
}

.pie {
  width: 65%;

  aspect-ratio: 1;

  position: relative;

  display: inline-grid;

  place-content: center;

  font-size: 18px;

  font-weight: bold;

  font-family: sans-serif;
}

.pie:before,
.pie:after {
  content: "";

  position: absolute;

  border-radius: 50%;
}

.pie:before {
  inset: 0;

  background: radial-gradient(farthest-side, var(--c) 98%, #0000) top/var(--b)
      var(--b) no-repeat,
    conic-gradient(var(--c) calc(var(--p) * 1%), #0000 0);

  -webkit-mask: radial-gradient(
    farthest-side,
    #0000 calc(99% - var(--b)),
    #000 calc(100% - var(--b))
  );

  mask: radial-gradient(
    farthest-side,
    #0000 calc(99% - var(--b)),
    #000 calc(100% - var(--b))
  );
}

.pie:after {
  background: var(--c);

  transform: rotate(calc(var(--p) * 3.6deg))
    translateY(calc(50% - var(--w) / 2));
}

.animate {
  animation: p 2s 0.5s both;
}

@keyframes p {
  from {
    --p: 0;
  }
}

@media only screen and (max-width: 760px) {
  .report-cards-success,
  .report-cards-pending,
  .report-cards-failed,
  .report-cards-total {
    justify-content: space-evenly;
  }
}

.reportdivtooltip {
  text-transform: uppercase;

  cursor: help;

  position: relative;

  text-align: center;
}

.reportdivtooltip .reporttooltip {
  bottom: 100%;

  display: block;

  left: 0;

  margin-bottom: 15px;

  opacity: 0;

  pointer-events: none;

  position: absolute;

  width: 200%;
}

.reportdivtooltiptotal .reporttooltip {
  left: -90% !important;
}

/* This bridges the gap so you can mouse into the tooltip without it disappearing */

.reportdivtooltip .reporttooltip:before {
  bottom: -20px;

  content: " ";

  display: block;

  height: 20px;

  left: 0;

  position: absolute;

  width: 100%;
}

/* CSS Triangles - see Trevor's post */

.reportdivtooltip .reporttooltip:after {
  border-left: solid transparent 10px;

  border-right: solid transparent 10px;

  border-top: solid #1496bb 10px;

  bottom: -10px;

  content: " ";

  height: 0;

  left: 25%;

  margin-left: -13px;

  position: absolute;

  width: 0;
}

.reportdivtooltiptotal .reporttooltip:after {
  left: unset !important;

  right: 25% !important;
}

.reportdivtooltip:hover .reporttooltip {
  opacity: 1;

  pointer-events: auto;

  -webkit-transform: translateY(0px);

  -moz-transform: translateY(0px);

  -ms-transform: translateY(0px);

  -o-transform: translateY(0px);

  transform: translateY(0px);
}

/* IE can just show/hide with no transition */

.lte8 .reportdivtooltip .reporttooltip {
  display: none;
}

.lte8 .reportdivtooltip:hover .reporttooltip {
  display: block;
}

.pie-chart {
  background: radial-gradient(
    circle closest-side,

    transparent 60%,

    white 0
  );

  position: relative;

  width: 500px;

  min-height: 350px;

  margin: 0;

  outline: 1px solid #ccc;
}

.pie-chart h2 {
  position: absolute;

  margin: 1rem;
}

.pie-chart cite {
  position: absolute;

  bottom: 0;

  font-size: 80%;

  padding: 1rem;

  color: gray;
}

.pie-chart figcaption {
  position: absolute;

  bottom: 1em;

  right: 1em;

  font-size: smaller;

  text-align: right;
}

.pie-chart span:after {
  display: inline-block;

  content: "";

  width: 0.8em;

  height: 0.8em;

  margin-left: 0.4em;

  height: 0.8em;

  border-radius: 0.2em;

  background: currentColor;
}

.d-grid {
  display: grid;
}

.chartdiv {
  width: 100%;

  height: 500px;
}

.f-10 {
  font-size: 10px !important;
}

.f-16 {
  font-size: 16px !important;
}

.f-13 {
  font-size: 13px !important;
}

.bg-chart-gradient-dark {
  background-image: linear-gradient(193deg, #f1eeee, #000);
}

.select2-search__field {
  width: 100%;
}

/* .table{

    border: 1px solid;

} */
.card-header h4 {
  font-size: 16px;
  color: #000;
}
.bandetails_Section table tr th {
  color: #000;
  font-size: 16px;
}

.stetled_card .card.card-shadow-warning::after {
  border-bottom-color: #ffdab6;
}
.stetled_card .card.card-shadow-danger::after {
  border-bottom-color: #ec8e91;
}
.stetled_card .card.card-shadow-info::after {
  border-bottom-color: #00bad1;
}
.stetled_card .card.card-shadow-info:hover::after {
  border-color: #00bad1;
  border-block-end-width: 0.1875rem;
}
.stetled_card .card.card-shadow-warning:hover::after {
  border-bottom-color: #ff9f43;
}
.stetled_card .card.card-shadow-warning::after {
  border-bottom-color: #ffdab6;
}
.stetled_card .card[class*="card-shadow-"]:hover::after {
  border-bottom-width: 3px;
}
.stetled_card .card.card-shadow-primary:hover::after {
  border-bottom-color: #7367f0;
}
.stetled_card .card[class*="card-shadow-"] {
  position: relative;
  border-bottom: none;
  transition: all 0.2s ease-in-out;
  z-index: 1;
  border-bottom: none;
  box-shadow: none !important;
}
.stetled_card .card.card-shadow-primary::after {
  border-bottom-color: #c8c4f9;
}
.stetled_card .card[class*="card-shadow-"]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  /* border-radius: .375rem; */
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.bg-label-primary {
  background-color: #e9e7fd !important;
  color: #7367f0 !important;
  font-weight: 400;
  font-size: 13px;
  border-radius: 28px;
}
.bg-label-warning {
  background-color: color-mix(in sRGB, #ffffff 84%, #ff9f43) !important;
  color: #ff9f43 !important;
  font-weight: 400;
  font-size: 13px;
  border-radius: 28px;
}
.bg-label-danger {
  background-color: color-mix(in sRGB, #ffffff 84%, #ff4c51) !important;
  color: #ff4c51 !important;
  font-weight: 400;
  font-size: 13px;
  border-radius: 28px;
}
.bg-label-info {
  background-color: color-mix(in sRGB, #ffffff 84%, #00bad1) !important;
  color: #00bad1 !important;
}
/* ....................... D Css .................... */
.allcard h4 {
  font-size: 16px;
  color: #000;
}
.allcard .mainaddbutton {
  background-color: color-mix(in sRGB, #ffffff 84%, #7367f0) !important;
  color: #7367f0 !important;
  border-radius: 3px !important;
  padding: 10px 20px !important;
  box-shadow: none !important;
  margin-bottom: 0px !important;
  /* float: inline-end; */
}
.allcard .filterBtn {
  background-color: color-mix(in sRGB, #ffffff 84%, #808390) !important;
  color: #808390 !important;
  border-radius: 3px !important;
  padding: 10px 20px !important;
  box-shadow: none !important;
  margin-bottom: 0px !important;
}

.allcard .exptwallet {
  background-color: color-mix(in sRGB, #ffffff 84%, #28c76f) !important;
  color: #28c76f !important;
  border-radius: 3px;
  padding: 10px 20px !important;
  box-shadow: none;
  margin-bottom: 0px;
  float: inline-end;
}
.allcard {
  border: 1px solid #e6dee3;
  border-radius: 8px;
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  position: relative;
  margin-bottom: 1.5rem;
}

.allcard .dangerBtn {
  background-color: color-mix(in sRGB, #ffffff 84%, #ff4c51) !important;
  color: #ff4c51 !important;
}
table.dataTable td, table.dataTable th {
    background-color: white !important;
}
.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: white !important;
}