.oqtp-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.oqtp-modal.is-open {
    display: block;
}

.oqtp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.56);
}

.oqtp-modal__dialog {
    position: relative;
    width: min(760px, calc(100% - 32px));
    max-height: calc(100vh - 48px);
    margin: 24px auto;
    background: #fff;
    border-radius: 10px;
    overflow: auto;
    padding: 24px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.oqtp-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #222;
}

body.oqtp-modal-open {
    overflow: hidden;
}

#oqtp-loader {
    text-align: center;
    padding: 60px 20px;
}

.oqtp-spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    border: 4px solid #ddd;
    border-top-color: #000;
    border-radius: 50%;
    animation: oqtp-spin 1s linear infinite;
}

@keyframes oqtp-spin {
    to {
        transform: rotate(360deg);
    }
}

.oqtp-modal__dialog {
  background: #F1E9D7;
  border-radius: 14px;
  border: 15px solid #991F62;
}
.oqtp-modal__close.oqtp-modal-close,
.oqtp-modal__close.oqtp-modal-close:hover,
.oqtp-modal__close.oqtp-modal-close:active{
  border: none;
  color: #991f62;
  font-size: 2rem;
  background: unset;
}
#oqtp-popup-title {
  font-family: "Figtree", Sans-serif;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2em;
  color: #991f62;
}
.btn-download-pdf {
    text-align: center;
}
#oqtp-popup-pdf {
  background-color: #D73D1E;
  font-family: "Figtree", Sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  fill: var(--e-global-color-19eacb4);
  color: var(--e-global-color-19eacb4);
  border-radius: 8px 8px 8px 8px;
  padding: 12px 20px 12px 20px;
}