/* >>>> dropzone <<<<< */
/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
#dZUpload {
    width: 100%;
}

@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);
    }
}

.dz-message {
    width: 500px;
    text-align: center;
    box-sizing: border-box;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
    border: 1px dashed #009eb9;
    border-radius: 15px;
    color: #009eb9;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    margin-top: 30px;
}

.dz-complete .complete,
.dz-complete .dz-image {
    display: none;
}

.dz-success-mark,
.dz-error-mark,
.dz-error-message {
    display: none;
}

.dz-message {
    width: 100%;
}

.dz-file-preview {
    width: 500px;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
}

.dz-preview {
    margin-top: 20px;
    text-align: center;
}

.dz-size {
    color: #009eb9;
    margin-bottom: 15px;
}

.dz-filename {
    color: #009eb9;
    margin-bottom: 15px;
}

.dz-remove {
    color: #ff4f46;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.4s;
    line-height: 1;
}

.dz-remove:hover {
    border-bottom-color: #ff4f46;
}
