#upload {
  display: none;
}
#drop-upload {
  position: fixed;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
#drop-upload.show {
  opacity: 1;
}
#drop-upload:before {
  content: "Drop files/folders here.";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
}
.file {
  border-radius: 5px;
  transition: background-color 0.5s, color 0.5s;
  display: flex;
  align-items: center;
}
/* .file-list.grid .file {
  display: inline-block;
} */
.file:not(:last-child) {
  margin-bottom: 5px;
}
.file .name {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0px;
}
.file .name-contents {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px;
  background-color: #efefef;
  transition: color 0.5s, background-color 0.5s;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  cursor: pointer;
}
.file .file-link {
  font-size: 0.6em;
}
.file .folder .file-link,
.file .link .file-link {
  display: none;
}
.file .name-contents:hover {
  background-color: rgba(0, 123, 255, 0.7);
  color: #fff;
}
.file .icons {
  display: flex;
  align-items: center;
}
.icon {
  width: 20px;
  height: 20px;
  position: relative;
}
.icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  height: 80%;
  transform: translateX(-50%) translateY(-50%);
}
.icon.edit {
  margin-right: 5px;
  display: none;
}
.dialog .file-list {
  max-height: 320px;
  overflow: scroll;
}
.file .name svg {
  display: inline-block;
  width: 25px;
  height: 25px;
}
.file .name svg path {
  transition: 0.5s fill;
}
.file .name:hover svg path {
  fill: #fff;
}
.file .name .label {
  display: inline-block;
}
.file .name .file-icon {
  display: none;
  margin: 0px;
}
.file .thumbnail {
  display: none;
}
.file .name.file .file-icon.file {
  display: inline-block;
}
.file .name.folder .file-icon.folder {
  display: inline-block;
}
.file .name.link .file-icon.link {
  display: inline-block;
}
.file .name.file .label {
  padding-left: 8px;
}
.file .name.folder .label {
  padding-left: 10px;
}
.file .name.link .label {
  padding-left: 8px;
}
.title.file-list-title {
  padding: 10px;
  padding-bottom: 5px;
}
.title.file-list-title span {
  background-color: inherit;
  padding: 0px;
  margin-bottom: 0px;
}
.title.file-list-title a {
  display: none;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.file.thumb .name.file .file-icon.file {
  display: none;
}
.file.thumb .thumbnail {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}