.coupon-container {
    background-color: #D9D9D9;
    display: flex;
    position: fixed;
    bottom: 1em;
    z-index: 1001;
    width: 30em;
    height: 8em;
    left: 1em;
    box-shadow: 0px 4px 7.400000095367432px 0px #00000040;
    animation: slide-left 200ms ease-in-out;
    transform: translate3d(0, 0, 0);

}

.coupon-container img{
    width: 8em;
    background-color: white;
    object-fit: contain;
}

.coupon-container .text-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5em;

    font-family: Lato;
    font-size: 17px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;

}

.coupon-container .close-icon {
    align-self: flex-start;
    font-weight: 200;
    margin-top: .5em;
    margin-right: .5em;

    cursor: pointer;
}

.text-wrapper .text .discount {
    color: #159700;
}

.product-name {
    margin-top: .5em;
    display: flex;
    justify-content: center;

    font-family: Lato;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;

}

/* Media Query for Mobile Devices */
@media only screen and (max-width: 767px) {
    .coupon-container {
        left: 0;
        width: 100%;
    }
}

@keyframes slide-left {
    0% {
        transform: translateX(-30em);
    }
    50% {
        transform: translateX(-15em);
    }
    100% {
        transform: translateX(1em);
    }
}
