body .promo {
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #333;
  background-color: #cdedd5;
}

body .promo a {
  flex: 1;
  cursor: pointer;
  font-size: 18.5px;
  line-height: 28px;
  text-align: center;
  color: #000;
  text-decoration: none;
  padding: 12px 20px;
}

body .promo a span {
  text-decoration: underline;
}

body .promo span.close {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M8 8 L24 24 M8 24 L24 8'/%3E%3C/svg%3E")
    no-repeat center center;
  margin-right: 12px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  body .promo a {
    text-align: left;
  }
}