
@keyframes passing-through {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }
    30%, 70% {
        opacity: 1;
        transform: translateY(0px)
    }
    100% {
        opacity: 0;
        transform: translateY(-40px)
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }
    30% {
        opacity: 1;
        transform: translateY(0px)
    }
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }
    10% {
        transform: scale(1.1)
    }
    20% {
        transform: scale(1)
    }
}
.dropzone-wrap{
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}
.dropzone, .dropzone * {
    box-sizing: border-box
}
.dropzone {
    background-color: #fff;
	border: 2px dashed #C4C4C4;
	position: relative;
	border-radius: 6px;
    min-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}
.dropzone.dz-clickable {
    cursor: pointer
}
.dropzone.dz-clickable * {
    cursor: default
}
.dropzone.dz-clickable .dz-message, 
.dropzone.dz-clickable .dz-message * {
    cursor: pointer
}
.dropzone.dz-started .dz-message {
    display: none
}
.dropzone.dz-drag-hover,
.dropzone:hover {
    border-color: #FF3D57;
}
.dropzone.dz-drag-hover .dz-message {
    opacity: .5
}
.dropzone .dz-message {
    text-align: center;
    font-size: 10px;
    font-family: 'DMSansMedium';
    line-height: 1.2;
}
.dropzone .dz-message .icon-box{
    background: #F8F8F8;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 36px;
    font-size: 14px;
    margin-bottom: 20px;
    color: #FF3D57;
}
.dropzone .dz-message .dz-button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit
}
.dropzone .dz-preview {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ABABAB;
}
.dropzone .dz-preview:last-child{
    border-bottom: 0;
    margin-bottom: 0;
}
.dropzone .dz-preview.dz-complete {
	padding-bottom: 10px;
}
.dropzone .dz-preview:hover {
    z-index: 1000
}
.dropzone .dz-preview:hover .dz-details {
    opacity: 1
}
.dropzone .dz-preview.dz-file-preview .dz-image {
    background: #999;
    background: linear-gradient(to bottom, #eee, #ddd)
}
.dropzone .dz-preview.dz-file-preview .dz-details {
    opacity: 1
}
.dropzone .dz-preview.dz-image-preview {
    background: #fff
}
.dropzone .dz-preview.dz-image-preview .dz-details {
    transition: opacity 0.2s linear
}
.dropzone .dz-preview .dz-remove {
    text-align: center;
    cursor: pointer;
    font-family: 'Roboto Medium';
    margin-top: 10px;
    position: relative;
    z-index: 999;
}
.dropzone .dz-preview .dz-remove:hover {
    text-decoration: underline
}
.dropzone .dz-preview:hover .dz-details {
    opacity: 1
}
.dropzone .dz-preview .dz-details {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 11px;
    max-width: 100%;
    padding: 2em 1em;
    line-height: 1.1
}
.dropzone .dz-preview .dz-image img {
    display: block
}
.dropzone .dz-preview.dz-success .dz-success-mark {
    animation: passing-through .5s cubic-bezier(0.77, 0, 0.175, 1)
}
.dropzone .dz-preview.dz-error .dz-error-mark {
    opacity: 1;
    animation: slide-in .5s cubic-bezier(0.77, 0, 0.175, 1)
}
.dropzone .dz-preview .dz-success-mark, 
.dropzone .dz-preview .dz-error-mark {
    pointer-events: none;
    opacity: 0;
    z-index: 500;
    position: absolute;
    display: block;
    top: -3px;
    left: 0;
    background: #FF3D57;
    border-radius: 50%;
}
.dropzone .dz-preview .dz-success-mark svg, 
.dropzone .dz-preview .dz-error-mark svg {
    display: block;
    width: 20px;
    height: 20px
}
.dropzone-preview .dz-preview.dz-processing .dz-progress {
    opacity: 1;
    transition: all 0.2s linear
}
.dropzone-preview .dz-preview.dz-complete .dz-progress {
    opacity: 0;
    transition: opacity 0.4s ease-in
}
.dropzone-preview .dz-preview:not(.dz-processing) .dz-progress {
    animation: pulse 6s ease infinite
}
.dropzone-preview .dz-preview .dz-progress {
    opacity: 1;
    z-index: 1000;
    pointer-events: none;
    position: absolute;
    height: 4px;
    left: 0;
    bottom: 5px;
    width: calc(100% - 20px);
    background: #f8f8f8;
    -webkit-transform: scale(1);
    border-radius: 8px;
    overflow: hidden
}
.dropzone .dz-preview .dz-progress .dz-upload {
    background: #FF3D57;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    transition: width 300ms ease-in-out
}
.dropzone .dz-preview.dz-error .dz-error-message {
    display: block
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
    opacity: 1;
    pointer-events: auto
}
.dropzone .dz-preview .dz-error-message {
    pointer-events: none;
    z-index: 1000;
    position: absolute;
    display: block;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    font-size: 13px;
    left: 0;
    top: 100%;
    width: 100%;
    background: #FF3D57;
    background: linear-gradient(to bottom, #FF3D57, #FF3D57);
    padding: .5em 1.2em;
    color: #fff
}
.dropzone .dz-preview .dz-error-message:after {
    content: "";
    position: absolute;
    top: -6px;
    left: 64px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #FF3D57
}
.dz-default button{
    position: relative;
}
.dropzone.dropzone-preview{
    border: 1px solid #E0E0E0;
    margin: 0;
    display: block;
    padding: 10px;
}
.dropzone.dropzone-preview::before{
    content: 'Uploade Files';
    display: block;
    font-family: 'DMSansMedium';
    font-size: 14px;
    margin-bottom: 10px;
}
.dropzone .dz-preview .dz-details{
    padding: 0;
    opacity: 1;
}
.dropzone .dz-preview .dz-details{
    text-align: left;
    padding-left: 20px;
}
.dropzone .dz-preview .dz-filename{
    color: #333;
    margin-right: 15px;
    font-family: 'DMSansMedium';
}
.dropzone .dz-preview .dz-remove{
    position: relative;
    margin-top: 0;
    right: 0;
    top: 0;
}
.dropzone .dz-preview .dz-details{
    position: relative;
}
.dz-preview.dz-complete .dz-image,
.dz-preview.dz-complete .dz-size{
    display: none !important;
}
.dropzone-wrap .dz-default .dz-button{
    display: none;
}
.dropzone-wrap .dz-preview .dz-filename{
    word-wrap: break-word;
}
.dropzone-wrap .dz-preview .dz-filename::before {
	content: "\f15b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    background: #f8f8f8;
    padding: 0 5px;
    border-radius: 50%;
    font-size: 10px;
    color: #FF3D57;
}
.dropzone .dz-preview .dz-remove {
	position: absolute;
    color: #ABABAB;
    font-size: 12px;
}
.dropzone .dz-preview .dz-remove:hover{
    color: #5e5d5d;
}
.dropzone-wrap .dz-success-mark svg{
    display: none !important;
}
.dropzone-wrap .dz-error-mark{
    left: -3px !important;
    top: 0;
}
.dropzone-wrap .dropzone-preview .dz-preview.dz-complete .dz-progress {
	transition: 0s all;
}
.dropzone-wrap .dz-preview .dz-image, 
.dropzone-wrap .dz-preview .dz-size {
	display: none !important;
}
.dropzone-preview .upload-status{
    font-size: 8px;
    color: #656464;
}
.dropzone-preview  .upload-progress {
	position: absolute;
	right: 0;
	bottom: 4px;
    line-height: 1;
}