﻿#annual-report {
    padding: 0px 0px 50px 0px;
}

.latestReportImg {
    overflow: hidden;
    border-radius: 16px;
}

.annual-filter-top {
    border-bottom: 1px solid #c5c5c5;
    margin-bottom: 40px;
    padding-bottom: 0px;
}

.annual-filter-top h2 {
    font-size: var(--fs-26);
}

.latestReportDownload {
    display: flex;
    gap: 15px;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}

.latestReportMid {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
    justify-content: center;
}

.latestReportMid .latestReportTitle {
    font-size: var(--fs-30);
    font-weight: var(--font-weight-500);
    letter-spacing: -0.5px;
}

.latestReportMid .latestReportTitle span {
    color: var(--red);
}

.results-container {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: auto;
}

.results-container.active {
    display: grid;
}

.latestReport {
    margin-bottom: 50px;
}

.policy-container {
    display: block;
    margin: auto;
    margin-bottom: 60px;
}

.policy-container .policy-card .policy-title {
    font-weight: 400;
    font-size: var(--fs-16);
    line-height: 20px;
    flex: 1;
    color: var(--black);
    display: block;
    background: url(../../assets/images/red-download-icon.svg) no-repeat 98% center;
    padding-right: 100px;
    padding: 22px 20px;
    min-height: 82px;
    display: grid;
    align-items: center;
    padding-right: 74px;
    transition: 0.3s ease;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.policy-container .policy-card .policy-title:hover {
    background-color: #f9f9f9;
    color: var(--red);
}

.selectdropdown {
    position: relative;
    width: 200px;
    user-select: none;
}

.selectdropdown-toggle {
    background: #fff;
    border-bottom: 1px solid #000;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: var(--font-weight-500);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.selectdropdown-toggle:after {
    content: "";
    transition: transform 0.3s;
    background: url(../../assets/images/years-dropdown-arrow.svg) no-repeat center center;
    position: absolute;
    right: 0px;
    top: -6px;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 10px;
}

.selectdropdown.open .selectdropdown-toggle:after {
    transform: rotate(180deg);
}

.selectdropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    background: #fff;
    display: none;
    z-index: 100;
    height: auto;
    overflow-y: auto;
    max-height: 15.4375rem;
}

.selectdropdown-menu::-webkit-scrollbar {
    width: 5px;
}

.selectdropdown-menu::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #e7e7e7;
    border: 1px solid #cacaca;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.selectdropdown-menu::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #363636;
}

.selectdropdown.open .selectdropdown-menu {
    display: block;
}

.selectdropdown-menu li {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    border-bottom: 0.0625rem solid #e3e3e3;
}

.selectdropdown-menu li:hover {
    background: #f5f5f5;
}

.selectdropdown-menu li.active {
    font-weight: bold;
}

.selectdropdown-menu li.active::after {
    content: "✓";
    font-size: 14px;
    color: #000;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .result-list li {
        font-size: 13px;
    }

    .result-card h3 {
        font-size: 18px;
    }

    .annual-filter-top h2 {
        font-size: var(--fs-22);
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .result-card {
        margin-bottom: 20px;
    }

    .selectdropdown {
        width: 100%;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .result-card {
        margin-bottom: 20px;
    }

    .selectdropdown {
        width: 100%;
    }
}

@media (min-width: 320px) and (max-width: 767px) {
    .selectdropdown {
        width: 100%;
    }

    .annual-filter-top {
        border-bottom: none;
        margin-bottom: 0px;
    }

    .annual-filter-top h2 {
        margin-bottom: 0px;
        margin-bottom: 20px;
    }

    .selectdropdown-toggle {
        padding-left: 0px;
        margin-bottom: 20px;
    }

    .latestReportImg {
        margin-bottom: 10px;
    }

    .latestReportMid .latestReportTitle {
        font-size: var(--fs-24);
    }

    .latestReportMid p {
        font-size: var(--fs-16);
    }

    .latestReportDownload {
        justify-content: space-around;
    }

    .latestReport {
        margin-bottom: 40px;
    }


    .policy-container .policy-card .policy-title {
        font-weight: 400;
        font-size: 14px;
        padding: 15px 0px;
        height: auto;
        padding-right: 74px;

    }





}

form.views-exposed-form {
    display: none;
}

.policy-container .policy-card .policy-title .dateFormat {
    margin-bottom: 5px;
    font-size: 12px;
}

.policy-container .policy-card.link-card .policy-title {
    font-weight: 400;
    font-size: var(--fs-16);
    line-height: 20px;
    flex: 1;
    color: var(--black);
    display: block;
    background: url(../../assets/images/red-link-icon.svg) no-repeat 98% center;
    padding-right: 100px;
    padding: 22px 20px;
    min-height: 82px;
    display: grid;
    align-items: center;
    padding-right: 74px;
    transition: 0.3s ease;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.policy-container .policy-card.link-card .policy-title:hover {
    background-color: #f9f9f9;
    color: var(--red);
}

.pb0 {
    padding-bottom: 0px !important;
}

@media (min-width: 320px) and (max-width: 767px) {

    .policy-container .policy-card .policy-title {
        font-weight: 400;
        font-size: 14px !important;
        padding: 15px 0px !important;
        height: auto !important;
        padding-right: 74px !important;

    }

}

/*# sourceMappingURL=annual-report.css.map */