.promo-banner {
  background: #effafd;
  border-top: 1px solid #b7e6f0;
  bottom: 0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, .08);
  color: #20252a;
  font-size: .875rem;
  left: 0;
  line-height: 1.35;
  position: fixed;
  right: 0;
  z-index: 1035;
}

body.has-promo-banner {
  padding-bottom: var(--promo-banner-height, 40px);
}

.promo-banner__inner {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 38px;
  padding: 7px 42px 7px 15px;
  position: relative;
  text-align: center;
}

.promo-banner__badge {
  background: #25b9d7;
  border-radius: 3px;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-right: 10px;
  padding: 3px 7px;
  text-transform: uppercase;
}

.promo-banner__text {
  font-weight: 600;
}

.promo-banner__link {
  color: #087a91;
  font-weight: 700;
  margin-left: 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.promo-banner__link:hover,
.promo-banner__link:focus {
  color: #045363;
  text-decoration-thickness: 2px;
}

.promo-banner__close {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: #4c5b60;
  cursor: pointer;
  display: flex;
  font-size: 1.35rem;
  height: 36px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
}

.promo-banner__close:hover,
.promo-banner__close:focus {
  color: #087a91;
}

@media (max-width: 575.98px) {
  .promo-banner {
    font-size: .78rem;
  }

  .promo-banner__inner {
    flex-wrap: wrap;
    min-height: 0;
    padding: 6px 38px calc(6px + env(safe-area-inset-bottom)) 8px;
  }

  .promo-banner__badge {
    font-size: .62rem;
    margin-right: 7px;
    padding: 2px 5px;
  }

  .promo-banner__link {
    margin-left: 8px;
    white-space: nowrap;
  }
}

