.coupons {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: center;
	justify-content: center;
}

.coupon {
    background: #f5f5f5;
    background: -moz-linear-gradient(top, #f5f5f5 0%, #cfcfcf 100%);
    background: -webkit-linear-gradient(top, #f5f5f5 0%, #cfcfcf 100%);
    background: linear-gradient(to bottom, #f5f5f5 0%, #cfcfcf 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#cfcfcf', GradientType=0);
    -moz-background-clip: padding;
    -webkit-background-clip: padding;
    background-clip: padding-box;
    border: 3px dashed;
    text-align: center;
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
    margin: 0 10px 30px;
}

@media only screen and (min-width: 768px) {
    .coupon {
        -webkit-flex: 0 1 47%;
        flex: 0 1 47%;
    }
}

.coupon-inner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.coupon h2 {
    font-size: 2.6rem;
    line-height: 1;
    text-transform: uppercase;
    color: #ac1e2d;
}

.coupon-details {
    font-size: 1.4rem;
    line-height: 1;
    margin: 20px auto;
    color: #163855;
}

.coupon img {
    margin-top: 20px;
    width: 315px;
}

.coupon-phone {
    font-size: 25px;
    font-weight: 900;
    margin-top: 12px;

}

.coupon-disclaimer {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    margin-top: 35px;
    color: #163855;
    padding-left: 10px;
    padding-right: 10px;
}

.coupons .expiry {
    color: #163855;
}

.coupons button {
    margin-bottom: 15px;
}
