.coupons-wrapper .coupons-container {
  margin-top: -40px;
}
.coupons-wrapper .grid-container {
	max-width: 1440px!important;
	padding: 0 .9375rem 0 1.9375rem !important;
}
.coupons-wrapper .coupon {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 25px;
  box-sizing: border-box;
	padding: 20px;
}
@media (min-width: 768px) {
  .coupons-wrapper .coupon {
    justify-content: space-between;
    flex-wrap: nowrap;
		height: 75px;
		padding: 0;
  }
}
@media (max-width: 768px) {
	.coupons-wrapper .coupon-image-container {
    border: none!important;
	}	
}

.coupons-wrapper .coupon-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .coupons-wrapper .coupon-image-container {
		height: 72px;
    flex-basis: 100px;
		min-width: 100px;
		width: 120px;
  }
}
.coupons-wrapper .coupon-text-container {
  text-align: center;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
	margin-left: 0;
	padding: 20px 0;
}
@media (min-width: 768px) {
  .coupons-wrapper .coupon-text-container {
    text-align: left;
		margin-left: 20px;
		justify-content: flex-start;
		padding: 0; 
  }
}
.coupons-wrapper .coupon-text-container p,
.coupons-wrapper .coupon-text-container a {
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.2;
	display: inline-block;
}
@media (min-width: 991px) {
	.coupons-wrapper .coupon-text-container p,
	.coupons-wrapper .coupon-text-container a {
		font-size: 18px;
		line-height: 1.1;
	}
}

.coupons-wrapper .coupon-text-container a {
	color: #38A4FE;
	text-decoration: underline;
}

.coupons-wrapper .coupon-text-cta {
  flex-basis: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .coupons-wrapper .coupon-text-cta {
    display: block;
    margin: -1px -1px 0 20px;
    flex-basis: 175px;
  }
}
.coupons-wrapper .coupon-text-cta .coupon-cta {
  width: 175px;
  background: #38a4fe;
  height: 75px;
	margin: 0;
	padding: 0;
  color: #fff;
  display: block;
  line-height: 75px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
	border-radius: 2px;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}


}
.coupons-wrapper .coupon-text-cta .coupon-cta:hover {
  background: #277abf;
}

.coupon-hero-wrapper p.single:nth-of-type(2) {
  font-size: 15px;
}
.coupon-code {
  position: relative;
}
.coupon-code .msg {
  display: none;
  transition: all 300ms ease-in;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  color: #ccc;
}
.coupon-code .msg.active {
  transition: all 300ms ease-in;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  position: absolute;
  color: #38a4fe;
  z-index: 10;
}
.coupon-code .msg.active.fail {
	color: red;
}
