$offer-banner: 10;
$offer-banner-stuck: 1030;

.offer-banner {
  z-index: $offer-banner;
  background-color: $red;

  &.stuck {
    position: fixed;
    top: 0;
    z-index: $offer-banner-stuck;
  }

  &__content {
    display: block;
    padding: 4px 25px;
    text-align: center;
    // TODO: remove this styles (old layout for offer banner support) (1688) start
    color: $white;
    // TODO: remove this styles (old layout for offer banner support) (1688) end

    strong {
      font-weight: 500;
    }
  }

  &__link {
    white-space: nowrap;
    color: $white;
    text-decoration: none;

    &-arrow {
      margin-left: 10px;
    }
  }

  & .notification__close {
    right: 4px;
    top: 4px;
  }
}

.sticky-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
}

@media screen and (max-width: 370px) {
  .offer-banner {
    &__content {
      padding: 4px 20px 4px 10px;
    }

    &__link-text {
      font-size: 12px;
    }
  }
}
