/* Sale mark: red X over the list price + handwritten sale price. */

.was{
  position:relative;
  display:inline-block;
  color:#5b6b60;
  font-weight:600;
  padding:0 .08em;
  text-decoration:none;
}
.was::before,
.was::after{
  content:"";
  position:absolute;
  left:-10%;
  right:-10%;
  top:48%;
  height:.18em;
  min-height:3px;
  background:#c0272d;
  border-radius:3px;
  pointer-events:none;
}
.was::before{transform:rotate(-22deg);}
.was::after{transform:rotate(15deg);opacity:.92;}

.now{
  display:inline-block;
  font-family:'Caveat',cursive;
  font-weight:700;
  color:#C1442D;
  transform:rotate(-5deg);
  line-height:.85;
  letter-spacing:-.02em;
}

.price-card .amt{
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:6px 14px;
}
.price-card .amt .was{
  font-family:'Fraunces',serif;
  font-size:22px;
  font-weight:600;
}
.price-card .amt .now{
  font-size:52px;
}

.plan-price .was{font-size:12.5px;margin-right:4px;}
.plan-price .now{font-size:22px;vertical-align:-4px;margin-left:2px;}

.price-note .was{margin-right:6px;}
.price-note .now{font-size:28px;vertical-align:-6px;}
