/* datatable */

/* top section */

.datatable-info-length-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}

.datatable-component .dt-info {
  font-size: 13px;
  color: #1fa29c !important;
}

.dt-length {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.dt-length label {
  font-size: 13px;
  color: #000000;
  padding-right: 10px;
  margin: 0;
  text-transform: capitalize;
}

.dt-length .dt-input {
  font-size: 13px;
}

/* pagination */

.datatable-pagination-wrapper {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.datatable-pagination-wrapper .dt-paging .ellipsis,
.datatable-component .datatable-pagination-wrapper .dt-paging .dt-paging-button {
  margin: 0;
  line-height: normal;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  height: 20px;
  border: none !important;
  border-right: 1px solid #d0d1d2 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #4d4d4d;
  width: auto !important;
  min-width: auto;
  padding: 0 8px !important;
}

.datatable-component .datatable-pagination-wrapper .dt-paging .dt-paging-button:hover,
.datatable-component .datatable-pagination-wrapper .dt-paging .dt-paging-button.current {
  color: #1fa29c !important;
}

.datatable-component .datatable-pagination-wrapper .dt-paging .dt-paging-button.current {
  pointer-events: none;
}

.datatable-pagination-wrapper .dt-paging .dt-paging-button.disabled {
  display: none;
}

.dt-input {
  border: 1px solid #aaa;
  /* border-radius: 20px; */
  padding: 5px;
  background-color: transparent;
  color: inherit;
  width: 70px;
  padding: 5px 10px !important;
  font-size: 13px;
  height: 31px;
  font-weight: 600;
  line-height: normal;
  text-indent: 0;
}

/* table */
.datatable-table-block table.dataTable {
  min-width: 100%;
}

table.dataTable thead tr>.dtfc-fixed-start {
  background: #f2f2f2;
}

div.dt-scroll div.dtfc-top-blocker,
table.dataTable.dtfc-scrolling-left tr>.dtfc-fixed-left::after {
  display: none !important;
}

.dt-empty-footer .datatable-component .datatable-table-block .dt-scroll-body {
  border-bottom: none;
}

/* scrollbar */


.dt-scroll-body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: rgba(0, 0, 0, 0.1);
}

.dt-scroll-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.3);
}

.dt-scroll-body::-webkit-scrollbar-track {
  background: inherit;
}

.dt-scroll-body::-webkit-scrollbar-thumb {
  border-radius: 20px;
}

.dt-scroll-body::-webkit-scrollbar-corner {
  background: inherit;
}

@media only screen and (max-width: 767px) {
  .datatable-component .dt-length {
    display: none;
  }
}
