
/* The Modal (background) */
.popupModal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1500; /* Sit on top */
  padding-top: 10vh; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* popupModal Content */
.popupModal-content {
  z-index: 2000; /* Sit on top */
  position: relative;    
  display: table;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  min-width: 40px;
  min-height: 40px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}
.popupModal-close-div{
  z-index: 1500; /* Sit on top */
  top: 0;
  position: fixed;
  width: 100%;
  height: 100%;
}
/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-100px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.popupModal-close {    
  top: 0px;
  position: absolute;
  color: #ffffff;
  right: 10px;
  text-shadow: 0px 0px 15px #000000, 0px 0px 10px #000000;
  font-size: 24px;
  font-weight: bold;
}

.popupModal-close:hover,
.popupModal-close:focus {
  color: #ff0000;
  text-decoration: none;
  cursor: pointer;
}

.popupModal-body {
  
  z-index: 1550; /* Sit on top */
  padding: 5px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
}

.popupModal-body p {
  margin: 0 0 0px;
  color: #000000;
}
.popupModal-body h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #000000;
}
.save-button-group > button {
  margin: 0 5px;
}
.popupModal-body img {
  max-height: 75vh;
}

.dropzone {
  border: 4px dashed #ccc;
  height: 100px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.info {
  margin-top: 11%;
}

.dropzone p,.dropzone strong {
  margin: 0%;
  text-align: center;
  width: 100%
}

.dropzone .info {
  margin: 0%;
  text-align: center;
}

.input {
  height: 100%;
  left: 0;
  outline: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%
}

.status {
  margin-top: 1em;
  border-radius: 5px;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.dropzone.dropzone-dragging {
  border-color: #000
}