
.cursor-pointer {
  cursor: pointer;
}

.card-title {
  display: flex;
  align-items: center;
}
.card-title > :first-child {
  margin-right: .25rem;
}
.card-title > :nth-child(2) {
  margin-right: auto;
}
.card-header-flex {
  display: flex;
}
.card-header-flex > :not(:last-child) {
  margin-right: .5rem;
}

.dashboard .ct-label.ct-horizontal.ct-end {
  transform-origin: 100% 0;
  transform: translate(-100%) rotate(-45deg);
}

.usage-by-date th:not(:first-child) {
  text-align: right;
  vertical-align: bottom;
}
.usage-by-date td:not(:first-child) {
  text-align: right;
}

.listen-log-for-date .os-icon {
  height: 24px;
  cursor: wait;
}

.synth-detail-for-article .modal-body {
  max-height: 80vh;
  overflow: auto;
}
.synth-detail-for-article .spinner {
  width: 1.5em;
  height: 1.5em;
  border-width: .2em;
  border-color: #ccc; /* Light grey */
  border-top-color: #3498db; /* Blue */
  animation-duration: 2s;
}


.spinner {
  display: inline-block;
  border: 2px solid white;
  border-top: 3px solid rgba(0,0,0,0);
  border-radius: 50%;
  box-sizing: border-box;
  width: 1em;
  height: 1em;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.modal-spinner {
  position: relative;
  z-index: 10;
}
.modal-spinner .overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: black;
  opacity: .5;
}
.modal-spinner .spinner-holder {
  position: fixed;
  top: 50%;
  left: 50%;
}
.modal-spinner .spinner {
  margin-left: -60px;
  margin-top: -60px;
  width: 120px;
  height: 120px;
  border-width: 16px;
  border-color: #f3f3f3; /* Light grey */
  border-top-color: #3498db; /* Blue */
  animation-duration: 2s;
}
