/* Minification failed. Returning unminified contents.
(402,46): run-time error CSS1030: Expected identifier, found '.'
(402,65): run-time error CSS1031: Expected selector, found ')'
(402,65): run-time error CSS1025: Expected comma or open brace, found ')'
(406,53): run-time error CSS1030: Expected identifier, found '.'
(406,72): run-time error CSS1031: Expected selector, found ')'
(406,72): run-time error CSS1025: Expected comma or open brace, found ')'
(412,46): run-time error CSS1030: Expected identifier, found '.'
(412,65): run-time error CSS1031: Expected selector, found ')'
(412,65): run-time error CSS1025: Expected comma or open brace, found ')'
(424,46): run-time error CSS1030: Expected identifier, found '.'
(424,61): run-time error CSS1031: Expected selector, found ')'
(424,61): run-time error CSS1025: Expected comma or open brace, found ')'
(428,53): run-time error CSS1030: Expected identifier, found '.'
(428,68): run-time error CSS1031: Expected selector, found ')'
(428,68): run-time error CSS1025: Expected comma or open brace, found ')'
(434,46): run-time error CSS1030: Expected identifier, found '.'
(434,61): run-time error CSS1031: Expected selector, found ')'
(434,61): run-time error CSS1025: Expected comma or open brace, found ')'
(438,53): run-time error CSS1030: Expected identifier, found '.'
(438,68): run-time error CSS1031: Expected selector, found ')'
(438,68): run-time error CSS1025: Expected comma or open brace, found ')'
 */
.small-benefits-block__container {
    position: relative;
    width: 100%;
    min-height: 286px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 160px;
}

.small-benefits-block__banner-image-container {
    display: flex;
    flex-direction: column;
    align-items: inherit;
    padding-top: 20px;
    padding-bottom: 8%;
    width: 100%;
    height: 286px;
}

.small-benefits-block__backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.small-benefits-block__svg-image-overlay {
    z-index: 1;
    height: 152px;
    margin-bottom: 18px;
}

.small-benefits-block__banner-text-container {
    display: flex;
    flex-direction: row;
    gap: 6px;
    z-index: 1;
}

.small-benefits-block__banner-text {
    color: #FFF;
    text-align: center;
    /* Subtitle */
    font-size: 18px;
    font-style: normal;
    font-weight: 325;
    line-height: 28px; /* 155.556% */
}

.small-benefits-block__banner-bold-text {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.small-benefits-block__banner-text-container .benefit-counter {
    display: flex;
    width: 155px;
    height: 32px;
    padding: 2px 12px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.50);
    /*Font Styles*/
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 350;
    line-height: 20px; /* 125% */
}

.small-benefits-block__parent-container {
    position: absolute;
    padding-left: 10px;
    padding-right: 10px;
    z-index: 1;
    bottom: -126px;
}

.small-benefits-block__grid {
    display: flex; /*Changed from grid throughout for mobile devices compatibility*/
    gap: 10px;
}

.small-benefits-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 48%;
    min-height: 137px;
    height: fit-content;
    flex-shrink: 0;
    padding: 8px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.20);
}

.small-benefits-block__benefit-SVG {
    display: flex;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background: #B1D7FD;
    justify-content: center;
    align-items: center;
    padding: .7rem;
}

.small-benefits-block__benefit-title {
    color: #000;
    /* Bold */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 175% */
    margin-top: 16px;
}

.small-benefits-block__benefit-text {
    color: #000;
    /* Small Text */
    font-size: 14px;
    font-style: normal;
    font-weight: 325;
    line-height: 20px; /* 142.857% */
}

/* 📱 Mobile (360px) */
@media (min-width: 360px) {
    .small-benefits-block {
        width: 48%;
    }
}


/* 📱 Mobile (up to 767px) */
@media (max-width: 767px) {

    .mega-sale-deals__deal .mega-sale-deals__deal-details--logo img {
        object-fit: contain;
        display: block;
    }

    .mega-sale-deals__deal {
        height: auto;
    }

    .small-benefits-block {
        font-size: 14px;
        margin: 0 auto;
        min-height: 137px;
        max-height: 187px;
    }

    .small-benefits-block__grid  {
        align-self: center;
        justify-self: center;
        width: 100%;
        flex-wrap: wrap;
    }
}


/*Ipad mini*/
@media only screen and (min-width: 766px) {
    .small-benefits-block__container {
        position: relative;
        width: 100%;
        min-height: 420px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .small-benefits-block__parent-container {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .small-benefits-block__banner-image-container {
        display: flex;
        flex-direction: column;
        align-items: inherit;
        height: 420px;
    }

    .small-benefits-block__svg-image-overlay {
        z-index: 1;
        max-height: 255px;
        min-height: 255px
    }

    .small-benefits-block__banner-text-container {
        display: flex;
        flex-direction: row;
        gap: 6px;
    }

    .small-benefits-block__banner-text {
        color: #FFF;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 300;
        line-height: 28px; /* 116.667% */
    }

    .small-benefits-block__banner-bold-text {
        color: #FFF;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px;
    }

    .small-benefits-block__banner-text-container .counter {
        display: flex;
        width: auto;
        height: 32px;
        padding: 2px 20px;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.50);
        /*Font Styles*/
        color: #FFF;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 350;
        line-height: 28px;
    }

    .small-benefits-block__grid {
        display: flex;
        gap: 16px; /* Add spacing between items */
        justify-content: space-around;
        justify-items: center;
        flex-wrap: wrap;
    }

    .small-benefits-block {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 165px;
        min-height: 187px;
        flex-shrink: 0;
        padding: 16px;
        border-radius: 8px;
        background: #FFF;
        box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.20);
    }

    .small-benefits-block__benefit-SVG {
        display: flex;
        width: 47px;
        height: 47px;
        flex-shrink: 0;
        border-radius: 8px;
        background: #B1D7FD;
        justify-content: center;
        align-items: center;
    }

    .small-benefits-block__benefit-title {
        color: #000;
        /* H6 */
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px; /* 140% */
        margin-top: 24px;
    }

    .small-benefits-block__benefit-text {
        color: #000;
        /* Body */
        font-size: 16px;
        font-style: normal;
        font-weight: 325;
        line-height: 24px; /* 150% */
        margin-top: 8px;
    }
}
/* Ipad Portrait */

@media (min-width: 820px) {
    .small-benefits-block {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 167px;
    }
}

@media (min-width: 900px) {
    .small-benefits-block__container {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .small-benefits-block__grid {
        display: flex;
        gap: 16px;
        justify-content: space-between;
        justify-items: center;
    }

    .small-benefits-block {
        min-height: 187px;
    }
}

@media (min-width: 992px) {
    .small-benefits-block {
        width: 220px;
    }
}


    /* Ipad Landscape */
    @media (min-width: 1020px) {
        .small-benefits-block {
            width: 222px;
        }
    }

    /*Desktop*/
    @media (min-width: 1100px) {

        .small-benefits-block__container {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .small-benefits-block__grid {
            display: flex;
            gap: 16px;
            justify-content: space-between;
        }

        .small-benefits-block {
            width: 222px;
        }
    }

    @media (min-width: 1200px) {
        .small-benefits-block {
            width: 253px;
        }
    }

    @media (min-width: 1300px) {
        .small-benefits-block {
            width: 270px;
        }
    }

    /* Only Two Benefits */


    @media (max-width: 1180px) {
        .small-benefits-block__grid > .small-benefits-block:first-child:nth-last-child(2),
        .small-benefits-block__grid > .small-benefits-block:first-child:nth-last-child(2) ~ * {
            width: 47%;
        }
    }


    @media (min-width: 1180px) {
        .small-benefits-block__grid > .small-benefits-block:first-child:nth-last-child(2),
        .small-benefits-block__grid > .small-benefits-block:first-child:nth-last-child(2) ~ * {
            width: 280px;
        }
    }

    /* Minimum Three Benefits */

    @media (min-width: 220px) and (max-width: 709px) {
        .small-benefits-block__container:has(.min-three-benefits) {
            margin-bottom: 280px;
        }

        .small-benefits-block__parent-container:has(.min-three-benefits) {
            bottom: -260px;
        }
    }

    @media (min-width: 709px) and (max-width: 766px) {
        .small-benefits-block__container:has(.min-three-benefits) {
            margin-bottom: 135px;
        }

        .small-benefits-block__parent-container {
            bottom: -113px;
        }
    }

    /* Only Three Benefits */

    @media (min-width: 220px) and (max-width: 534px) {
        .small-benefits-block__container:has(.three-benefits) {
            margin-bottom: 280px;
        }

        .small-benefits-block__parent-container:has(.three-benefits) {
            bottom: -260px;
        }
    }

    @media (min-width: 535px) and (max-width: 766px) {
        .small-benefits-block__container:has(.three-benefits) {
            margin-bottom: 135px;
        }

        .small-benefits-block__parent-container:has(.three-benefits) {
            bottom: -113px;
        }

        .small-benefits-block {
            width: 165px;
        }
    }


    @media (min-width: 768px) {
        .small-benefits-block__grid > .small-benefits-block:first-child:nth-last-child(3), .small-benefits-block__grid > .small-benefits-block:first-child:nth-last-child(3) ~ * {
            width: 213px;
        }
    }


    @media (min-width: 820px) {
        .small-benefits-block__grid > .small-benefits-block:first-child:nth-last-child(3),
        .small-benefits-block__grid > .small-benefits-block:first-child:nth-last-child(3) ~ * {
            width: 220px;
        }
    }

    @media (min-width: 1100px) {
        .small-benefits-block__grid > .small-benefits-block:first-child:nth-last-child(3),
        .small-benefits-block__grid > .small-benefits-block:first-child:nth-last-child(3) ~ * {
            width: 280px;
        }
    }
