.FileUploader {
  position: fixed;
  inset: 0;
  background: #fff;
  padding: 0.5rem;
  z-index: 12;
  transition: var(--file-animationBase);
}

.FileUploader:not(.is-visible) {
  opacity: 0;
  pointer-events: none;
}

.FileUploader-header {
  position: sticky;
  display: flex;
  align-items: center;
  padding: 0.3125em 0.75em;
  border-radius: 0.5em;
  background: #f5f5f5;
}

.FileUploader-header button[type=submit] {
  margin-left: auto;
}

.FileUploader input[type=file] {
  visibility: hidden;
  height: 0;
  width: 0;
  opacity: 0;
  pointer-events: none;
}

.FileUploader-queue {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 8em);
  margin-top: 2em;
  border: 0.25rem dashed transparent;
  border-radius: 0.25rem;
  transition: var(--file-animationBase);
}

.FileUploader-queue.is-empty {
  border-color: rgba(0, 0, 0, 0.1);
}

.FileUploader-queue.is-dragging {
  border-color: var(--file-colorPrimary);
}

.FileUploader-queue.is-dragging:before {
  opacity: 1;
}

.FileUploader-queue:before {
  content: "";
  position: absolute;
  inset: 1rem;
  opacity: 0;
  background: #eee;
  border-radius: 0.5rem;
  pointer-events: none;
  transition: inherit;
}

.FileUploader-queueInner {
  display: inline-grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  grid-gap: 1em;
}

.FileUploader-file {
  position: relative;
  margin-bottom: 1.5rem;
}

.FileUploader-file figure {
  position: relative;
  display: flex;
  border-radius: 0.25em;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
}

.FileUploader-queue.is-uploading .FileUploader-file figure img {
  opacity: 0.12;
}

.FileUploader-file figure:after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  transition: inherit;
}

.FileUploader-file img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25em;
  transition: var(--file-animationBase);
}

@supports not (aspect-ratio: 1) {
  .FileUploader-file {
    padding-top: 100%;
  }
  .FileUploader-file figure {
    position: absolute;
    inset: 0;
  }
}
.FileUploader-fileName {
  display: flex;
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75em;
  max-width: calc(100% - 1em);
}

.FileUploader-fileName > span {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.FileUploader-fileName:after {
  content: "." attr(data-extension);
}

.FileUploader-fileRemove {
  position: absolute;
  top: 0;
  right: 0;
  width: 2em;
  height: 2em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  background: #ddd;
  cursor: pointer;
  transform: translate(25%, -25%);
  transition: var(--file-animationBase);
}

.FileUploader-fileRemove:hover {
  background: var(--file-colorPrimary);
  color: #fff;
}

.FileUploader .CircularProgress {
  display: inline-flex;
  position: absolute;
  top: calc(50% - 1.5em);
  left: calc(50% - 1.5em);
  width: 3em;
  height: 3em;
}

.FileUploader .CircularProgress-container {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.FileUploader .CircularProgress-graphic {
  fill: transparent;
}

.FileUploader .CircularProgress-track {
  stroke: transparent;
}

.FileUploader .CircularProgress-circle {
  stroke: var(--file-colorPrimary);
  stroke-dashoffset: var(--progress-value);
  transition: stroke-dashoffset 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.FileUploader-emptyText {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.FileUploader-emptyText .BiggerText {
  display: inline-block;
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.FileUploader-emptyText button {
  margin-top: 1.2em;
}

#app {
  --file-fontPrimary: Roboto, Avenir, Helvetica, Arial, sans-serif;
  --file-colorPrimary: #ec7238;
  --file-animationBase: all .24s ease-in-out;
  font-family: var(--font-primary, var(--file-fontPrimary));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;
}

.StyledButton {
  font-size: 0.75rem;
  line-height: 2.75em;
  font-weight: 500;
  letter-spacing: 0.0892857143em;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 64px;
  border: none;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  overflow: visible;
  vertical-align: middle;
  border-radius: var(--mdc-shape-small, 4px);
  padding: 0 16px;
  height: 2.75em;
  background: var(--file-colorPrimary);
  color: #fff;
  cursor: pointer;
}

.StyledButton--outline {
  background: transparent;
  border: 1px solid var(--file-colorPrimary);
  color: var(--file-colorPrimary);
}

.StyledButton--bigger {
  font-size: 0.875rem;
}

.StyledButton[disabled] {
  background: #bbb;
  pointer-events: none;
}

.StyledInput {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  padding: 0 1em;
}

.FileExplorer[data-v-099eb0d8] {
  position: relative;
}

.FileExplorer-header[data-v-099eb0d8] {
  position: sticky;
  top: 0;
  display: flex;
  gap: 0.5em;
  padding: 0.5em 0.75em;
  border-radius: 0.5em;
  background: #f5f5f5;
  z-index: 10;
}

.FileExplorer-deleteButtons[data-v-099eb0d8] {
  padding-left: 0.8em;
  margin-left: 0.8em;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.FileExplorer-search[data-v-099eb0d8] {
  margin-left: auto;
}

.FileExplorer-grid[data-v-099eb0d8] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  grid-gap: 1em;
}

.FileExplorer-locked[data-v-099eb0d8] {
  background: red;
  opacity: 0.7;
}

.FileExplorer-file[data-v-099eb0d8] {
  position: relative;
  margin-bottom: 1.5rem;
  grid-column-start: 1;
}

.FileExplorer-file ~ .FileExplorer-file[data-v-099eb0d8] {
  grid-column-start: unset;
}

.FileExplorer-file figure[data-v-099eb0d8] {
  position: relative;
  display: flex;
  border-radius: 0.25em;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  transition: var(--file-animationBase);
}

.FileExplorer-file figure[data-v-099eb0d8]:hover {
  opacity: 0.8;
}

.FileExplorer-file figure[data-v-099eb0d8]:after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  transition: inherit;
}

.FileExplorer-file img[data-v-099eb0d8] {
  border-radius: 0.25em;
  transition: var(--file-animationBase);
}

.FileExplorer-file img.image-thumbnail[data-v-099eb0d8] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.FileExplorer-file img.icon-thumbnail[data-v-099eb0d8] {
  width: 50%;
  height: 50%;
  margin: 25%;
}

@supports not (aspect-ratio: 1) {
  .FileExplorer-file[data-v-099eb0d8] {
    padding-top: 100%;
  }
  .FileExplorer-file figure[data-v-099eb0d8] {
    position: absolute;
    inset: 0;
  }
}
.FileExplorer-fileName[data-v-099eb0d8] {
  display: flex;
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75em;
  max-width: calc(100% - 1em);
}

.FileExplorer-fileName > span[data-v-099eb0d8] {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.FileExplorer-fileName[data-v-099eb0d8]:after {
  content: "." attr(data-extension);
}

.FileExplorer-filePicker[data-v-099eb0d8] {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
}

.FileExplorer-file.is-selected figure img[data-v-099eb0d8] {
  transform: scale(0.94);
}

.FileExplorer-file.is-selected figure[data-v-099eb0d8]:after {
  box-shadow: inset 0 0 0 0.125em var(--file-colorPrimary);
}

.FileExplorer-file.is-selected .FileExplorer-fileName[data-v-099eb0d8] {
  font-weight: 700;
}

.FileExplorer-folder[data-v-099eb0d8] {
  text-align: center;
  padding-bottom: 0.5em;
}

.FileExplorer-folderInner[data-v-099eb0d8] {
  display: inline-grid;
  width: 80%;
  cursor: pointer;
}

.FileExplorer-folderInner[data-v-099eb0d8]:hover {
  opacity: 0.8;
}

.FileExplorer-folderName[data-v-099eb0d8] {
  font-size: 0.75em;
  margin-top: -0.4em;
  word-break: break-word;
}

.FileExplorer-statusText[data-v-099eb0d8] {
  grid-column: 1/-1;
  margin: 4em 0 2.4em;
  font-size: 0.875em;
  text-align: center;
  opacity: 0.4;
  pointer-events: none;
}

.LinearProgress[data-v-245707d6] {
  display: none;
  position: relative;
  width: 100%;
  height: 0.25rem;
  transform: translateZ(0);
  outline: 1px solid transparent;
  overflow: hidden;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.6, 1);
}

.LinearProgress-bar[data-v-245707d6] {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: none;
}

.LinearProgress-barInner[data-v-245707d6] {
  display: inline-block;
  position: absolute;
  width: 100%;
  animation: none;
  border-top: 0.25rem solid var(--file-colorPrimary);
}

.LinearProgress-bar--primary[data-v-245707d6] {
  left: -145.166611%;
  animation: bar-primary-translate-245707d6 2s linear infinite;
}

.LinearProgress-bar--primary > .LinearProgress-barInner[data-v-245707d6] {
  animation: bar-primary-scale-245707d6 2s linear infinite;
}

.LinearProgress-bar--secondary[data-v-245707d6] {
  left: -54.888891%;
  animation: bar-secondary-translate-245707d6 2s linear infinite;
}

.LinearProgress-bar--secondary > .LinearProgress-barInner[data-v-245707d6] {
  animation: bar-secondary-scale-245707d6 2s linear infinite;
}

@keyframes bar-primary-translate-245707d6 {
  0% {
    transform: translateX(0);
  }
  20% {
    animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    transform: translateX(0);
  }
  59.15% {
    animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    transform: translateX(83.67142%);
  }
  to {
    transform: translateX(200.611057%);
  }
}
@keyframes bar-primary-scale-245707d6 {
  0% {
    transform: scaleX(0.08);
  }
  36.65% {
    animation-timing-function: cubic-bezier(0.334731, 0.12482, 0.785844, 1);
    transform: scaleX(0.08);
  }
  69.15% {
    animation-timing-function: cubic-bezier(0.06, 0.11, 0.6, 1);
    transform: scaleX(0.661479);
  }
  to {
    transform: scaleX(0.08);
  }
}
@keyframes bar-secondary-translate-245707d6 {
  0% {
    animation-timing-function: cubic-bezier(0.15, 0, 0.515058, 0.409685);
    transform: translateX(0);
  }
  25% {
    animation-timing-function: cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);
    transform: translateX(37.651913%);
  }
  48.35% {
    animation-timing-function: cubic-bezier(0.4, 0.627035, 0.6, 0.902026);
    transform: translateX(84.386165%);
  }
  to {
    transform: translateX(160.277782%);
  }
}
@keyframes bar-secondary-scale-245707d6 {
  0% {
    animation-timing-function: cubic-bezier(0.205028, 0.057051, 0.57661, 0.453971);
    transform: scaleX(0.08);
  }
  19.15% {
    animation-timing-function: cubic-bezier(0.152313, 0.196432, 0.648374, 1.004315);
    transform: scaleX(0.457104);
  }
  44.15% {
    animation-timing-function: cubic-bezier(0.257759, -0.003163, 0.211762, 1.38179);
    transform: scaleX(0.72796);
  }
  to {
    transform: scaleX(0.08);
  }
}
html[data-v-aa8d78b2] {
  background-color: #fff;
}

.container[data-v-aa8d78b2] {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.container img[data-v-aa8d78b2] {
  width: 100%;
}

.pinModalOverlay[data-v-aa8d78b2] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

textarea[data-v-aa8d78b2] {
  width: 100%;
  height: 100px;
  border: none;
  outline: none;
  resize: none;
  font-size: 16px;
  padding: 10px;
  margin-bottom: 10px;
}

ul[data-v-e4f97f4d] {
  position: relative;
  margin: 1.5em 0 1.25em;
  padding: 0 0.5em 0.75em;
  font-size: 0.875em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 8;
}

ul li[data-v-e4f97f4d] {
  display: inline-block;
  padding: 0;
}

ul li[data-v-e4f97f4d]:not(:first-child):before {
  content: "/";
  margin: 0 0.5em;
}

ul li[data-v-e4f97f4d]:last-child {
  opacity: 0.8;
  pointer-events: none;
}

ul li span[data-v-e4f97f4d] {
  cursor: pointer;
}

ul li span[data-v-e4f97f4d]:hover {
  text-decoration: underline;
}

.LoaderOverlay[data-v-2b7a0abf] {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.6, 1);
  z-index: 4;
}

.LoaderOverlay[data-v-2b7a0abf]:not(.is-visible) {
  opacity: 0;
  pointer-events: none;
}

.CircularProgress[data-v-2b7a0abf] {
  display: inline-flex;
  position: relative;
  width: 3em;
  height: 3em;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.6, 1) 0ms;
}

.CircularProgress-container[data-v-2b7a0abf] {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 0;
  letter-spacing: 0;
  white-space: nowrap;
  animation: container-rotate-2b7a0abf 1.5682352941s linear infinite;
}

.CircularProgress-layer[data-v-2b7a0abf] {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spinner-layer-rotate-2b7a0abf 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.CircularProgress-graphic[data-v-2b7a0abf] {
  position: absolute;
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke: var(--file-colorPrimary);
}

.CircularProgress-circle[data-v-2b7a0abf] {
  display: inline-flex;
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.CircularProgress-circle .CircularProgress-graphic[data-v-2b7a0abf] {
  width: 200%;
}

.CircularProgress-clipper[data-v-2b7a0abf] {
  display: inline-flex;
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.CircularProgress-clipper .CircularProgress-graphic[data-v-2b7a0abf] {
  width: 200%;
}

.CircularProgress-left .CircularProgress-graphic[data-v-2b7a0abf] {
  animation: left-spin-2b7a0abf 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.CircularProgress-right .CircularProgress-graphic[data-v-2b7a0abf] {
  left: -100%;
}

.CircularProgress-gapPatch[data-v-2b7a0abf] {
  position: absolute;
  top: 0;
  left: 47.5%;
  box-sizing: border-box;
  width: 5%;
  height: 100%;
  overflow: hidden;
}

.CircularProgress-gapPatch .CircularProgress-graphic[data-v-2b7a0abf] {
  left: -900%;
  width: 2000%;
  transform: rotate(180deg);
}

@keyframes container-rotate-2b7a0abf {
  to {
    transform: rotate(1turn);
  }
}
@keyframes spinner-layer-rotate-2b7a0abf {
  12.5% {
    transform: rotate(135deg);
  }
  25% {
    transform: rotate(270deg);
  }
  37.5% {
    transform: rotate(405deg);
  }
  50% {
    transform: rotate(540deg);
  }
  62.5% {
    transform: rotate(675deg);
  }
  75% {
    transform: rotate(810deg);
  }
  87.5% {
    transform: rotate(945deg);
  }
  to {
    transform: rotate(3turn);
  }
}
@keyframes left-spin-2b7a0abf {
  0% {
    transform: rotate(265deg);
  }
  50% {
    transform: rotate(130deg);
  }
  to {
    transform: rotate(265deg);
  }
}
@keyframes right-spin-2b7a0abf {
  0% {
    transform: rotate(-265deg);
  }
  50% {
    transform: rotate(-130deg);
  }
  to {
    transform: rotate(-265deg);
  }
}
.CreateFolder-aside[data-v-2a198453] {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 12;
  transition: var(--file-animationBase);
}

.CreateFolder-aside[data-v-2a198453]:not(.is-visible) {
  opacity: 0;
  pointer-events: none;
}

.CreateFolder-whiteness[data-v-2a198453] {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.CreateFolder-inner[data-v-2a198453] {
  display: flex;
  align-items: center;
  gap: 0.5em;
  width: 24em;
  max-width: 92%;
  position: relative;
  z-index: 2;
}

.CreateFolder-inner input[data-v-2a198453] {
  flex: 1;
  font-size: 0.875em;
  line-height: 2.75em;
  height: 2.75em;
}

.pin {
  position: absolute;
  z-index: 1;
  background-color: #f44336;
  border-radius: 50%;
  cursor: pointer;
  /* Has to be 2x the value used in calc() in rendering for it to center property! */
  width: 16px;
  height: 16px;
}

.pin:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 15px;
  height: 15px;
  background-color: #ff8720;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.5s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.8);
  }
}
.tooltiptext {
  position: absolute;
  z-index: 2;
  box-sizing: border-box;
  overflow: scroll;
  width: 300px;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: justify;
  border-radius: 6px;
}

.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0;
}

[data-tippy-root] {
  max-width: calc(100vw - 10px);
}

.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  outline: 0;
  transition-property: transform, visibility, opacity;
}

.tippy-box[data-placement^=top] > .tippy-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  transform-origin: center top;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  transform-origin: center bottom;
}

.tippy-box[data-placement^=left] > .tippy-arrow {
  right: 0;
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  transform-origin: center left;
}

.tippy-box[data-placement^=right] > .tippy-arrow {
  left: 0;
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  transform-origin: center right;
}

.tippy-box[data-inertia][data-state=visible] {
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333;
}

.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
}

.tippy-box[data-animation=scale][data-placement^=top] {
  transform-origin: bottom;
}

.tippy-box[data-animation=scale][data-placement^=bottom] {
  transform-origin: top;
}

.tippy-box[data-animation=scale][data-placement^=left] {
  transform-origin: right;
}

.tippy-box[data-animation=scale][data-placement^=right] {
  transform-origin: left;
}

.tippy-box[data-animation=scale][data-state=hidden] {
  transform: scale(0.5);
  opacity: 0;
}