.bic-documents-grid {
    display:flex;
    flex-direction: row;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
}

a.bic-document-wrapper{
    text-decoration: none;
    width: 380px;
}
.bic-document-card {
    background: transparent;
    border: 1px solid #cecece;
    width: auto;
    height: auto;
    padding: 14px;
    cursor: pointer;
    display: flex;
    column-gap: 20px;
    justify-content: space-between;
}

.bic-document-card:hover{
    background-color: #fff; 
    -webkit-box-shadow: 0 0 12px rgba(0,0,0,0.12);
    box-shadow: 0 0 12px rgba(0,0,0,0.12);
}

.bic-document-card:hover .bic-document-mime, .bic-document-card:hover .bic-document-icon i, .bic-document-card:hover .bic-document-icon svg{
    transition: filter .4s;
    filter: brightness(0) saturate(100%) invert(77%) sepia(11%) saturate(1236%) hue-rotate(135deg) brightness(87%) contrast(87%);

}

.bic-document-mime {
    margin: 0px;
    height: auto; 
    width: 10%; 
    position: relative;     
    min-width: 46px;
    max-width: 80px;
}


.bic-document-label {
width: 100%;
  background: transparent;
  align-content: center;
  color: #777;
  font-family: "News Cycle",sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.bic-document-icon {
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 100%;
    max-width: 40px;
}

.bic-document-icon i{
    font-size: 8px;
}

.bic-document-icon svg{
    width: 18px; 
    height:18px;
}
