* {
    box-sizing: border-box;
}
#insights-stats-module {
    --green: #8ED500;
    --dkGreen: #004D35;
    --ltGreen: #D4F495;
    --cream: #FEF8D7;
    --yellow: #F9D623;
    --orange: #F56A14;
    --ltOrange: #F78945;
    --blue: #68D0D9;
    --dkBlue: #00A3B1;
    --light: 300;
    --regular: 400;
    --bold: 700;
    --black: 900;
    font-family: 'Lato', sans-serif;
    padding-top: 20px;
}
#insights-stats-module .template {
    display: none;
}
#insights-stats-module button {
    padding: 10px 20px;
    font-family: inherit;
    border-radius: 50px;
    border: 1px solid black;
    cursor: pointer;
}
#insights-stats-module .stats-list .stat.page-hide,
#insights-stats-module .hide,
#insights-stats-module .stats-list .stat.hide {
    display: none;
}

/* ---------------------- */
/* TOPICS */
#insights-stats-module h4 {
    margin-bottom: 13px;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    font-style: italic;
    font-weight: var(--bold);
    color: var(--dkGreen)
}
#insights-stats-module .topics-list {
    text-align: center;
}
#insights-stats-module .topics-list button.topic {
    font-size: 24px;
    color: var(--green);
    font-style: italic;
    font-weight: var(--black);
    border: none;
    background-color: transparent;
    cursor: pointer;
}
#insights-stats-module button.topic.active {
    text-decoration: underline;
    text-underline-offset: 6px;
}

/* ---------------------- */
/* SUB-TOPICS */
#insights-stats-module .sub-topics-list {
    margin: 15px auto 0;
    max-width: 950px;
    padding-inline: 30px;
    text-align: center;
}
#insights-stats-module button.sub-topic {
    margin: 10px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: var(--bold);
    font-style: italic;
    background-color: #ffffff;
    color: var(--green);
    border-color: var(--green);
}
#insights-stats-module button.sub-topic.active {
    background-color: var(--green);
    color: #ffffff;
}

/* ---------------------- */
/* STATS */
#insights-stats-module .stats-list {
    display: flex;
    flex-wrap: wrap;
    margin: 30px auto 0;
    background-color: var(--green);
}
#insights-stats-module .stats-list .stat {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.33%;
    flex-shrink: 0;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    color: var(--dkGreen);
}
@supports not (aspect-ratio: 1 / 1) {
    #insights-stats-module .stats-list .stat::before {
        float: left;
        padding-top: 100%;
        content: "";
    }
    #insights-stats-module .stats-list .stat::after {
        display: block;
        content: "";
        clear: both;
    }
}
/* @media screen and (max-width: 1100px) {
    #insights-stats-module .stats-list .stat {
        width: 50%;
    }
} */
/* @media screen and (max-width: 800px) { */
@media screen and (max-width: 767px) {
    #insights-stats-module .stats-list .stat {
        /* margin: 0 auto; */
        width: 100%;
        /* max-width: 600px; */
    }
}
#insights-stats-module .stats-list .stat .content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    /* height: 100%; */
    /* padding-block: 15% 20%; */
}
#insights-stats-module .stats-list .stat .sub-topic {
    margin-bottom: 15px;
    padding-inline: 30px;
    font-size: 24px;
    font-weight: var(--black);
}
#insights-stats-module .stats-list .stat .number {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1em;
    font-weight: var(--black);
    font-style: italic;
}
#insights-stats-module .stats-list .stat .number span:first-child,
#insights-stats-module .stats-list .stat .number span:last-child {
    font-size: 48px;
}
#insights-stats-module .stats-list .stat .number span + span {
    margin-left: .25em;
}
#insights-stats-module .stats-list .stat .copy {
    max-width: 400px;
    /* padding-inline: 60px; */
    padding-inline: 4vw;
    font-size: 19px;
    line-height: 1.36em;
}
#insights-stats-module .stats-list .stat .link {
    /* margin-top: auto; */
    margin-top: 20px;
    cursor: pointer;
}
#insights-stats-module .stats-list .stat .link-btn {
    padding: 10px 25px;
    font-size: 19px;
    font-weight: 400;
    color: var(--dkGreen);
    border-width: 2px;
    border-color: var(--dkGreen);
    background: transparent;
    cursor: pointer;
    transition: padding .1s linear;
}
#insights-stats-module .stats-list .stat .link:hover .link-btn {
    padding: 10px 35px;
}
#insights-stats-module .stats-list .stat .note {
    /* margin-top: auto; */
    margin: 50px auto 0;
    max-width: 320px;
    padding-inline: 35px;
    font-size: 14px;
    line-height: 1.1em;
    font-weight: var(--regular);
    font-style: italic;
}

/* ---------------------- */
/* STAT SIZES */
/* STILL THREE-UP */

@media screen and (min-width: 0px) and (max-width: 500px), (min-width: 1051px) and (max-width: 1279px)  {
    #insights-stats-module .stats-list .stat .sub-topic {
        font-size: 20px;
    }
    #insights-stats-module .stats-list .stat .number {
        margin-bottom: 10px;
        font-size: 24px;
    }
    #insights-stats-module .stats-list .stat .number span:first-child, 
    #insights-stats-module .stats-list .stat .number span:last-child {
        font-size: 30px;
    }
    #insights-stats-module .stats-list .stat .copy {
        font-size: 16px;
    }    
    #insights-stats-module .stats-list .stat .link-btn {
        font-size: 16px;
    }
    #insights-stats-module .stats-list .stat .note {
        font-size: 12px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1050px) {
    #insights-stats-module .stats-list .stat .sub-topic {
        margin-bottom: 10px;
        font-size: 15px;
    }
    #insights-stats-module .stats-list .stat .number {
        margin-bottom: 10px;
        font-size: 15px;
    }
    #insights-stats-module .stats-list .stat .number span:first-child, 
    #insights-stats-module .stats-list .stat .number span:last-child {
        font-size: 19px;
    }
    #insights-stats-module .stats-list .stat .copy {
        padding-inline: 30px;
        font-size: 12px;
        line-height: 1.1em;
    }    
    #insights-stats-module .stats-list .stat .link {
        margin-top: 15px;
    }
    #insights-stats-module .stats-list .stat .link-btn {
        padding: 6px 15px;
        font-size: 12px;
    }
    #insights-stats-module .stats-list .stat .link:hover .link-btn {
        padding: 6px 20px;
    }
    #insights-stats-module .stats-list .stat .note {
        margin-top: 30px;
        font-size: 10px;
    }
}

/* ---------------------- */
/* PAGINATION */
#insights-stats-module .stats-pagination {
    display: flex;
    padding-block: 20px;
    background-color: var(--dkGreen);
    color: var(--green);
    text-align: center;
    justify-content: center;
}
#insights-stats-module .stats-pagination .disable {
    opacity: .5;
    cursor: auto;
}
#insights-stats-module .stats-pagination button {
    width: 35px;
    height: 35px;
    padding: 5px;
    border: none;
    border-radius: 50%;
    background-color: transparent;
    font-size: 16px;
    line-height: 1em;
    font-weight: var(--bold);
    font-style: italic;
    color: var(--green);
    cursor: pointer;
}
#insights-stats-module .stats-pagination button.active {
    margin-inline: 10px;
    background-color: var(--green);
    color: var(--dkGreen);
}
#insights-stats-module .stats-pagination .pages {
    margin-inline: 110px;
}
#insights-stats-module .stats-pagination .prev,
#insights-stats-module .stats-pagination .prev-pages {
    transform: scaleX(-1);
}
#insights-stats-module .stats-pagination .prev-wrap,
#insights-stats-module .stats-pagination .next-wrap {
    display: flex;
    align-content: center;
    cursor: pointer;
}
#insights-stats-module .stats-pagination .next-wrap .next-pages,
#insights-stats-module .stats-pagination .prev-wrap .prev-pages {
    padding-left: 20px;
}
@media screen and (max-width: 767px) {
    #insights-stats-module .stats-pagination .pages {
        margin-inline: 10px;
    }
    #insights-stats-module .stats-pagination .next-wrap .next-pages, 
    #insights-stats-module .stats-pagination .prev-wrap .prev-pages {
        padding-left: 15px;
    }
}

/* ---------------------- */
/* SUBTOPIC VISUAL THEMES */
#insights-stats-module .stats-list .stat .shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--cream);
    border-radius: 50%;
}
#insights-stats-module .stats-list .stat[data-sub-topic="April 2021"] {
    background-color: var(--dkBlue);
    color: var(--dkGreen)
}
#insights-stats-module .stats-list .stat[data-sub-topic="April 2021"] .shape {
    background-color: var(--green);
    border-bottom-right-radius: 0px;
    border-top-left-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Auto"] {
    background-color: var(--orange);
    color: var(--dkGreen)
}
#insights-stats-module .stats-list .stat[data-sub-topic="Auto"] .shape {
    background-color: var(--yellow);
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Back to School"] {
    background-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Back to School"] .link-btn {
    border-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Back to School"] .shape {
    background-color: var(--dkGreen);
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="CPG"] {
    background-color: var(--dkBlue);
    color: var(--dkGreen)
}
#insights-stats-module .stats-list .stat[data-sub-topic="CPG"] .shape {
    background-color: var(--yellow);
    border-bottom-right-radius: 0px;
    border-top-left-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Credit Union"] {
    background-color: var(--cream);
    color: var(--dkGreen)
}
#insights-stats-module .stats-list .stat[data-sub-topic="Credit Union"] .shape {
    background-color: var(--ltGreen);
    border-top-right-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="December 2020"] {
    background-color: var(--ltGreen);
    color: var(--dkGreen);
}
#insights-stats-module .stats-list .stat[data-sub-topic="December 2020"] .shape {
    background-color: var(--cream);
    border-top-right-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="December 2021"] {
    background-color: var(--orange);
    color: var(--dkGreen);
}
#insights-stats-module .stats-list .stat[data-sub-topic="December 2021"] .shape {
    border-bottom-right-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Education"] {
    background-color: var(--blue);
    color: var(--dkGreen);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Education"] .shape {
    background-color: var(--ltGreen);
    border-top-right-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Energy"] {
    background-color: var(--yellow);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Energy"] .shape {
    background-color: var(--orange);
    border-top-left-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Entertainment"] {
    background-color: var(--green);
    color: var(--green);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Entertainment"] .shape {
    background-color: var(--dkGreen);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="FinServ"] {
    background-color: var(--cream);
    color: var(--dkGreen);
}
#insights-stats-module .stats-list .stat[data-sub-topic="FinServ"] .shape {
    background-color: var(--green);
    border-bottom-right-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Healthcare"] {
    background-color: var(--blue);
    color: var(--dkGreen);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Healthcare"] .shape {
    background-color: var(--ltGreen);
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Holiday Shopping"] {
    background-color: var(--blue);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Holiday Shopping"] .link-btn {
    border-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Holiday Shopping"] .shape {
    background-color: var(--dkBlue);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Holiday Shopping 2023"] {
    background-color: var(--blue);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Holiday Shopping 2023"] .link-btn {
    border-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Holiday Shopping 2023"] .shape {
    background-color: var(--dkBlue);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Home"] {
    background-color: var(--ltOrange);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Home"] .shape {
    background-color: var(--orange);
    border-bottom-right-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Home Renovations"] {
    background-color: var(--ltGreen);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Home Renovations"] .link-btn {
    border-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Home Renovations"] .shape {
    background-color: var(--orange);
    border-top-right-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Home Renovations 2023"] {
    background-color: var(--ltGreen);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Home Renovations 2023"] .link-btn {
    border-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Home Renovations 2023"] .shape {
    background-color: var(--orange);
    border-top-right-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="March 2020"] {
    background-color: var(--dkGreen);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="March 2020"] .link-btn {
    border-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="March 2020"] .shape {
    background-color: var(--orange);
    border-bottom-left-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="May 2020"] {
    background-color: var(--green);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="May 2020"] .link-btn {
    border-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="May 2020"] .shape {
    background-color: var(--dkBlue);
    border-top-left-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Moving Trends"] {
    background-color: var(--blue);
    color: var(--dkGreen);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Moving Trends"] .shape {
    background-color: var(--ltGreen);
    border-bottom-right-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Moving Trends 2023"] {
    background-color: var(--cream);
    color: var(--dkGreen)
}
#insights-stats-module .stats-list .stat[data-sub-topic="Moving Trends 2023"] .shape {
    background-color: var(--ltGreen);
    border-top-right-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Pets"] {
    background-color: var(--yellow);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Pets"] .link-btn {
    border-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Pets"] .shape {
    background-color: var(--dkBlue);
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="QSR"] {
    background-color: var(--dkGreen);
    color: var(--dkGreen)
}
#insights-stats-module .stats-list .stat[data-sub-topic="QSR"] .shape {
    background-color: var(--cream);
    border-bottom-right-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Retail"] {
    background-color: var(--yellow);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Retail"] .link-btn {
    border-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Retail"] .shape {
    background-color: var(--dkBlue);
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="September 2020"] {
    background-color: var(--orange);
    color: var(--dkGreen)
}
#insights-stats-module .stats-list .stat[data-sub-topic="September 2020"] .shape {
    background-color: var(--cream);
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Shopping Attitudes"] {
    background-color: var(--cream);
    color: var(--dkGreen)
}
#insights-stats-module .stats-list .stat[data-sub-topic="Shopping Attitudes"] .shape {
    background-color: var(--yellow);
    border-bottom-right-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Social Media Attitudes"] {
    background-color: var(--ltOrange);
    color: var(--dkGreen)
}
#insights-stats-module .stats-list .stat[data-sub-topic="Social Media Attitudes"] .shape {
    background-color: var(--yellow);
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Tech/Telco"] {
    background-color: var(--green);
    color: var(--dkGreen)
}
#insights-stats-module .stats-list .stat[data-sub-topic="Tech/Telco"] .shape {
    background-color: var(--yellow);
    border-top-left-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Travel"] {
    background-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Travel"] .link-btn {
    border-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Travel"] .shape {
    background-color: var(--dkGreen);
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
}


#insights-stats-module .stats-list .stat[data-sub-topic="Home Security"] {
    background-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Home Security"] .link-btn {
    border-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Home Security"] .shape {
    background-color: var(--dkGreen);
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
}


#insights-stats-module .stats-list .stat[data-sub-topic="Military"] {
    background-color: var(--orange);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Military"] .link-btn {
    border-color: var(--orange);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Military"] .shape {
    background-color: var(--dkGreen);
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
}


#insights-stats-module .stats-list .stat[data-sub-topic="Spring Cleaning Habits"] {
    background-color: var(--blue);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Spring Cleaning Habits"] .link-btn {
    border-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Spring Cleaning Habits"] .shape {
    background-color: var(--dkBlue);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

#insights-stats-module .stats-list .stat[data-sub-topic="Sustainability"] {
    background-color: var(--ltGreen);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Sustainability"] .link-btn {
    border-color: var(--cream);
    color: var(--cream);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Sustainability"] .shape {
    background-color: var(--orange);
    border-top-right-radius: 0px;
}

#insights-stats-module .stats-list .stat[data-sub-topic="Tax Season"] {
    background-color: var(--blue);
    color: var(--dkGreen);
}
#insights-stats-module .stats-list .stat[data-sub-topic="Tax Season"] .shape {
    background-color: var(--ltGreen);
    border-bottom-right-radius: 0px;
}

#insights-stats-module .stats-list .stat[data-sub-topic="Telco Preferences"] {
    background-color: var(--cream);
    color: var(--dkGreen)
}
#insights-stats-module .stats-list .stat[data-sub-topic="Telco Preferences"] .shape {
    background-color: var(--yellow);
    border-bottom-right-radius: 0px;
}

#insights-stats-module .stats-list .stat[data-sub-topic="Summer Travel"] {
    background-color: var(--ltOrange);
    color: var(--dkGreen)
}
#insights-stats-module .stats-list .stat[data-sub-topic="Summer Travel"] .shape {
    background-color: var(--yellow);
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
#insights-stats-module .stats-list .stat[data-sub-topic="Sports"] {
    background-color: var(--ltOrange);
    color: var(--dkGreen)
}
#insights-stats-module .stats-list .stat[data-sub-topic="Sports"] .shape {
    background-color: var(--cream);
     border-bottom-right-radius: 0px;
 
}