.drop-section1 img {
    width: 50%;
}
.drop-section1 {
    /* min-height: 150px; */
    /* border: 1px dashed #a8b3e3; */
    /* background-image: linear-gradient(#fff, #f1f6ff); */
    border-radius: 12px;
    position: relative;
}
.drop-section1 div.col:first-child{
    opacity: 1;
    visibility: visible;
    transition-duration: 0.2s;
    transform: scale(1);
    /* width: 300px; */
    margin: auto;
}
.drop-section1 div.col:last-child{
    font-size: 40px;
    font-weight: 700;
    color: #c0cae1;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 300px;
    height: 55px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.6);
    transition-duration: 0.2s;
}
/* i wll use "drag-over-effect" class in js */
.drag-over-effect1 div.col:first-child {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.1);
}
.drag-over-effect1 div.col:last-child {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.drop-section1 span {
    display: block;
    margin: auto;
    color: #707ea0;
    margin-bottom: 5px;
}
.drop-section1 button{
    color: #fff;
    background-image: linear-gradient(#ff400f, #F88C1F);
    border: none;
    /* margin: auto; */
    display: block;
    margin-bottom: 20px;
    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-section1 input {
    display: none;
}
.list-section1 {
    /* display: none; */
    text-align: left;
    /* margin: 0px 20px; */
    padding-bottom: 20px;
    margin-left: -30px;
    margin-right: 15px;
}
.list-section1 .list-title1 {
    font-size: 1rem;
    color: #707ea0;
    margin-left: 15px;
    font-weight: 600;
}
.list-section1 li {
    display: flex;
    margin: 15px 0px;
    padding-top: 5px;
    padding-bottom: 10px;
    padding-left: 5px;
    border-radius: 8px;
    transition-duration: 0.2s;
    align-items: center;
}
.list-section1 li:hover {
    box-shadow: #e3eaf9 0px 0px 4px 0px, #e3eaf9 0px 12px 16px 0px;
}
.list-section1 img {
    width: 100%;
}
.list-section1 li .col {
    flex: .1;
}
.list-section1 li .col:nth-child(1){
    flex: .15;
    text-align: center;
}
.list-section1 li .col:nth-child(2){
    flex: .75;
    text-align: left;
    color: #3e4046;
    padding: 8px 10px;
}
.list-section1 li .col:nth-child(2) div.name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 250px;
    display: inline-block;
    font-size: 0.85rem;
}
.list-section1 li .col .file-name span {
    color: #707ea0;
    float: right;
}
.list-section1 li .file-progress{
    width: 100%;
    height: 5px;
    margin-top: 8px;
    border-radius: 8px;
    background-color: #dee6fd;
}
.list-section1 li .file-progress span {
    display: block;
    width: 5%;
    height: 100%;
    border-radius: 8px;
    background-image: linear-gradient(120deg, #6b99fd, #9385ff);
    transition-duration: 0.4s;
}   
.list-section1 li .col .file-size {
    font-size: 0.75rem;
    margin-top: 5px;
    color: #707ea0;
}
.list-section1 li .right-wrong {
    display: flex;
    flex-direction: column;
}
.list-section1 li .col .fa-xmark,
.list-section1 li .col .fa-check{
    fill: #d28686;
    background-color: #dee6fd;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    position: relative;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0%);
    border-radius: 100%;
    cursor: pointer;
}
.list-section1 li .col .fa-check{
    color: #50a156;
    background-color: transparent;
}
.list-section1 li.complete span,
.list-section1 li.complete .file-progress,
.list-section1 li.complete .fa-xmark{
    display: none;
}
.list-section1 li.in-prog .file-size,
.list-section1 li.in-prog .fa-check{
    display: none;
}