.FileList {
    margin: 0 0 0.5em 0;
    padding: 0;
    list-style: none;
}

.FileList__item {
    margin-bottom: 2%;
    border-radius: .2em;
    background: linear-gradient(0deg, rgba(255,255,255,.42) 0%, rgba(255,255,255,.5) 95%) !important;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.3), 0 1px 3px 1px rgba(0,0,0,.1);
}

.FileList__item:hover {
    background: rgba(0,0,0,.03) !important;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.3), 0 3px 6px 3px rgba(0,0,0,.1);
}

.FileList__itemLink {
    display: flex;
    align-items: center;
    height: 60px;
    text-decoration: none !important;
}

.FileList__itemName {
    flex: 1;
    padding: 1em;
    font-size: .85em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.FileList__itemLink::after {
    content: '';
    height: 60px;
    width: 3em;
    background: url(img/download-icon.svg) no-repeat center;
    background-size: 1em;
    opacity: .4;
}

.FileList__itemLink:hover:after {
    opacity: 1;
    transform: translateY(1px);
}

@media screen and (min-width: 600px) {
    .FileList {
        display: flex;
        flex-wrap: wrap;
    }

    .FileList__item {
        width: 48%;
    }

    .FileList__item:nth-child(odd) {
        margin-right: 2%;
    }
}