.DocumentDownloadList {
    margin: 0;
    padding: 0;
    list-style: none;
}

.DocumentDownloadList__item {
    display: block;
    border-bottom: 1px solid #eee;
}

.DocumentDownloadList__link,
.DocumentDownloadList__link:hover {
    display: block;
    position: relative;/** For correct placement of ::after element (arrow-right) */
    padding: 1em 3em 1em 1em;
    text-decoration: none;
    color: inherit;
}

.DocumentDownloadList__link:hover {
    background-color: #f9f9f9;
}

.DocumentDownloadList__link:hover .DocumentDownloadList__icon {
    filter: grayscale(0);
}

.DocumentDownloadList__link:hover .DocumentDownloadList__title {
    text-decoration: underline;
}

/**
 * Detailed info
 */

.DocumentDownloadList__detailedInfo {
    font-size: .7em;
    color: #888;
}

.DocumentDownloadList__detailedInfoItem + .DocumentDownloadList__detailedInfoItem{
    margin-left: 1em;
}

/**
 * Main info
 */

.DocumentDownloadList__icon {
    display: inline-block;
    margin-right: .5em;
    max-width: 30px;
    vertical-align: text-bottom;
    filter: grayscale(1);
    transition: filter .2s ease-out;
}

.DocumentDownloadList__title .DocumentDownloadList__icon {
    vertical-align: baseline;
}

.DocumentDownloadList__title {
    display: block;
    margin: .5em 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1.2em;
    font-weight: bold;
}

.DocumentDownloadList__title:after {
    content: "\2192";
    position: absolute;
    right: 1em;
    color: #ccc;
}

.DocumentDownloadList__link:hover .DocumentDownloadList__title:after {
    color: initial;
}

/**
 * Labels
 */

.DocumentDownloadList__labels {
    font-family: sans-serif;
    font-size: .7em;
    text-transform: uppercase;
}

/**
 * Description
 */

.DocumentDownloadList__description {
    margin-bottom: 0;
}
