/*
UploadiFive
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
*/

.uploadifive-button {
    background-color: #e7eaeb;
    border-radius: 1px;
    color: #333;
    text-align: center;
    transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    width: 100%;
}

    .uploadifive-button input {
        cursor: pointer;
    }

    .uploadifive-button:hover {
        background-color: #ddd;
    }

.uploadifive-queue-item {
    background-color: #e7eaeb;
    border-radius: 1px;
    font-size: 13px;
    line-height: 16px;
    margin-top: 3px;
    padding: 5px 10px;
}

    .uploadifive-queue-item .close {
        background: url('../uploadifive/uploadifive-cancel.png') center no-repeat;
        display: block;
        float: right;
        height: 16px;
        overflow: hidden;
        text-indent: -9999px;
        width: 16px;
    }

    .uploadifive-queue-item .progress {
        height: 3px;
        margin-top: 5px;
        width: 100%;
    }

    .uploadifive-queue-item .progress-bar {
        background-color: #69b72f;
        height: 3px;
        width: 0;
    }

    .uploadifive-queue-item.error {
        background-color: #f20000;
        color: #fff;
    }

    .uploadifive-queue-item.complete {
        background-color: #69b72f;
        color: #fff;
    }
