.drag-drop-zone {
    width: 200px;
    height: 50px;
    transition: all .4s;
    display: flex;
    align-items: center;
}

.drag-drop-input {
    position: absolute;
    left: 60px;
    top: 7px;
    opacity: 0;
    width: 200px;
    height: 100px;
    z-index: 100000;
}

.drag-enter {
    border: 2px black dashed;
    height: 100px;
}

.drag-enter-error {
    border: 2px orange dashed;
    height: 100px;
}

.drag-ended {
    display: none;
}

.upload-dialog {
    padding: 13px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.upload-dialog-buttons {
    display: flex;
    gap: 15px;
}

.upload-dialog-buttons > button {
    width: 110px;
}

.upload-dialog-radio > div {
    display: flex;
    gap: 13px;
}