#input-files {
  height: 1px;
  visibility: hidden;
  width: 1px;
}
#footer {
  color: #666;
  font-size: 75%;
  text-align: center;
}
#file-selector-list {
  color: #666;
  display: inline-block;
  margin-left: 10px;
}
#dropzone {
  align-content: center;
  background: #eee;
  border: 2px dashed #ccc;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 500px;
  justify-content: center;
  margin-top: 30px;
  padding: 20px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#dropzone.hover {
  border-color: rgba(0, 123, 255, 0.5);
}
#dropzone input[type="file"] {
  display: none;
}
#dropzone.dragging {
  background: rgba(0, 123, 255, 0.2);
  border-color: rgba(0, 123, 255, 0.75);
}
#dropzone.has-files {
  border: 1px solid #000;
  cursor: default;
  display: block;
  padding: 0;
  position: relative;
}
#dropzone.has-files #dropzone-instructions {
  color: #999;
  padding: 10px;
  width: 100%;
}
#dropzone.has-files #dropzone-instructions ion-icon {
  display: none;
}
#dropzone.has-files.dragging {
  background: initial;
}
#dropzone.has-files.dragging:after {
  align-items: center;
  background: rgba(0, 123, 255, 0.5);
  color: #fff;
  content: 'Drop files to upload...';
  display: flex;
  font-weight: bold;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 2;
}
#dropzone-instructions {
  text-align: center;
}
#dropzone-instructions ion-icon {
  font-size: 60px;
}
#dropzone-instructions p {
  margin: 0;
}
#dropzone-instructions p span:first-child {
  font-weight: bold;
}
#list-queue {
  list-style: none;
  margin: 0;
  padding: 0;
}
#list-queue > li {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #ccc;
  display: flex;
  padding: 5px 10px;
}
#list-queue > li .thumbnail {
  border: 1px solid #ccc;
  height: 65px;
  margin-right: 20px;
  overflow: hidden;
  width: 65px;
}
#list-queue > li .thumbnail.portrait img {
  max-height: 100%;
}
#list-queue > li .thumbnail.landscape img {
  max-width: 100%;
}
#list-queue > li .info {
  flex-grow: 1;
}
#list-queue > li .info ul.meta {
  list-style: none;
  margin: 0;
  padding: 0;
}
#list-queue > li .info ul.meta li {
  color: #777;
  display: inline-block;
  font-size: 80%;
}
#list-queue > li .remove ion-icon {
  color: red;
  cursor: pointer;
  font-size: 40px;
}
@media only screen and (max-width: 800px) {
  h1 {
    font-size: 26px;
    text-align: center;
  }
  p.lead {
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
  }
  hr {
    display: none;
  }
  #dropzone {
    height: 350px;
  }
  #btn-process {
    margin-bottom: 20px;
  }
  #footer {
    margin-top: 30px;
  }
  #list-queue > li .thumbnail {
    height: 50px;
    width: 50px;
  }
  #list-queue > li .meta {
    display: none;
  }
}
