

/* CSS from snippet stylesheet tags */
.product-datasheets-list.product-datasheets-list{
    list-style-type: none;
    display: flex;
    gap: 8px;
    flex-flow: column;
    padding-left: 0;
    li{
        display: flex;
        gap: 8px;
        align-items: center;
        svg{
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            path{
                color:currentColor;
            }
        }
    }
    a{
        &:hover{
            opacity: 0.7;
        }
    }
  }