#upload_progress_container {
  display: none;
}

.dropzone {
  margin-top: 15px;
  border: 2px dashed #0087F7;
  border-radius: 5px;
  background: white;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: center;
  width: 270px;
  height: 250px;
}

.dropzone > span {
  display: block;
  font-weight: 400;
  font-size: 15px;
  position: absolute;
  top: 46%;
  left: 0;
  width: 100%;
}

.dropzone input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  -ms-filter: 'alpha(opacity=0)';
  font-size: 200px;
  direction: ltr;
  cursor: pointer;
}

.dropzone.in {
  background-color: #f9f9f9;
}

.dropzone.hover {
  border: 2px solid #0087F7;
}

.dropzone.fade {
  transition: all 0.3s ease-out;
  opacity: 1;
}

/* Content */
.img-container,
.img-preview {
  background-color: #f7f7f7;
  width: 100%;
  height: 100%;
  text-align: center;
}

/*.img-container {
  min-height: 200px;
  max-height: 400px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .img-container {
    min-height: 400px;
  }
}*/
.img-container > img {
  max-width: 100%;
}

#uploaded_image_view {
  width: 266px;
  height: 250px;
  background-position: center;
  background-size: cover;
}

.configurateCard__image {
  width: 266px;
  height: 250px;
  background-position: center;
  background-size: cover;
}

#uploading_video_progress {
  background-color: #009688;
  width: 100%;
  height: 0%;
  bottom: 0;
  position: absolute;
  transition: height .2s ease-out .1s;
}

#uploading_video_progress_value {
  top: 90%;
  display: none;
}

