.fael-files-widget .items {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.fael-files-widget .item {
    background-color: var(--light-blue);
    box-sizing: border-box;
    color: var(--content-blue);
    padding: 24px 20px;
    width: calc(50% - 13px);
}

.fael-files-widget .item .icon {
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.fael-files-widget .item .download {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fael-files-widget .item .download-icon {
    background-image: url('../images/icon-file-download.svg');
    width: 25px;
    height: 28px;
}

.fael-files-widget .item .info {
    margin-bottom: 50px;
}

.fael-files-widget .item .info-icon {
    width: 26px;
    height: 26px;
}

.fael-files-widget .item .tooltip .info-icon {
    background-image: url('../images/icon-info.svg');
}

.fael-files-widget .item .info.tooltip {
    position: relative;
}

.fael-files-widget .item .tooltip.active .tooltip-text {
    display: block;
    position: absolute;
    bottom: 12px;
    left: 35px;
    width: 250px;
    min-height: 90px;
    background-color: #FFFFFF;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
    padding: 15px;
    z-index: 999;
}