.archives-reports {
    margin-block: 50px;
}

.archives-reports .row:first-of-type {

}

#reports-container {

}

.pdf-report-wrapper {
    background-color: #F4F7FC;
    padding: 0 5px 5px;
}

.pdf-report-wrapper:first-of-type {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    padding-top: 5px;
}

.pdf-report-wrapper:last-of-type {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.report-row {
    border-radius: 5px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 10px;
    box-shadow: 0px 1px 1px rgba(64,104,151,0.14);
}

.report-row:hover {
    text-decoration: none;
}

.report-row:last-of-type {
    margin-bottom: 0;
}

.report-row .col-lg-2:first-of-type {
    padding-left: 0;
}

.open-pdf, #load-more {
    padding: 10px 0;
    border: 2px solid rgba(64, 104, 151, .2);
    border-radius: 10px;
    text-transform: uppercase;
    color: #406897;
    font-size: 14px;
    font-weight: 600;
    background-color: unset;
    transition: 0.3s all ease-in-out;
    display: block;
    text-align: center;
}

#load-more {
    margin-top: 20px;
    width: 100%;
    outline: none;
}

#load-more:hover {
    background-color: #406897;
    color: #ffffff;
}

.report-filters {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 10px;
}

.report-filters button {
    background-color: unset;
    border: 2px solid rgba(255,255,255,0);
    color: #406897;
    text-align: right;
    padding: 10px 20px;
    transition: 0.3s all ease-in-out;
    border-radius: 26px;
    outline: none;
}

.report-filters button.active, .report-filters button:hover, .report-filters button:focus, .report-filters button:visited {
    border: 2px solid rgba(255, 117, 80, .2);
    color: #ff7550;
    width: fit-content;
}

.report-row h3 {
    color: #406897;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.report-row p {
    color: rgba(0,0,0,.5);
    font-size: 16px;
    margin-bottom: 0;
}

.report-filters.desktop {
    display: flex;
    margin-top: 20px;
}

.report-filters.mobile {
    display: none;
}

.pdf-report-wrapper img {
    width: 128px;
    height: 128px;
    object-fit: cover;
}

@media(max-width: 991.9px) {
    .archives-reports .row:first-of-type {
        flex-direction: column;
    }

    .report-filters.desktop {
        display: none;
    }

    .report-filters.mobile {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        border-radius: 10px;
        border: 2px solid rgba(64, 104, 151, .2);
        padding: 15px 20px;
        margin-bottom: 20px;
    }

    .report-filters.mobile:before {
        content: '\f078';
        position: absolute;
        top: 13px;
        right: 20px;
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        font-size: 20px;
        color: rgba(64, 104, 151, .2);
        transition: 0.3s all ease-in-out;
    }

    .report-filters.mobile.active:before {
        rotate: 180deg;
    }

    .report-filters.mobile p {
        margin-bottom: 0;
        color: #406897;
        font-size: 16px;
        font-weight: 600;
    }


    .report-filters-mobile-wrapper {
        display: none;
    }

    .report-filters-mobile-wrapper.active {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .open-pdf-wrapper {
        display: none;
    }

    .pdf-icon-wrapper {
        order: 2;
        display: flex;
        justify-content: flex-end;
        padding-right: 0;
    }

    .report-row h3 {
        margin-bottom: 0;
    }

    .report-row {
        padding: 5px;
    }
}

@media(max-width: 768px) {
    .report-row h3 {
        font-size: 16px;
    }
}