.free_delivery_banner {
    margin-top: 40px;
    min-height: 150px;
    background: #f7f7f7 url("flowers.png") no-repeat;
    border-radius: 5px;
    background-size: auto;
    background-position-x: 120px;
    background-position-y: bottom;
    padding: 50px 120px 30px 120px;
    display: none;
    justify-content: center;
}
.free_delivery_banner.show {
    display: flex;
}
.free_delivery_banner_text {
    position: relative;
    padding: 30px 0 0 0;
}
.free_delivery_banner_text:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 5px;
    background: #89b140;
    border-radius: 3px;
}
@media screen and (max-width: 1325px) {
    .free_delivery_banner {
        background-position-x: 40px;
    }
}
@media screen and (max-width: 1150px) {
    .free_delivery_banner {
        justify-content: flex-end;
    }
}
@media screen and (max-width: 1000px) {
    .free_delivery_banner {
        justify-content: center;
        background: #f7f7f7;
    }
}
@media screen and (max-width: 800px) {
    .free_delivery_banner {
        padding: 50px 15px 30px 15px;
    }
}