:root {
  --rp-banner-background: linear-gradient(279deg, #ff8b00 35.21%, #fb6d5b 63.34%);
}

.rp-banner {
  color: #fff;
  z-index: 999;
  background: var(--rp-banner-background);
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  height: 36px;
  padding: 0 3.5rem;
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
}

.rp-banner__link {
  color: #fff;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: auto;
  min-width: 0;
  max-width: 100%;
  font-weight: 700;
  line-height: 36px;
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.rp-banner__link:hover {
  opacity: .9;
  text-decoration: underline;
}

.rp-banner__link:active {
  opacity: .7;
}

.rp-banner__close {
  cursor: pointer;
  box-sizing: border-box;
  color: inherit;
  border-radius: 4px;
  padding: 5px;
  font-size: 28px;
  position: absolute;
  right: 1.5rem;
}

.rp-banner__close:hover {
  background-color: #ffffff4d;
}

