.g-top {
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
}

.g-ui {
  background: #303336;
  border: 1px solid #444;
  color: #edffff;
  fill: #edffff;
  border-radius: 4px;
  padding: 4px;
}

p {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.g-spinner {
  animation: spin 1s linear infinite;
  width: 16px;
  height: auto;
  margin-bottom: 2px;
}

#g-loader > p {
  display: flex;
  gap: 8px;
}

#g-loader {
  padding-left: 8px;
  padding-right: 8px;
}

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

.g-hidden {
  display: none;
}