body.ajaxfileupload-overlay {
	position: relative;
	height: 100%;
}

body.ajaxfileupload-overlay:after {
	content: "";
	display: block;
	position: fixed; /* could also be absolute */ 
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
	background-color: rgba(0,0,0,0.2);
}
.ajaxfileupload-panel {
	z-index: 1000;
	border: solid 1px #999;
	transform: translate(-50%, -50%);
}

.ajaxfileupload-panel h4 {
	margin-bottom: 0;
}

#ajaxPanelClose {
	font-weight: bold;
	font-size: 30px;
	transform: rotate(45deg);
	cursor: pointer;
	position: absolute;
	top: 0px;
	right: 10px;
}

#ajaxFileUploadSubmit {
	padding: 3px 15px;
    background-color: #232848;
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
    max-width: 50%;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    border-radius: 5px;
}

#ajaxFileUploadSubmit:hover {
	background-color: #475089;
}

#ajaxFileUploadInner {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 20px;
}