.info-circle-row {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}

.info-circle-column { padding: 3rem 0; }

.mobileAccordion { display: none; }

.info-circle-content-container {
    display: flex;
    height: 100%;
    position: relative;
    width: 600px;
    min-height: 600px;
    max-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    margin: auto;
}

.info-circle-label-list{
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translate(-0, -0);
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    display: block;
    list-style: none;
}

.info-circle-label-list:before {
    content: "";
    width: 100%;
    height: 100%;
    border: 8px solid #E4F5F9;
    background: transparent;
    border-radius: 50%;
    position: relative;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.info-circle-label {
    position: absolute;
    width: 120px;
    min-height: 100px;
    border-radius: 20px;
    color: var(--white);
        --productBlue1: #379bdf;
        --productBlue2: #2a70bb;
    background: var(--productBlue1);
    background: linear-gradient(80deg, var(--productBlue2) 0%, var(--productBlue1) 100%);
    border: none;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex: 1;
    outline: 10px solid var(--body-white);
    transition: --productBlue2 0.20s ease-in-out, --productBlue1 0.25s ease-in-out !important;
}

.section-dim .info-circle-label { outline: 10px solid var(--section-dim); }

.info-circle-label:hover,
.info-circle-label:focus,
.info-circle-label:active,
.info-circle-label.active {
    --productBlue1: #004477;
    --productBlue2: #004477;
    /* border: none; */
}

.info-circle-entry {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.info-circle-entry.active {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.info-circle-card {
    display: block;
    color: var(--main-text-color);
    border-radius: 25px;
    background-color: var(--sitewide-dim);
    border: 5px solid #E4F5F9;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.info-circle-card:hover { color: var(--main-text-color); }

.info-circle-img img {
    max-width: 100%;
    width: 100%;
    height: 155px;
    margin: 0 auto;
    object-fit: cover;
    object-position: top;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
}

.info-circle-content { padding: 10px; }

.info-circle-content h3 {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 7px;
}

h3.newFeaturedProducts,
.accordion-header span.newFeaturedProducts {
    display: flex;
    flex-direction: row;
    align-items: center;
}

h3.newFeaturedProducts::after,
.accordion-header span.newFeaturedProducts::after {
    content: "New!";
    color: var(--white);
    background-color: var(--primary);
    margin-left: 7px;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    padding: 0.3rem .5rem 0.2rem;
    border-radius: 20px;
}

.info-circle-content p {
    font-size: 13px;
    font-weight: 400;
}

@media only screen and (max-width: 1400px) and (min-width: 1200px) {
    .info-circle-content-container{
        width: 550px;
        min-height: 550px;
    }
}

@media only screen and (max-width: 1199px) {
    .info-circle-column { margin-top: 1rem; }
    
    .info-circle-content-container{
        width: 650px;
        min-height: 650px;
    }

    .info-circle-label { font-size: 14px; }

    .info-circle-entry { width: 50%; }
}

@media only screen and (max-width: 1155px) { .info-circle-entry { width: 60%; } }

@media only screen and (max-width: 1100px) {
    .info-circle-column { padding: 1rem; }

    .info-circle-content-container { display: none; }

    .mobileAccordion { display: block; }

    .mobileAccordion button.accordion-button {
        gap: 0.75rem;
        font-size: 1rem;
        line-height: 27px;
    }

    .accordion-item:last-child { margin-bottom: 0; }

    .info-circle-img img {
        border-radius: 0;
        height: 375px;
        margin-bottom: 15px;
    }

    .info-circle-content p { font-size: 1rem; }
}

@media only screen and (max-width: 768px) {
    .showcase-product-img img { height: 185px; }

    .info-circle-content { padding: 0; }
}

@media only screen and (max-width: 575px) {
    .mobileAccordion button.accordion-button {
        font-size: 0.8rem;
        line-height: 24px;
    }

    .info-circle-img img { height: 200px; }
}