.drop-preview {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

    flex-direction: column;

    width: 110px;
    max-height: 200px;
    overflow: hidden;
    margin: 10px;
    padding: 5px;
}

.drop-error {
    border: var(--warning-red) 1px solid;
    border-radius: 0.5rem;
}

.drop-loading {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    z-index: 900;
}

.drop-loading::before {
    content: '';
    background: rgba(247, 247, 252, 0.8);
    width: 100%;
    height: 100%;
    display: block;

    position: absolute;
    z-index: 998;
}

.drop-loading::after {
    content: '';
    background: url(../../icon/loading-ds.svg) no-repeat;
    transform: scale(0.8);
    width: 100%;
    height: 100%;
    display: block;

    position: absolute;
    top: 25px;
    z-index: 999;
}

.drop-success {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    z-index: 900;
}

.drop-success::before {
    content: '';
    background: rgba(247, 247, 252, 0.8);
    width: 100%;
    height: 100%;
    display: block;

    position: absolute;
    z-index: 998;
}

.drop-success::after {
    content: '';
    background: url(../../icon/check-success.svg) no-repeat;
    transform: scale(0.8);
    width: 100%;
    height: 100%;
    display: block;

    position: absolute;
    top: 25px;
    z-index: 999;
}

.drop-filename {
    font-size: 1rem;
    max-width: 100px;
    overflow: hidden;
}

.drop-size {
    font-size: 0.8rem;
}

.drop-thumbnail-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100px;
    width: 100px;

    margin-bottom: 5px;
    overflow: hidden;
}