@charset "UTF-8";
/* CSS Document */
html, body {
  height: calc(100% - 80px);
}
#drop {
  box-sizing: border-box;
  padding: 0 25px;
  font-size: 21pt;
  text-align: center;
  color: #bbb;
  background-color: #fafafa;
  border: 2px dashed #bbb;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  height: calc(100% - 60px);
  min-height: 100px;
}
#droptext {
  position: relative;
  top: 50%;
  transform: perspective(1px) translateY(-50%);
}
#drop, form {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
a {
  text-decoration: none;
}
.message a:link {
  color: red;
  text-decoration: underline;
}
.message a:visited {
  color: red;
}
.description {
  display: block;
  margin: 20px auto;
  text-align: center;
  color: #999;
  font-size: 18px;
  max-width: 420px;
  width: 100%;
}
.error {
  display: block;
  margin: 0 auto;
  text-align: center;
  color: #999;
  font-size: 14px;
}
.spacer {
  height: 20px;
}
.black {
  color: black;
}
.red {
  color: red;
}
