#edit-images {
  background-color: white;
  height: calc(100vh - 80px);
  padding: 15px;
  overflow-y: scroll;
}

#edit-images .drop-zone {
  display: flex;
  border: 1px solid #217575;
  border-radius: 10px;
  min-height: 250px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

#edit-images .empty-drop-text {
  font-size: 30px;
}

#edit-images .thumb {
  height: 220px;
  display: inline-flex;
  margin: auto;
  padding-left: 5px;
  padding-right: 5px;
}

#edit-images .thumb-container:hover .thumb {
  opacity: 0.8;
}

#edit-images .new-image {
  position: relative;
}

#edit-images .images-container {
  width: 100%;
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#edit-images .thumb-container {
  min-width: 280px;
  display: inline-flex;
  margin-top: 5px;
  margin-bottom: 5px;
  flex-direction: column;
}

#edit-images .thumb-container .input-group {
  padding-left: 5px;
  padding-right: 5px;
  max-width: 350px;
  margin: auto;
  margin-top: 3px;
}

#edit-images .drop-zone-empty {
  width: 300px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #b7b7b7;
  border-radius: 10px;
  cursor: pointer;
}

#edit-images .thumb-container.drop-zone-empty {
  height: 220px;
  display: inline-flex;
  margin-left: 5px;
  margin-right: 5px;
}

#edit-images .thumb-container .delete {
  display: none;
}

#edit-images .thumb-container:hover .delete {
  display: block;
  position: absolute;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  background-color: rgba(0, 0, 0, 0.66);
  padding-top: 4px;
  color: white;
  z-index: 1;
  top: calc(50% - 50px);
  right: calc(50% - 25px);
  font-size: 35px;
  cursor: pointer;
}

#edit-images .thumb-container .saved {
  display: block;
  position: relative;
  bottom: 0px;
  margin-left: 10px;
  margin-top: 5px;
  z-index: 1;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  background-color: rgba(50, 189, 33, 0.66);
  padding-top: 6px;
  color: white;
}

#edit-images .progress {
  margin-top: 20px;
}

#edit-images .loader-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.63);
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  z-index: 5;
  text-align: center;
  font-size: 30px;
  color: white;
  padding-top: calc(100vh - 60vh);
  top: 15px;
  left: 15px;
}

#edit-images .loader-overlay img {
  width: 100px;
  height: 100px;
}

#edit-images .loader-overlay img {
  width: 100px;
  height: 100px;
}

#edit-images .images-header {
  padding: 0px 10px;
  border: 1px solid #217575;
  border-radius: 10px;
}

#edit-images .images-header .element {
  display: inline-block;
  vertical-align: middle;
  padding: 10px 10px;
}

#edit-images .state-tags {
  position: absolute;
  padding-top: 5px;
  z-index: 1;
}

#edit-images .state-tags .tag {
  color: white;
  border-radius: 5px;
  padding: 2px 5px 2px 5px;
  font-weight: bold;
}

#edit-images .state-tags .main-tag {
  background-color: #dc8100;
}

#edit-images .state-tags .saved-tag {
  background-color: #039c29;
}

#edit-images .state-tags .not-saved-tag {
  background-color: #ff1010;
}
