/* Schneider-like documents list style (scoped to our markup only) */

.asset-bar__documents-list{
	display: flex;
	flex-flow: wrap;
	height: 100%;
	width: 100%;
}

.asset-bar__documents-list--columns-count-1 .document-item-wrapper{
	width: 100%;
}

.document-item-wrapper{
	border-bottom: 1px solid rgba(0,0,0,.12);
}

.asset-bar__documents-list .document-item-wrapper:last-child{
  border-bottom: 0 !important;
}


.document-item{
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none !important;
	color: inherit;
}

.document-item:hover{
	opacity: .95;
}

/* Left PDF icon */
.be4s-pdf-icon{
	width: 32px;
	height: 46px;
	flex: 0 0 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.be4s-pdf-icon svg{
	width: 25px;
	height: 25px;
	display: block;
}

/* Label + download icon */
.document-item__label-with-icon{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.document-item__label{
	font-weight: 600;
	font-size : 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.be4s-download-icon{
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #107378;
	opacity: .7;
}

.be4s-download-icon svg{
	width: 18px;
	height: 18px;
	display: block;
}

.document-item:hover .be4s-download-icon{
	opacity: 1;
}
