.upload_button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--element);
  border: 3px var(--outline) solid;
  border-radius: 2rem;
}

.big_upload_button {
  fill: var(--text-color);
  width: 2.5rem;
  padding: .75rem;
}
.small_upload_button {
  fill: var(--text-color);
  width: 1rem;
  padding: .5rem;
}

.bg_dim {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, .3);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload_panel {
  display: flex;
  flex-direction: column;
  width: 24rem;
  padding: 1rem;
  background-color: var(--element);
  opacity: 1;
  border: var(--outline) 3px solid;
  border-radius: 1rem;
}

input[type="file"] {
  display: none;
}

.upload_text {
  font-size: var(--text-medium);
  color: var(--text-color);
  padding: 0;
  margin: .5rem;
}

.dl_input {
  height: 1.5rem;
  background-color: var(--element);
  border: var(--outline) 2px solid;
  border-radius: .25rem;
  width: 4rem;
  color: var(--text-color);
  font-size: var(--text-small);
  margin: 0.5rem;
  text-align: right;
}
.dl_input:disabled {
  opacity: .5;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

.lifetime {
  background-color: var(--element);
  border: var(--outline) 2px solid;
  border-radius: .25rem;
  font-size: var(--text-small);
  color: var(--text-color);
  height: 2rem;
}

.upload {
  background-color: var(--element);
  border: var(--outline) 2px solid;
  border-radius: .25rem;
  height: 1.75rem;
}
.upload.disabled {
  opacity: .5;
}

.uploaded_panel {
  display: flex;
  flex-direction: column;
  width: 36rem;
  padding: .5rem;
  background-color: var(--element);
  opacity: 1;
  border: var(--outline) 3px solid;
  border-radius: 1rem;
}

.uploaded_title {
  font-size: var(--text-large);
  color: var(--text-color);
  margin: .25rem;
  padding-bottom: .5rem;
}
