/*
    SVG fills
*/
svg.fill-black path{
    fill: #000;
}
svg.fill-white path{
    fill: #fff;
}
svg.fill-yellow path{
    /* fill: #f0c359; */
    fill: #ff8541;
}

/*
    Tabbed Products
*/
.tabbed-products{
    --swiper-navigation-color: #000;
    --swiper-navigation-size: 10px;
}
.tabbed-products .tabs{
    display: inline-flex !important;
    gap: 16px;
    margin-bottom: 0 !important;
}
.tabbed-products .tab{
    padding: 8px 0 !important;
    background: none !important;
    border-bottom: 3px solid transparent;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 12px;
}
.tabbed-products .tab.normal-active:after{
    display: none !important;
}
.tabbed-products .tab.normal-active{
    border-bottom-color: #ff8541;
}
.tabbed-products-cta{
    background: #ff8541 !important;
    color: #000 !important;
    font-size: 12px;
    text-transform: uppercase;
}
.tabbed-products .swiper-button-prev,
.tabbed-products .swiper-button-next{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ff8541;
    font-weight: bold;
}
.tabbed-products .badge{
    white-space: wrap;
}

/* Tabbed products item (product card list */
@media all and (min-width: 768px) {
    .product-card-list{
        row-gap: 64px;
    }
}
.tabbed-products-item{
    height: 100%;
    padding: 8px;
    background: #fff;
}
.tabbed-products-item .img-wrap{
}
.tabbed-products-item .status{
    top: 8px !important;
    padding-right: 8px !important;
}
.tabbed-products-item .brand{
    font-weight: bold;
}
.tabbed-products-item .brand img{
    object-fit: contain;
    object-position: left center;
}
.tabbed-products-item .rrp-and-saving-cols{
    align-items: end;
}
.tabbed-products-item .rrp-and-saving-cols .rrp-saving-value{
    display: none;
}

/* Tabbed products item */
.tabbed-products-item .image{
    position: relative;
    padding-bottom: 100%;
}
.tabbed-products-item .img-wrap{ 
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tabbed-products-item .img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.tabbed-products-item .status{
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 3;
    text-align: right;
}
.tabbed-products-item .status > *{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    text-align: center;
}

/* Perc saved */
.perc-saved{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 60px;
    border-radius: 4px;
    /* background: #f0c359; */
    background: #ff8541;
    line-height: initial;
    text-align: center;
}
.perc-saved .perc-saved-heading:before{
    content: 'saving';
}
.perc-saved .perc-saved-value:before{
    content: attr(data-value);
}
.perc-saved .perc-saved-value:after {
    content:attr(data-unit)
}