.t-upload .clear {
	clear: both;
	float: none;
	margin: 0; padding: 0;
	height: 0; line-height: 0;
	overflow: hidden;
	width: 100%;
}
.t-upload .buttons {
	margin: 4px 0;
}

/*
.t-upload .buttons button {
	border: 2px solid #E8A01A;
	padding: 3px;
	border-radius: 4px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	display: inline-block;
	margin: 0 2px;
}
*/
.t-upload .buttons button:disabled {
	cursor: default;
}
.t-upload .buttons button.left {
	float: left;
}
.t-upload .buttons button.right {
	float: right;
}

.t-upload .buttons input[type="file"] {
	display: none;
}

.t-upload .progress-outer {
	width: 100%; padding: 4px 0; 
}
.t-upload .progress-outer .progress-inner {
	width: 0; height: 12px;
	background: transparent url(/images/progressbar.gif) center left repeat-x;
	border-radius: 4px;
	font-size: 9pt;
	text-align: center;
}

.t-upload .files-header,
.t-upload .files {
	min-width: 600px;
}
.t-upload .files:empty:before {
	display: block;
	content: "Nincsenek kijelölt fájlok";
	text-align: center;
}
.t-upload .files-header {
	margin-top: 4px;
	padding: 2px 4px;
	background-color: rgba(0, 0, 0, 0.3);
}
.t-upload .files div {
	padding: 2px 4px;
	background-color: rgba(0, 0, 0, 0.05);
}
.t-upload .files div:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.15);
}

.t-upload span.name {
	display: inline-block;
	width: 80%;
	text-align: left;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	vertical-align: top;
}
.t-upload span.size {
	display: inline-block;
	width: 20%;
	text-align: right;
	vertical-align: top;
}

.t-upload .buttons button {
	background-color: rgba(255,255,255,0.7) !important;
	border-width: 2px !important;
	border-style: solid !important;
	padding: 10px 20px !important;
	border-radius: 4px !important;
	display: inline-block !important;
	text-align: center !important;
	cursor: pointer !important;
	/* cursor: default !important; */
	text-decoration: none !important;
	transition: background 0.1s ease-out 0s, color 0.1s ease-out 0s !important;
	user-select: none !important;
	outline: none !important;
	font-size: 12px !important;
	height: auto !important;
	line-height: normal !important;
}
.t-upload .buttons button.close {
	opacity: 1 !important;
}
.t-upload .buttons button:not(:disabled):hover {
	color: rgba(255, 255, 255, 1) !important;
	background-color: rgba(245, 106, 106, 1) !important;
}

@media (max-width: 768px) {
	.t-upload {
		/*width: 100% !important;*/
		box-sizing: border-box !important;
	}
	.t-upload .buttons button {
		float: none !important;
		display: block !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}
	.t-upload .files-header,
	.t-upload .files {
		min-width: auto !important;
	}
}