
.dm-uploader {
	border: 0.25rem dashed #A5A5C7;
	text-align: center;
}
.dm-uploader.active {
	border-color: red;

	border-style: solid;
} 
 
 #drop-area {
      border: 2px  dashed #A5A5C7;;
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      width: 100%;
      max-width: 500px;
      /* margin: 50px auto; */
      font-family: sans-serif;
      background-color: white;
    }
    #drop-area.highlight {
      border-color: purple;
    }

     #progress-bars {
     
      /* padding: 30px; */
      text-align: center;
      width: 100%;
      max-width: 500px;
      /* margin: 50px auto; */
      font-family: sans-serif;
    }
    .progress-bar {
      height: 20px;
      background-color: #f3f3f3;     
      width: 100%;
    }
    .progress-fill {
      height: 100%;
      width: 0;
      background-color:yellow;
      border-radius: 5px;
    }

    .progress-fill span {
    background: yellow;
    /* display: block; */
    font-size: 11px;
    text-align: right;
    justify-content: right;
    color: black;
    height: 100%;
    width: 0;
    line-height: 14px;
}

.dnd-upload-status .dnd-upload-details .name em {
    color: #444242;
    font-weight: 700;
}
.dnd-upload-status {
    display: flex;
    padding: 4px 0;
    align-items: center;
    position: relative;
}
 .dnd-upload-details {
    padding-left: 10px;
    width: calc(100% - 10px);
}


.dnd-upload-status .dnd-upload-details .name {
    color:white;
    padding: 4px 0;
    padding-right: 25px;
    display: flex
;
}
.dnd-upload-status .dnd-upload-details .name span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    padding-right: 10px;
}

 .dnd-upload-status .dnd-upload-details .remove-file

 {
    position: absolute;
    right: 0;
    top: 10px;
    text-decoration: none;
    box-shadow: none;
    outline: none;
}

 .dnd-upload-status .dnd-upload-details .remove-file span:after  {
    content: '';
    width: 15px;
    height: 15px;
    display: block;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url('assets/img/delete.svg');
}


#loader {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  justify-content: center;
  align-items: center;
  display: flex;
}

#loader img {
  width: 60px;
  height: 60px;
}

.delete-btn {
  width: 16px;            /* Smaller size */
  height: 16px;
  min-width: 16px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.2s ease;
  flex-shrink: 0;
/*this will change the delete immage colour from black to  white*/
  filter: invert(100%) brightness(100%);
}


.delete-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}
/* make it red 
.delete-btn .red {
  filter: invert(41%) sepia(77%) saturate(5642%) hue-rotate(349deg) brightness(94%) contrast(94%);
}

