.buildingInfo {
  width: 70%;
  margin: 0 auto;
  margin-top: 4em;
  margin-bottom: 4em;
}

.hrLine {
  height: 1px;
  width: 100%;
  background: var(--mainColor);
  margin-top: 4em;
  margin-bottom: 4em;
}

.topNav select[name=subject] {
  background-color: unset;
  border: solid 1px var(--mainColor);
  color: var(--mainColor);
  border-radius: 0;
  width: 50%;
  font-size: 1em;
  font-family: 'Noto Serif TC';
  font-weight: 500;
  margin-bottom: 1em;
}

.repairForm label, .fileup {
  color: var(--mainColor);
  display: inline-block;
  width: 15%;
  vertical-align: top;
  font-family: 'Noto Serif TC';
}

.repairForm input[type=text], .repairForm input[type=email], textarea#id_description {
  width: 85%;
}

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

#drop_zone .dragDropDiv {
  width: 85%;
  display: flex;
  justify-content: space-between;
}

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

.buildingInfo .btns {
  display: flex;
  justify-content: center;
}

.buildingInfo button {
  border: none;
  background: #666666;
  outline: none;
  color: #FFF;
  padding: 0.5em 3em;
  border-radius: 5px;
  margin: 2em 2em 2em 0em;
  font-size: 1.2em;
  font-family: 'Noto Serif TC';
  font-weight: 500;
}

@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;
}

@media screen and (max-width: 428px) {
  .buildingInfo button {
    padding: 0.5em 1.5em;
    margin: 2em 1em 2em 0em;
    font-size: 1em;
  }
}

