html,
body {
  margin: 0;
  padding: 0;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 100%;
  font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  -webkit-font-smoothing: antialiased;
  color: var(--body-color);
  background-color: var(--body-bg-color);
  font-size: 0.95rem;
}

.hover-trigger .hover-target {
  display: none;
}

.hover-trigger:hover .hover-target {
  display: block;
}
[disabled] {
  opacity: 50%;
  cursor: not-allowed;
}

#file_editor {
  width: 100%;
  height: 100%;
  display: block;
}

.tui-image-editor-header {
  display: none;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.spinner,
.spinner:before {
  width: 30px;
  height: 30px;
  box-sizing: border-box;
}

.spinner:before {
  content: "";
  display: block;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  animation: spinner 0.6s linear infinite;
}

/* Animations */

.spinner-add,
.spinner-remove {
  animation-fill-mode: both;
  animation-duration: 0.4s;
}

.spinner-add {
  animation-name: spinner-add;
}

@keyframes spinner-add {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.spinner-remove {
  animation-name: spinner-remove;
}

@keyframes spinner-remove {
  to {
    transform: scale(0);
  }
}

.ace_search {
  color: black !important;
}
