.cartDisclaimer {
    background: #c6e3ff;
    border: 1px solid #ccc;
    padding: 25px;
}

.cartCoupon-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    Margin-bottom: 20px;
}

.cartCoupon-child {
  background: #f7f7f7;
  padding: 15px;
  text-align: center;
  border: 2px dashed #333;
}

.cartCoupon-child p {
  margin:0;
}

.cartCoupon-child p.cartCoupon-headline {
  font-size: 22px;
  line-height:22px;
  font-weight:900;
  margin-bottom:5px;
}

.globalNotice {
  padding: 10px 25px;
  font-family: "proxima-nova", sans-serif !important;
}
.globalNotice p {
  margin-bottom: 0 !important;
  color: ;
  text-align: center;
}

.promoText {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  color: #fff;
}

.promoText a {
  color: #fff;
}

.promotooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted white;
  color:#fff;
  
}

.promotooltip a, .promotooltip a:hover {
 text-decoration: none;
  color:#fff;
}


img.promoLogo {
  height: 25px;
  margin: -2px 2px 0 0;
  padding: 0;
}

.promotooltip-bottom::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #000 transparent;
}

.promoText img {
}

.promotooltip .promotooltiptext {
 visibility: hidden;
  width: 250px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 25px 15px;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 25px;
  left: 50%;
  margin-left: -125px;
}

.promotooltiptext.promotooltip-bottom h6{
  padding:0;
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.promoDetails {
  font-size: 14px;
}

.promoDetails a, .promoDetails a:hover {
  color: #fff;
  text-decoration: underline;
}

.promoDetailsLinks {
  margin-top: 10px;
  display: inline-block;
  font-weight: 700;
}

.promotooltip:hover .promotooltiptext {
  visibility: visible;
}

@media only screen and (min-width: 320px) and (max-width: 735px) {
  .cartCoupon-container {
    display: grid;
    grid-template-columns: 1fr 
}
  
}