/* Disclosure popup. */

.marpet-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100000;
}

.marpet-popup.is-open {
  display: block;
}

.marpet-popup__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  /* keeps the overlay tappable on iOS Safari */
  cursor: pointer;
}

.marpet-popup__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 768px;
  max-width: calc(100% - 24px);
  max-height: calc(100% - 48px);
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  direction: rtl;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

/* RTL: close button top-left */
.marpet-popup__close {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  line-height: 0;
}

.marpet-popup__close:hover {
  background-color: #f1f5f9;
}

.marpet-popup__close svg {
  width: 25px;
  height: 25px;
  display: block;
  /* let taps fall through to the button */
  pointer-events: none;
}

.marpet-popup__content {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  padding: 56px 40px 40px;
  text-align: right;
  direction: rtl;
  color: #000;
  font-family: "Ping Hebrew", "Ping HL", "Arial", sans-serif;
}

/* content typography */
.marpet-popup__content h1,
.marpet-popup__content h2 {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #1f2937;
}

.marpet-popup__content h2 {
  margin-top: 32px;
}

.marpet-popup__content h3,
.marpet-popup__content h4 {
  font-size: 22px;
  font-weight: 800;
  margin: 24px 0 8px;
  color: #1f2937;
}

.marpet-popup__content p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 28px;
}

.marpet-popup__content ul li,
.marpet-popup__content ol li {
  font-size: 18px;
  line-height: 28px;
}

.marpet-popup__content p strong {
  font-weight: 600;
}

.marpet-popup__content a {
  color: #279be0;
  font-weight: 600;
  text-decoration: underline;
}

.marpet-popup__content a:hover {
  color: #00458a;
}

.marpet-popup__content ul,
.marpet-popup__content ol {
  margin: 0 0 16px;
  padding-right: 20px;
  padding-left: 0;
}

.marpet-popup__content li {
  padding-top: 8px;
  line-height: 32px;
}

.marpet-popup__content li::marker {
  font-weight: 700;
}

@media (max-width: 768px) {
  .marpet-popup__box {
    border-radius: 16px;
    max-height: calc(100% - 32px);
  }

  .marpet-popup__content {
    padding: 56px 20px 24px;
  }

  .marpet-popup__content h1,
  .marpet-popup__content h2 {
    font-size: 24px;
  }

  .marpet-popup__content h3,
  .marpet-popup__content h4 {
    font-size: 19px;
  }

  .marpet-popup__content p,
  .marpet-popup__content ul li,
  .marpet-popup__content ol li {
    font-size: 16px;
    line-height: 28px;
  }
}
