    .Offer_backgroundImage {
        background-image: url('assets/images/offer-image/Long-Header-BG.gif');
        padding: 5px 0;
        width: 100%;
        height: 80px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden;
        /* display: none; */
    }

    @media (max-width: 768px) {
        .leftSideItem img {
            width: 200px !important;
        }

        .centerItem img {
            width: 120px;
        }

        .rightSideItem img {
            width: 200px !important;
        }

        .leftSideItem {
            left: 10px !important;
        }

        .rightSideItem {
            right: 10px !important;
        }

    }

    .leftSideItem {
        position: absolute;
        left: 50px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
    }

    .rightSideItem {
        position: absolute;
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
    }

    .centerItem {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 9999;
    }

    .leftSideItem img {
        width: 90px;
    }

    .centerItem img {
        width: 180px;
    }

    .rightSideItem img {
        width: 180px;
    }

    /* Model-view-controller */
    .modal-body {
    position: relative;
}

.offer-timer-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 60px;
}

.time-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 10px;
    width: 60px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.time-section h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: #6a4dc8;
    /* Adjust color to match the one in the image */
}

.time-section p {
    font-size: 14px;
    margin: 0;
    padding: 0;
    color: #6a4dc8;
    /* Same color for consistency */
}

@media (max-width: 768px) {
    .offer-timer-box {
        right: 62px !important;
    }
}

@media (max-width: 580px) {
    .closeIconbg {
        top: -29px;
        right: 12px;
    }

    .offer-timer-box {
        right: 70px !important;
    }
}

@media (max-width: 480px) {
    .offer-timer-box {
        right: 60px !important;
    }

    .time-section h2,
    .time-section p {
        font-size: 10px !important;
    }
}

@media (max-width: 380px) {
    .offer-timer-box {
        right: 40px !important;
    }
}

  .fade-in {
            animation: fadeIn .3s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }