.my-network {
  position: relative;
  background-color: var(--bg-primary);
  padding: 35px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
}

.container-network {
  /* max-width: 900px; */
  width: 100%;
}

.content-network {
  width: 100%;
  margin: 20px 5px;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-shadow);
  display: none;
  z-index: 5;
  border-radius: 5px;
}

.flex-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.feedback-message {
  display: none;
  margin: 10px 0;
  padding: 10px;
  background-color: var(--primary-medium);
  color: var(--game-text-primary);
  text-align: center;
  border-radius: 5px;
}

#allUsersIndication {
  color: var(--game-text-primary);
  font-weight: 500;
  text-align: center;
  margin: 0 auto 25px;
}

#allUsersIndication>strong {
  color: var(--primary);
}

.container-results-network {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px;
  gap: 10px 30px;
}

.container-results-network>.card-item {
  background-color: var(--bg-secondary);
  border-radius: 5px;
  position: relative;
  padding: 10px;
  padding-left: 35px;
  /* margin-right: 30px; */
  width: max-content;
}

.container-results-network>.card-item>.icon {
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translate(0%, -50%);
  background: var(--bg-secondary);
  border: 2px solid var(--bg-primary);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 1rem;
  color: var(--game-text-primary);
}

.container-results-network>.card-item>.text>h3 {
  font-size: .8rem;
  color: var(--game-text-primary);
  opacity: .6;
}

.container-results-network>.card-item>.text>h2 {
  font-size: 1.5rem;
  color: var(--game-text-primary);
}

.container-extract {
  max-width: 900px;
}

.container-inputs-extract {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  /* max-width: 550px; */
}

.form-group {
  position: relative;
  flex: 1 0 160px;
}

#inputDataStart,
#inputDataEnd {
  background: var(--bg-secondary);
  padding: 15px 10px 0px 15px;
  font-size: 1rem;
  height: 60px;
  border: 2px solid var(--text-light);
  border-radius: 5px;
  color: var(--game-text-primary);
  /* margin: 0px 10px; */
  width: 100%;
}

#inputDataStart::-webkit-calendar-picker-indicator,
#inputDataEnd::-webkit-calendar-picker-indicator {
  background-color: rgb(255 255 255 / 50%);
  padding: 5px;
  cursor: pointer;
  border-radius: 3px;
  margin: 0 0 0 10px;
}

.input-select {
  background: var(--bg-primary);
  padding: 18px 10px 0px;
  font-size: 1rem;
  height: 60px;
  border: 2px solid rgb(255 255 255 / 20%);
  border-radius: 5px;
  color: var(--game-text-primary);
  /* margin: 0px 10px; */
  min-width: 140px;
  width: 100%;
}

label[for="inputDataStart"],
label[for="inputDataEnd"] {
  position: absolute;
  top: 8px;
  left: 15px;
  color: var(--game-text-primary);
  font-size: 0.8rem;
}

table.dataTable tbody tr {
  background-color: var(--bg-secondary) !important;
}

table {
  border-collapse: separate !important;
  border-spacing: 0 0.5em !important;
}

table.dataTable tfoot th,
table.dataTable tfoot td {
  border-top: 1px solid rgb(161 161 161 / 30%) !important;
}

.paginate_button {
  /* background: var(--aqua) !important; */
  border-radius: 50% !important;
  border: 1px solid var(--color-primary) !important;
  color: var(--color-primary) !important;
  margin: 0px 10px;
}

.paginate_button.next,
.paginate_button.previous {
  display: none !important;
  border: none !important;
}

.paginate_button.current {
  background: var(--aqua) !important;
  border-radius: 50% !important;
}

.dataTables_wrapper .dataTables_filter input {
  margin-left: 15px !important;
  border-radius: 10px !important;
}

#indications_filter label {
  font-weight: 600;
  font-size: 16px;
}

table tr td:last-child {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}

table tr td:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;

}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

table tr td:last-child {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}

table tr td:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

table.dataTable tbody th,
table.dataTable tbody td {
  padding: 20px 15px !important;

}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: var(--game-text-primary) !important;
}

.dataTables_wrapper .dataTables_filter input {
  border: 2px solid rgba(162, 163, 172, 0.45) !important;
  color: var(--game-text-primary);
}

/* #indications_filter i {
    font-size: 20px;
} */

table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable.display tbody th,
table.dataTable.display tbody td {
  border-right: 1px solid #ffffff0a !important;
  text-align: center !important;

  /* border-top: 1px solidrgba(0, 0, 0, 0.15); */
}

table.dataTable thead>tr>th.sorting,
table.dataTable thead>tr>th.sorting_asc,
table.dataTable thead>tr>th.sorting_desc,
table.dataTable thead>tr>th.sorting_asc_disabled,
table.dataTable thead>tr>th.sorting_desc_disabled,
table.dataTable thead>tr>td.sorting,
table.dataTable thead>tr>td.sorting_asc,
table.dataTable thead>tr>td.sorting_desc,
table.dataTable thead>tr>td.sorting_asc_disabled,
table.dataTable thead>tr>td.sorting_desc_disabled {
  /* cursor: pointer; */
  /* position: relative; */
  text-align: center !important;
  /* padding-right: 26px; */
}

.dataTables_paginate.paging_simple_numbers .paginate_button {
  color: var(--game-text-primary) !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
  top: 0 !important;
  left: 0 !important;
  display: flex !important;
  border-radius: 50% !important;
  background-color: #2ac1b9 !important;
  margin-right: 11px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  width: 30px !important;
  height: 22px !important;
  position: unset !important;
  margin-top: 0 !important;
}