.custom-upload {
    position: relative;
    width: 100%;
}
.custom-upload input[type=file] {
	cursor: pointer;
	display: block;
	font-size: 0;
	height: 100%;
    opacity: 0;
	outline: none;
    position: relative;
	width: 100%;
    z-index: 2;
}
.custom-upload .fake-file {
	left: 0px;
    line-height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 1;
}
.custom-upload .fake-file input {
	background: #fff;
	border: none;
	border-radius: 4px;
	box-sizing: border-box;
	color: #000;
	font-family: 'Tahoma';
	font-size: 14px;
	padding: 5px 10px;
}
.custom-upload .fake-file input[type=button] {
	float: right;
}

.modal-form .custom-upload {
	height: 36px;
}
.modal-form .fake-file input {
	border-radius: 5px;
	height: 36px;
	padding: 6px 12px;
	width: calc(100% - 50px);
}
.modal-form .fake-file input[type=button] { width: 40px; }

.form-feedback-static .custom-upload {
	height: 50px;
}
.form-feedback-static .fake-file input {
	border-radius: 20px;
	border: 1px solid #fff;
	color: #222;
	height: 50px;
	padding: 0px 30px;
}