.fileExplorerCont {
  position: relative;
  width: 100%;
  height: 100%;
  /* overflow: auto; */
  display: flex;
  flex-direction: column;
  min-width: 300px;
  min-height: 200px;
}
.fileExplorerCont .row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.fileExplorerCont .navigationBar {
  padding: 5px 10px;
  background-color: #f0f0f0;
}
.fileExplorerCont .navigationBar span {
  cursor: pointer;
  color: #05d29e;
}
.fileExplorerCont .navigationBar span:hover {
  text-decoration: underline;
}
.fileExplorerCont .contentCont {
  position: relative;
  flex: 1;
}
.fileExplorerCont .contentArea {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  flex: 1;
  min-height: 140px;
  user-select: none;
}
.fileExplorerCont .filePreview {
  position: absolute;
  right: 0;
  border-left: 1px solid #e1e1e1;
  padding: 10px;
  width: 250px;
  height: calc(100% - 20px);
  background-color: #ddd;
  z-index: 2;
  overflow: auto;
}
.fileExplorerCont .itemNotes ul {
  list-style-type: disc;
  padding-left: 20px;
}
.fileExplorerCont .itemNotes ul li {
  margin-bottom: 5px;
}
.fileExplorerCont .notesTitle {
  font-weight: bold;
  margin-top: 10px;
}
.fileExplorerCont .item {
  border: none;
  width: 100px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 5px;
  padding: 5px;
  cursor: pointer;
  transition: all 0.5s;
}
.fileExplorerCont .item:hover {
  transform: translateY(-5px);
}
.fileExplorerCont .icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 48px;
  height: 48px;
}
.fileExplorerCont .folder-icon {
  background-image: url("images/folder.png");
}
.fileExplorerCont .parent-icon {
  background-image: url("images/parent.png");
}
.fileExplorerCont .file-icon {
  background-image: url("images/file.png");
}
.fileExplorerCont .img-icon img {
  height: 100%;
  width: auto;
  max-width: 100%;
}
.fileExplorerCont .label {
  font-size: 12px;
  margin-top: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: center;
}
.fileExplorerCont .contextMenu {
  position: absolute;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 2px 2px 5px #aaa;
  z-index: 1000;
  top: 0px;
  left: 0px;
}
.fileExplorerCont .contextMenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fileExplorerCont .contextMenu ul li {
  padding: 8px 12px;
  cursor: pointer;
}
.fileExplorerCont .contextMenu ul li:hover {
  background-color: #f0f0f0;
}
.fileExplorerCont .footerInfo {
  padding: 17px;
  justify-content: space-between;
}
#fileexplorer_buttons {
  display: flex;
  column-gap: 40px;
}
#fileexplorer_buttons button {
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
  background-color: var(--e-global-color-primary);
  border-style: none;
  border-radius: 5px;
}
#fileexplorer_buttons button:hover {
  background-color: var(--e-global-color-secondary);
}
.fileExplorerCont .footerInfo label {
  margin-right: 10px;
}
/* progress::-webkit-progress-bar {
  border-radius: 5px;
  background: lightgray;
  font-size: 20px;
}
progress::-webkit-progress-value {
  border-radius: 5px;
  background: var(--e-global-color-primary);
}
progress::-moz-progress-bar {
  border-radius: 5px;
  background: var(--e-global-color-primary);
  font-size: 20px;
} */
.progressCont {
  display: flex;
}
progress {
  font-size: 20px;
}
.fileExplorerCont .fileInfo {
  display: flex;
  flex-direction: column;
}
