.docs-list {}

.docs-list__item {
    display: grid;
    grid-template-columns: 48px 1fr 140px;
    align-items: center;
    background: #F5F5F5;
    border-radius: 16px;
    margin-bottom: 10px;
    padding: 20px;
	font-weight: 500;
}

.docs-list__item:hover {
	background: #F2F2FB;
}

.docs-list__item:before {
    display: block;
    content: '';
    width: 48px;
    height: 48px;
    background: url("/images/pdf.png") no-repeat;
}

.docs-list__item-info {
    padding: 0 20px;
    color: #0A0A0A;	
}

.docs-list__item-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1;
}

.docs-list__item-file {
    font-size: 12px;
	line-height: 1;
}