.image_area {
  position: relative;
}

.image_area img {
  display: block;
  max-width: 100%;
}

.image_area:hover .overlay {
  height: 20%;
  cursor: pointer;
}

.preview {
  overflow: hidden;
  width: 160px;
  height: 160px;
  margin: 10px;
  border: 1px solid red;
}

.btn-del__image {
  position: absolute;
  right: 10px;
  top: 30px;
  border-radius: 25px;
}

.modal-lg {
  max-width: 1000px !important;
}

.overlay {
  position: absolute;
  bottom: 15px;
  border-radius: 0 0 5px 10px;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  height: 0;
  transition: 0.3s ease;
  width: 100%;
}

.overlay--text {
  color: #dbdbdb;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

