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

.fileinput-button {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  /*font-size: 200px !important;*/
  direction: ltr;
  cursor: pointer;
}

/* Fixes for IE < 8 */
@media screen\9 {
  .fileinput-button input {
    font-size: 150% !important;
  }
}

.upload-file-content .upload-file {
  border: 1px dashed #ccc;
  border-radius: 0.25rem;
}
.upload-file-content .upload-file .text-lightGray {
  color: #ccc;
}
.upload-file-content .upload-file .btn-ec-regular {
  background-color: #fff;
  border-color: #595959;
  cursor: pointer;
}
.upload-file-content {
  margin-bottom: 10px;
}
.upload-file-content .thumb div {
  float: left;
}
.upload-file-content .c-form__fileUploadThumbnail {
  margin-bottom: 10px;
  display: inline-block;
  width: 170px;
  height: 170px;
  background-color: #f5f6f8;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  position: relative;
  margin: 4px;
}
.upload-file-content .c-form__fileUploadThumbnail .delete-image {
  font-family: FontAwesome;
  font-size: 18px;
  line-height: 1;
  padding: 5px;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  top: 2px;
  right: 2px;
  color: red;
}