.queue {
  --item-margin: 8px;
  --item-width: 200px;
  --item-height: 120px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 calc(var(--item-margin) * -1);
}
@media screen and (max-width: 800px) {
  .queue {
    --item-margin: 4px;
    --item-width: 160px;
    --item-height: 100px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 380px) {
  .queue {
    --item-width: 132px;
    --item-height: 90px;
  }
}
.queue-item, .queue-addItem {
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--item-width);
  height: var(--item-height);
  margin: var(--item-margin);
  border-radius: 4px;
  border: 2px solid;
}
.queue-addItem {
  --color-text: rgb(0, 68, 255);
  --color-bg: rgb(221, 231, 255);
  display: block;
  background-color: var(--color-bg);
  border-color: var(--color-text);
  border-style: dashed;
  box-shadow: 0 0 0 2px var(--color-bg);
}
.queue-addItem:hover, .queue-addItem:focus {
  --color-text: rgb(0, 54, 233);
  --color-bg: rgb(191, 209, 255);
  cursor: pointer;
}
.queue-addItem:active {
  position: relative;
  top: 1px;
}
.queue-addItem > input[type=file] {
  cursor: inherit;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  flex-grow: 0;
  opacity: 0;
  display: block;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  width: var(--item-width);
  height: var(--item-height);
  margin-bottom: calc(var(--item-height) * -1);
  min-width: 0;
  min-height: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.queue-addItem > div {
  position: relative;
  z-index: 0;
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--item-width);
  height: var(--item-height);
  margin-bottom: calc(var(--item-height) * -1);
}
.queue-addItem > div svg {
  display: block;
  width: 48px;
  height: 48px;
  fill: var(--color-text);
}
.queue-item {
  --color-text: #111;
  --color-bg: #ddd;
  --color-border: #949494;
  color: var(--color-text);
  background-color: var(--color-bg);
  border-color: var(--color-border);
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  word-break: break-all;
  overflow: hidden;
}
.queue-item[data-status=error] {
  --color-text: #000;
  --color-bg: #ff5071;
  --color-border: #d11034;
}
.queue-item[data-status=processing], .queue-item[data-status=processed] {
  --color-text: #000;
  --color-bg: rgb(79, 197, 64);
  --color-border: rgb(12, 102, 0);
  --color-1: rgb(79, 197, 64);
  --color-2: rgb(172, 224, 165);
  animation-name: processingAnim;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.63, 0.13, 0.35, 0.92);
}
@keyframes processingAnim {
  0%, 100% {
    background-color: var(--color-1);
  }
  50% {
    background-color: var(--color-2);
  }
}
.queue-item[data-status=uploading] {
  --color-text: #000;
  --color-bg: rgb(79, 197, 64);
  --color-border: rgb(12, 102, 0);
  --color-1: rgb(79, 197, 64);
  --color-2: rgb(172, 224, 165);
  animation-name: uploadingAnim;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.63, 0.13, 0.35, 0.92);
  background-image: linear-gradient(to right, var(--color-1) calc((100% / 4) * 1), var(--color-2) calc((100% / 4) * 1), var(--color-2) calc((100% / 4) * 3), var(--color-1) calc((100% / 4) * 3));
  background-size: 200%;
}
@keyframes uploadingAnim {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: calc(-200% * 4);
  }
}
.queue-item[data-status=uploaded] {
  --color-text: #000;
  --color-bg: rgb(79, 197, 64);
  --color-border: rgb(0, 102, 42);
}
.queue-item > a {
  display: contents;
}
.queue-item img {
  display: block;
  width: calc(100% - var(--item-margin));
  height: calc(100% - var(--item-margin));
  object-fit: contain;
}
.queue-container {
  display: contents;
}

.batch-list {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.batch-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .batch-list li {
    flex-wrap: wrap;
  }
}
.batch-list li:not(:first-child) {
  margin-top: 1em;
}
.batch-list li .filename {
  word-break: break-all;
  margin-right: 1em;
  flex-shrink: 1;
  flex-grow: 1;
}
.batch-list li .date {
  flex-shrink: 0;
}
.batch-list li .thumbnail {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  margin-right: 1em;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid;
  background-color: #ddd;
}
@media screen and (max-width: 800px) {
  .batch-list li .thumbnail {
    width: 100px;
    height: 60px;
  }
}
@media screen and (max-width: 600px) {
  .batch-list li .thumbnail {
    width: 80px;
    height: 50px;
  }
}
.batch-list li .thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*# sourceMappingURL=image-batch.css.map */
