@charset "UTF-8";

/*
 * jQuery File Upload UI Plugin CSS 6.10
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2010, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */

form.fileupload,
.fileupload table { 
  margin-bottom: 0
}

.fileinput-button {
  position: relative;
  overflow: hidden;
  float: left;
  margin-right: 4px;
}

.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translate(-300px, 0) scale(4);
  font-size: 23px;
  direction: ltr;
  cursor: pointer;
}

.fileupload-buttonbar .btn,
.fileupload-buttonbar .toggle {
  margin-bottom: 5px;
}

.files .progress {
  width: 200px;
  margin-bottom: 5px;
}

.progress-animated .bar {
  background: url(../img/progressbar.gif) !important;
  filter: none;
}
.fileupload-loading {
  position: absolute;
  left: 50%;
  width: 128px;
  height: 128px;
  background: url(../img/loading.gif) center no-repeat;
  display: none;
}

.fileupload-processing .fileupload-loading {
  display: block;
}


/*** JQUERY FILE UPLOAD
------------------------------------------------------------------------- ***/
.dropzone {
  position: relative;
  float: right;
  width: 100%;
  height: 100px;
  line-height: 50px;
  font-weight: bold;
  color: #dbdce1;
  background: url("../img/upload-100-white.png") no-repeat 100% 0%;
  border: 4px dashed #dbdce1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-shadow: 0 1px 0 #ffffff;
}

.dropzone .title {
  padding: 0 15px;
}

.dropzone.in {
  width: 100%;
  height: 100px;
  line-height: 100px;
}

.dropzone.hover {
  background: url("../img/upload-100-white.png") no-repeat 0 0;
}

.dropzone.hover .title {
  display: none;
}

.dropzone.fade {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 1;
}

/* Fix for IE 7: */

* + html .fileinput-button {
  padding: 2px 15px;
  margin: 1px 0 0 0;
}
 @media (max-width: 767px) {

.files .btn span {
  display: none;
}

.files .preview * {
  width: 40px;
}

.files .name * {
  width: 80px;
  display: inline-block;
  word-wrap: break-word;
}

.files .progress {
  width: 20px;
}

.files .delete {
  width: 60px;
}
}
