.media-library-upload-multi-file-preview {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.media-library-upload-item {
    display: flex;
    width: var(--750w);
    align-items: center;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.media-library-upload-item-preview {
    display: flex;
    width: var(--100w);
    height: var(--100w);
    margin-top: var(--22w);
    margin-bottom: var(--22w);
    margin-left: var(--22w);
    margin-right: var(--22w);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.media-library-upload-item-description-wrap {
    display: flex;
    flex-direction: column;
    width: var(--510w);
}

.media-library-upload-item-name {
    display: flex;
    font-size: var(--24w);
    line-height: var(--45w);
    font-weight: 600;
    color: #9d9fa2;
    white-space: nowrap;
    overflow: hidden;       
    text-overflow: ellipsis;
}

.media-library-upload-item-size,
.media-library-upload-item-size-exceeded {
    display: flex;
    font-size: var(--24w);
    line-height: var(--45w);
    color: #9d9fa2;
}

.media-library-upload-item-description {
    display: flex;
    font-size: var(--24w);
    line-height: var(--45w);
}

.media-library-upload-item-remove-button {
    display: flex;
    background-image: url('/images/remove_icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: var(--60w);
    height: var(--60w);
    margin-left: var(--30w);
    margin-right: var(--30w);
}