.upload-container input[type=file]{
    display: none;
}

.uploaded-file-card{
    width: 100%;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 2px 6px 0 rgba(67,89,113,.12);
}

.uploaded-file-card img{
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.uploaded-file-card button{
    border: none;
    width: 100%;
    display: block;
    font-size: 0.75rem;
    padding: 0.375rem 0;
    text-align: center;
    transition-duration: 0.3s;
    background: #ffe0db;
    color: #e6381a;
}

.uploaded-file-card button:hover{
    background: #e6381a;
    color: #ffffff;
}

.uploaded-file-card p{
    font-size: 12px;
    width: 100%;
    margin: 0;
    font-size: 12px;
    margin-left: 5px;
}

.uploaded-file-card-inner{
    padding: 7px 5px;
}

.uploaded-file-card textarea{
    font-size: 13px;
    width: 100%;
    border: none;
    height: 65px;
    resize: none;
    border: 1px solid #c7cdd48a !important;
    outline: none !important;
    padding: 5px;
    margin-bottom: 4px;
    border-radius: 5px;
}

.uploaded-file-card .progress{
    margin: 3px 0px;
}

.upload-btn{
    border: 2px dashed #c7cdd48a;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 0.3s;
    cursor: pointer;
    min-height: 215px;
}

.upload-btn:hover{
    border-color: #c7cdd4;
}

.upload-btn i{
    font-size: 30px;
}

.upload-btn h5{
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 7px;
}

.upload-btn p{
    font-size: 13px;
}

.uploaded-file-card img{
    background: url('../images/transparent-background.png');
    background-repeat: repeat;
    background-size: 153px;
}