.upload-area{

    background-color: #f5f5f5;
    border: 5px dashed #002A5B;
    border-radius: 5px;
    padding: 20px;

}

.upload-area:hover{
    cursor: pointer;
}


#file{
    display: none;
}

/* Thumbnail */
.thumbnail{
    width: 80px;
    height: 80px;
    padding: 2px;
    border: 2px solid lightgray !important;
    border-radius: 3px;
    margin: 0 !important;
    text-align: center;
    position: relative;
    box-shadow: none !important;
}
.close{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    color: red;
    background-color: #ffffff;
    padding: 10px 5px;
    font-weight: bold;
    cursor: pointer;
}
.size{
    font-size:12px;
}
.progress-bar{
    width: 0%;
    height: 10px;
    margin: 10px 0;
    background-color: #002A5B;
}
.progress-bar.hide{
    display: none;
}
#previewfile{
    margin-top: 20px;
    display: flex;
    align-items: center;   
}
#previewfile .name{
    padding-left: 10px;
}