﻿.padding-4px {
    padding: 0.4rem;
}

.padding-8px {
    padding: 0.8rem;
}

.padding-16px {
    padding: 1.6rem;
}

.padding-top-4px {
    padding-top: 0.4rem;
}

.padding-top-8px {
    padding-top: 0.8rem;
}

.padding-top-16px {
    padding-top: 1.6rem;
}

.padding-bottom-4px {
    padding-bottom: 0.4rem;
}

.padding-bottom-8px {
    padding-bottom: 0.8rem;
}

.padding-bottom-16px {
    padding-bottom: 1.6rem;
}

.dz-success-mark {
    color: green;
}

.dz-error-mark {
    color: red;
}

.dropzone {
    border: 2px dotted rgb(0,0,128);
    border-radius: 16px;
}

    .dropzone .dz-preview.dz-nofile-preview {
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
        min-height: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    /*START SPECIFIC CUSTOMIZATION FOR DROPZONE */

    .dropzone .dz-preview.dz-error .dz-error-mark {
        -webkit-animation: 3s cubic-bezier(0.77, 0, 0.175, 1) passing-through-custom !important;
        animation: 3s cubic-bezier(0.77, 0, 0.175, 1) passing-through-custom !important;
    }

    .dropzone .dz-preview.dz-success .dz-success-mark {
        -webkit-animation: 3s cubic-bezier(0.77, 0, 0.175, 1) passing-through-custom !important;
        animation: 3s cubic-bezier(0.77, 0, 0.175, 1) passing-through-custom !important;
    }

    .dropzone .dz-preview.dz-error .dz-error-mark {
        opacity: 1 !important;
        top: 0% !important;
        margin-top: 0 !important;
        margin-left: -6px !important;
    }

    .dropzone .dz-preview.dz-success .dz-success-mark {
        opacity: 1 !important;
        top: 0% !important;
        margin-top: 0 !important;
        margin-left: -6px !important;
    }

.dz-size-position-right {
    position: absolute;
    top: 0%;
    right: 3.2rem;
}

@-webkit-keyframes passing-through-custom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }

    30%, 70% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes passing-through-custom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }

    30%, 70% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes passing-through-custom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }

    30%, 70% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


/*END SPECIFIC CUSTOMIZATION FOR DROPZONE */
