.popup-container {
  position: fixed;
  right: 0;
  bottom: 0;
  max-width: 370px;
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  border-radius: 5px;
  display: none;
  z-index: 1000; }
  .popup-container.premium-bikes {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    right: auto;
    bottom: auto;
    max-width: 100%;
    width: 80%;
    height: auto;
    padding: 0; }
    @media (max-width: 767px) {
      .popup-container.premium-bikes {
        width: 90%; } }
  @media (max-width: 767px) {
    .popup-container {
      max-width: max-content; } }

.popup-content {
  padding: 10px;
  text-align: left; }

.popup-content h2 {
  margin-top: 0;
  font-size: 18px;
  color: #fff;
  font-family: 'BebasNeue-Regular';
  margin-bottom: 10px; }

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer; }

.premium-overlay::after {
  content: "";
  background: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  height: 100%; }
  @media (max-width: 767px) {
    .premium-overlay::after {
      width: 101%; } }
