/* Promotions Layout CSS */
#promotions-secondary > .width-limiter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#promotions-secondary > .width-limiter > div {
    width: calc(50% - 20px);
    margin: 0 10px;
}
#promotions-secondary .promo-left img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

@media all and (max-width: 800px) {
    #promotions-secondary > .width-limiter {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #promotions-secondary > .width-limiter > div {
        width: 100%;
        margin: 20px 0;
    }
}
/* Promotions Layout CSS end */

/* Promotions Content CSS */
#promotions-secondary .secondary-tools li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px 10px 10px 100px;
    position: relative;
    border: 3px dashed #00cc0d;
    min-height: 106px;
}
#promotions-secondary .secondary-tools li a .promo-image {
    position: absolute;
    top: 10px;
    left: 10px;
    height: 80px;
    width: 80px;
    background-color: #94b6ff;
    background-position: center;
    background-repeat: no-repeat;
}
#promotions-secondary .secondary-tools li a .promo-title {
    display: block;
    font-size: 1.2em;
    max-width: 100%;
}
#promotions-secondary .secondary-tools li a .promo-teaser {
    display: block;
    font-size: 1em;
    max-width: 100%;
}
/* Promotions Content CSS end */