/* Main container */
.jfumainpanel {
	width: 100%;
	font-family: Tahoma, Verdana, Segoe, sans-serif;
	font-size: 12px;
	background-color: #F2F2F8;
}

/* Modal dialog */
.jfumodalcontainer {
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 99999;
	opacity: 1;
	display: none;
	pointer-events: auto;
}

.jfumodalcontainer>div {
	width: 400px;
	position: absolute;
	left: 50%;
	top: 10px;
	margin-left: -220px;
	padding: 5px 20px 13px 20px;
	border-radius: 4px;
	border: 1px solid #aaa;
	background: #fff;
}

.jfumodalcontainer .jfuclose {
	color: #aaa;
	font-size: 15px;
	text-decoration: none;
	position: absolute;
	right: 5px;
	top: 2px;
}

.jfumodalcontainer .jfuclose:hover {
	color: #9191B3;
}

.jfumodalcontainer .jfuclose:before {
	content: "\274C";
}

/* Progress Panel */
.jfuprogresspanel {
	width: 100%;
}

.jfuprogressbar {
	width: 99%;
	margin: 16px 0 0 0;
}

.jfuprogressinfo {
	width: 100%;
	text-align: center;
}

/* Button panel */
.jfubuttonpanel {
	width: 100%;
}

.jfubuttonpaneltable {
	width: 100%;
}

.jfubuttonpaneltable tr td {
	text-align: center;
	vertical-align: middle;
}

.jfubuttonpaneltable td:first-child {
	text-align: left;
	width: 75%;
}

.jfubuttonpaneltable td:last-child {
	text-align: right;
}

.jfubutton {
	padding: 4px 10px 4px 10px;
	background-color: #008CBA;
	color: #F9F9F9;
	border-radius: 3px;
	border: 1px solid #007BA9;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.jfubutton:hover {
	color: #FFFFFF;
	background-color: #004ABA;
	border: 1px solid #004ABA;
}

.jfubutton:active {
	color: #FFFFFF;
	background-color: #3366FF;
	border: 1px solid #0000BA;
}

.jfubutton:disabled {
	color: #EEEEEE;
	background-color: #BBBBBB;
	border: 1px solid #7B7B7B;
	cursor: not-allowed;
}

.jfubutton:hover:disabled {
	color: #EEEEEE;
	background-color: #BBBBBB;
	border: 1px solid #7B7B7B;
}

.jfubutton_fileinput {
	display: none;
	visibility: hidden;
	width: 0;
	height: 0;
}

.jfubutton_selectfiles {
	padding: 4px 12px 4px 12px;
}

.jfubutton_selectfolders {
	padding: 4px 12px 4px 12px;
	display: none;
}

.jfubutton_start {
	padding: 4px 30px 4px 30px;
}

.jfubutton_cancel {
	padding: 4px 20px 4px 20px;
}

.jfubutton_overwrite {
	padding: 4px 10px 4px 10px;
	margin-top: 2px;
	margin-bottom: 2px;
	margin-right: 6px;
	margin-left: 0;
}

.jfubold {
	font-weight: bold;
}

.jfufail {
	color: #AA0000;
}

.jfuhidden {
	display: none;
}

.jfucenter {
	text-align: center;
	margin: auto;
}

.jfuellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* SPINNER */
.jfuspinner {
	display: none;
	margin: 1px auto 0;
	width: 50px;
	text-align: center;
}

.jfuspinner>div {
	width: 12px;
	height: 12px;
	background-color: #BBBBCC;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	-moz-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.jfuspinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	-moz-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.jfuspinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	-moz-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

/* JBU File panel */
.jbufilepanelcontainer {
	background-color: #F2F2F2;
	background: #F2F2F2 url("../img/cloud.png") no-repeat;
	background-position: 50% 50%;
	border: solid 1px #C1C3C5;
	height: 240px;
}

.jbufilepanelcontainer_hover {
	border: solid 1px #00C300;
	background-color: #F2F8F2;
}

.jbufilepanelempty {
	font-size: 36px;
	text-align: center;
	color: #B3B3B3;
}

.jbufilepanelbodycontainer {
	width: 100%;
	overflow: auto;
	max-height: 219px;
}

.jbufilepanelitems {
	display: table;
	margin: 0;
	padding: 0;
	width: 100%;
	background: #F5F5F5;
}

.jbufilepanelheader {
	display: none; /*table-row*/
	background-color: #e9e9e9;
	border-color: #666666;
	border-style: solid;
	border-width: 0 0 1px 0;
	padding: 3px;
}

.jbufilepanelheader div {
	display: table-cell;
	font-weight: bold;
	vertical-align: middle;
	text-align: left;
	background-color: #e9e9e9;
	color: #0057af;
}

.jbufilepanelheader_remove_link {
	width: 100%;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	color: #999999;
}

.jbufilepanelheader_remove_link:hover {
	text-decoration: none;
	color: #0000EE;
}

.jbufilepanelbody {
	display: table-row-group;
}

.jbufilepanelrow {
	display: table-row;
	background-color: #FFFFFF;
}

.jbufilepanelrow:nth-child(odd) {
	background-color: #ffffff;
}

.jbufilepanelrow:nth-child(even) {
	background-color: #f3f3f3;
}

.jbufilepanelrow:hover {
	background-color: #d3e9ff;
}

.jbufilepanelrow div {
	list-style: none;
	display: table-cell;
	border-color: #dddddd;
	border-style: solid;
	border-width: 0 0 1px 1px;
	padding: 4px 4px;
	vertical-align: middle;
	/*line-height:18px;*/
}

.jbufilepanelrow_filename span {
	display: inline;
	vertical-align: middle;
	border: none;
	padding: 0 0 0 3px;
	/*display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	width: 220px;
	text-overflow: ellipsis;*/
}

.jbufilepanelrow_filename  .jbufilepanelrow_fileicon {
	/*display: none;*/
	display: inline-block;
	content: '';
	width: 18px;
	height: 18px;
	border: none;
	padding: 0;
	background-color: transparent;
	background-image: url('../img/icons.png');
	background-repeat: no-repeat;
	background-size: 1100% 100%;
	background-position: 30% 0;
	vertical-align: middle;
	opacity: 0.55;
}

.jbufilepanelrow_filename[data-mimetype*="folder/"] .jbufilepanelrow_fileicon {
	background-position: 40% 0;
}

.jbufilepanelrow_filename[data-mimetype*="application/pdf"] .jbufilepanelrow_fileicon {
	background-position: 60% 0;
}

.jbufilepanelrow_filename[data-mimetype*="image/"] .jbufilepanelrow_fileicon {
	background-position: 50% 0;
}

.jbufilepanelrow_filename[data-mimetype*="video/"].jbufilepanelrow_fileicon {
	background-position: 90% 0;
}

.jbufilepanelrow_filename[data-mimetype*="text/"] .jbufilepanelrow_fileicon {
	background-position: 80% 0;
}

.jbufilepanelrow_filename[data-mimetype*="audio/"] .jbufilepanelrow_fileicon {
	background-position: 10% 0;
}

.jbufilepanelrow_filename[data-mimetype*="application/zip"] .jbufilepanelrow_fileicon, .jbufilepanelrow_filename[data-mimetype*="application/x-zip-compressed"] .jbufilepanelrow_fileicon, .jbufilepanelrow_filename[data-mimetype*="application/gzip"] .jbufilepanelrow_fileicon, .jbufilepanelrow_filename[data-mimetype*="application/x-rar-compressed"] .jbufilepanelrow_fileicon
	{
	background-position: 0 0;
}

.jbufilepanelrow_filename[data-mimetype*="application/msword"] .jbufilepanelrow_fileicon, .jbufilepanelrow_filename[data-mimetype*="application/vnd.openxmlformats-officedocument.wordprocessingml.document"] .jbufilepanelrow_fileicon {
	background-position: 100% 0;
}

.jbufilepanelrow_filename[data-mimetype*="application/vnd.ms-excel"] .jbufilepanelrow_fileicon, .jbufilepanelrow_filename[data-mimetype*="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"] .jbufilepanelrow_fileicon {
	background-position: 20% 0;
}

.jbufilepanelrow_filename[data-mimetype*="application/vnd.ms-powerpoint"] .jbufilepanelrow_fileicon, .jbufilepanelrow_filename[data-mimetype*="application/vnd.openxmlformats-officedocument.presentationml.presentation"] .jbufilepanelrow_fileicon {
	background-position: 70% 0;
}

.jbufilepanelrow_filesize {
	white-space: nowrap;
}

.jbufilepanelrow_filedate {
	/*white-space: nowrap;*/
}

.jbudelete:hover {
	text-decoration: none;
	color: #0000EE;
}

.jbudelete {
	text-decoration: none;
	color: #999999;
}

.jbudelete:before {
	content: "\274C"; /*"\26D4"; */
}