.FileDrop {
  height: 100%;
  position: relative;
  width: 100%;

  &-overlay {
    align-items: center;
    background-color: #8189a9f0;
    bottom: -30px;
    border: 3px dashed #6583fe;
    color: #fff;
    display: none;
    font-size: 24px;
    font-weight: bold;
    justify-content: center;
    left: -30px;
    padding: 25px;
    position: absolute;
    right: -30px;
    text-align: center;
    top: -30px;
    z-index: 10000;

    &.dragging {
      display: flex;
    }
  }
}