/* ==========================================================
   MTH Forms Engine
   Upload Widget
   ========================================================== */

.upload-widget {
    margin-top: 10px;
}

.upload-list {
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    background: #fafafa;
    min-height: 55px;
    padding: 8px;
}

.upload-item {

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 8px 10px;

    border-bottom: 1px solid #ececec;

    font-size: 14px;

}

.upload-item:last-child {
    border-bottom: none;
}

.upload-name{

    font-weight:500;

    overflow:hidden;

    text-overflow:ellipsis;

    white-space:nowrap;

}

.remove-file {

    width: 28px;
    height: 28px;

    border: none;
    border-radius: 4px;

    background: #b5121b;
    color: white;

    cursor: pointer;

    font-weight: bold;
    font-size: 16px;

}

.remove-file:hover {

    background: #8e0f15;

}

.upload-toolbar {

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:15px;

}

#addFilesButton {

    padding: 8px 18px;

    border: none;
    border-radius: 4px;

    background: #555;
    color: white;

    cursor: pointer;

    font-size: 14px;

}

#addFilesButton:hover {

    background: #333;

}

#addFilesButton:disabled {

    background: #cccccc;

    cursor: not-allowed;

}

.upload-counter {

    font-size: 13px;
    color: #666;

}

.hidden-upload {

    display: none;

}
/*=========================================================
Upload Messages
=========================================================*/

.upload-message{

    display:none;

    margin-bottom:12px;

    padding:12px 14px;

    border-radius:6px;

    font-size:14px;

    font-weight:500;

    transition:opacity .25s ease;

}

.upload-message.show{

    display:block;

}

/* Error */

.upload-message.error{

    color:#842029;
    background:#f8d7da;
    border-left:5px solid #dc3545;

}

/* Warning */

.upload-message.warning{

    color:#664d03;
    background:#fff3cd;
    border-left:5px solid #ffc107;

}

/* Success */

.upload-message.success{

    color:#0f5132;
    background:#d1e7dd;
    border-left:5px solid #198754;

}

/* Information */

.upload-message.info{

    color:#055160;
    background:#cff4fc;
    border-left:5px solid #0dcaf0;

}