[data-drop-watermark-root] {
    position: relative;
}

.file-drop-watermark {
    position: sticky;
    top: 50%;
    z-index: 0;
    display: flex;
    height: 0;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 120ms ease;
}

.file-drop-watermark span {
    display: inline-block;
    max-width: min(82%, 520px);
    transform: translateY(-50%);
    color: rgb(168 178 190 / 18%);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    text-transform: lowercase;
    user-select: none;
}

[data-drop-watermark-root].drop-watermark-hidden .file-drop-watermark {
    visibility: hidden;
    opacity: 0;
}

@media (max-width: 640px), (max-height: 520px) {
    .file-drop-watermark span {
        font-size: 20px;
    }
}
