html {
  overflow: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background: #009fcc;
  width: 100vw;
  height: 100vh;
}

.dz-clickable {
  width: 100vw;
  height: 100vh;
  border: none;
  background: #009fcc;
  cursor: default !important;
  padding: 0;
}

.dz-message {
  display: block;
  width: 300px;
  margin-left: -150px;
  height: 60px;
  margin-top: -30px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #00708e;
  text-align: center;
  font-weight: 500;
  color: white;
  font-size: 16px;
  box-sizing: border-box;
  transition: height 0.2s, margin-top 0.2s, background 0.2s;
  padding-top: 18px;
  cursor: pointer;
}

.dz-message.shrink {
  height: 30px;
  margin-top: -15px;
  padding: 0;
}

.dz-message.shrink span {
  display: none;
}

.dz-message.shrink .progress {
  width: 0%;
  background: #004457;
  height: 100%;
  transition: width 0.2s ease;
}

.dz-message:hover {
  background: #00647f;
}

.dz-clickable.dz-drag-hover {
  border: 10px solid white;
  transition: all 0.3s ease-in-out;
}

.dz-clickable.dz-drag-hover .dz-message {
  transition: all 0.3s ease-in-out;
  opacity: 0.5;
}

.dz-clickable.dz-started .dz-message {
  display: block !important;
}

.dz-preview {
  display: none;
}
