textarea#id_description {
  resize: both;
}

#drop_zone {
  display: flex;
  justify-content: space-between;
  margin: 1em 0;
}

#drop_zone .dragDropFile, #drop_zone .files {
  min-height: 10em;
  height: 10em;
  width: 45%;
}

@media screen and (max-width: 1366px) {
  .topNav p input, #drop_zone .dragDropFile, #drop_zone .files {
    width: 48%;
  }
}

#drop_zone .dragDropFile {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='black' stroke-width='2' stroke-dasharray='10%2c 10' stroke-dashoffset='6' stroke-linecap='square'/%3e%3c/svg%3e");
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

#drop_zone .files {
  background: #FFF;
  overflow: scroll;
  height: 10em;
}

/* Handle */
.files::-webkit-scrollbar-thumb {
  background: #53575A;
}

#drop_zone .dragDropFile p, #drop_zone .dragDropFile label {
  color: #000;
  margin: 0;
  text-align: center;
}

#drop_zone .dragDropFile label {
  background: var(--mainColor);
  color: #FFF;
  padding: 0.2em 2em;
  border-radius: 1.5em;
  width: max-content;
  font-size: 0.8em;
}

.hide {
  display: none;
}

.files {
  padding: 0 1em;
}

.files > div {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.files > div * {
  font-family: 'Noto Sans TC';
}

.files svg {
  width: 2.5em;
  height: 2.5em;
  padding: 0;
  margin: 0;
  margin: 0.5em 1em 0.5em 0;
}

.fileName {
  width: calc(100% - 4.5em - 5em);
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2em;
}

.tool {
  width: 5.5em;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.tool img {
  width: 1.5em;
  display: block;
}


