.banner-media video, .video-banner video {
    width: 100%;
    display: block;
}
.banner-text--heading {
    color: var(--heading-color);
    font-size: var(--text-heading-font-size, 38px);
    font-weight: var(--text-heading-font-weight, 300);
    text-transform: var(--text-heading-transform, normal);
    margin-top: var(--text-heading-mt, 0);
    margin-bottom: var(--text-heading-mb, 0);
}
.banner-text--des {
    margin-top: var(--text-mt);
    margin-bottom: var(--text-mb);
}
.banner-text--des span{
    background-color: var(--base-color);
}
.banner-text--des strong {
    font-weight: normal;
    background:var(--base-color);
}
.banner-text--des li {
    padding-left: 28px;
    position: relative;
}
.banner-text--des li+li {
    margin-top:10px
}
.banner-text--des li:before {
    content: "\f058";
    font-family: Font Awesome\ 6 Pro;
    font-weight: 400;
    position: absolute;
    left: 0;
    color: var(--color-ice);
}
.banner-text--media >  img {
    border-radius: 10px;
    overflow: hidden;
}
.it_img {
    border-radius: 8px !important;
    overflow: hidden;
}
.no_hype_evidence .modal .tab-pane p{
    color: var(--Charcoal, #212428);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px; 
}
.no_hype_evidence a.filter-card-item {
    display: flex;
    height: max-content !important;
    gap: 10px;
    padding: 16px;
    border-radius: 10px;
    background: var(--Mist, #F6F6F7);
}
.ingredient_modal .nav-tabs {
    border: 0;
}
.ingredient_modal .nav-link {
    border-width: 0 0 1px;
    border-color: #B5B6B7;
    color: #212428;
    padding: 5px 20px;
}
.ingredient_modal .nav-link.active {
    border-width: 0 0 2px;
    border-color: #212428;
    color: #212428;
    font-weight: 600;
}
.banner-text-quotes {
    font-size: 16px;
    padding: 16px;
    border-radius: 5px;
    background: #F6F6F7;
    margin-top: var(--text-quote-mt, 32px);
    margin-bottom: var(--text-quote-mb, 32px);
    display: inline-block;
}

/* Banner steps */
.banner-text--steps {
    counter-reset: step-counter;
}
.banner-step-box {
    position: relative;
    padding-left: 50px;
    counter-increment: step-counter;
    padding-top: 5px;
}
.banner-step-box + .banner-step-box{
    margin-top:30px
}
.banner-step-box:after {
    content: '';
    height: calc(100% + 30px);
    background: #8B8C8E;
    width: 1px;
    display: block;
    position: absolute;
    top: 0%;
    left: calc(36px / 2);
    z-index: -1;
}
.banner-step-box:last-child:after {
    display: none;
}
.banner-step-box:before {
    content: counter(step-counter)"";
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid #8B8C8E;
    color: #212428;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    background: #fff;
}
.prod_img_with_title img {
    max-width: 80px;
}
.prod_img_with_title p{
    color: #212428;
}
.prod_wrapper {
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--Mist, #F6F6F7);
}
@media(max-width:767px){
    .banner-text--heading {
        font-size: var(--text-heading-font-size-mob, 28px);
        font-weight: var(--text-heading-font-weight-mob, 300);
    }
    .banner-text--media.banner-text-mob-full {
        margin: 0  -15px;
    }
    .banner-with-text-content .banner-text--button {
        font-size: 18px;
    }
    .ingredient_modal .nav-link{
        font-size: 16px;
    }
}