/* JHf, V3, Styly pro JQuery-file-upload */
.dropzone {
  background: #EEEEEE;
  border: 3px dashed lightgrey;
  text-align: center;
  font-weight: bold;
  border-radius: 3px;
  min-height: 30px;
  height: 100%;
}

.dropzone.hover {
  background: #DDD;
}

.dropzone.fade {
  transition: all 0.3s ease-out;
  opacity: 1;
}
.dropzone.error {
  background: #ECBABA;
}
.dropzone.blue_error {
  background: #8FB3DA;
}
.dropzone.yellow_error {
  background: #EAEA9A;
}

.fileinput-button {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
/* http://stackoverflow.com/questions/12686065/set-line-height-as-a-percentage-relative-to-the-parent-element */
.fileinput-button:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em; /* Adjusts for spacing */
}

.fileinput-button>.hlaska {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}