﻿@charset "UTF-8";
/*
 * jQuery File Upload UI Plugin CSS 6.3.1
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2010, Sebastian Tschan
 * https://blueimp.net
 *
 * Additions by Akram El Assas:
 *  - added a custom dropzone style
 *  - updated responsive layout
    - IE10 fix
 * 
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */

.fileinput-button {
  position: relative;
  overflow: hidden;
  float: left;
  margin-right: 4px;
  /* Jim - adding these to make the button look like a plain-old button */
  border:1px solid;
  padding:3px;
  outline:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  background-color: #E2E2E2;
  height: 16px;
}
.fileinput-button:hover{
  background-color: #A6F4FF;
}
.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  border: solid transparent;
  /*Fix IE10*/
  /*border-width: 0 0 100px 200px;*/
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-transform: translate(-300px, 0) scale(4);
  direction: ltr;
  cursor: pointer;
}
.fileupload-buttonbar .btn,
.fileupload-buttonbar .toggle {
  margin-bottom: 5px;
}
.files .progress {
  width: 200px;
}
.progress-animated .bar {
  background: url("/Images/progressbar.gif") !important;
  filter: none;
}
.fileupload-loading {
  position: absolute;
  left: 50%;
  width: 128px;
  height: 128px;
  background: url("/Images/loading.gif") center no-repeat;
  display: none;
}
.fileupload-processing .fileupload-loading {
  display: block;
}

/* Fix for IE 6: */
* html .fileinput-button {
  line-height: 24px;
  margin: 1px -3px 0 0;
}

/* Fix for IE 7: */
* + html .fileinput-button {
  line-height: 22px;
  margin: 1px 0 0 0;
}

[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  *margin-right: .3em;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url("/Images/glyphicons-halflings.png");
  background-position: 14px 14px;
  background-repeat: no-repeat;
}

.icon-white {
  background-image: url("/Images/glyphicons-halflings-white.png");
}

.icon-ban-circle {
  background-position: -216px -96px;
}

.icon-upload {
  background-position: -144px -24px;
}
.icon-plus {
  background-position: -408px -96px;
}

.icon-trash {
  background-position: -456px 0;
}
