.file_list {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.25);
    padding: 5px 15px;
}
.file_list_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 5px 30px 5px 0;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}
.file_list_item .remove {
    background: #ff0000;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    text-align: center;
    padding-left: 1px;
    transform: translateY(-50%);
    line-height: 25px;
    height: 24px;
    width: 24px;
    transition: 0.25s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.file_list_item .remove:hover {
    opacity: 0.6;
}