.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  border-left-color: var(--bs-light-primary-text);

  animation: spin 1s linear infinite;
}

.spinner-small {
  width: 30px;
  height: 30px;
  border: 5px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  border-left-color: var(--bs-light-primary-text);

  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.spinner-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.chart-network {
  width: 100%;
  height: 600px;
  margin: auto;
}

.parent-chart {
  display: flex;
  width: 100%;
  margin: auto;
}

.networkVisjs {
  width: 100%;
}

.apexcharts-toolbar {
  z-index: 9 !important;
}

.pointer {
  cursor: pointer;
}

@media( width <= 600px){
  .chart-network {
    height: 450px;
  }
}