.drag-drop {
    height: 200px;
    cursor: pointer;
    border: 2px dotted #a8a8a8;
    border-radius: 10px;
    background-color: #dbdbdb;
    background-image: url("../images/save.svg") !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10%;
    transition: all 0.3s linear;
    align-content: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.drag-drop p {
    margin-bottom: 15px;
}

.drag-drop[disabled] {
    cursor: auto !important;
    opacity: 0.7;
}

.drag-drop[files] {
    background-image: none;
}

.drag-enter {
    background-image: url("../images/save-drag.svg") !important;
}

.drag-enter[files] {
    background-image: none;
}

.drag-enter, .hover:hover {
    background-color: #c7c7c7;
}

.no-symbol {
    background-image: none !important;
}

.files {
    position: relative;
    display: flex;
    z-index: 2 !important;
    flex-wrap: wrap;
}

.file-chip {
    color: white;
    border-radius: 20px;
    padding: 2px 8px;
    margin: 5px;
    display: flex;
}

.file-name {
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-xpath {
    margin-left: 5px;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remove-file {
    margin-left: 3px;
}

.remove-file img {
    filter: invert(100%) sepia(6%) saturate(7475%) hue-rotate(189deg) brightness(114%) contrast(107%);
    margin-bottom: -4px;
}

.drag-drop-short {
    height: 100px;
    background-size: 5%;
    font-size: 12px;
}
