﻿
#upload_image_drop_section {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-color: white;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: none;
  display: inline-block;
  border-radius: .25rem;
  min-height: 5rem;
  padding: 0rem;
  position: relative;
  cursor: pointer;
}

  .upload_image_drop_section_active, #upload_image_drop_section:hover {
    background-color: rgb(255,255,204) !important;
  }

@media (max-width: 768px) {
  #upload_image_drop_section {
    aspect-ratio: 1 / 1;
  }
}

#upload_image_drop_section_border_container {
  border: 2px dashed #ced4da;
  padding: 2rem;
  height: 100%;
  border-radius: .25rem;
  position: relative;
}

.upload_image_drop_section_active #upload_image_drop_section_border_container,
#upload_image_drop_section:hover #upload_image_drop_section_border_container {
  border: 5px dashed rgba(198, 198, 198, 0.65);
  border-radius: .5rem;
  padding: calc(2rem - 3px);
}

.upload_image_drop_section_filled #upload_image_drop_section_border_container {
  border: 0px dashed #ced4da;
  border-radius: .5rem;
  padding: 2rem;
}


.upload_image_drop_section_icons {
  color: rgba(198, 198, 198, 0.65);
}

.upload_image_drop_section_filled .upload_image_drop_section_icons {
  opacity: 0.0;
}


.upload_image_drop_section_active .upload_image_drop_section_icons {
  color: #DFDFB2 !important;
}

#upload_image_drop_section:hover .upload_image_drop_section_icons,
.upload_image_drop_section_filled:hover .upload_image_drop_section_icons {
  opacity: 0.6;
}


#upload_image_link_text {
  color: gray;
  font-weight: 600;
  font-size: 1.1em;
  letter-spacing: -1px;
  margin-top: 30px;
  margin-bottom: 0;
  opacity: 0.65;
  position: absolute;
  bottom: 0%;
  left: 0%;
  text-align: center;
  width: 100%;
  padding-bottom: 2rem;
}

#upload_image_drop_section_link_browser {
  text-decoration: none;
  color: rgb(22,42,255);
  border-bottom: 3px dotted rgba(22, 22, 255, 0.85);
}

  #upload_image_drop_section_link_browser:hover {
    color: rgb(0, 0, 255);
    border-bottom: 3px dotted rgba(0, 0, 255, 0.85);
  }

#upload_image_delete_button {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 1.5rem;
  margin-top: 0px;
  cursor: pointer;
  font-size: 0.75rem;
  position: absolute;
  top: -1rem;
  right: -0.90rem;
  box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.2);
}

#upload_image_progress_section {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
}
