.uploadzone-drag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.1px;
    padding-bottom: 0.1em;

}


.wrapper-drag {
    width: 498px;
    border-radius: 5px;
    padding: 30px;
}

.wrapper-drag .form-drag {
    height: 210px;
    display: flex;
    cursor: pointer;
    margin: 30px 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
    border: 4px dashed;
    padding: 20px;
}



.form-drag i {
    font-size: 50px;
}

.form-drag p {
    margin-top: 15px;
    font-size: 18px;
}

section .row-drag {
    margin-bottom: 10px;
    background: #E9F0FF;
    list-style: none;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section .row-drag i {
    font-size: 30px;
}

section .details-drag span {
    font-size: 14px;
}

.progress-area-drag .row-drag .content-drag {
    width: 100%;
    margin-left: 15px;
}

.progress-area-drag .details-drag {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    justify-content: space-between;
}

.progress-area-drag .content-drag .progress-bar-drag {
    height: 6px;
    width: 100%;
    margin-bottom: 4px;
    background: #fff;
    border-radius: 30px;
}

.content-drag .progress-bar-drag .progress-drag {
    height: 100%;
    width: 0%;
    background: #6990F2;
    border-radius: inherit;
}

.uploaded-area-drag {
    max-height: 232px;
    overflow-y: scroll;
}

.uploaded-area-drag.onprogress-drag {
    max-height: 150px;
}

.uploaded-area-drag::-webkit-scrollbar {
    width: 0px;
}

.uploaded-area-drag .row-drag .content-drag {
    display: flex;
    align-items: center;
}

.uploaded-area-drag .row-drag .details-drag {
    display: flex;
    margin-left: 15px;
    flex-direction: column;
}

.uploaded-area-drag .row-drag .details-drag .size-drag {
    color: #404040;
    font-size: 11px;
}

.uploaded-area-drag i.fa-check {
    font-size: 16px;
}

#snackbar-drag {
    visibility: hidden;
    min-width: 250px;
    /* margin: auto; */
    /* margin-left: -125px; */
    background-color: #ff4d4d;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    /* left: 50%; */
    bottom: 30px;
    font-size: 17px;
}

#snackbar-drag.show-drag {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes slide {
    0% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(25%);
    }
}