/*
UploadiFive
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
*/

.uploadifive-button {
	padding: 2px 10px;
	margin: 0px 0px 10px;
	box-sizing: border-box;
	background-color: rgba(255,50,50,0.75);;
	color: rgba(255, 255, 255, 0.75);
	font-family: avenir, 'Lato', sans-serif;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
	transition: 0.3s ease;
}
.uploadifive-button:hover{
	background-color: rgba(255,50,50,0.85);
}
.dis{
	pointer-events: none;
	background-color: rgba(70,70,70,0.75);
	color: rgba(255, 255, 255, 0.25);
}

.uploadifive-queue-item {
	background-color: #F5F5F5;
	font: 15px Arial, Helvetica, Sans-serif;
	margin-top: 10px;
	padding: 15px 10px 24px 10px;
}


.uploadifive-queue-item span{color: rgba(56, 56, 56, 0.8);}
.uploadifive-queue-item .close {
	background: url('uploadifive-cancel.png') 0 0 no-repeat;
	display: block;
	float: right;
	height: 16px;
	text-indent: -9999px;
	width: 16px;
}
.uploadifive-queue-item .progress, .uploadifive-queue-item .progreen {
	position: absolute;
	display: block;
	height: 15px;
	left: 0px;
	margin-top: 10px;
	background: #D0D0D0;
	width: 100%;
}
.uploadifive-queue-item .progreen{background: #40d47e}
.uploadifive-queue-item.error .progreen{background: rgb(255,50,50);}
.uploadifive-queue-item .progress-bar {
	background-color: rgb(255,50,50);
	position: absolute;
	display: block;
	height: 15px;
	left: 0px;
	transition: width 0.3s;
	width: 0;
}