
/* image upload*/


.file-upload-content {
  display: none;
}

.file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.image-upload-wrap {
  margin-bottom: 20px;
  border: 2px dashed grey;
  position: relative;
  width:250px;
  height:250px;
}

.image-dropping,
.image-upload-wrap:hover {
  background-color: lightblue;
  border: 4px dashed grey;
}


.drag-text {
  text-align: center;
}

.drag-text h3 {
  font-weight: 100;
  text-transform: uppercase;
  color: grey;
  padding: 60px 0;
}

.file-upload-image {
  max-height: 200px;
  max-width: 200px;
  margin: auto;
}
