.imageuploadify {
  border: 2px dashed #d2d2d2;
  position: relative;
  min-height: 310px;
  max-width: 1000px;
  margin: auto;
  display: flex;
  padding: 0;
  flex-direction: column;
  text-align: center;
  background-color: #fff
}

.imageuploadify .imageuploadify-overlay {
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  flex-direction: column;
  top: 0;
  left: 0;
  display: none;
  font-size: 7em;
  background-color: rgba(242, 242, 242, .7);
  text-align: center;
  pointer-events: none
}

.imageuploadify .imageuploadify-overlay i {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none
}

.imageuploadify .imageuploadify-images-list {
  display: inline-block;
  padding: 30px;
}

.imageuploadify .imageuploadify-images-list i {
  display: block;
  font-size: 7em;
  text-align: center;
  padding-bottom: 12px
}

.imageuploadify .imageuploadify-images-list span.imageuploadify-message {
  font-size: 18px;
  padding: 10px;
  display: block;
  line-height: 24px;
}
.imageuploadify .imageuploadify-images-list button {
    margin-bottom: 20px;
    margin-top: 10px;
    border-radius: 0;
    border: 1px solid #ed901d;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0;
}
.imageuploadify .imageuploadify-images-list .imageuploadify-container {
  width: 100px;
  height: 100px;
  position: relative;
  overflow: hidden;
  float: left;
  border-radius: 5px;
  border: 1px solid #a7a7a7;
  margin: 5px 3px 10px!important;
}

.imageuploadify .imageuploadify-images-list .imageuploadify-container button.btn-danger {
  position: absolute;
  top: -5px;
  right: 3px;
  width: 20px;
  height: 20px;
  border-radius: 15px;
  font-size: 10px;
  line-height: 1.42;
  padding: 2px 0;
  text-align: center;
  z-index: 3
}

.imageuploadify .imageuploadify-images-list .imageuploadify-container img {
  height: 100px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto
}

.imageuploadify .imageuploadify-images-list .imageuploadify-container .imageuploadify-details {
  position: absolute;
  top: 0;
  padding: 25px 5px 5px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(255, 255, 255, .5);
  z-index: 2;
  opacity: 0
}

.imageuploadify .imageuploadify-images-list .imageuploadify-container .imageuploadify-details span {
  display: block;
  font-size: 12px;
  line-height: 16px;
}

@media (max-width: 767px){
  .imageuploadify .imageuploadify-images-list {
    padding: 10px;
}
}