.sd-hide {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.sd-box-dragndrop,
.sd-box-uploading,
.sd-box-success,
.sd-box-error {
  display: none;
}

.sd-box {
  background-color: #ffffff;
  position: relative;
  padding: 25px 20px;
  width: 100%;
  text-align: center;
  border: 1px solid #EBE9E9;
  border-radius: 2px;
  line-height: 18px;
}

.sd-box input[type="file"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.sd-label {
  font-family: inherit;
  font-size: inherit;
}

.sd-label label {
  color: #10509A;
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 600;
}

.sd-label label:hover, .sd-label label:focus {
  color: #0c3e77;
}

.sd-box.is-dragover {
  outline: 2px dashed #c2c2c2;
  outline-offset: -10px;
}

.sd-box.is-uploading .sd-box-wrapper {
  visibility: none;
}

.sd-box.is-uploading .sd-box-uploading {
  display: block;
}

.sd-box.sd-advanced-upload .sd-box-browse-file {
  display: none;
}

.sd-box.sd-advanced-upload .sd-box-dragndrop {
  display: inline;
}

.sd-box.sd-advanced-upload.is-dropped {
  border-color: #10509A;
}

.sd-box.sd-advanced-upload.is-dropped .sd-box-dragndrop {
  display: none;
}
