@import url(https://fonts.googleapis.com/css?family=Open+Sans:400);
.file-uploader-frame {
	float: left;
	width: 100%;
	max-width:400px;
	height: 100%;
	padding:10px;
	border-radius: 2px;
	box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.3);
	background: rgba(98,125,77,1);
	background: -moz-linear-gradient(left, rgba(98,125,77,1) 0%, rgba(31,59,8,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(98,125,77,1)), color-stop(100%, rgba(31,59,8,1)));
	background: -webkit-linear-gradient(left, rgba(98,125,77,1) 0%, rgba(31,59,8,1) 100%);
	background: -o-linear-gradient(left, rgba(98,125,77,1) 0%, rgba(31,59,8,1) 100%);
	background: -ms-linear-gradient(left, rgba(98,125,77,1) 0%, rgba(31,59,8,1) 100%);
	background: linear-gradient(to right, rgba(98,125,77,1) 0%, rgba(31,59,8,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#627d4d', endColorstr='#1f3b08', GradientType=1 );
	color: #fff;
	font-family: 'Open Sans', Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.file-uploader-frame .file-uploader-area {
	margin: 0px;
	width: 100%;
	height: 250px;
	background: #fff;
	box-shadow: 8px 10px 15px 0 rgba(0, 0, 0, 0.2);
	border-radius: 3px;
}

.file-uploader-frame .file-uploader-title {
	font-size: 16px;
	color: #6ECE3B;
	line-height: 50px;
	height: 50px;
	border-bottom: 5px solid #D8D8D8;
	text-align: center;
}

.file-uploader-frame i{
	color:#000;
	font-size:50px;
	color:#6ECE3B;
}

.file-uploader-frame .file-dropzone {
	margin: 20px auto;
	z-index: 1;
	box-sizing: border-box;
	display: table;
	table-layout: fixed;
	width: 100px;
	height: 80px;
	border: 1px dashed #A4A4A4;
	border-radius: 3px;
	text-align: center;
	overflow: hidden;
}

.file-uploader-frame .file-dropzone.is-dragover {
	border-color: #666;
	background: #eee;
}
.file-uploader-frame .file-dropzone .uploader-content {
	display: table-cell;
	vertical-align: middle;
}
.file-uploader-frame .file-dropzone .file-upload {
	margin: 6px 0 0 2px;
}
.file-uploader-frame .file-dropzone .uploaded-filename {
	display: block;
	color: #676767;
	font-size: 14px;
	line-height: 18px;
}
.file-uploader-frame .file-dropzone .uploader-input {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
}

.file-uploader-frame .file-upload-btn {
	margin:10px auto;
	width: 140px;
	height: 40px;
	background: #6ECE3B;
	border-radius: 3px;
	text-align: center;
	line-height: 40px;
	font-size: 14px;
	box-shadow: 0 2px 0 0 #498C25;
	cursor: pointer;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.file-uploader-frame .file-upload-btn:hover {
	box-shadow: 0 2px 0 0 #498C25, 0 2px 10px 0 #6ECE3B;
}
.file-uploader-frame .file-uploader-bar {
	margin: auto;
	z-index: 1;
	width: 100%;
	height: 5px;
	background: #6ECE3B;
	-webkit-transition: all 3s ease-out;
	transition: all 3s ease-out;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	margin-top: -5px;
}
.file-uploader-frame .file-uploader-bar.active {
	-webkit-transform: scaleX(1) translate3d(0, 0, 0);
	transform: scaleX(1) translate3d(0, 0, 0);
}

.file-uploader-frame .upload-syncing {
	margin:0 auto;
	display:block;
	width:100%;
	text-align:center;
	opacity: 0;
	line-height:80px;
	overflow:hidden;
}
.file-uploader-frame .upload-syncing.active {
	-webkit-animation: upload-syncing 3.2s ease-in-out;
	animation: upload-syncing 3.2s ease-in-out;
}

.file-uploader-frame .upload-done {
	margin:0 auto;
	display:block;
	width:100%;
	text-align:center;
	opacity: 0;
	line-height:80px;
	overflow:hidden;
	margin-top:-80px;
}
.file-uploader-frame .upload-done.active {
	-webkit-animation: upload-done .5s ease-in 3.2s;
	animation: upload-done .5s ease-in 3.2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes upload-syncing {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 0;
  }
}

@keyframes upload-syncing {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 0;
  }
}
@-webkit-keyframes upload-done {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes upload-done {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
