input[type=file]::file-selector-button {
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    background-color: #212529;
    border-color: #212529;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    padding: 0.275rem 0.55rem;
    margin-right: 16px;
    font-size: 16px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;

}
span{
    /* font-size: 15px; */
}
input[type=file]::file-selector-button:hover {
    color: #fff;
    background-color: #1c1f23;
    border-color: #1a1e21;
}
.file-name{
    width: 100%;
    /* word-break: keep-all; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.file-link{
    width:60%;
    flex: auto;
}
.file-input{
    display: flex;
    align-items: center;
}