:root {
  /* vain attempt to fix differences between GenieFramework and Genie+Stipple+StippleUI */
  --q-primary: var(--q-color-primary);
  /* uniformize */
  --primary-color: var(--q-color-primary);
  --secondary-color: var(--q-color-secondary);
}

div.no-file-listing > div.q-uploader__header {
  border-radius: inherit;
  height: 100%;
  background-color: inherit;
  color: inherit;
}

div.no-file-listing > div.q-uploader__list {
  display: none;
}

div.no-file-listing .q-icon {
  color: var(--primary-color);
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 8px solid var(--st-skeleton);
  border-radius: 50%;
  border-top: 8px solid var(--primary-color);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

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

.disabled {
  pointer-events: none;
}

footer {
  text-align: right;
  padding-right: 1rem;
}

#footer {
  display: flex;
  flex-direction: horizontal;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  max-width: 100%;
  padding: 0;
  padding-left: 1rem;
}
