.document-download-row,
.document-download-row>.document-download-item,
.document-download-row>.document-download-item>.col-title,
.document-download-row>.document-download-item>.col-action {
    position: relative;
}

.document-download-row>.document-download-item {
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(var(--custom-rgb-color-primary),0);
    border: 1px solid rgba(var(--custom-rgb-color-primary),0.2);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.document-download-row>.document-download-item:hover {
    background-color: rgba(var(--custom-rgb-color-primary),0.05);
    border-color: rgba(var(--custom-rgb-color-primary),0.5);
}
.document-download-row>.document-download-item+.document-download-item {
    margin-top: 15px;
}

.document-download-row>.document-download-item>.col-title {
    flex: 1 0 0;
    padding-right: 20px;
}
.document-download-row>.document-download-item>.col-action {}
.document-download-row>.document-download-item>.col-action .document-download-btn {
    cursor: pointer;
}
