/* Drag & drop */

.drag-area {
    border: 2px dashed #dddddd;
    height: 320px;
    /*width: 700px;*/
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #F1F2F4;
    padding-bottom: 30px;
}

.drag-area.active {
    border: 2px solid #dddddd;
}

.drag-area .icon {
    font-size: 100px;
    color: #dddddd;
}

.drag-area header {
    font-size: 22px;
    font-weight: 500;
    color: #657781;
}

.drag-area span {
    font-size: 22px;
    font-weight: 500;
    color: #657781;
    margin: 10px 0 15px 0;
}

.drag-area .fas.fa-cloud-upload-alt {
    color: #657781;
}

/*
.drag-area button {
    padding: 10px 25px;
    font-size: 20px;
    font-weight: 500;
    border: none;
    outline: none;
    background: #dddddd;
    color: #5256ad;
    border-radius: 5px;
    cursor: pointer;
}
*/

.drag-area img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}