/*Chart and Sidebar*/
.main-content-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}
.main-content-wrapper.chart-sidebar-active {
    flex: 0 0 75%;
}
.main-content-wrapper {
    flex: 0 0 100%;
}
.sidebar-container {
    flex: 0 0 25%;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}
.sidebar-module {
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 5px 3px 13px 0 rgba(0,0,0,.1);
    background-color: rgba(0,0,0,.05);
    border: .5px solid rgba(0,0,0,.25);
}

.sidebar-module .lm-link {
    color: #484848;
    font-size: 14px;
    text-decoration: underline;
}
.sidebar-module .lm-link:hover {
    color: #084DAA;
    font-style: italic;
    font-weight: 500;
}
.sidebar-mod-list {
    width: 100%;
}
.sidebar-section-title {
    padding: .25rem 0 .5rem 0;
    font-size: 1.5rem;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
.sidebar-mod-left {
    flex: 0 0 67%;
}
.sidebar-mod-right {
    flex: 0 0 33%;
}
    /*user count mod*/
.social-proof-text {
    text-align: center;
}
.social-proof-text .sidebar-section-title {
    font-size: 2rem;
    font-weight: 600;
}
.social-proof-text p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
}

/*Review Mod*/
.reviews-side-mod {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}
.editorial-image {
    width: 115px;
}

.reviews-side-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}


/*Articles Sidebar*/
.articles-side-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: .75rem;
}
.articles-side-box .sidebar-list-desc, .article-longform .articles-side-box p.sidebar-list-desc {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    text-wrap: normal;
    padding-right: .5rem;
    line-height: 1.25;
}

/*SIDEBAR AD*/
.sidebar-vendor {
    width: 100%;
    height: fit-content;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.img-resize {
    width: 100%;
    height: auto;
}
.index-link {
    margin: 0 auto;
    font-size: 11px;
    width: 100%;
    display: block;
}
.index-link-wrapper {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .main-content-container {
        flex-direction: column;
        align-items: center;
    }
    .main-content-wrapper.chart-sidebar-active {
        flex: 0 0 100%;
        width: 100%;
    }
    .sidebar-container {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 1rem;
        border-top: 1px solid rgba(0,0,0,.25);
        border-bottom: 1px solid rgba(0,0,0,.25);
    }
    .reviews-index .main-content-wrapper.chart-sidebar-active, .articles-index .main-content-wrapper.chart-sidebar-active {
        padding-bottom: 2rem;
    }

    .review-longform .sidebar-section-title {
        font-size: 18px;
    }
    .sidebar-section .lm-link {
        font-size: 14px;
    }
    .social-proof-wrapper {
        margin-top: 0;
    }
    .reviews-side-box {
        margin-bottom: .5rem;
    }
    .articles-side-box .sidebar-list-desc {
        font-size: 14px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
    .sidebar-module .lm-link {
        font-size: 10px;
    }
    .editorial-image {
        width: 100px;
    }
    .articles-side-box .sidebar-list-desc, .article-longform .articles-side-box p.sidebar-list-desc {
        font-size: 12px;
    }
    .sidebar-section-title {
        font-size: 1.25rem;
    }
    .social-proof-text h4 {
        margin-bottom: 0;
    }
    .social-proof-text p {
        font-size: 12px;
    }
}

@media screen and (max-width: 991px) {
    .main-content-container {
        gap: 0;
    }
    .user-count-mod {
        display: none;
    }
    .sidebar-module {
        border-radius: 0;
        box-shadow: none;
        background-color: transparent;
        border: none;
    }
    .sidebar-section-title {
        color: #084DAA;
        text-align: center;
        font-size: 22px;
        font-weight: 600;
        width: 100%;
    }
}
@media screen and (max-width: 1199px) {
    .articles-index .main-content-container, .reviews-index .main-content-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
    }
    .articles-index .main-content-wrapper.chart-sidebar-active, .reviews-index .main-content-wrapper.chart-sidebar-active {
        flex: 0 0 100%;
        width: 100%;
        margin: 0 auto;
    }
    .articles-index .sidebar-container, .reviews-index .sidebar-container {
        flex: 0 0 50%;
        width: 100%;
    }
    .articles-index .sidebar-module, .reviews-index .sidebar-module {
        border-radius: 0;
        box-shadow: none;
        background-color: transparent;
        border: none;
    }
    .articles-index .sidebar-section-title, .reviews-index .sidebar-section-title {
        color: #084DAA;
        text-align: center;
        font-size: 22px;
        font-weight: 600;
        width: 100%;
    }
}

@media screen and (max-height: 500px) and (min-width: 548px) and (max-width: 991px) {
    .main-content-container {
        flex-direction: column;
        align-items: center;
    }
    .main-content-wrapper.chart-sidebar-active {
        flex: 0 0 100%;
        width: 100%;
    }
    .sidebar-container {
        flex: 0 0 100%;
        flex-direction: row;
        align-items: flex-start;
        gap: .5rem;
        margin: 1rem auto;
        padding: 0;
    }
    .ux-two .container.sidebar-module {
        max-width: 45%;
        padding: .5rem;
    }
    .sidebar-section-title {
        font-size: 20px;
    }
    .sidebar-module .lm-link {
        font-size: 10px;
    }
    .social-proof-wrapper {
        margin-top: 0;
    }
    .reviews-side-box {
        margin-bottom: .5rem;
    }
    .sidebar-list-desc {
        font-size: 12px;
    }
}