@font-face {
    font-family: 'MazzardHSemiBold';
    src: url('/areas/proshares/assets/fonts/MazzardH-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'MazzardHBold';
    src: url('/areas/proshares/assets/fonts/MazzardH-Bold.otf') format('opentype');
    /* IE9 Compat Modes */
}

@font-face {
    font-family: 'MazzardHRegular';
    src: url('/areas/proshares/assets/fonts/MazzardH-Regular.ttf') format('truetype');
    /* IE9 Compat Modes */
}

@font-face {
    font-family: 'MazzardHMedium';
    src: url('/areas/proshares/assets/fonts/MazzardH-Medium.otf') format('opentype');
    /* IE9 Compat Modes */
}

.chart .header {
    font-family: 'MazzardHSemiBold';
    border-bottom: 22px solid #3756df;
    padding-bottom: 30px;
    font-size: 75px;
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -0.3px;
    color: #1d263a;
    margin-bottom: 3rem;
}

.chart .title {
    font-family: 'MazzardHSemiBold';
    margin-top: 0;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.3px;
    color: #1d263a;
    margin-bottom: 0;
}

.chart .text-row {
    position: relative;
    z-index: 1;
}

.chart .left-col {
    float: left;
    margin-bottom: 3rem;
}

.chart .right-col {
    text-align: right;
}

.chart .chart-box {
    position: relative;
}

.chart .background-text {
    font-family: 'MazzardHBold';
    font-size: 17px;
    font-weight: bold;
    color: #a3a3a3;
    z-index: -1;
    margin-top: 20px;
    left: 48%;
    top: 30%;
    position: absolute;
}

.chart .desc {
    font-family: 'MazzardHMedium';
    font-size: 17px;
    line-height: 26px;
    color: #323232;
    margin-top: 24px;
    font-weight: 500;
    letter-spacing: normal;
    margin-bottom: 3rem;
}

.dual-chart .left-col {
    margin-bottom: 3rem;
}

/*DropDown CSS*/

.chart .dropbtn {
    background-color: transparent;
    color: #1d2639;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-weight: 600;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent;
    background-image: url('/areas/proshares/assets/icons/dropdown.svg');
    background-repeat: no-repeat;
    background-position-x: 93%;
    background-position-y: 20px;
    margin-right: 2rem;
    padding-right: 1rem;
    width: 100%;
}

    .chart .dropbtn:before {
        /* content: ''; */
        background-color: #00ffff;
        height: 40px;
        width: 40px;
        display: inline-block;
        position: absolute;
        top: 12px;
    }

.chart .dropdown {
    position: relative;
    display: inline-block;
}

.chart .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    overflow: auto;
    padding: 0 5px;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    margin-left: 12px;
    z-index: 1;
}

.chart .dropdown-btn {
    color: black;
    padding: 12px 16px;
    background: white;
    text-decoration: none;
    display: block;
    border: none;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
    width: 100%;
}

.chart .select {
    position: relative;
    margin-bottom: 15px;
    width: 175px;
}

    .chart .select .selectBtn {
        font-family: 'MazzardHSemiBold';
        font-size: 16px;
        padding: 10px;
        box-sizing: border-box;
        border-radius: 3px;
        width: 100%;
        cursor: pointer;
        position: relative;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background: #fff;
        text-align: left;
        padding-left: 12px;
        margin-top: 0;
        margin-bottom: 40px;
    }

        .chart .select .selectBtn:after {
            content: '';
            position: absolute;
            right: 0;
            top: 5px;
            width: 36px;
            height: 36px;
            background: transparent;
            background-image: url('/areas/proshares/assets/icons/dropdown.svg');
            background-repeat: no-repeat;
            background-position: 50%;
            background-color: #00def3;
            transition: 0.2s ease;
        }

        .chart .select .selectBtn.toggle {
            border-radius: 3px 3px 0 0;
        }

            .chart .select .selectBtn.toggle:after {
                -webkit-transform: translateY(-50%) rotate(-135deg);
                transform: translateY(-50%) rotate(-135deg);
            }

    .chart .select .selectDropdown {
        position: absolute;
        top: 75%;
        width: 100%;
        border-radius: 0 0 3px 3px;
        overflow: hidden;
        border-bottom: 1px solid;
        border-top: 1px solid #eee;
        z-index: 1;
        background: #fff;
        -webkit-transform: scale(1, 0);
        transform: scale(1, 0);
        -webkit-transform-origin: top center;
        transform-origin: top center;
        visibility: hidden;
        transition: 0.2s ease;
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
        text-align: left;
        padding-bottom: 0.25rem;
    }

        .chart .select .selectDropdown .option {
            font-family: 'MazzardHSemiBold';
            font-size: 16px;
            padding: 10px;
            box-sizing: border-box;
            cursor: pointer;
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }

            .chart .select .selectDropdown .option:last-child {
                border-bottom: none;
            }

        .chart .select .selectDropdown.toggle {
            visibility: visible;
            -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
        }

.chart .dropdown.open .selectBtn:after {
    background-image: url('/areas/proshares/assets/icons/dropdown-open.svg');
}

.chart .progress-bar {
    display: none;
    position: absolute;
    z-index: 111;
    top: 0%;
    height: 100%;
    width: 100%;
    background: white;
}

.chart progress {
    position: relative;
    top: 50%;
}

.chart .show {
    display: block;
}

@media screen and (max-width: 480px) {
    .chart .header {
        padding-bottom: 10px;
        border-bottom-width: 10px;
        font-size: 44px;
        margin-bottom: 32px;
        font-weight: 600;
    }

    .chart .left-col {
        margin-bottom: 2rem;
    }

    .chart .right-col {
        float: left;
        margin-bottom: 8px;
    }

    .chart .desc {
        margin-top: 16px;
    }
}

.research-insight__viewport {
    background-repeat: no-repeat;
}

.fund-detail-leverage-inverse .research-insight__viewport {
    background-size: 100%;
}

@media (max-width: 991.98px) {
    .fund-detail-leverage-inverse__fund-detail-hero {
        margin-bottom: 10rem;
    }
}

@media (max-width: 1399.98px) {
    .fund-detail-leverage-inverse__about-the-fund .about-fund__content-group {
        margin-bottom: 4rem;
    }

        .fund-detail-leverage-inverse__about-the-fund .about-fund__content-group:last-child {
            padding-left: 0;
        }

        .fund-detail-leverage-inverse__about-the-fund .about-fund__content-group:nth-child(3) {
            padding-left: 0;
        }
}

@media (max-width: 1399.98px) {
    .fund-detail-leverage-inverse__documents-downloads {
        margin-bottom: 8rem;
    }
}

@media (max-width: 1199.98px) {
    .fund-detail-leverage-inverse__documents-downloads {
        margin-bottom: 5rem;
    }
}

@media (max-width: 991.98px) {
    .fund-detail-leverage-inverse__documents-downloads {
        margin-bottom: 7rem;
    }
}

.fund-list-hero .tabs__visible {
    height: 420%;
    overflow-y: auto;
}

.fund-list-hero__list-selected-label > div {
    line-height: 1rem !important;
}

.premium-discount-page .block-text {
    margin-bottom: 8rem !important;
}

.premium-discount-page .chart-box {
    display: none;
}

.error-message {
    color: #f00;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 6rem;
}

.fund-screener-dropdown-table__text {
    color: #1D2639;
    font-size: 1.5rem;
    font-family: 'MazzardHSemiBold', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    padding: 0;
    margin-bottom: 2.3rem;
}

.fund-screener-dropdown-table__index-filtering .fund-screener-dropdown-table__left-col {
    display: flex;
    align-items: stretch;
}

.fund-screener-dropdown-table__index-filtering .fund-screener-dropdown-table__right-col {
    visibility: hidden;
}

.fund-screener-dropdown-table__index-filtering tbody tr td:first-child {
    font-weight: 600;
}

.fund-screener-dropdown-table__button-one {
    font-family: 'MazzardHSemiBold', sans-serif;
    background-color: #5DADFD;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 1.5rem;
    flex: 1;
}

.fund-screener-dropdown-table__button-two {
    font-family: 'MazzardHSemiBold', sans-serif;
    background-color: #e6eaf7;
    color: #1D263A;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 1.5rem;
    flex: 1;
}

/* .index-filtering tbody tr:first-child  td {
  margin-top: 20px !important;
} */

.fund-screener-dropdown-table__index-filtering .dropdown-date {
    font-family: 'MazzardHRegular', sans-serif;
    font-weight: 400;
}

.fund-screener-dropdown-table__index-filtering .accordion-toggle {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    width: 12px;
    /* Adjust size based on your icon */
    height: 12px;
    padding: 0;
    display: inline-block;
}

    .fund-screener-dropdown-table__index-filtering .accordion-toggle::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%);
        background-image: url('../icons/add.png');
        /* Path to plus icon */
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

.fund-screener-dropdown-table__index-filtering .accordion-header.expanded .accordion-toggle::before {
    background-image: url('../icons/minus.png');
    /* Path to minus icon */
    width: 8px;
    /* Adjust size based on your icon */
    height: 8px;
}

.fund-screener-dropdown-table__index-filtering .expanded td {
    border-bottom: none !important;
    /* border-top: none !important; */
}

.fund-screener-dropdown-table__index-filtering .no-bottom-border td {
    border-bottom: none !important;
    /* Ensure it overrides existing styles */
    border-top: none !important;
}

.fund-screener-dropdown-table__index-filtering .fund-screener-table .table {
    width: 100%;
}

    .fund-screener-dropdown-table__index-filtering .fund-screener-table .table th {
        border-bottom: 3px solid black;
        font-size: 14px;
        font-weight: 600;
    }

    .fund-screener-dropdown-table__index-filtering .fund-screener-table .table td {
        font-size: 14px;
    }

/* .fund-screener-dropdown-table__download-btns {
  display: block !important;
} */

/* News Announcement */

.news-announcement-hero {
    position: relative;
    background-color: #3756df;
    padding-top: 7rem;
    padding-inline: 3rem;
    color: #fff;
}


.news-announcement-spacing-article {
    margin-top: 64px;
    margin-bottom: 64px;
}

.news-announcement-spacing {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

@media screen and (min-width: 992px) {
    .news-announcement-latest .insights-default-filter__list-tab-item-link.nav-link {
        background-color: #3756df;
    }
}

@media screen and (max-width: 991.98px) {
    .news-announcement-latest .insights-default-filter__list-tab-item-link.nav-link {
        width: 100%;
    }
}

.news-announcement-hero__bg-theme {
    color: #fff;
}

.news-announcement-hero__bg-theme-dark-blue {
    background-color: #3756df;
}

.news-announcement-hero__bg-theme-blue {
    background-color: #1081f2;
}

.news-announcement-hero__bg-theme-light-purple {
    background-color: #771b85;
}

@media screen and (max-width: 780px) {
    .news-announcement-hero__bg-theme {
        padding-top: 7rem;
    }

    .news-announcement-hero {
        padding: 11rem 0 4rem;
    }

    .insights-default-filter__list-tab-item-link.nav-link-text {
        padding: 0;
        font-size: 1rem;
        line-height: 1;
        font-weight: 600;
        font-family: "MazzardHSemiBold", sans-serif;
    }

    @media (max-width: 780px) {
        .news-announcement-latest .insights-default-filter__list-tab-item-link.nav-link {
            color: #1d2632;
            background-color: #fff;
            border: 0;
            border-radius: 0;
        }
    }

    .news-announcement-latest .insights-default-filter__list-tab-item-link.nav-link {
        background-color: #fff;
    }

        .news-announcement-latest .insights-default-filter__list-tab-item-link.nav-link.active,
        .insights-default-filter__list-tab-item-link.nav-link:hover,
        .insights-default-filter__list-tab-item-link.nav-link:active {
            background-color: #1d2632;
            border-color: #1d2632;
            color: #fff;
        }

    .news-announcement-latest .insights-default-filter__list-tab-item-link.nav-link {
        background-color: #fff;
    }

    .news-announcement-latest .news-announcement-hero .tabs__visible {
        width: 100%;
        top: 3.5rem;
        display: block;
        position: absolute;
        z-index: 2;
        background-color: #fff;
        border: 1px solid #e6eaf7;
        padding: 0 space(3);
    }

        .news-announcement-latest .news-announcement-hero .tabs__visible li {
            padding: space(3) 0;
            border-bottom: 1px solid #e6eaf7;
            cursor: pointer;
        }

            .news-announcement-latest .news-announcement-hero .tabs__visible li:hover .dropdown__list-tab-item-link-text {
                background-color: #1d2632;
                color: #fff;
            }

            .news-announcement-latest .news-announcement-hero .tabs__visible li .nav-link {
                margin: 0;
            }

                .news-announcement-latest .news-announcement-hero .tabs__visible li .nav-link.active:after,
                .news-announcement-latest .news-announcement-hero .tabs__visible li .nav-link:hover:after,
                .news-announcement-latest .news-announcement-hero .tabs__visible li .nav-link:focus:after {
                    background-color: #fff;
                }

            .news-announcement-latest .news-announcement-hero .tabs__visible li:last-child {
                border: 0;
            }
}

@media (max-width: 1399.98px) {
    .news-announcement-hero {
        padding: 6rem 0 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .news-announcement-hero .nav-link span {
        font-size: 14px;
        line-height: 1.5rem;
        padding: 0;
    }
}

.news-announcement-latest .tabs.insights-tabs {
    /* padding-top: 0; */
    padding-bottom: 2rem;
}

.news-announcement-hero__eyebrow {
    margin-top: 1.75rem;
    color: #fff;
    margin-bottom: 2.25rem;
}

.news-announcement-hero__eyebrow__contact-wrap {
    margin-top: space(3);
}

.news-announcement-latest .insights-tabs {
    /* padding-top: 2rem; */
    padding-bottom: 0.5rem;
}

    .news-announcement-latest .insights-tabs .nav-item.tabs__list-item {
        margin-right: 16px;
    }

    .news-announcement-latest .insights-tabs .tab-content {
        min-height: initial;
        margin: 0;
    }

        .news-announcement-latest .insights-tabs .tab-content .tab-pane:first-child .insights-default-filter__list-tab .insights-default-filter__list-tab-item:nth-child(n+6) {
            display: list-item;
        }

    .news-announcement-latest .insights-tabs .position-relative {
        display: none;
    }

    .news-announcement-latest .insights-tabs .insights-default-filter__list-tab-item:nth-child(n + 8) {
        display: block;
    }

.news-announcement-latest .tabs.insights-tabs .tabs__list-item .insights-default-filter__list-tab-item-link-text {
    font-size: 17px;
    line-height: 24px;
    font-weight: 600;
    font-family: "MazzardHSemiBold", sans-serif;
}

.news-announcement-latest .tabs__items li:last-child {
    display: none;
}

.nav-link span {
    font-weight: 500;
    font-size: 1rem;
    font-family: 'MazzardHSemiBold', sans-serif;
    line-height: 24px;
}

.news-announcement-latest .nav-link.active {
    border: 1px solid #1d2632;
    background-color: #1d2632;
    color: white;
}

    .news-announcement-latest .nav-link.active:after {
        background-color: transparent;
    }


.news-announcement-latest .news-announcement-hero .nav-link:hover,
.news-announcement-latest .news-announcement-hero .nav-link:focus {
    background-color: #1d2632;
    border-color: #1d2632;
    color: #fff;
}

.news-announcement-hero .nav-link:hover::after,
.nav-link:focus:after {
    background-color: transparent;
}

.news-announcement-latest .article-card__header {
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.news-announcement-latest .article-card__source-date {
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
}

.news-announcement-latest .article-card__link {
    line-height: 24px;
    font-size: 17px;
    font-weight: 600;
}

.news-announcement-hero__body {
    -webkit-text-fill-color: inherit;
    /* Ensures text color isn't overridden on iOS */
    color: inherit;
    /* Use the parent text color */
}

    /* Prevent auto-linking of phone numbers specifically */
    .news-announcement-hero__body a[href^="tel"],
    .news-announcement-hero__body {
        text-decoration: none;
        -webkit-text-fill-color: inherit;
        color: inherit;
        pointer-events: none;
        /* Optionally disable the clickability */
    }

/*  careers-page-carousel CSS*/

.careers-page-carousel {
    padding: space(6) 0 5rem;
}

.careers-page-carousel__list-item {
    position: relative;
}

.careers-page-carousel__list-item-img {
    width: 100%;
}

.careers-page-carousel__list-item-location {
    color: #fff;
    background-color: #427806;
    padding: 2rem;
    position: relative;
    top: -3rem;
    width: 67%;
}

    .careers-page-carousel__list-item-location.no-image {
        top: 66%;
    }

    .careers-page-carousel__list-item-location:hover {
        color: #fff;
    }

.careers-page-carousel__bottom {
    border-top: space(2) solid #427806;
    padding-top: space(4);
    width: 84%;
    margin-top: 2rem;
}

.careers-page-carousel__bottom-content h5 {
    font-family: 'MazzardHRegular', sans-serif;
    font-weight: 400;
    margin-bottom: space(5);
}

@media screen and (max-width: 480px) {
    .careers-page-carousel__list-item-location.no-image {
        top: -2rem;
    }
}

.data-tax-hero {
    background-color: #415580;
    padding: 7.5rem 0 2.5rem;
    color: #fff;
}

.data-tax-hero__header {
    font-weight: 600;
}

.eyebrow-lightblue-regulatory {
    color: #5dadfd;
    font-family: "MazzardHMedium", sans-serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.25rem;
    line-height: 26px;
    text-transform: uppercase;
}

.data-tax-hero__eyebrow {
    color: #fff;
    margin-bottom: 1.25rem;
    display: block;
}

    .data-tax-hero__eyebrow a:hover {
        color: #fff;
    }

@media (max-width: 991.98px) {
    .data-tax-hero {
        padding-top: 10rem;
    }
}

@media screen and (max-width: 780px) {

    .regulatory-documents-table .search-container.filter-group {
        width: 100% !important;
    }

    .data-tax-hero {
        padding: 8rem 0 2.5rem !important;
    }

    .data-tax-hero__header {
        word-wrap: break-word;
        width: 94%;
        font-weight: 600;
    }

    .data-tax-hero__eyebrow {
        margin-bottom: 0.75rem;
    }

    .eyebrow-lightblue-regulatory {
        font-family: "MazzardHMedium", sans-serif;
        font-size: 12px;
        font-weight: 600;
        line-height: 0.75rem;
    }
}

@media (min-width: 781px) and (max-width: 1024px) {
    .regulatory-documents-table .search-container.filter-group {
        width: 50% !important;
    }
}

.regulatory-documents-table .search-container .search-input {
    padding: 1rem;
    border-radius: 0.25rem;
    /* margin-bottom: 32px; */
    border: 1px solid #E6EAF7;
}

    .regulatory-documents-table .search-container .search-input::placeholder {
        color: rgba(65, 85, 128, 1);
        font-weight: 400;
    }

.regulatory-documents-table .search-container .search-icon-container {
    pointer-events: none;
}


.regulatory-documents-table .search-container.filter-group {
    width: 33%;
    position: relative;
}

.search-input {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    line-height: 8px;
    font-weight: 400;
    font-family: 'MazzardHRegular', sans-serif;
    color: rgba(65, 85, 128, 1);
}

.search-icon-container {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.search-icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.regulatory-documents-table.filter .filter-group img.search-icon {
    position: static;
    padding: 0;
}

.fund-screener-table .table th {
    white-space: normal;
}

.fund-screener-table .table td {
    vertical-align: bottom;
}

.fund-screener-table td:first-child,
td:nth-child(2) {
    font-family: "MazzardHBold", sans-serif;
}

.regulatory-documents-landing__container-wrapper {
    margin-bottom: 8.5rem;
}

.regulatory-documents-table th {
    text-align: center;
}

    .regulatory-documents-table th:first-child,
    .regulatory-documents-table th:nth-child(2) {
        text-align: left;
    }

@media screen and (max-width: 480px) {
    .regulatory-documents-landing__container-wrapper {
        margin-bottom: 1rem;
    }
}

.regulatory-documents-landing__document-list {
    margin-top: 5rem;
}

    .regulatory-documents-landing__document-list:first-child {
        margin-top: 0;
    }

@media screen and (max-width: 780px) {
    .regulatory-documents-landing .document-download-list {
        margin-bottom: space(4);
    }
}

.regulatory-documents-table .fund-screener-table td:first-child {
    font-family: "MazzardHSemiBold", sans-serif;
    color: #1081f2;
    font-weight: 600;
    line-height: 24px;
    font-size: 14px;
}

.regulatory-documents-table.filter .fund-screener-table .table td {
    vertical-align: bottom;
    border-color: #DADADA;
}

/*Table styling changes*/
.regulatory-documents-table.filter td:first-child {
    width: 8%;
}

.regulatory-documents-table.filter td:nth-child(2) {
    width: 25%;
}

.regulatory-documents-table.filter .fund-screener-table th {
    text-wrap: wrap;
    width: 10%;
}

.regulatory-documents-table.filter td {
    width: 10%;
}

.regulatory-documents-table.filter .fund-screener-table th:first-child {
    width: 8%;
}

.regulatory-documents-table.filter .fund-screener-table th:nth-child(2) {
    width: 25%;
}

.regulatory-documents-table.filter .fund-screener-table .table td img.download-icon,
.regulatory-documents-table__mobile .regulatory-documents-table__accordion img.download-icon {
    height: 24px;
}

.regulatory-documents-table.filter .fund-screener-table .table td img.external-link-icon,
.regulatory-documents-table__mobile .regulatory-documents-table__accordion img.external-link-icon {
    height: 16px;
}

.regulatory-documents-table td.no-document {
    color: #74788D;
    font-size: 14px;
}

.regulatory-documents-table.filter .fund-screener-table th,
.regulatory-documents-table.filter td:nth-child(2) {
    font-family: "MazzardHSemiBold", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}

/* Target all table headers inside regulatory-documents-table .fund-screener-table */
.regulatory-documents-table .fund-screener-table thead th:not(:nth-child(1)):not(:nth-child(2)) {
    pointer-events: none;
    /* Prevents clicking */
    position: relative;
}

    /* Optional: visually disable sorting icons */
    .regulatory-documents-table .fund-screener-table thead th:not(:nth-child(1)):not(:nth-child(2))::after {
        content: none !important;
    }

    /* Optionally reset sorting arrow styles if applied via .dir-u or .dir-d */
    .regulatory-documents-table .fund-screener-table thead th:not(:nth-child(1)):not(:nth-child(2)).dir-u,
    .regulatory-documents-table .fund-screener-table thead th:not(:nth-child(1)):not(:nth-child(2)).dir-d {
        background-image: none !important;
        background: none !important;
    }

.fund-screener-table .table th {
    border-top: 0;
    font-family: "MazzardHSemiBold", sans-serif;
    line-height: 24px;
    padding: 0 1rem 0.25rem 0;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    font-weight: 600;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 3px solid #323232;
}

/*Regulatory Document Viewer Design */

.regulatory-documents-viewer {
    width: 100%;
}

    .regulatory-documents-viewer .header-row {
        display: flex;
        align-items: center;
        padding: 1rem;
        background-color: #fff;
        border-bottom: 1px solid #e0e0e0;
        justify-content: space-between;
        gap: 1rem;
    }

        .regulatory-documents-viewer .header-row .proshares-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-right: 2rem;
        }

        .regulatory-documents-viewer .header-row .header-left {
            display: flex;
            align-items: center;
        }

        .regulatory-documents-viewer .header-row .fund-info {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .regulatory-documents-viewer .header-row .ticker {
            font-size: 1rem;
            font-weight: 100;
            margin-right: 1rem;
            color: #666;
        }

        .regulatory-documents-viewer .header-row .fund-name {
            font-size: 2rem;
            font-weight: 600;
            color: #1D2639;
        }

    .regulatory-documents-viewer .documents-layout {
        display: flex;
        width: 100%;
        min-height: 100vh;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        overflow: hidden;
    }

    .regulatory-documents-viewer .sidebar {
        width: 20%;
        min-width: 200px;
        background-color: #fff;
        border-right: 1px solid #e0e0e0;
    }

        .regulatory-documents-viewer .sidebar .sidebar-heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 1rem;
            margin: 0;
            font-size: 20px;
            line-height: 30px;
            font-weight: 600;
            border-bottom: 1px solid #e0e0e0;
            letter-spacing: 0.5px;
        }

        .regulatory-documents-viewer .sidebar .chevron-icon {
            width: 20px;
            height: 20px;
            color: #000;
        }

        .regulatory-documents-viewer .sidebar .document-links .document-link,
        .regulatory-documents-viewer .sidebar .document-links .external-link {
            display: flex;
            align-items: center;
            padding: 10.5px 15px;
            cursor: pointer;
            transition: background-color 0.2s;
            font-size: 1.2rem;
            font-weight: 600;
        }

            .regulatory-documents-viewer .sidebar .document-links .document-link:last-child,
            .regulatory-documents-viewer .sidebar .document-links .external-link {
                border-bottom: none;
            }

                .regulatory-documents-viewer .sidebar .document-links .document-link:hover,
                .regulatory-documents-viewer .sidebar .document-links .external-link:hover {
                    background-color: rgba(0, 0, 0, 0.05);
                }

                .regulatory-documents-viewer .sidebar .document-links .document-link.active,
                .regulatory-documents-viewer .sidebar .document-links .external-link.active {
                    background-color: #1081F2;
                    color: #ffffff;
                    font-weight: 600;
                }

        .regulatory-documents-viewer .sidebar .document-links .document-link,
        .regulatory-documents-viewer .sidebar .document-links .external-link {
            color: #323232;
            font-size: 14px;
            line-height: 21px;
        }

            .regulatory-documents-viewer .sidebar .document-links .document-link .document-label,
            .regulatory-documents-viewer .sidebar .document-links .external-link .document-label {
                font-size: 14px;
                line-height: 21px;
            }

.back-button-desktop {
    display: block;
    padding: 10.5px 15px;
}

.back-button-mobile {
    display: none;
}

/* .regulatory-documents-viewer .document-viewer {
  flex: 1;
  width: 80%;
  display: flex;
  flex-direction: column;
} */

.regulatory-documents-viewer .document-viewer {
    height: 100vh;
    overflow: hidden;
}

    .regulatory-documents-viewer .document-viewer .document-iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .regulatory-documents-viewer .document-viewer .pdf-scroll-container {
        height: 100%;
        overflow-y: auto;
        padding: 16px;
        display: none;
    }

        .regulatory-documents-viewer .document-viewer .pdf-scroll-container canvas {
            display: block;
            margin: 0 auto 24px auto;
            max-width: 100%;
            height: auto;
        }


    .regulatory-documents-viewer .document-viewer .document-iframe {
        flex: 1;
        width: 100%;
        height: 100%;
        border: none;
    }

    .regulatory-documents-viewer .document-viewer .no-document-selected {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fafafa;
    }

        .regulatory-documents-viewer .document-viewer .no-document-selected p {
            color: #666;
            font-size: 1rem;
        }

@media (max-width: 768px) {
    .regulatory-documents-viewer .header-row {
        flex-direction: column;
        align-items: flex-start;
    }

        .regulatory-documents-viewer .header-row .proshares-title {
            margin-bottom: 0.5rem;
        }

    .regulatory-documents-viewer .documents-layout {
        flex-direction: column;
    }

    .regulatory-documents-viewer .sidebar {
        width: 100%;
        min-width: 100%;
    }

    .regulatory-documents-viewer .document-viewer {
        aspect-ratio: 16/9;
    }
}

/* Landing Page Mobile CSS*/

.regulatory-documents-table__mobile {
    margin-top: 1rem;
}

    .regulatory-documents-table__mobile .accordion-custom:first-child .accordion-custom__label {
        border-top: 1px solid #E6EAF7;
    }

.regulatory-documents-table__mobile-row {
    border: 1px solid #ececec;
    margin-bottom: 0.5rem;
}

.regulatory-documents-table__mobile-header {
    background-color: #fff;
    cursor: pointer;
}

.regulatory-documents-table__ticker {
    font-family: "MazzardHBold", sans-serif;
    color: #1081f2;
}

.regulatory-documents-table__fund-name {
    color: #1D2639;
    font-family: 'MazzardHSemiBold', sans-serif;
    font-weight: 600;
}

.regulatory-documents-table__chevron img {
    transition: transform 0.2s ease;
}

    .regulatory-documents-table__chevron img.rotated {
        transform: rotate(180deg);
    }

/* Accordian Custom Css */
.accordion-custom__toggle {
    display: flex;
    position: relative;
    width: 100%;
    text-align: left;
    color: #1081f2;
    align-items: center;
    justify-content: space-between;
    padding: space(3) space(4);
}

@media screen and (max-width: 780px) {
}

.accordion-custom__toggle .button-label {
    flex: 1;
    text-align: left;
}

.accordion-custom__toggle:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin-left: space(2);
    background-image: url('/areas/proshares/assets/icons/chevron-down.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.25s ease-out;
}

.accordion-custom__toggle[aria-expanded="true"]:after {
    background-image: url('/areas/proshares/assets/icons/chevron-up.png');
}

.accordion-custom__toggle .chevron-icon {
    display: none;
}

.accordion-custom__label {
    display: block;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: normal;
    width: 100%;
    border-bottom: 1px solid #DADADA;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 16px;
}

.accordion-custom__content {
    border-top: 1px solid #e6eaf7;
    background-color: #f5f7fa;
    padding: 14px;
    font-size: 14px;
    font-weight: 100;
}

    .accordion-custom__content .download-icon {
        color: #1d2632;
    }


.regulatory-documents-table__mobile .accordion-custom__content .no-document {
    color: #74788D;
    font-size: 14px;
}

.accordion-custom__content .content-item {
    display: flex;
    align-items: center;
    margin-bottom: space(2);
}

    .accordion-custom__content .content-item .file-icon {
        margin-right: space(2);
    }

    .accordion-custom__content .content-item .content-text {
        flex: 1;
        border-top: 1px solid #e6eaf7;
    }

/* .accordion-custom__content .download-icon{
  color: #1d2632;
} */

.documents-layout {
    display: flex;
}

.sidebar {
    width: 250px;
    transition: width 0.3s;
}

.additional-content {
    width: 5%;
    padding-top: 8px;
    padding-bottom: 24px;
    /* Optional padding for spacing */
}

.icon-wrapper {
    padding-inline: 8px;
    padding-top: 16px;
    padding-bottom: 12px;
    width: 70px;
    /* Wrapper takes 10% width */
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #e6eaf7;
    /* Bottom border applied to wrapper */
}

.chevron-icon {
    width: 12px;
    /* Adjust icon size */
    height: auto;
}

.chevron-icon-down {
    width: 20px;
    /* Adjust icon size */
    height: auto;
}

.document-viewer {
    flex: 1;
    transition: flex 0.3s;
}

.mobile-accordion {
    display: none;
    /* Hide by default, show only on mobile */
}

@media (max-width: 768px) {
    /* Adjust the max-width as needed for your mobile breakpoint */

    .regulatory-documents-viewer .header-row .header-left {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: left;
        align-items: flex-start;
    }

    .navbar-brand {
        justify-content: flex-start;
        /* Align logo to the left */
    }

    .mobile-accordion {
        display: block;
        /* Show accordion on mobile */
    }

    .sidebar {
        display: none;
        /* Hide sidebar on mobile */
    }
}

/* .mobile-accordion-content .document-links .document-link.active {
  background-color:#1081F2;
  color: #ffffff;
} */

.mobile-accordion-content .document-links .document-link.active,
.mobile-accordion-content .document-links .external-link.active {
    background-color: #1081F2;
    color: #ffffff;
}

.mobile-accordion-content .document-links .document-link,
.mobile-accordion-content .document-links .external-link {
    color: #323232;
}

.accordion-custom__content strong {
    font-weight: 400;
    line-height: 21px;
}

.accordion-custom__content .d-flex {
    padding-top: 4px;
    padding-bottom: 4px;
}


.mobile-accordion .mobile-accordion-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    margin: 0;
    font-size: 1.25rem;
    line-height: 30px;
    font-weight: 600;
    border-bottom: 1px solid #e0e0e0;
    letter-spacing: 0.5px;
}

.mobile-accordion-content .document-links .document-link,
.mobile-accordion-content .document-links .external-link {
    display: flex;
    align-items: center;
    padding: 1rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 1rem;
    font-weight: 600;
    color: #1D2639;
}

.mobile-accordion-content .document-label {
    font-size: 14px;
    line-height: 21px;
    font-family: 'MazzardHSemiBold';
}



@media (max-width: 768px) {

    /* Adjust the breakpoint as needed */
    .header-row {
        display: flex;
        justify-content: space-between;
        /* Space between elements */
        align-items: center;
        /* Center items vertically */
        padding: 10px;
        /* Add some padding */
    }

    .header-left {
        display: flex;
        align-items: center;
        /* Center items vertically */
    }

        .header-left .navbar-brand {
            margin-right: 10px;
            /* Space between logo and fund info */
        }

    .fund-info {
        display: flex;
        flex-direction: column;
        /* Stack ticker and fund name vertically */
        align-items: flex-start;
        /* Align items to the left */
    }

    .back-button-desktop {
        display: none;
    }

    .back-button-mobile {
        display: block;
    }
}


.regulatory-documents-viewer .vertical-line {
    display: none;
}

@media (min-width: 769px) {
    .regulatory-documents-viewer .vertical-line {
        display: block;
        width: 1px;
        /* Thin vertical line */
        height: 52px;
        /* Adjust height as needed */
        background-color: #DADADA;
        /* Grey line */
        margin: 0 24px;
        /* 24px padding on both sides */
    }
}
