.annual-reports-container {
    background: url("../../icons/annualreportbg.png") no-repeat;
    background-size: cover;
    padding: 80px 0;
}

.imgblock {
    flex: 0 0 25%;
    max-width: 29%;
}

.detailblock {
    flex: 0 0 69%;
    max-width: 69%;
}

.headingtitle p {
    font-size: 32px;
    color: var(--page-bg-color);
    margin: 0 0 20px;
}

.choicechips {
    display: flex;
    gap: 10px;
    white-space: nowrap;
    overflow-x: scroll;
    padding-bottom: 10px;
}

.choicechips .chip {
    cursor: pointer;
    border-radius: 20px;
    background: #f2f2f2;
    padding: 5px 12px;
    font-size: 14px;
    color: #333;
}

.choicechips .chip.active {
    background: var(--brand-sky-blue-color-600);
    color: var(--page-bg-color);
}

.choicechips::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

.choicechips::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #e3e5e8;
}

.choicechips::-webkit-scrollbar {
    width: 4px;
    height: 6px;
}

.pdfcards {
    width: 320px;
    border-radius: 4px;
    background: var(--page-bg-color);
    box-shadow: 4px 4px 12px #1e334824, 0.1px 16px 32px #7191b124;
    margin-top: 20px;
}

.pdfcards a {
    padding: 15px;
    display: inline-block;
    width: 100%;
    padding-left: 50px;
    padding-bottom: 30px;
    position: relative;
}

.pdfcards a::before {
    content: "";
    background: url("../../icons/pdf-icon.svg") no-repeat;
    width: 50px;
    height: 50px;
    left: 10px;
    position: absolute;
    top: 15px;
}

.pdfcards a::after {
    content: "";
    background: url("../../icons/arrow-right-bluecolor.svg") no-repeat;
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 25px;
    height: 25px;
}

.pdfcards p {
    color: var(--color-text-primary);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.greylabel.f10.lightgrey {
    display: inline-block;
    background: #e4e4e4;
    font-size: 10px;
    padding: 2px 10px;
    border-radius: 6px;
    color:var(--color-text-primary);
    margin-top: 15px;
}

h2#mobdl-annual-return{
    font-size: var(--f-s-sub-title);
    font-weight: var(--font-weight-medium);
    text-align: center;
}

.annual-reports .detailblock .headingtitle h2 {
    color: var(--page-bg-color);
}

@media (width <= 768px) {
    .annual-reports-container {
        padding: 40px 0;
    }

    .annual-reports-container .pdfcards {
        width: 100%;
        margin-bottom: 30px;
    }

    .annual-reports-container .flex {
        flex-flow: column-reverse wrap;
        flex-wrap: wrap;
    }

    .annual-reports-container .imgblock,
    .annual-reports-container .detailblock {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (width > 768px) {
    .imgblock img {
        height: 250px;
    }
}
