@charset "UTF-8";
/*
 * jQuery File Upload Plugin CSS 1.3.0
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2013, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */



.fileinput-button {
  position: relative;
  overflow: hidden;
}
.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  -ms-filter: 'alpha(opacity=0)';
  font-size: 200px;
  direction: ltr;
  cursor: pointer;
}

/* Fixes for IE < 8 */
@media screen {
  .fileinput-button input {
    filter: alpha(opacity=0);
    font-size: 100%;
    height: 100%;
  }
}

.jupload-trash { 
   position:relative; 
   z-index:2;
   text-align: right;
   background:red;
   right:0px;
}

.trash-icon {
   background:#fff url(jfileupload/trash.png) no-repeat center right;
   background-size: 32px 32px;
   width:32px;
   height:32px;
   display: block;
   position: absolute;
   top:15px;
   right:15px;
   cursor:pointer;
}

.up-icon {
   background:url(jfileupload/upload.png) no-repeat center center;
   background-size: 50px 50px;
   width:100%;
   height:50px;
   display: block;
   margin-top:50px;
}

.error-icon {
   background:url(jfileupload/error.png) no-repeat center center;
   background-size: 50px 50px;
   width:100%;
   height:50px;
   display: block;
   margin-top:50px;
}

.up-content canvas { 
  height:100% !important;
}

#upload-progress { 
  margin-top:10px; 
}

#upload-progress div { 
  padding:5px !important; 
  text-align: center;
}

.progress  { 
  overflow: none; 
  height: auto;
}

.dropify-wrapper{
    display:block;
    position:relative;
    cursor:pointer;
    overflow:hidden;
    max-width:100%;
    height:200px;
    padding:5px 10px;
    font-size:14px;
    line-height:22px;
    color:#777;
    background-color:#FFF;
    background-image:none;
    text-align:center;
    border:2px solid #E5E5E5;
    -webkit-transition:border-color .15s linear;
    transition:border-color .15s linear
}

.dropify-wrapper:hover{
  background-size:30px 30px;
  background-image:-webkit-linear-gradient(135deg,#F6F6F6 25%,transparent 25%,transparent 50%,#F6F6F6 50%,#F6F6F6 75%,transparent 75%,transparent);
  background-image:linear-gradient(-45deg,#F6F6F6 25%,transparent 25%,transparent 50%,#F6F6F6 50%,#F6F6F6 75%,transparent 75%,transparent);-webkit-animation:stripes 2s linear infinite;animation:stripes 2s linear infinite
}

@-webkit-keyframes stripes{from{background-position:0 0}to{background-position:60px 30px}}
@keyframes stripes{from{background-position:0 0}to{background-position:60px 30px}}
@-webkit-keyframes rotate{0%{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg)}100%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}}
@keyframes rotate{0%{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg)}100%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}}

.jupload-preview{
  display:none;
}

.jupload-progress{
  /*display:none;*/
  margin-top:5px;
}

.jupload-fileerror{
  display:none;
}

.jupload-fileinfo{
  display:none;
  padding:15px;
}

.jupload-error{
  display:none;
  margin-top: 20px;
}

.jupload-progress div { 
  padding:5px !important; 
  text-align: center;
}

.jupload-image-file{
  position: relative;
  background: url(jfileupload/file.png) no-repeat center center;
  background-size: 100% 100%;
  width:100px;
  height:100px;
  margin:auto;
}

.jupload-image-file span {
  position:absolute;
  top:42%;
  right:2%;
  font-size: 1.5em;
  font-weight: bold;
  text-transform: uppercase;
  width:70px;
  height:40px;
  line-height:40px;
  text-align: center;
  display: inline-block;
}

/*#bootstrap*/


.progress {
  text-align: center;
  margin:10px 0 20px 0;
  background-color: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-bar-danger {
  background-color: #d9534f;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}

.alert-file-name{
  display:inline-block;
  width: 65%;
  margin-right: -4px;
  text-align: left !important;
  font-size: 13px;
  color:rgba(0,0,0,0.4);
}

.alert-file-size{
  display:inline-block;
  width: 30%;
  margin-right: -4px;
   font-size: 13px;
  color:rgba(0,0,0,0.4);
}

.alert hr { border:0; border-top:1px solid rgba(0,0,0,0.1); margin-bottom: 20px; }
.alert hr:last-child { border:0 !important; margin:0; }
