.bb-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  z-index: 99999;
  padding: 20px;
}

.bb-popup-overlay.bb-popup-open {
  opacity: 1;
  pointer-events: auto;
}

.bb-popup {
  background: #310030;
  background-image: url("overlay-popup.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  max-width: 780px;
  padding: 42px 40px 34px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.bb-popup .intro {
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  margin: 0 0 28px !important;
}

.bb-popup-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.bb-popup-option {
  text-align: center;
}

.bb-popup-option .bb-popup-link,
.bb-popup a.bb-popup-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 142px;
  padding: 20px;
  margin: 0 0 14px !important;
  background: #f2b316;
  color: #4b0055 !important;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none !important;
  border-radius: 0;
  box-shadow: none;
}

.bb-popup-option .bb-popup-link:hover,
.bb-popup a.bb-popup-link:hover,
.bb-popup-option .bb-popup-link:focus,
.bb-popup a.bb-popup-link:focus {
  color: #4b0055 !important;
  text-decoration: none !important;
  opacity: 0.95;
}

.bb-popup-option p {
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 300;
  max-width: 220px;
  margin: 0 auto !important;
}

.bb-popup-option p strong {
  font-style: italic;
  font-weight: 700;
}

@media (max-width: 767px) {
  .bb-popup {
    max-width: 520px;
    padding: 28px 22px 24px;
  }

  .bb-popup-options {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bb-popup-option .bb-popup-link,
  .bb-popup a.bb-popup-link {
    min-height: 96px;
    font-size: 22px;
    margin-bottom: 10px !important;
  }

  .bb-popup-option p {
    max-width: 100%;
    font-size: 14px;
  }
}
