#promotions-container {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    background: black;
    background-size: cover;
}

/* lazy laoded background image for mobile */
@media (max-width: 960px) {
    .domready #promotions-container {
        background: black url(/skin/img/slider/section-promo_sm.jpg) center center/cover no-repeat;
    }
}

/* lazy laoded background image for ipad */
@media (min-width: 961px) {
    .domready #promotions-container {
        background: black url(/skin/img/slider/section-promo_med.jpg) center center/cover no-repeat;
    }
}

/* lazy laoded background image for pc */
@media (min-width: 1921px) {
    .domready #promotions-container {
        background: black url(/skin/img/slider/section-promo_lg.jpg) center center/cover no-repeat;
    }
}

.promotions-slider {
    margin-top: 45px;
    position: relative;
}

.promotions-slider .promotions-item {
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}

.promotions-deco {
    float: left;
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promotions-deco img {
    max-width: 100%;
}

.promotions-info {
    float: right;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 15px;
    padding-right: 15px;
}

.promotions-info .promotions-coupon {
    background: #E50019;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 4px;
    display: inline;
    width: auto;
    padding: 0.2em 0.5em;
    margin-bottom: 30px;
}

.promotions-info .promotions-brand-image {
    max-width: 200px;
    margin-bottom: 30px;
    display: block;
}

.promotions-info .promotions-red {
    font-weight: bold;
    color: #E50019;
}

.promotions-info .promotions-note {
    font-weight: bold;
    color: white;
}

@media (max-width: 991px) {
    .promotions-deco {
        display: none;
    }

    .promotions-info {
        width: 100%;
    }
}