.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.dashboard-style {
  font-size: 16px !important;
  line-height: 1.4375 !important;
}

#chart-title {
  display: inline !important;
}

.text-highlight {
  font-style: normal;
  font-weight: bold;
}

.sync-charts {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* small screen */
@media only screen and (max-height: 900px), screen and (max-width: 1440px) {
  .runs-chart {
    height: 170px;
  }
}
/* large screens */
@media only screen and (min-height: 900px), screen and (min-width: 1440px) {
  .runs-chart {
    height: 200px;
  }
}
