/*
UploadiFive
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
*/

.uploadifive-button {
	display: inline-block; font-size: 14px; font-weight: 400; padding: 0.4em 0.7em 0.38em; text-align:center;
    transition: background-color 0.3s ease-in 0s, color 0.3s ease-in 0s; -moz-box-sizing: border-box; box-sizing: border-box;
    background-color: #fff; border-bottom:2px solid #b2b2b2;
    width: 100%;
    height: 32px;
    line-height: 20px;
}
.uploadifive-button:hover {
	color: #747980; text-decoration: none
}

.uploadifive-queue .error {
    display:none;
}

.uploadifive-queue-item {

}

.uploadifive-queue-item .filename {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;

    width: -moz-calc(100% - 63px);
    width: -webkit-calc(100% - 63px);
    width: calc(100% - 63px);

    display:inline-block;

    font-size:12px;

    vertical-align:middle;

    margin-left:2px;
}

.uploadifive-queue-item .fileinfo {
    width: 60px;

    display:inline-block;

    font-size:12px;

    text-align:right;

    vertical-align:middle;
}

.uploadifive-queue-item .close {
    display:none;
}
.uploadifive-queue-item .progress {
	text-align:left;
    width: 100%; 
    height: 4px; 
    background-color: rgba(216,216,216,.5); 
    -webkit-box-shadow: 0 1px rgba(255,255,255,.5), inset 0 1px rgba(23,23,23,.05); 
    -moz-box-shadow: 0 1px rgba(255,255,255,.5), inset 0 1px rgba(23,23,23,.05); 
    box-shadow: 0 1px rgba(255,255,255,.5), inset 0 1px rgba(23,23,23,.05); 
    z-index:100;
}
.uploadifive-queue-item .progress-bar {
	height:4px; z-index:101; margin:0;background-color: #6cd97e;
}