html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: rgba(0,0,0,0);
}

#objects {
  position: absolute;
  right: 25px;
  bottom: 25px;
  height: 40px;
  width: 40px;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #7a7a7a;
  color: white;
}

.modal-header h2 {
  margin-top: .5rem;
}

.modal-body {
  padding: 16px 16px;
  background-color: #4f4f4f;
  color: white;
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  margin-bottom: 20%;
  padding: 0;
  border: 2px solid #000;
  border-radius: 25px;
  overflow: hidden;
  width: 80%;
  max-width: 800px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  animation-name: animatetop;
  animation-duration: 0.4s;
}

.modal-footer {
  background-color: #7a7a7a;
  color: white;
}

.modal {
  z-index: 400;
  display: none;
  padding-top: 10%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
  cursor: auto;
}

.objects-ui img {
  height: 120px;
}

.objects-ui td {
  color: white;
  text-align: center;
  padding: 10px;
}

#fileInput {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

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