@charset "utf-8";
/**
 * File Upload CSS for Deal Software
 *
 * @copyright     Copyright (c) Joe Baker
 * @package       app.webroot.css
 * @author        Joe Baker
 *
 */

input[type="file"] {
    display: none;
}

input[type="file"].showfile {
	display: block;
}

.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}

.fileContainer {
    overflow: hidden;
    position: relative;
}

.fileContainer [type=file] {
    cursor: inherit;
    display: block;
    font-size: 999px;
    filter: alpha(opacity=0);
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 0;
}

.fileContainer {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
	background: #ffffff;
}

.fileContainer [type=file] {
    cursor: pointer;
}

.progress-bar {
	background-color: #12CC1A;
	height:20px;
	color: #FFFFFF;
	width:0%;
	-webkit-transition: width .3s;
	-moz-transition: width .3s;
	transition: width .3s;
	padding: 0px;
	margin: 0px;
}

.progress-div {
	border:#0FA015 1px solid;
	padding: 5px 0px;
	//margin:30px 0px;
	border-radius:
	4px;
	text-align:center;
	margin: 0px;
	width: 85%;
}

.image-div {
	display:none;
}

#fileCheck{
	display:none;
}

fieldset fieldset div {
	margin: 0px;
}