.uc-container {
  text-align: center;
  width: 100%;
  margin: auto;
  border-radius: 16px;
}

.drop-section {
  min-height: 250px;
  border: 1px dashed #a8b3e3;
  background-color: #fff;
  border-radius: 12px;
  position: relative;
}
.drop-section .uc-col:first-child {
  opacity: 1;
  visibility: visible;
  transition-duration: 0.2s;
  transform: scale(1);
  width: 200px;
  margin: auto;
}
.drop-section .uc-col:last-child {
  font-size: 40px;
  font-weight: 700;
  color: #c0cae1;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 200px;
  height: 55px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.6);
  transition-duration: 0.2s;
}
.drop-section.drag-over-effect .uc-col:first-child {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.1);
}
.drop-section.drag-over-effect .uc-col:last-child {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.drop-section .cloud-icon {
  margin: 25px 0 20px;
}
.drop-section span,
.drop-section button {
  display: block;
  margin: auto;
  color: #707ea0;
  margin-bottom: 10px;
}
.drop-section button {
  color: white;
  background-color: #5874c6;
  border: none;
  outline: none;
  padding: 7px 20px;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.drop-section input {
  display: none;
}

.list-section {
  display: none;
  text-align: left;
  margin: 35px 0 35px 0;
  padding-bottom: 20px;
}
.list-section .list-title {
  font-size: 0.95rem;
  color: #707ea0;
}
.list-section li {
  display: flex;
  margin: 15px 0;
  padding: 4px;
  border-radius: 8px;
  transition-duration: 0.2s;
  border: 1px solid #efefef;
  background-color: #fff;
}
.list-section li:hover {
  box-shadow: #e3eaf9 0px 0px 4px, #e3eaf9 0px 12px 16px 0px;
}
.list-section li .thumb {
  max-width: 105px;
}
.list-section li .uc-col {
  flex: 0.1;
}
.list-section li .uc-col:nth-child(1) {
  flex: 0.15;
  text-align: center;
  display: grid;
  place-items: center;
}
.list-section li .uc-col:nth-child(2) {
  flex: 0.75;
  text-align: left;
  font-size: 0.9rem;
  color: #3e4046;
  padding: 8px 10px;
}
.list-section li .uc-col:nth-child(2) .name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 250px;
  display: inline-block;
}
.list-section li .uc-col:nth-child(2) .file-name span {
  color: #707ea0;
  float: right;
}
.list-section li .uc-col:nth-child(2) .file-size {
  font-size: 0.75rem;
  margin-top: 3px;
  color: #707ea0;
}
.list-section li .uc-col:nth-of-type(3) {
  margin-right: 10px;
  display: flex;
  gap: 25px;
  max-height: 21px;
  margin-top: 20px;
}
.list-section li .uc-col svg.cross,
.list-section li .uc-col svg.tick {
  fill: #8694d2;
  background-color: #dee6fd;
  position: relative;
  border-radius: 50%;
}
.list-section li .uc-col svg.tick {
  fill: #50a156;
  background-color: transparent;
}
.list-section li .file-progress {
  width: 100%;
  height: 5px;
  margin-top: 8px;
  border-radius: 8px;
  background-color: #dee6fd;
}
.list-section li .file-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 8px;
  background-image: linear-gradient(120deg, #6b99fd, #9385ff);
  transition-duration: 0.4s;
}
.list-section li.complete span,
.list-section li.complete .file-progress {
  display: none;
}
.list-section li.in-prog .file-size,
.list-section li.in-prog svg.tick {
  display: none;
}

.dark-theme .uc-container .drop-section {
  background: rgba(0, 0, 0, 0.15) !important;
}

.dark-theme .uc-container .list-section .list li {
  border: 1px solid #282828;
  background-color: rgba(0, 0, 0, 0.15);
}
.dark-theme .uc-container .list-section .list li:hover {
  box-shadow: #1a1a1a 0px 0px 4px, #1a1a1a 0px 12px 16px 0px;
}/*# sourceMappingURL=FileFlow.css.map */