
/* fine uplouder */

.wls-uploader {
    position: relative;
    width: 100%;
  }
  .wls-upload-button {
    display: block;
    width: 105px;
    padding: 7px 0;
    text-align: center;
    color: #2f95b4;
    border:1px solid #2f95b4;
  }
  .wls-upload-button-hover {
    color: #fff;
    background-color: #2f95b4;
    border-color: #2f95b4;
  }
  .wls-upload-button-focus {
    outline: 1px dotted #000000;
  }
  .wls-upload-drop-area, .wls-upload-extra-drop-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 30px;
    z-index: 2;
    background: #FF9797;
    text-align: center;
  }
  .wls-upload-drop-area span {
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -8px;
    font-size: 16px;
  }
  .wls-upload-extra-drop-area {
    position: relative;
    margin-top: 50px;
    font-size: 16px;
    padding-top: 30px;
    height: 20px;
    min-height: 40px;
  }
  .wls-upload-drop-area-active {
    background: #FF7171;
  }
  .wls-upload-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .wls-upload-list li {
    margin: 0;
    padding: 9px;
    line-height: 15px;
    font-size: 16px;
    background-color: #FFF0BD;
  }

  .wls-upload-file {
  color:#999999;
  }
  .wls-upload-spinner {
    display: inline-block;
    background: url("/core/system/resources/assets/images/fineuploader/loading.gif");
    width: 15px;
    height: 15px;
    vertical-align: text-bottom;
  }
  .wls-drop-processing {
    display: none;
  }
  .wls-drop-processing-spinner {
    display: inline-block;
    background: url("/core/system/resources/assets/images/fineuploader/processing.gif");
    width: 24px;
    height: 24px;
    vertical-align: text-bottom;
  }
  .wls-upload-finished {
    display:none;
    width:15px;
    height:15px;
    vertical-align:text-bottom;
  }
  .wls-upload-retry, .wls-upload-delete {
    display: none;
    color: #ff0000;
  }
  .wls-upload-cancel, .wls-upload-delete {
  color: #ff0000;
  }
  .wls-upload-retryable .wls-upload-retry {
    display: inline;
  }
  .wls-upload-size, .wls-upload-cancel, .wls-upload-retry, .wls-upload-delete {
    font-size: 12px;
    font-weight: normal;
  color:#999999;
  }
  .wls-upload-delete{
  color:#ff0000;
  }
  .wls-upload-failed-text {
    display: none;
    font-style: italic;
    font-weight: bold;
  }
  .wls-upload-failed-icon {
    display:none;
    width:15px;
    height:15px;
    vertical-align:text-bottom;
  }
  .wls-upload-fail .wls-upload-failed-text {
    display: inline;
  }
  .wls-upload-retrying .wls-upload-failed-text {
    display: inline;
    color: #D60000;
  }
  .wls-upload-list li.wls-upload-success {
    background-color: #f1f1f1;
    color: #FFFFFF;
  }
  .wls-upload-list li.wls-upload-fail {
    background-color: #D60000;
    color: #FFFFFF;
  }
  .wls-progress-bar {
    background: -moz-linear-gradient(top,  rgba(30,87,153,1) 0%, rgba(41,137,216,1) 50%, rgba(32,124,202,1) 51%, rgba(125,185,232,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(50%,rgba(41,137,216,1)), color-stop(51%,rgba(32,124,202,1)), color-stop(100%,rgba(125,185,232,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* W3C */
    width: 0%;
    height: 15px;
    border-radius: 6px;
    margin-bottom: 3px;
    display: none;
  }