.drop-area {
  border: 4px dashed rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  width: 100%;
  margin: 10px auto;
  padding: 20px;
  transition: all 0.3s;
  background: repeating-linear-gradient(45deg,
      #f6faff,
      #f6faff 15px,
      #fff 15px,
      #fff 30px);
}

.drop-area:hover {
  background-color: rgba(110, 110, 110, 0.1);
  border: 4px dashed #0e6ebc;
  transition: all 0.3s;
  background: repeating-linear-gradient(45deg,
      #e9f2ff,
      #e9f2ff 15px,
      #fff 15px,
      #fff 30px);
}


.drop-area.highlight {
  border-color: purple;
}

.drop-area p {
  font-size: 12px;
  text-align: center;
}

.drop-area .icon {
  height: 40px;
  display: block;
  margin: 0 auto;
}

.drop-area .button {
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
}

.drop-area .button:hover {
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
  color: #164cff;
}

.drop_area_head {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  color: #80b8e9;
}

.drop-area form {
  padding: 30px 0px;
}

.fileElem {
  display: none;
}

.upload_gallery {
  margin-top: 20px;
  display: none;
}

.upload_gallery img {
  width: 150px;
  margin: 10px;
}