section.recirc-strip {
    align-items: center;
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 11;
}

#tmbi-recirculation-strip {
    align-items: center;
    background: #FFF;
    border: 1px solid #EAEAEA;
    display: flex;
    height: 64px;
    justify-content: space-between;
    margin: 20px auto;
    width: 1220px;
}

#tmbi-recirculation-strip .nav-btn[disabled] {
    opacity: 0.2;
    pointer-events: none;
}

.tmbi-recirculation-strip-list {
    overflow-x: hidden;
    width: 100%;
}

.tmbi-recirculation-strip-list::-webkit-scrollbar {
    display: none;
}

.tmbi-recirculation-strip-items-wrapper {
    align-items: center;
    display: flex;
}

#tmbi-recirculation-strip .item {
    flex: none;
    width: 16.67%;
}

#tmbi-recirculation-strip .item a {
    align-items: center;
    border: none;
    display: flex;
}

#tmbi-recirculation-strip .tmbi-recirculation-strip-items-wrapper .item img {
    border: 1px solid #858c94;
    height: 64px;
    width: 64px;
}

#tmbi-recirculation-strip .recirc-strip-title {
    color: #444;
    display: -webkit-box;
    font-size: 10px;
    font-weight: 700;
    line-height: 125%;
    padding: 0 10px;
    width: 100%;
    max-height: 50px;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    width: 120.5px;
}

#tmbi-recirculation-strip .nav-btn {
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 50px;
}

@media only screen and (max-width: 1024px) {
    #tmbi-recirculation-strip {
        margin: 5px auto;
        width: 100%;
    }

    #tmbi-recirculation-strip .nav-btn svg {
        margin: 0;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    #tmbi-recirculation-strip .item {
        width: 25%;
    }
}

@media only screen and (max-width: 768px) {
    #tmbi-recirculation-strip .item {
        width: 50%;
    }
}


/** Sticky CSS Start **/

.tmbi-rs-sticky {
    position: sticky;
}

@media screen and (min-width: 1025px) {
    section.recirc-strip.tmbi-recirc-strip-sticky-desktop {
        position: sticky;
        top: 76px
    }

    .tmbi-rs-sticky {
        top: 76px;
    }
}

@media screen and (max-width: 1024px) {
    section.recirc-strip.tmbi-recirc-strip-sticky-mobile {
        position: sticky;
        top: 0;
    }

    .tmbi-rs-sticky {
        top: 0;
    }
}

/** Sticky CSS End **/